ETH Price: $3,112.75 (+1.45%)
Gas: 7 Gwei

Token

YouPoPo (YouPoPo)
 

Overview

Max Total Supply

396 YouPoPo

Holders

373

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 YouPoPo
0x4f7043476e7a4fe372a63ee0b8a93baab5d8f64b
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:
YouPoPo

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-30
*/

// Sources flattened with hardhat v2.9.9 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT
// 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/[email protected]


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


// 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/token/ERC721/[email protected]


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]


// 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/token/ERC721/extensions/[email protected]


// 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/utils/[email protected]


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/math/[email protected]


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


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

pragma solidity ^0.8.0;

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


// 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/[email protected]


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

pragma solidity ^0.8.0;







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _owners[tokenId] = to;

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

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

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

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

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

        // Clear approvals
        delete _tokenApprovals[tokenId];

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId, 1);

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

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

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

        emit Transfer(from, to, tokenId);

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

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

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

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

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

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

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


// File contracts/YouPoPo.sol


pragma solidity ^0.8.0;


contract YouPoPo is Ownable, ERC721 {

    uint public maxTotalSupply = 1000;
    uint public totalSupply = 0;
    uint public maxWhitelistSupply = 365;

    string public baseURI;

    uint public price = 0.001 ether;

    mapping(address => bool) public whitelistMinted;

    bool public start;

    constructor()
        ERC721("YouPoPo", "YouPoPo")
    {
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function setPrice(uint price_) external onlyOwner {
        price = price_;
    }

    function setStart(bool start_) external onlyOwner {
        start = start_;
    }

    function mint(uint quantity) external payable {
        require(start, "not started");

        if (totalSupply < maxWhitelistSupply) {
            require(quantity == 1, "whitelist mint too many");
            require(totalSupply + 1 <= maxWhitelistSupply, "whitelist total supply mint too many");
            require(!whitelistMinted[msg.sender], "whitelist have minted");
            whitelistMinted[msg.sender] = true;
            _mint(msg.sender, totalSupply);
        } else {
            require(msg.value >= quantity*price, "not enough money");
            for (uint i = 0; i < quantity; i++) {
                _mint(msg.sender, totalSupply+i);
            }
        }

        totalSupply += quantity;
        require(totalSupply <= maxTotalSupply, "mint too many");
    }

    function withdraw(address to) external onlyOwner {
        payable(to).transfer(address(this).balance);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWhitelistSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"start_","type":"bool"}],"name":"setStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"start","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526103e8600755600060085561016d60095566038d7ea4c68000600b553480156200002d57600080fd5b506040518060400160405280600781526020017f596f75506f506f000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f596f75506f506f00000000000000000000000000000000000000000000000000815250620000ba620000ae620000f460201b60201c565b620000fc60201b60201c565b8160019080519060200190620000d2929190620001c0565b508060029080519060200190620000eb929190620001c0565b505050620002d5565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001ce9062000270565b90600052602060002090601f016020900481019282620001f257600085556200023e565b82601f106200020d57805160ff19168380011785556200023e565b828001600101855582156200023e579182015b828111156200023d57825182559160200191906001019062000220565b5b5090506200024d919062000251565b5090565b5b808211156200026c57600081600090555060010162000252565b5090565b600060028204905060018216806200028957607f821691505b60208210811415620002a0576200029f620002a6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6136ef80620002e56000396000f3fe6080604052600436106101b75760003560e01c8063715018a6116100ec578063a0712d681161008a578063be9a655511610064578063be9a6555146105e9578063c87b56dd14610614578063e985e9c514610651578063f2fde38b1461068e576101b7565b8063a0712d681461057b578063a22cb46514610597578063b88d4fde146105c0576101b7565b8063953f049d116100c6578063953f049d146104bd57806395d89b41146104e857806398a8cffe14610513578063a035b1fe14610550576101b7565b8063715018a6146104525780638da5cb5b1461046957806391b7f5ed14610494576101b7565b806342842e0e116101595780636352211e116101335780636352211e1461038457806368e24327146103c15780636c0360eb146103ea57806370a0823114610415576101b7565b806342842e0e1461030957806351cff8d91461033257806355f804b31461035b576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b55780632ab4d052146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de919061268f565b6106b7565b6040516101f09190612b53565b60405180910390f35b34801561020557600080fd5b5061020e610799565b60405161021b9190612b6e565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612732565b61082b565b6040516102589190612aec565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612622565b610871565b005b34801561029657600080fd5b5061029f610989565b6040516102ac9190612df0565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d7919061250c565b61098f565b005b3480156102ea57600080fd5b506102f36109ef565b6040516103009190612df0565b60405180910390f35b34801561031557600080fd5b50610330600480360381019061032b919061250c565b6109f5565b005b34801561033e57600080fd5b506103596004803603810190610354919061249f565b610a15565b005b34801561036757600080fd5b50610382600480360381019061037d91906126e9565b610a67565b005b34801561039057600080fd5b506103ab60048036038101906103a69190612732565b610a89565b6040516103b89190612aec565b60405180910390f35b3480156103cd57600080fd5b506103e860048036038101906103e39190612662565b610b10565b005b3480156103f657600080fd5b506103ff610b35565b60405161040c9190612b6e565b60405180910390f35b34801561042157600080fd5b5061043c6004803603810190610437919061249f565b610bc3565b6040516104499190612df0565b60405180910390f35b34801561045e57600080fd5b50610467610c7b565b005b34801561047557600080fd5b5061047e610c8f565b60405161048b9190612aec565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b69190612732565b610cb8565b005b3480156104c957600080fd5b506104d2610cca565b6040516104df9190612df0565b60405180910390f35b3480156104f457600080fd5b506104fd610cd0565b60405161050a9190612b6e565b60405180910390f35b34801561051f57600080fd5b5061053a6004803603810190610535919061249f565b610d62565b6040516105479190612b53565b60405180910390f35b34801561055c57600080fd5b50610565610d82565b6040516105729190612df0565b60405180910390f35b61059560048036038101906105909190612732565b610d88565b005b3480156105a357600080fd5b506105be60048036038101906105b991906125e2565b611059565b005b3480156105cc57600080fd5b506105e760048036038101906105e2919061255f565b61106f565b005b3480156105f557600080fd5b506105fe6110d1565b60405161060b9190612b53565b60405180910390f35b34801561062057600080fd5b5061063b60048036038101906106369190612732565b6110e4565b6040516106489190612b6e565b60405180910390f35b34801561065d57600080fd5b50610678600480360381019061067391906124cc565b61114c565b6040516106859190612b53565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b0919061249f565b6111e0565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610792575061079182611264565b5b9050919050565b6060600180546107a89061306f565b80601f01602080910402602001604051908101604052809291908181526020018280546107d49061306f565b80156108215780601f106107f657610100808354040283529160200191610821565b820191906000526020600020905b81548152906001019060200180831161080457829003601f168201915b5050505050905090565b6000610836826112ce565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087c82610a89565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e490612d90565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661090c611319565b73ffffffffffffffffffffffffffffffffffffffff16148061093b575061093a81610935611319565b61114c565b5b61097a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097190612db0565b60405180910390fd5b6109848383611321565b505050565b60085481565b6109a061099a611319565b826113da565b6109df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d690612bb0565b60405180910390fd5b6109ea83838361146f565b505050565b60075481565b610a108383836040518060200160405280600081525061106f565b505050565b610a1d611769565b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610a63573d6000803e3d6000fd5b5050565b610a6f611769565b80600a9080519060200190610a859291906122b3565b5050565b600080610a95836117e7565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afe90612d50565b60405180910390fd5b80915050919050565b610b18611769565b80600d60006101000a81548160ff02191690831515021790555050565b600a8054610b429061306f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6e9061306f565b8015610bbb5780601f10610b9057610100808354040283529160200191610bbb565b820191906000526020600020905b815481529060010190602001808311610b9e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b90612cb0565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c83611769565b610c8d6000611824565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610cc0611769565b80600b8190555050565b60095481565b606060028054610cdf9061306f565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0b9061306f565b8015610d585780601f10610d2d57610100808354040283529160200191610d58565b820191906000526020600020905b815481529060010190602001808311610d3b57829003601f168201915b5050505050905090565b600c6020528060005260406000206000915054906101000a900460ff1681565b600b5481565b600d60009054906101000a900460ff16610dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dce90612dd0565b60405180910390fd5b6009546008541015610f6f5760018114610e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1d90612d70565b60405180910390fd5b6009546001600854610e389190612ed5565b1115610e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7090612bf0565b60405180910390fd5b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efd90612cd0565b60405180910390fd5b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610f6a336008546118e8565b610ff6565b600b5481610f7d9190612f2b565b341015610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb690612d30565b60405180910390fd5b60005b81811015610ff457610fe13382600854610fdc9190612ed5565b6118e8565b8080610fec906130d2565b915050610fc2565b505b80600860008282546110089190612ed5565b925050819055506007546008541115611056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104d90612b90565b60405180910390fd5b50565b61106b611064611319565b8383611b06565b5050565b61108061107a611319565b836113da565b6110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b690612bb0565b60405180910390fd5b6110cb84848484611c73565b50505050565b600d60009054906101000a900460ff1681565b60606110ef826112ce565b60006110f9611ccf565b905060008151116111195760405180602001604052806000815250611144565b8061112384611d61565b604051602001611134929190612ac8565b6040516020818303038152906040525b915050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6111e8611769565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124f90612c10565b60405180910390fd5b61126181611824565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6112d781611e39565b611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d90612d50565b60405180910390fd5b50565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661139483610a89565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806113e683610a89565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114285750611427818561114c565b5b8061146657508373ffffffffffffffffffffffffffffffffffffffff1661144e8461082b565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661148f82610a89565b73ffffffffffffffffffffffffffffffffffffffff16146114e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dc90612c30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c90612c70565b60405180910390fd5b6115628383836001611e7a565b8273ffffffffffffffffffffffffffffffffffffffff1661158282610a89565b73ffffffffffffffffffffffffffffffffffffffff16146115d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cf90612c30565b60405180910390fd5b6005600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117648383836001611fa0565b505050565b611771611319565b73ffffffffffffffffffffffffffffffffffffffff1661178f610c8f565b73ffffffffffffffffffffffffffffffffffffffff16146117e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dc90612d10565b60405180910390fd5b565b60006003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f90612cf0565b60405180910390fd5b61196181611e39565b156119a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199890612c50565b60405180910390fd5b6119af600083836001611e7a565b6119b881611e39565b156119f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ef90612c50565b60405180910390fd5b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b02600083836001611fa0565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6c90612c90565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c669190612b53565b60405180910390a3505050565b611c7e84848461146f565b611c8a84848484611fa6565b611cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc090612bd0565b60405180910390fd5b50505050565b6060600a8054611cde9061306f565b80601f0160208091040260200160405190810160405280929190818152602001828054611d0a9061306f565b8015611d575780601f10611d2c57610100808354040283529160200191611d57565b820191906000526020600020905b815481529060010190602001808311611d3a57829003601f168201915b5050505050905090565b606060006001611d708461213d565b01905060008167ffffffffffffffff811115611d8f57611d8e6131a8565b5b6040519080825280601f01601f191660200182016040528015611dc15781602001600182028036833780820191505090505b509050600082602001820190505b600115611e2e578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611e1857611e1761314a565b5b0494506000851415611e2957611e2e565b611dcf565b819350505050919050565b60008073ffffffffffffffffffffffffffffffffffffffff16611e5b836117e7565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6001811115611f9a57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611f0e5780600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f069190612f85565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611f995780600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f919190612ed5565b925050819055505b5b50505050565b50505050565b6000611fc78473ffffffffffffffffffffffffffffffffffffffff16612290565b15612130578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ff0611319565b8786866040518563ffffffff1660e01b81526004016120129493929190612b07565b602060405180830381600087803b15801561202c57600080fd5b505af192505050801561205d57506040513d601f19601f8201168201806040525081019061205a91906126bc565b60015b6120e0573d806000811461208d576040519150601f19603f3d011682016040523d82523d6000602084013e612092565b606091505b506000815114156120d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cf90612bd0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612135565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061219b577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816121915761219061314a565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106121d8576d04ee2d6d415b85acef810000000083816121ce576121cd61314a565b5b0492506020810190505b662386f26fc10000831061220757662386f26fc1000083816121fd576121fc61314a565b5b0492506010810190505b6305f5e1008310612230576305f5e10083816122265761222561314a565b5b0492506008810190505b612710831061225557612710838161224b5761224a61314a565b5b0492506004810190505b60648310612278576064838161226e5761226d61314a565b5b0492506002810190505b600a8310612287576001810190505b80915050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546122bf9061306f565b90600052602060002090601f0160209004810192826122e15760008555612328565b82601f106122fa57805160ff1916838001178555612328565b82800160010185558215612328579182015b8281111561232757825182559160200191906001019061230c565b5b5090506123359190612339565b5090565b5b8082111561235257600081600090555060010161233a565b5090565b600061236961236484612e30565b612e0b565b905082815260208101848484011115612385576123846131dc565b5b61239084828561302d565b509392505050565b60006123ab6123a684612e61565b612e0b565b9050828152602081018484840111156123c7576123c66131dc565b5b6123d284828561302d565b509392505050565b6000813590506123e98161365d565b92915050565b6000813590506123fe81613674565b92915050565b6000813590506124138161368b565b92915050565b6000815190506124288161368b565b92915050565b600082601f830112612443576124426131d7565b5b8135612453848260208601612356565b91505092915050565b600082601f830112612471576124706131d7565b5b8135612481848260208601612398565b91505092915050565b600081359050612499816136a2565b92915050565b6000602082840312156124b5576124b46131e6565b5b60006124c3848285016123da565b91505092915050565b600080604083850312156124e3576124e26131e6565b5b60006124f1858286016123da565b9250506020612502858286016123da565b9150509250929050565b600080600060608486031215612525576125246131e6565b5b6000612533868287016123da565b9350506020612544868287016123da565b92505060406125558682870161248a565b9150509250925092565b60008060008060808587031215612579576125786131e6565b5b6000612587878288016123da565b9450506020612598878288016123da565b93505060406125a98782880161248a565b925050606085013567ffffffffffffffff8111156125ca576125c96131e1565b5b6125d68782880161242e565b91505092959194509250565b600080604083850312156125f9576125f86131e6565b5b6000612607858286016123da565b9250506020612618858286016123ef565b9150509250929050565b60008060408385031215612639576126386131e6565b5b6000612647858286016123da565b92505060206126588582860161248a565b9150509250929050565b600060208284031215612678576126776131e6565b5b6000612686848285016123ef565b91505092915050565b6000602082840312156126a5576126a46131e6565b5b60006126b384828501612404565b91505092915050565b6000602082840312156126d2576126d16131e6565b5b60006126e084828501612419565b91505092915050565b6000602082840312156126ff576126fe6131e6565b5b600082013567ffffffffffffffff81111561271d5761271c6131e1565b5b6127298482850161245c565b91505092915050565b600060208284031215612748576127476131e6565b5b60006127568482850161248a565b91505092915050565b61276881612fb9565b82525050565b61277781612fcb565b82525050565b600061278882612e92565b6127928185612ea8565b93506127a281856020860161303c565b6127ab816131eb565b840191505092915050565b60006127c182612e9d565b6127cb8185612eb9565b93506127db81856020860161303c565b6127e4816131eb565b840191505092915050565b60006127fa82612e9d565b6128048185612eca565b935061281481856020860161303c565b80840191505092915050565b600061282d600d83612eb9565b9150612838826131fc565b602082019050919050565b6000612850602d83612eb9565b915061285b82613225565b604082019050919050565b6000612873603283612eb9565b915061287e82613274565b604082019050919050565b6000612896602483612eb9565b91506128a1826132c3565b604082019050919050565b60006128b9602683612eb9565b91506128c482613312565b604082019050919050565b60006128dc602583612eb9565b91506128e782613361565b604082019050919050565b60006128ff601c83612eb9565b915061290a826133b0565b602082019050919050565b6000612922602483612eb9565b915061292d826133d9565b604082019050919050565b6000612945601983612eb9565b915061295082613428565b602082019050919050565b6000612968602983612eb9565b915061297382613451565b604082019050919050565b600061298b601583612eb9565b9150612996826134a0565b602082019050919050565b60006129ae602083612eb9565b91506129b9826134c9565b602082019050919050565b60006129d1602083612eb9565b91506129dc826134f2565b602082019050919050565b60006129f4601083612eb9565b91506129ff8261351b565b602082019050919050565b6000612a17601883612eb9565b9150612a2282613544565b602082019050919050565b6000612a3a601783612eb9565b9150612a458261356d565b602082019050919050565b6000612a5d602183612eb9565b9150612a6882613596565b604082019050919050565b6000612a80603d83612eb9565b9150612a8b826135e5565b604082019050919050565b6000612aa3600b83612eb9565b9150612aae82613634565b602082019050919050565b612ac281613023565b82525050565b6000612ad482856127ef565b9150612ae082846127ef565b91508190509392505050565b6000602082019050612b01600083018461275f565b92915050565b6000608082019050612b1c600083018761275f565b612b29602083018661275f565b612b366040830185612ab9565b8181036060830152612b48818461277d565b905095945050505050565b6000602082019050612b68600083018461276e565b92915050565b60006020820190508181036000830152612b8881846127b6565b905092915050565b60006020820190508181036000830152612ba981612820565b9050919050565b60006020820190508181036000830152612bc981612843565b9050919050565b60006020820190508181036000830152612be981612866565b9050919050565b60006020820190508181036000830152612c0981612889565b9050919050565b60006020820190508181036000830152612c29816128ac565b9050919050565b60006020820190508181036000830152612c49816128cf565b9050919050565b60006020820190508181036000830152612c69816128f2565b9050919050565b60006020820190508181036000830152612c8981612915565b9050919050565b60006020820190508181036000830152612ca981612938565b9050919050565b60006020820190508181036000830152612cc98161295b565b9050919050565b60006020820190508181036000830152612ce98161297e565b9050919050565b60006020820190508181036000830152612d09816129a1565b9050919050565b60006020820190508181036000830152612d29816129c4565b9050919050565b60006020820190508181036000830152612d49816129e7565b9050919050565b60006020820190508181036000830152612d6981612a0a565b9050919050565b60006020820190508181036000830152612d8981612a2d565b9050919050565b60006020820190508181036000830152612da981612a50565b9050919050565b60006020820190508181036000830152612dc981612a73565b9050919050565b60006020820190508181036000830152612de981612a96565b9050919050565b6000602082019050612e056000830184612ab9565b92915050565b6000612e15612e26565b9050612e2182826130a1565b919050565b6000604051905090565b600067ffffffffffffffff821115612e4b57612e4a6131a8565b5b612e54826131eb565b9050602081019050919050565b600067ffffffffffffffff821115612e7c57612e7b6131a8565b5b612e85826131eb565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ee082613023565b9150612eeb83613023565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f2057612f1f61311b565b5b828201905092915050565b6000612f3682613023565b9150612f4183613023565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f7a57612f7961311b565b5b828202905092915050565b6000612f9082613023565b9150612f9b83613023565b925082821015612fae57612fad61311b565b5b828203905092915050565b6000612fc482613003565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561305a57808201518184015260208101905061303f565b83811115613069576000848401525b50505050565b6000600282049050600182168061308757607f821691505b6020821081141561309b5761309a613179565b5b50919050565b6130aa826131eb565b810181811067ffffffffffffffff821117156130c9576130c86131a8565b5b80604052505050565b60006130dd82613023565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156131105761310f61311b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f6d696e7420746f6f206d616e7900000000000000000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f77686974656c69737420746f74616c20737570706c79206d696e7420746f6f2060008201527f6d616e7900000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f77686974656c6973742068617665206d696e7465640000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f6e6f7420656e6f756768206d6f6e657900000000000000000000000000000000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f77686974656c697374206d696e7420746f6f206d616e79000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b7f6e6f742073746172746564000000000000000000000000000000000000000000600082015250565b61366681612fb9565b811461367157600080fd5b50565b61367d81612fcb565b811461368857600080fd5b50565b61369481612fd7565b811461369f57600080fd5b50565b6136ab81613023565b81146136b657600080fd5b5056fea264697066735822122006895b9b760640cf65885978cc85bc83ba8db914ea5eacc6d0273b01471da0c264736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c8063715018a6116100ec578063a0712d681161008a578063be9a655511610064578063be9a6555146105e9578063c87b56dd14610614578063e985e9c514610651578063f2fde38b1461068e576101b7565b8063a0712d681461057b578063a22cb46514610597578063b88d4fde146105c0576101b7565b8063953f049d116100c6578063953f049d146104bd57806395d89b41146104e857806398a8cffe14610513578063a035b1fe14610550576101b7565b8063715018a6146104525780638da5cb5b1461046957806391b7f5ed14610494576101b7565b806342842e0e116101595780636352211e116101335780636352211e1461038457806368e24327146103c15780636c0360eb146103ea57806370a0823114610415576101b7565b806342842e0e1461030957806351cff8d91461033257806355f804b31461035b576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b55780632ab4d052146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de919061268f565b6106b7565b6040516101f09190612b53565b60405180910390f35b34801561020557600080fd5b5061020e610799565b60405161021b9190612b6e565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612732565b61082b565b6040516102589190612aec565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612622565b610871565b005b34801561029657600080fd5b5061029f610989565b6040516102ac9190612df0565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d7919061250c565b61098f565b005b3480156102ea57600080fd5b506102f36109ef565b6040516103009190612df0565b60405180910390f35b34801561031557600080fd5b50610330600480360381019061032b919061250c565b6109f5565b005b34801561033e57600080fd5b506103596004803603810190610354919061249f565b610a15565b005b34801561036757600080fd5b50610382600480360381019061037d91906126e9565b610a67565b005b34801561039057600080fd5b506103ab60048036038101906103a69190612732565b610a89565b6040516103b89190612aec565b60405180910390f35b3480156103cd57600080fd5b506103e860048036038101906103e39190612662565b610b10565b005b3480156103f657600080fd5b506103ff610b35565b60405161040c9190612b6e565b60405180910390f35b34801561042157600080fd5b5061043c6004803603810190610437919061249f565b610bc3565b6040516104499190612df0565b60405180910390f35b34801561045e57600080fd5b50610467610c7b565b005b34801561047557600080fd5b5061047e610c8f565b60405161048b9190612aec565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b69190612732565b610cb8565b005b3480156104c957600080fd5b506104d2610cca565b6040516104df9190612df0565b60405180910390f35b3480156104f457600080fd5b506104fd610cd0565b60405161050a9190612b6e565b60405180910390f35b34801561051f57600080fd5b5061053a6004803603810190610535919061249f565b610d62565b6040516105479190612b53565b60405180910390f35b34801561055c57600080fd5b50610565610d82565b6040516105729190612df0565b60405180910390f35b61059560048036038101906105909190612732565b610d88565b005b3480156105a357600080fd5b506105be60048036038101906105b991906125e2565b611059565b005b3480156105cc57600080fd5b506105e760048036038101906105e2919061255f565b61106f565b005b3480156105f557600080fd5b506105fe6110d1565b60405161060b9190612b53565b60405180910390f35b34801561062057600080fd5b5061063b60048036038101906106369190612732565b6110e4565b6040516106489190612b6e565b60405180910390f35b34801561065d57600080fd5b50610678600480360381019061067391906124cc565b61114c565b6040516106859190612b53565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b0919061249f565b6111e0565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610792575061079182611264565b5b9050919050565b6060600180546107a89061306f565b80601f01602080910402602001604051908101604052809291908181526020018280546107d49061306f565b80156108215780601f106107f657610100808354040283529160200191610821565b820191906000526020600020905b81548152906001019060200180831161080457829003601f168201915b5050505050905090565b6000610836826112ce565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087c82610a89565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e490612d90565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661090c611319565b73ffffffffffffffffffffffffffffffffffffffff16148061093b575061093a81610935611319565b61114c565b5b61097a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097190612db0565b60405180910390fd5b6109848383611321565b505050565b60085481565b6109a061099a611319565b826113da565b6109df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d690612bb0565b60405180910390fd5b6109ea83838361146f565b505050565b60075481565b610a108383836040518060200160405280600081525061106f565b505050565b610a1d611769565b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610a63573d6000803e3d6000fd5b5050565b610a6f611769565b80600a9080519060200190610a859291906122b3565b5050565b600080610a95836117e7565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afe90612d50565b60405180910390fd5b80915050919050565b610b18611769565b80600d60006101000a81548160ff02191690831515021790555050565b600a8054610b429061306f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6e9061306f565b8015610bbb5780601f10610b9057610100808354040283529160200191610bbb565b820191906000526020600020905b815481529060010190602001808311610b9e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b90612cb0565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c83611769565b610c8d6000611824565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610cc0611769565b80600b8190555050565b60095481565b606060028054610cdf9061306f565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0b9061306f565b8015610d585780601f10610d2d57610100808354040283529160200191610d58565b820191906000526020600020905b815481529060010190602001808311610d3b57829003601f168201915b5050505050905090565b600c6020528060005260406000206000915054906101000a900460ff1681565b600b5481565b600d60009054906101000a900460ff16610dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dce90612dd0565b60405180910390fd5b6009546008541015610f6f5760018114610e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1d90612d70565b60405180910390fd5b6009546001600854610e389190612ed5565b1115610e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7090612bf0565b60405180910390fd5b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efd90612cd0565b60405180910390fd5b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610f6a336008546118e8565b610ff6565b600b5481610f7d9190612f2b565b341015610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb690612d30565b60405180910390fd5b60005b81811015610ff457610fe13382600854610fdc9190612ed5565b6118e8565b8080610fec906130d2565b915050610fc2565b505b80600860008282546110089190612ed5565b925050819055506007546008541115611056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104d90612b90565b60405180910390fd5b50565b61106b611064611319565b8383611b06565b5050565b61108061107a611319565b836113da565b6110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b690612bb0565b60405180910390fd5b6110cb84848484611c73565b50505050565b600d60009054906101000a900460ff1681565b60606110ef826112ce565b60006110f9611ccf565b905060008151116111195760405180602001604052806000815250611144565b8061112384611d61565b604051602001611134929190612ac8565b6040516020818303038152906040525b915050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6111e8611769565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124f90612c10565b60405180910390fd5b61126181611824565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6112d781611e39565b611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d90612d50565b60405180910390fd5b50565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661139483610a89565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806113e683610a89565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114285750611427818561114c565b5b8061146657508373ffffffffffffffffffffffffffffffffffffffff1661144e8461082b565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661148f82610a89565b73ffffffffffffffffffffffffffffffffffffffff16146114e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dc90612c30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c90612c70565b60405180910390fd5b6115628383836001611e7a565b8273ffffffffffffffffffffffffffffffffffffffff1661158282610a89565b73ffffffffffffffffffffffffffffffffffffffff16146115d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cf90612c30565b60405180910390fd5b6005600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117648383836001611fa0565b505050565b611771611319565b73ffffffffffffffffffffffffffffffffffffffff1661178f610c8f565b73ffffffffffffffffffffffffffffffffffffffff16146117e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dc90612d10565b60405180910390fd5b565b60006003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f90612cf0565b60405180910390fd5b61196181611e39565b156119a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199890612c50565b60405180910390fd5b6119af600083836001611e7a565b6119b881611e39565b156119f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ef90612c50565b60405180910390fd5b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b02600083836001611fa0565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6c90612c90565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c669190612b53565b60405180910390a3505050565b611c7e84848461146f565b611c8a84848484611fa6565b611cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc090612bd0565b60405180910390fd5b50505050565b6060600a8054611cde9061306f565b80601f0160208091040260200160405190810160405280929190818152602001828054611d0a9061306f565b8015611d575780601f10611d2c57610100808354040283529160200191611d57565b820191906000526020600020905b815481529060010190602001808311611d3a57829003601f168201915b5050505050905090565b606060006001611d708461213d565b01905060008167ffffffffffffffff811115611d8f57611d8e6131a8565b5b6040519080825280601f01601f191660200182016040528015611dc15781602001600182028036833780820191505090505b509050600082602001820190505b600115611e2e578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611e1857611e1761314a565b5b0494506000851415611e2957611e2e565b611dcf565b819350505050919050565b60008073ffffffffffffffffffffffffffffffffffffffff16611e5b836117e7565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6001811115611f9a57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611f0e5780600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f069190612f85565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611f995780600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f919190612ed5565b925050819055505b5b50505050565b50505050565b6000611fc78473ffffffffffffffffffffffffffffffffffffffff16612290565b15612130578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ff0611319565b8786866040518563ffffffff1660e01b81526004016120129493929190612b07565b602060405180830381600087803b15801561202c57600080fd5b505af192505050801561205d57506040513d601f19601f8201168201806040525081019061205a91906126bc565b60015b6120e0573d806000811461208d576040519150601f19603f3d011682016040523d82523d6000602084013e612092565b606091505b506000815114156120d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cf90612bd0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612135565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061219b577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816121915761219061314a565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106121d8576d04ee2d6d415b85acef810000000083816121ce576121cd61314a565b5b0492506020810190505b662386f26fc10000831061220757662386f26fc1000083816121fd576121fc61314a565b5b0492506010810190505b6305f5e1008310612230576305f5e10083816122265761222561314a565b5b0492506008810190505b612710831061225557612710838161224b5761224a61314a565b5b0492506004810190505b60648310612278576064838161226e5761226d61314a565b5b0492506002810190505b600a8310612287576001810190505b80915050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546122bf9061306f565b90600052602060002090601f0160209004810192826122e15760008555612328565b82601f106122fa57805160ff1916838001178555612328565b82800160010185558215612328579182015b8281111561232757825182559160200191906001019061230c565b5b5090506123359190612339565b5090565b5b8082111561235257600081600090555060010161233a565b5090565b600061236961236484612e30565b612e0b565b905082815260208101848484011115612385576123846131dc565b5b61239084828561302d565b509392505050565b60006123ab6123a684612e61565b612e0b565b9050828152602081018484840111156123c7576123c66131dc565b5b6123d284828561302d565b509392505050565b6000813590506123e98161365d565b92915050565b6000813590506123fe81613674565b92915050565b6000813590506124138161368b565b92915050565b6000815190506124288161368b565b92915050565b600082601f830112612443576124426131d7565b5b8135612453848260208601612356565b91505092915050565b600082601f830112612471576124706131d7565b5b8135612481848260208601612398565b91505092915050565b600081359050612499816136a2565b92915050565b6000602082840312156124b5576124b46131e6565b5b60006124c3848285016123da565b91505092915050565b600080604083850312156124e3576124e26131e6565b5b60006124f1858286016123da565b9250506020612502858286016123da565b9150509250929050565b600080600060608486031215612525576125246131e6565b5b6000612533868287016123da565b9350506020612544868287016123da565b92505060406125558682870161248a565b9150509250925092565b60008060008060808587031215612579576125786131e6565b5b6000612587878288016123da565b9450506020612598878288016123da565b93505060406125a98782880161248a565b925050606085013567ffffffffffffffff8111156125ca576125c96131e1565b5b6125d68782880161242e565b91505092959194509250565b600080604083850312156125f9576125f86131e6565b5b6000612607858286016123da565b9250506020612618858286016123ef565b9150509250929050565b60008060408385031215612639576126386131e6565b5b6000612647858286016123da565b92505060206126588582860161248a565b9150509250929050565b600060208284031215612678576126776131e6565b5b6000612686848285016123ef565b91505092915050565b6000602082840312156126a5576126a46131e6565b5b60006126b384828501612404565b91505092915050565b6000602082840312156126d2576126d16131e6565b5b60006126e084828501612419565b91505092915050565b6000602082840312156126ff576126fe6131e6565b5b600082013567ffffffffffffffff81111561271d5761271c6131e1565b5b6127298482850161245c565b91505092915050565b600060208284031215612748576127476131e6565b5b60006127568482850161248a565b91505092915050565b61276881612fb9565b82525050565b61277781612fcb565b82525050565b600061278882612e92565b6127928185612ea8565b93506127a281856020860161303c565b6127ab816131eb565b840191505092915050565b60006127c182612e9d565b6127cb8185612eb9565b93506127db81856020860161303c565b6127e4816131eb565b840191505092915050565b60006127fa82612e9d565b6128048185612eca565b935061281481856020860161303c565b80840191505092915050565b600061282d600d83612eb9565b9150612838826131fc565b602082019050919050565b6000612850602d83612eb9565b915061285b82613225565b604082019050919050565b6000612873603283612eb9565b915061287e82613274565b604082019050919050565b6000612896602483612eb9565b91506128a1826132c3565b604082019050919050565b60006128b9602683612eb9565b91506128c482613312565b604082019050919050565b60006128dc602583612eb9565b91506128e782613361565b604082019050919050565b60006128ff601c83612eb9565b915061290a826133b0565b602082019050919050565b6000612922602483612eb9565b915061292d826133d9565b604082019050919050565b6000612945601983612eb9565b915061295082613428565b602082019050919050565b6000612968602983612eb9565b915061297382613451565b604082019050919050565b600061298b601583612eb9565b9150612996826134a0565b602082019050919050565b60006129ae602083612eb9565b91506129b9826134c9565b602082019050919050565b60006129d1602083612eb9565b91506129dc826134f2565b602082019050919050565b60006129f4601083612eb9565b91506129ff8261351b565b602082019050919050565b6000612a17601883612eb9565b9150612a2282613544565b602082019050919050565b6000612a3a601783612eb9565b9150612a458261356d565b602082019050919050565b6000612a5d602183612eb9565b9150612a6882613596565b604082019050919050565b6000612a80603d83612eb9565b9150612a8b826135e5565b604082019050919050565b6000612aa3600b83612eb9565b9150612aae82613634565b602082019050919050565b612ac281613023565b82525050565b6000612ad482856127ef565b9150612ae082846127ef565b91508190509392505050565b6000602082019050612b01600083018461275f565b92915050565b6000608082019050612b1c600083018761275f565b612b29602083018661275f565b612b366040830185612ab9565b8181036060830152612b48818461277d565b905095945050505050565b6000602082019050612b68600083018461276e565b92915050565b60006020820190508181036000830152612b8881846127b6565b905092915050565b60006020820190508181036000830152612ba981612820565b9050919050565b60006020820190508181036000830152612bc981612843565b9050919050565b60006020820190508181036000830152612be981612866565b9050919050565b60006020820190508181036000830152612c0981612889565b9050919050565b60006020820190508181036000830152612c29816128ac565b9050919050565b60006020820190508181036000830152612c49816128cf565b9050919050565b60006020820190508181036000830152612c69816128f2565b9050919050565b60006020820190508181036000830152612c8981612915565b9050919050565b60006020820190508181036000830152612ca981612938565b9050919050565b60006020820190508181036000830152612cc98161295b565b9050919050565b60006020820190508181036000830152612ce98161297e565b9050919050565b60006020820190508181036000830152612d09816129a1565b9050919050565b60006020820190508181036000830152612d29816129c4565b9050919050565b60006020820190508181036000830152612d49816129e7565b9050919050565b60006020820190508181036000830152612d6981612a0a565b9050919050565b60006020820190508181036000830152612d8981612a2d565b9050919050565b60006020820190508181036000830152612da981612a50565b9050919050565b60006020820190508181036000830152612dc981612a73565b9050919050565b60006020820190508181036000830152612de981612a96565b9050919050565b6000602082019050612e056000830184612ab9565b92915050565b6000612e15612e26565b9050612e2182826130a1565b919050565b6000604051905090565b600067ffffffffffffffff821115612e4b57612e4a6131a8565b5b612e54826131eb565b9050602081019050919050565b600067ffffffffffffffff821115612e7c57612e7b6131a8565b5b612e85826131eb565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ee082613023565b9150612eeb83613023565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f2057612f1f61311b565b5b828201905092915050565b6000612f3682613023565b9150612f4183613023565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f7a57612f7961311b565b5b828202905092915050565b6000612f9082613023565b9150612f9b83613023565b925082821015612fae57612fad61311b565b5b828203905092915050565b6000612fc482613003565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561305a57808201518184015260208101905061303f565b83811115613069576000848401525b50505050565b6000600282049050600182168061308757607f821691505b6020821081141561309b5761309a613179565b5b50919050565b6130aa826131eb565b810181811067ffffffffffffffff821117156130c9576130c86131a8565b5b80604052505050565b60006130dd82613023565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156131105761310f61311b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f6d696e7420746f6f206d616e7900000000000000000000000000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f77686974656c69737420746f74616c20737570706c79206d696e7420746f6f2060008201527f6d616e7900000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f77686974656c6973742068617665206d696e7465640000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f6e6f7420656e6f756768206d6f6e657900000000000000000000000000000000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f77686974656c697374206d696e7420746f6f206d616e79000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b7f6e6f742073746172746564000000000000000000000000000000000000000000600082015250565b61366681612fb9565b811461367157600080fd5b50565b61367d81612fcb565b811461368857600080fd5b50565b61369481612fd7565b811461369f57600080fd5b50565b6136ab81613023565b81146136b657600080fd5b5056fea264697066735822122006895b9b760640cf65885978cc85bc83ba8db914ea5eacc6d0273b01471da0c264736f6c63430008070033

Deployed Bytecode Sourcemap

54619:1779:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38713:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39641:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41153:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40671:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54704:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41853:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54664:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42259:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56106:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55008:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39351:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55207:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54783:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39082:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2883:103;;;;;;;;;;;;;:::i;:::-;;2235:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55116:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54738:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39810:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54853:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54813:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55298:800;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41396:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42515:322;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54909:17;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39985:281;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41622:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3141:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38713:305;38815:4;38867:25;38852:40;;;:11;:40;;;;:105;;;;38924:33;38909:48;;;:11;:48;;;;38852:105;:158;;;;38974:36;38998:11;38974:23;:36::i;:::-;38852:158;38832:178;;38713:305;;;:::o;39641:100::-;39695:13;39728:5;39721:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39641:100;:::o;41153:171::-;41229:7;41249:23;41264:7;41249:14;:23::i;:::-;41292:15;:24;41308:7;41292:24;;;;;;;;;;;;;;;;;;;;;41285:31;;41153:171;;;:::o;40671:416::-;40752:13;40768:23;40783:7;40768:14;:23::i;:::-;40752:39;;40816:5;40810:11;;:2;:11;;;;40802:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;40910:5;40894:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;40919:37;40936:5;40943:12;:10;:12::i;:::-;40919:16;:37::i;:::-;40894:62;40872:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;41058:21;41067:2;41071:7;41058:8;:21::i;:::-;40741:346;40671:416;;:::o;54704:27::-;;;;:::o;41853:335::-;42048:41;42067:12;:10;:12::i;:::-;42081:7;42048:18;:41::i;:::-;42040:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;42152:28;42162:4;42168:2;42172:7;42152:9;:28::i;:::-;41853:335;;;:::o;54664:33::-;;;;:::o;42259:185::-;42397:39;42414:4;42420:2;42424:7;42397:39;;;;;;;;;;;;:16;:39::i;:::-;42259:185;;;:::o;56106:111::-;2121:13;:11;:13::i;:::-;56174:2:::1;56166:20;;:43;56187:21;56166:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;56106:111:::0;:::o;55008:100::-;2121:13;:11;:13::i;:::-;55092:8:::1;55082:7;:18;;;;;;;;;;;;:::i;:::-;;55008:100:::0;:::o;39351:223::-;39423:7;39443:13;39459:17;39468:7;39459:8;:17::i;:::-;39443:33;;39512:1;39495:19;;:5;:19;;;;39487:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;39561:5;39554:12;;;39351:223;;;:::o;55207:83::-;2121:13;:11;:13::i;:::-;55276:6:::1;55268:5;;:14;;;;;;;;;;;;;;;;;;55207:83:::0;:::o;54783:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39082:207::-;39154:7;39199:1;39182:19;;:5;:19;;;;39174:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;39265:9;:16;39275:5;39265:16;;;;;;;;;;;;;;;;39258:23;;39082:207;;;:::o;2883:103::-;2121:13;:11;:13::i;:::-;2948:30:::1;2975:1;2948:18;:30::i;:::-;2883:103::o:0;2235:87::-;2281:7;2308:6;;;;;;;;;;;2301:13;;2235:87;:::o;55116:83::-;2121:13;:11;:13::i;:::-;55185:6:::1;55177:5;:14;;;;55116:83:::0;:::o;54738:36::-;;;;:::o;39810:104::-;39866:13;39899:7;39892:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39810:104;:::o;54853:47::-;;;;;;;;;;;;;;;;;;;;;;:::o;54813:31::-;;;;:::o;55298:800::-;55363:5;;;;;;;;;;;55355:29;;;;;;;;;;;;:::i;:::-;;;;;;;;;55415:18;;55401:11;;:32;55397:592;;;55470:1;55458:8;:13;55450:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;55541:18;;55536:1;55522:11;;:15;;;;:::i;:::-;:37;;55514:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;55624:15;:27;55640:10;55624:27;;;;;;;;;;;;;;;;;;;;;;;;;55623:28;55615:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;55722:4;55692:15;:27;55708:10;55692:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;55741:30;55747:10;55759:11;;55741:5;:30::i;:::-;55397:592;;;55834:5;;55825:8;:14;;;;:::i;:::-;55812:9;:27;;55804:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;55880:6;55875:103;55896:8;55892:1;:12;55875:103;;;55930:32;55936:10;55960:1;55948:11;;:13;;;;:::i;:::-;55930:5;:32::i;:::-;55906:3;;;;;:::i;:::-;;;;55875:103;;;;55397:592;56016:8;56001:11;;:23;;;;;;;:::i;:::-;;;;;;;;56058:14;;56043:11;;:29;;56035:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;55298:800;:::o;41396:155::-;41491:52;41510:12;:10;:12::i;:::-;41524:8;41534;41491:18;:52::i;:::-;41396:155;;:::o;42515:322::-;42689:41;42708:12;:10;:12::i;:::-;42722:7;42689:18;:41::i;:::-;42681:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;42791:38;42805:4;42811:2;42815:7;42824:4;42791:13;:38::i;:::-;42515:322;;;;:::o;54909:17::-;;;;;;;;;;;;;:::o;39985:281::-;40058:13;40084:23;40099:7;40084:14;:23::i;:::-;40120:21;40144:10;:8;:10::i;:::-;40120:34;;40196:1;40178:7;40172:21;:25;:86;;;;;;;;;;;;;;;;;40224:7;40233:18;:7;:16;:18::i;:::-;40207:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40172:86;40165:93;;;39985:281;;;:::o;41622:164::-;41719:4;41743:18;:25;41762:5;41743:25;;;;;;;;;;;;;;;:35;41769:8;41743:35;;;;;;;;;;;;;;;;;;;;;;;;;41736:42;;41622:164;;;;:::o;3141:201::-;2121:13;:11;:13::i;:::-;3250:1:::1;3230:22;;:8;:22;;;;3222:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3306:28;3325:8;3306:18;:28::i;:::-;3141:201:::0;:::o;37136:157::-;37221:4;37260:25;37245:40;;;:11;:40;;;;37238:47;;37136:157;;;:::o;50972:135::-;51054:16;51062:7;51054;:16::i;:::-;51046:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;50972:135;:::o;780:98::-;833:7;860:10;853:17;;780:98;:::o;50251:174::-;50353:2;50326:15;:24;50342:7;50326:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;50409:7;50405:2;50371:46;;50380:23;50395:7;50380:14;:23::i;:::-;50371:46;;;;;;;;;;;;50251:174;;:::o;44870:264::-;44963:4;44980:13;44996:23;45011:7;44996:14;:23::i;:::-;44980:39;;45049:5;45038:16;;:7;:16;;;:52;;;;45058:32;45075:5;45082:7;45058:16;:32::i;:::-;45038:52;:87;;;;45118:7;45094:31;;:20;45106:7;45094:11;:20::i;:::-;:31;;;45038:87;45030:96;;;44870:264;;;;:::o;48869:1263::-;49028:4;49001:31;;:23;49016:7;49001:14;:23::i;:::-;:31;;;48993:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;49107:1;49093:16;;:2;:16;;;;49085:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;49163:42;49184:4;49190:2;49194:7;49203:1;49163:20;:42::i;:::-;49335:4;49308:31;;:23;49323:7;49308:14;:23::i;:::-;:31;;;49300:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;49453:15;:24;49469:7;49453:24;;;;;;;;;;;;49446:31;;;;;;;;;;;49948:1;49929:9;:15;49939:4;49929:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;49981:1;49964:9;:13;49974:2;49964:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;50023:2;50004:7;:16;50012:7;50004:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;50062:7;50058:2;50043:27;;50052:4;50043:27;;;;;;;;;;;;50083:41;50103:4;50109:2;50113:7;50122:1;50083:19;:41::i;:::-;48869:1263;;;:::o;2400:132::-;2475:12;:10;:12::i;:::-;2464:23;;:7;:5;:7::i;:::-;:23;;;2456:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2400:132::o;44145:117::-;44211:7;44238;:16;44246:7;44238:16;;;;;;;;;;;;;;;;;;;;;44231:23;;44145:117;;;:::o;3502:191::-;3576:16;3595:6;;;;;;;;;;;3576:25;;3621:8;3612:6;;:17;;;;;;;;;;;;;;;;;;3676:8;3645:40;;3666:8;3645:40;;;;;;;;;;;;3565:128;3502:191;:::o;46468:942::-;46562:1;46548:16;;:2;:16;;;;46540:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;46621:16;46629:7;46621;:16::i;:::-;46620:17;46612:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;46683:48;46712:1;46716:2;46720:7;46729:1;46683:20;:48::i;:::-;46830:16;46838:7;46830;:16::i;:::-;46829:17;46821:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;47245:1;47228:9;:13;47238:2;47228:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;47289:2;47270:7;:16;47278:7;47270:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;47334:7;47330:2;47309:33;;47326:1;47309:33;;;;;;;;;;;;47355:47;47383:1;47387:2;47391:7;47400:1;47355:19;:47::i;:::-;46468:942;;:::o;50568:315::-;50723:8;50714:17;;:5;:17;;;;50706:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;50810:8;50772:18;:25;50791:5;50772:25;;;;;;;;;;;;;;;:35;50798:8;50772:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;50856:8;50834:41;;50849:5;50834:41;;;50866:8;50834:41;;;;;;:::i;:::-;;;;;;;;50568:315;;;:::o;43718:313::-;43874:28;43884:4;43890:2;43894:7;43874:9;:28::i;:::-;43921:47;43944:4;43950:2;43954:7;43963:4;43921:22;:47::i;:::-;43913:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;43718:313;;;;:::o;56295:100::-;56347:13;56380:7;56373:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56295:100;:::o;34371:716::-;34427:13;34478:14;34515:1;34495:17;34506:5;34495:10;:17::i;:::-;:21;34478:38;;34531:20;34565:6;34554:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34531:41;;34587:11;34716:6;34712:2;34708:15;34700:6;34696:28;34689:35;;34753:288;34760:4;34753:288;;;34785:5;;;;;;;;34927:8;34922:2;34915:5;34911:14;34906:30;34901:3;34893:44;34983:2;34974:11;;;;;;:::i;:::-;;;;;35017:1;35008:5;:10;35004:21;;;35020:5;;35004:21;34753:288;;;35062:6;35055:13;;;;;34371:716;;;:::o;44575:128::-;44640:4;44693:1;44664:31;;:17;44673:7;44664:8;:17::i;:::-;:31;;;;44657:38;;44575:128;;;:::o;53256:410::-;53446:1;53434:9;:13;53430:229;;;53484:1;53468:18;;:4;:18;;;53464:87;;53526:9;53507;:15;53517:4;53507:15;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;53464:87;53583:1;53569:16;;:2;:16;;;53565:83;;53623:9;53606;:13;53616:2;53606:13;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;53565:83;53430:229;53256:410;;;;:::o;54388:158::-;;;;;:::o;51671:853::-;51825:4;51846:15;:2;:13;;;:15::i;:::-;51842:675;;;51898:2;51882:36;;;51919:12;:10;:12::i;:::-;51933:4;51939:7;51948:4;51882:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;51878:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52140:1;52123:6;:13;:18;52119:328;;;52166:60;;;;;;;;;;:::i;:::-;;;;;;;;52119:328;52397:6;52391:13;52382:6;52378:2;52374:15;52367:38;51878:584;52014:41;;;52004:51;;;:6;:51;;;;51997:58;;;;;51842:675;52501:4;52494:11;;51671:853;;;;;;;:::o;31231:922::-;31284:7;31304:14;31321:1;31304:18;;31371:6;31362:5;:15;31358:102;;31407:6;31398:15;;;;;;:::i;:::-;;;;;31442:2;31432:12;;;;31358:102;31487:6;31478:5;:15;31474:102;;31523:6;31514:15;;;;;;:::i;:::-;;;;;31558:2;31548:12;;;;31474:102;31603:6;31594:5;:15;31590:102;;31639:6;31630:15;;;;;;:::i;:::-;;;;;31674:2;31664:12;;;;31590:102;31719:5;31710;:14;31706:99;;31754:5;31745:14;;;;;;:::i;:::-;;;;;31788:1;31778:11;;;;31706:99;31832:5;31823;:14;31819:99;;31867:5;31858:14;;;;;;:::i;:::-;;;;;31901:1;31891:11;;;;31819:99;31945:5;31936;:14;31932:99;;31980:5;31971:14;;;;;;:::i;:::-;;;;;32014:1;32004:11;;;;31932:99;32058:5;32049;:14;32045:66;;32094:1;32084:11;;;;32045:66;32139:6;32132:13;;;31231:922;;;:::o;12857:326::-;12917:4;13174:1;13152:7;:19;;;:23;13145:30;;12857:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8845:366::-;8987:3;9008:67;9072:2;9067:3;9008:67;:::i;:::-;9001:74;;9084:93;9173:3;9084:93;:::i;:::-;9202:2;9197:3;9193:12;9186:19;;8845:366;;;:::o;9217:::-;9359:3;9380:67;9444:2;9439:3;9380:67;:::i;:::-;9373:74;;9456:93;9545:3;9456:93;:::i;:::-;9574:2;9569:3;9565:12;9558:19;;9217:366;;;:::o;9589:::-;9731:3;9752:67;9816:2;9811:3;9752:67;:::i;:::-;9745:74;;9828:93;9917:3;9828:93;:::i;:::-;9946:2;9941:3;9937:12;9930:19;;9589:366;;;:::o;9961:::-;10103:3;10124:67;10188:2;10183:3;10124:67;:::i;:::-;10117:74;;10200:93;10289:3;10200:93;:::i;:::-;10318:2;10313:3;10309:12;10302:19;;9961:366;;;:::o;10333:::-;10475:3;10496:67;10560:2;10555:3;10496:67;:::i;:::-;10489:74;;10572:93;10661:3;10572:93;:::i;:::-;10690:2;10685:3;10681:12;10674:19;;10333:366;;;:::o;10705:::-;10847:3;10868:67;10932:2;10927:3;10868:67;:::i;:::-;10861:74;;10944:93;11033:3;10944:93;:::i;:::-;11062:2;11057:3;11053:12;11046:19;;10705:366;;;:::o;11077:::-;11219:3;11240:67;11304:2;11299:3;11240:67;:::i;:::-;11233:74;;11316:93;11405:3;11316:93;:::i;:::-;11434:2;11429:3;11425:12;11418:19;;11077:366;;;:::o;11449:::-;11591:3;11612:67;11676:2;11671:3;11612:67;:::i;:::-;11605:74;;11688:93;11777:3;11688:93;:::i;:::-;11806:2;11801:3;11797:12;11790:19;;11449:366;;;:::o;11821:::-;11963:3;11984:67;12048:2;12043:3;11984:67;:::i;:::-;11977:74;;12060:93;12149:3;12060:93;:::i;:::-;12178:2;12173:3;12169:12;12162:19;;11821:366;;;:::o;12193:::-;12335:3;12356:67;12420:2;12415:3;12356:67;:::i;:::-;12349:74;;12432:93;12521:3;12432:93;:::i;:::-;12550:2;12545:3;12541:12;12534:19;;12193:366;;;:::o;12565:::-;12707:3;12728:67;12792:2;12787:3;12728:67;:::i;:::-;12721:74;;12804:93;12893:3;12804:93;:::i;:::-;12922:2;12917:3;12913:12;12906:19;;12565:366;;;:::o;12937:::-;13079:3;13100:67;13164:2;13159:3;13100:67;:::i;:::-;13093:74;;13176:93;13265:3;13176:93;:::i;:::-;13294:2;13289:3;13285:12;13278:19;;12937:366;;;:::o;13309:::-;13451:3;13472:67;13536:2;13531:3;13472:67;:::i;:::-;13465:74;;13548:93;13637:3;13548:93;:::i;:::-;13666:2;13661:3;13657:12;13650:19;;13309:366;;;:::o;13681:::-;13823:3;13844:67;13908:2;13903:3;13844:67;:::i;:::-;13837:74;;13920:93;14009:3;13920:93;:::i;:::-;14038:2;14033:3;14029:12;14022:19;;13681:366;;;:::o;14053:::-;14195:3;14216:67;14280:2;14275:3;14216:67;:::i;:::-;14209:74;;14292:93;14381:3;14292:93;:::i;:::-;14410:2;14405:3;14401:12;14394:19;;14053:366;;;:::o;14425:::-;14567:3;14588:67;14652:2;14647:3;14588:67;:::i;:::-;14581:74;;14664:93;14753:3;14664:93;:::i;:::-;14782:2;14777:3;14773:12;14766:19;;14425:366;;;:::o;14797:::-;14939:3;14960:67;15024:2;15019:3;14960:67;:::i;:::-;14953:74;;15036:93;15125:3;15036:93;:::i;:::-;15154:2;15149:3;15145:12;15138:19;;14797:366;;;:::o;15169:::-;15311:3;15332:67;15396:2;15391:3;15332:67;:::i;:::-;15325:74;;15408:93;15497:3;15408:93;:::i;:::-;15526:2;15521:3;15517:12;15510:19;;15169:366;;;:::o;15541:::-;15683:3;15704:67;15768:2;15763:3;15704:67;:::i;:::-;15697:74;;15780:93;15869:3;15780:93;:::i;:::-;15898:2;15893:3;15889:12;15882:19;;15541:366;;;:::o;15913:118::-;16000:24;16018:5;16000:24;:::i;:::-;15995:3;15988:37;15913:118;;:::o;16037:435::-;16217:3;16239:95;16330:3;16321:6;16239:95;:::i;:::-;16232:102;;16351:95;16442:3;16433:6;16351:95;:::i;:::-;16344:102;;16463:3;16456:10;;16037:435;;;;;:::o;16478:222::-;16571:4;16609:2;16598:9;16594:18;16586:26;;16622:71;16690:1;16679:9;16675:17;16666:6;16622:71;:::i;:::-;16478:222;;;;:::o;16706:640::-;16901:4;16939:3;16928:9;16924:19;16916:27;;16953:71;17021:1;17010:9;17006:17;16997:6;16953:71;:::i;:::-;17034:72;17102:2;17091:9;17087:18;17078:6;17034:72;:::i;:::-;17116;17184:2;17173:9;17169:18;17160:6;17116:72;:::i;:::-;17235:9;17229:4;17225:20;17220:2;17209:9;17205:18;17198:48;17263:76;17334:4;17325:6;17263:76;:::i;:::-;17255:84;;16706:640;;;;;;;:::o;17352:210::-;17439:4;17477:2;17466:9;17462:18;17454:26;;17490:65;17552:1;17541:9;17537:17;17528:6;17490:65;:::i;:::-;17352:210;;;;:::o;17568:313::-;17681:4;17719:2;17708:9;17704:18;17696:26;;17768:9;17762:4;17758:20;17754:1;17743:9;17739:17;17732:47;17796:78;17869:4;17860:6;17796:78;:::i;:::-;17788:86;;17568:313;;;;:::o;17887:419::-;18053:4;18091:2;18080:9;18076:18;18068:26;;18140:9;18134:4;18130:20;18126:1;18115:9;18111:17;18104:47;18168:131;18294:4;18168:131;:::i;:::-;18160:139;;17887:419;;;:::o;18312:::-;18478:4;18516:2;18505:9;18501:18;18493:26;;18565:9;18559:4;18555:20;18551:1;18540:9;18536:17;18529:47;18593:131;18719:4;18593:131;:::i;:::-;18585:139;;18312:419;;;:::o;18737:::-;18903:4;18941:2;18930:9;18926:18;18918:26;;18990:9;18984:4;18980:20;18976:1;18965:9;18961:17;18954:47;19018:131;19144:4;19018:131;:::i;:::-;19010:139;;18737:419;;;:::o;19162:::-;19328:4;19366:2;19355:9;19351:18;19343:26;;19415:9;19409:4;19405:20;19401:1;19390:9;19386:17;19379:47;19443:131;19569:4;19443:131;:::i;:::-;19435:139;;19162:419;;;:::o;19587:::-;19753:4;19791:2;19780:9;19776:18;19768:26;;19840:9;19834:4;19830:20;19826:1;19815:9;19811:17;19804:47;19868:131;19994:4;19868:131;:::i;:::-;19860:139;;19587:419;;;:::o;20012:::-;20178:4;20216:2;20205:9;20201:18;20193:26;;20265:9;20259:4;20255:20;20251:1;20240:9;20236:17;20229:47;20293:131;20419:4;20293:131;:::i;:::-;20285:139;;20012:419;;;:::o;20437:::-;20603:4;20641:2;20630:9;20626:18;20618:26;;20690:9;20684:4;20680:20;20676:1;20665:9;20661:17;20654:47;20718:131;20844:4;20718:131;:::i;:::-;20710:139;;20437:419;;;:::o;20862:::-;21028:4;21066:2;21055:9;21051:18;21043:26;;21115:9;21109:4;21105:20;21101:1;21090:9;21086:17;21079:47;21143:131;21269:4;21143:131;:::i;:::-;21135:139;;20862:419;;;:::o;21287:::-;21453:4;21491:2;21480:9;21476:18;21468:26;;21540:9;21534:4;21530:20;21526:1;21515:9;21511:17;21504:47;21568:131;21694:4;21568:131;:::i;:::-;21560:139;;21287:419;;;:::o;21712:::-;21878:4;21916:2;21905:9;21901:18;21893:26;;21965:9;21959:4;21955:20;21951:1;21940:9;21936:17;21929:47;21993:131;22119:4;21993:131;:::i;:::-;21985:139;;21712:419;;;:::o;22137:::-;22303:4;22341:2;22330:9;22326:18;22318:26;;22390:9;22384:4;22380:20;22376:1;22365:9;22361:17;22354:47;22418:131;22544:4;22418:131;:::i;:::-;22410:139;;22137:419;;;:::o;22562:::-;22728:4;22766:2;22755:9;22751:18;22743:26;;22815:9;22809:4;22805:20;22801:1;22790:9;22786:17;22779:47;22843:131;22969:4;22843:131;:::i;:::-;22835:139;;22562:419;;;:::o;22987:::-;23153:4;23191:2;23180:9;23176:18;23168:26;;23240:9;23234:4;23230:20;23226:1;23215:9;23211:17;23204:47;23268:131;23394:4;23268:131;:::i;:::-;23260:139;;22987:419;;;:::o;23412:::-;23578:4;23616:2;23605:9;23601:18;23593:26;;23665:9;23659:4;23655:20;23651:1;23640:9;23636:17;23629:47;23693:131;23819:4;23693:131;:::i;:::-;23685:139;;23412:419;;;:::o;23837:::-;24003:4;24041:2;24030:9;24026:18;24018:26;;24090:9;24084:4;24080:20;24076:1;24065:9;24061:17;24054:47;24118:131;24244:4;24118:131;:::i;:::-;24110:139;;23837:419;;;:::o;24262:::-;24428:4;24466:2;24455:9;24451:18;24443:26;;24515:9;24509:4;24505:20;24501:1;24490:9;24486:17;24479:47;24543:131;24669:4;24543:131;:::i;:::-;24535:139;;24262:419;;;:::o;24687:::-;24853:4;24891:2;24880:9;24876:18;24868:26;;24940:9;24934:4;24930:20;24926:1;24915:9;24911:17;24904:47;24968:131;25094:4;24968:131;:::i;:::-;24960:139;;24687:419;;;:::o;25112:::-;25278:4;25316:2;25305:9;25301:18;25293:26;;25365:9;25359:4;25355:20;25351:1;25340:9;25336:17;25329:47;25393:131;25519:4;25393:131;:::i;:::-;25385:139;;25112:419;;;:::o;25537:::-;25703:4;25741:2;25730:9;25726:18;25718:26;;25790:9;25784:4;25780:20;25776:1;25765:9;25761:17;25754:47;25818:131;25944:4;25818:131;:::i;:::-;25810:139;;25537:419;;;:::o;25962:222::-;26055:4;26093:2;26082:9;26078:18;26070:26;;26106:71;26174:1;26163:9;26159:17;26150:6;26106:71;:::i;:::-;25962:222;;;;:::o;26190:129::-;26224:6;26251:20;;:::i;:::-;26241:30;;26280:33;26308:4;26300:6;26280:33;:::i;:::-;26190:129;;;:::o;26325:75::-;26358:6;26391:2;26385:9;26375:19;;26325:75;:::o;26406:307::-;26467:4;26557:18;26549:6;26546:30;26543:56;;;26579:18;;:::i;:::-;26543:56;26617:29;26639:6;26617:29;:::i;:::-;26609:37;;26701:4;26695;26691:15;26683:23;;26406:307;;;:::o;26719:308::-;26781:4;26871:18;26863:6;26860:30;26857:56;;;26893:18;;:::i;:::-;26857:56;26931:29;26953:6;26931:29;:::i;:::-;26923:37;;27015:4;27009;27005:15;26997:23;;26719:308;;;:::o;27033:98::-;27084:6;27118:5;27112:12;27102:22;;27033:98;;;:::o;27137:99::-;27189:6;27223:5;27217:12;27207:22;;27137:99;;;:::o;27242:168::-;27325:11;27359:6;27354:3;27347:19;27399:4;27394:3;27390:14;27375:29;;27242:168;;;;:::o;27416:169::-;27500:11;27534:6;27529:3;27522:19;27574:4;27569:3;27565:14;27550:29;;27416:169;;;;:::o;27591:148::-;27693:11;27730:3;27715:18;;27591:148;;;;:::o;27745:305::-;27785:3;27804:20;27822:1;27804:20;:::i;:::-;27799:25;;27838:20;27856:1;27838:20;:::i;:::-;27833:25;;27992:1;27924:66;27920:74;27917:1;27914:81;27911:107;;;27998:18;;:::i;:::-;27911:107;28042:1;28039;28035:9;28028:16;;27745:305;;;;:::o;28056:348::-;28096:7;28119:20;28137:1;28119:20;:::i;:::-;28114:25;;28153:20;28171:1;28153:20;:::i;:::-;28148:25;;28341:1;28273:66;28269:74;28266:1;28263:81;28258:1;28251:9;28244:17;28240:105;28237:131;;;28348:18;;:::i;:::-;28237:131;28396:1;28393;28389:9;28378:20;;28056:348;;;;:::o;28410:191::-;28450:4;28470:20;28488:1;28470:20;:::i;:::-;28465:25;;28504:20;28522:1;28504:20;:::i;:::-;28499:25;;28543:1;28540;28537:8;28534:34;;;28548:18;;:::i;:::-;28534:34;28593:1;28590;28586:9;28578:17;;28410:191;;;;:::o;28607:96::-;28644:7;28673:24;28691:5;28673:24;:::i;:::-;28662:35;;28607:96;;;:::o;28709:90::-;28743:7;28786:5;28779:13;28772:21;28761:32;;28709:90;;;:::o;28805:149::-;28841:7;28881:66;28874:5;28870:78;28859:89;;28805:149;;;:::o;28960:126::-;28997:7;29037:42;29030:5;29026:54;29015:65;;28960:126;;;:::o;29092:77::-;29129:7;29158:5;29147:16;;29092:77;;;:::o;29175:154::-;29259:6;29254:3;29249;29236:30;29321:1;29312:6;29307:3;29303:16;29296:27;29175:154;;;:::o;29335:307::-;29403:1;29413:113;29427:6;29424:1;29421:13;29413:113;;;29512:1;29507:3;29503:11;29497:18;29493:1;29488:3;29484:11;29477:39;29449:2;29446:1;29442:10;29437:15;;29413:113;;;29544:6;29541:1;29538:13;29535:101;;;29624:1;29615:6;29610:3;29606:16;29599:27;29535:101;29384:258;29335:307;;;:::o;29648:320::-;29692:6;29729:1;29723:4;29719:12;29709:22;;29776:1;29770:4;29766:12;29797:18;29787:81;;29853:4;29845:6;29841:17;29831:27;;29787:81;29915:2;29907:6;29904:14;29884:18;29881:38;29878:84;;;29934:18;;:::i;:::-;29878:84;29699:269;29648:320;;;:::o;29974:281::-;30057:27;30079:4;30057:27;:::i;:::-;30049:6;30045:40;30187:6;30175:10;30172:22;30151:18;30139:10;30136:34;30133:62;30130:88;;;30198:18;;:::i;:::-;30130:88;30238:10;30234:2;30227:22;30017:238;29974:281;;:::o;30261:233::-;30300:3;30323:24;30341:5;30323:24;:::i;:::-;30314:33;;30369:66;30362:5;30359:77;30356:103;;;30439:18;;:::i;:::-;30356:103;30486:1;30479:5;30475:13;30468:20;;30261:233;;;:::o;30500:180::-;30548:77;30545:1;30538:88;30645:4;30642:1;30635:15;30669:4;30666:1;30659:15;30686:180;30734:77;30731:1;30724:88;30831:4;30828:1;30821:15;30855:4;30852:1;30845:15;30872:180;30920:77;30917:1;30910:88;31017:4;31014:1;31007:15;31041:4;31038:1;31031:15;31058:180;31106:77;31103:1;31096:88;31203:4;31200:1;31193:15;31227:4;31224:1;31217:15;31244:117;31353:1;31350;31343:12;31367:117;31476:1;31473;31466:12;31490:117;31599:1;31596;31589:12;31613:117;31722:1;31719;31712:12;31736:102;31777:6;31828:2;31824:7;31819:2;31812:5;31808:14;31804:28;31794:38;;31736:102;;;:::o;31844:163::-;31984:15;31980:1;31972:6;31968:14;31961:39;31844:163;:::o;32013:232::-;32153:34;32149:1;32141:6;32137:14;32130:58;32222:15;32217:2;32209:6;32205:15;32198:40;32013:232;:::o;32251:237::-;32391:34;32387:1;32379:6;32375:14;32368:58;32460:20;32455:2;32447:6;32443:15;32436:45;32251:237;:::o;32494:223::-;32634:34;32630:1;32622:6;32618:14;32611:58;32703:6;32698:2;32690:6;32686:15;32679:31;32494:223;:::o;32723:225::-;32863:34;32859:1;32851:6;32847:14;32840:58;32932:8;32927:2;32919:6;32915:15;32908:33;32723:225;:::o;32954:224::-;33094:34;33090:1;33082:6;33078:14;33071:58;33163:7;33158:2;33150:6;33146:15;33139:32;32954:224;:::o;33184:178::-;33324:30;33320:1;33312:6;33308:14;33301:54;33184:178;:::o;33368:223::-;33508:34;33504:1;33496:6;33492:14;33485:58;33577:6;33572:2;33564:6;33560:15;33553:31;33368:223;:::o;33597:175::-;33737:27;33733:1;33725:6;33721:14;33714:51;33597:175;:::o;33778:228::-;33918:34;33914:1;33906:6;33902:14;33895:58;33987:11;33982:2;33974:6;33970:15;33963:36;33778:228;:::o;34012:171::-;34152:23;34148:1;34140:6;34136:14;34129:47;34012:171;:::o;34189:182::-;34329:34;34325:1;34317:6;34313:14;34306:58;34189:182;:::o;34377:::-;34517:34;34513:1;34505:6;34501:14;34494:58;34377:182;:::o;34565:166::-;34705:18;34701:1;34693:6;34689:14;34682:42;34565:166;:::o;34737:174::-;34877:26;34873:1;34865:6;34861:14;34854:50;34737:174;:::o;34917:173::-;35057:25;35053:1;35045:6;35041:14;35034:49;34917:173;:::o;35096:220::-;35236:34;35232:1;35224:6;35220:14;35213:58;35305:3;35300:2;35292:6;35288:15;35281:28;35096:220;:::o;35322:248::-;35462:34;35458:1;35450:6;35446:14;35439:58;35531:31;35526:2;35518:6;35514:15;35507:56;35322:248;:::o;35576:161::-;35716:13;35712:1;35704:6;35700:14;35693:37;35576:161;:::o;35743:122::-;35816:24;35834:5;35816:24;:::i;:::-;35809:5;35806:35;35796:63;;35855:1;35852;35845:12;35796:63;35743:122;:::o;35871:116::-;35941:21;35956:5;35941:21;:::i;:::-;35934:5;35931:32;35921:60;;35977:1;35974;35967:12;35921:60;35871:116;:::o;35993:120::-;36065:23;36082:5;36065:23;:::i;:::-;36058:5;36055:34;36045:62;;36103:1;36100;36093:12;36045:62;35993:120;:::o;36119:122::-;36192:24;36210:5;36192:24;:::i;:::-;36185:5;36182:35;36172:63;;36231:1;36228;36221:12;36172:63;36119:122;:::o

Swarm Source

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