ETH Price: $3,067.06 (-6.84%)
Gas: 9 Gwei

Token

whobuyingthislol (wbtl)
 

Overview

Max Total Supply

1,000 wbtl

Holders

874

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 wbtl
0x19d0d6b69bb9a89897fe577457ddb87fb7e423e8
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:
wbtl

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-07-09
*/

// SPDX-License-Identifier: MIT

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


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @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] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.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 functionCall(target, data, "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");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(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) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(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) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason 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 {
            // 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;



/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}


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


// OpenZeppelin Contracts v4.4.1 (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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (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`, 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 be 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: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * 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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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 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);

    /**
     * @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;
}

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/TwistedToonz.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert("ERC721A: unable to get token of owner by index");
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), "ERC721A: balance query for the zero address");
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), "ERC721A: number minted query for the zero address");
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "ipfs://QmVX8ML8xqd3ixFok8DX6ozkje1ekZC42XtFNsWXfUkhXP/";

    }

    /**
     * @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 overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721A: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), "ERC721A: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), "ERC721A: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 {
        _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 override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        require(quantity != 0, "ERC721A: quantity must be greater than 0");

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        "ERC721A: transfer to non ERC721Receiver implementer"
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved");

        require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner");
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721A: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

contract wbtl is ERC721A, Ownable, ReentrancyGuard {

  string public baseURI = "";
  uint public maxSupply = 1000;
  uint public maxPerWallet = 1;
  bool public activated = false;
  constructor() ERC721A("whobuyingthislol", "wbtl"){}

  function mint(uint256 amount) external payable
  {
    require(activated, "contract not activated yet");
    require(amount>0, "Amount has to be greater than 1");
    require(msg.sender == tx.origin, "Smart Contracts can't mint");
    require(totalSupply() + amount <= maxSupply,"Sold out");
    require(numberMinted(msg.sender) + amount <= maxPerWallet, "1 per wallet");

    _safeMint(msg.sender, amount);
  }

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

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

  function activateMint() external onlyOwner {
    _safeMint(msg.sender,100);
    activated = true;
  }

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

  function withdraw() external onlyOwner nonReentrant {
    (bool wallet, ) = payable(msg.sender).call{value: address(this).balance}("");
    require(wallet, "Failed");

  }

}

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":[],"name":"activateMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"activated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600990805190602001906200002b929190620001fc565b506103e8600a556001600b556000600c60006101000a81548160ff0219169083151502179055503480156200005f57600080fd5b506040518060400160405280601081526020017f77686f627579696e67746869736c6f6c000000000000000000000000000000008152506040518060400160405280600481526020017f7762746c000000000000000000000000000000000000000000000000000000008152508160019080519060200190620000e4929190620001fc565b508060029080519060200190620000fd929190620001fc565b50505062000120620001146200012e60201b60201c565b6200013660201b60201c565b600160088190555062000311565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020a90620002ac565b90600052602060002090601f0160209004810192826200022e57600085556200027a565b82601f106200024957805160ff19168380011785556200027a565b828001600101855582156200027a579182015b82811115620002795782518255916020019190600101906200025c565b5b5090506200028991906200028d565b5090565b5b80821115620002a85760008160009055506001016200028e565b5090565b60006002820490506001821680620002c557607f821691505b60208210811415620002dc57620002db620002e2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6142d680620003216000396000f3fe6080604052600436106101b75760003560e01c80636c0360eb116100ec578063b88d4fde1161008a578063d5abeb0111610064578063d5abeb01146105eb578063dc33e68114610616578063e985e9c514610653578063f2fde38b14610690576101b7565b8063b88d4fde1461056e578063c87b56dd14610597578063c91c0462146105d4576101b7565b80638da5cb5b116100c65780638da5cb5b146104d357806395d89b41146104fe578063a0712d6814610529578063a22cb46514610545576101b7565b80636c0360eb1461045457806370a082311461047f578063715018a6146104bc576101b7565b80632f745c5911610159578063453c231011610133578063453c2310146103865780634f6ccce7146103b157806355f804b3146103ee5780636352211e14610417576101b7565b80632f745c59146103095780633ccfd60b1461034657806342842e0e1461035d576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a578063186601ca146102b557806323b872dd146102e0576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612d30565b6106b9565b6040516101f09190613348565b60405180910390f35b34801561020557600080fd5b5061020e610803565b60405161021b9190613363565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612dd7565b610895565b60405161025891906132e1565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612cf0565b61091a565b005b34801561029657600080fd5b5061029f610a33565b6040516102ac91906136e5565b60405180910390f35b3480156102c157600080fd5b506102ca610a3c565b6040516102d79190613348565b60405180910390f35b3480156102ec57600080fd5b5061030760048036038101906103029190612bda565b610a4f565b005b34801561031557600080fd5b50610330600480360381019061032b9190612cf0565b610a5f565b60405161033d91906136e5565b60405180910390f35b34801561035257600080fd5b5061035b610c51565b005b34801561036957600080fd5b50610384600480360381019061037f9190612bda565b610dd2565b005b34801561039257600080fd5b5061039b610df2565b6040516103a891906136e5565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190612dd7565b610df8565b6040516103e591906136e5565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190612d8a565b610e4b565b005b34801561042357600080fd5b5061043e60048036038101906104399190612dd7565b610edd565b60405161044b91906132e1565b60405180910390f35b34801561046057600080fd5b50610469610ef3565b6040516104769190613363565b60405180910390f35b34801561048b57600080fd5b506104a660048036038101906104a19190612b6d565b610f81565b6040516104b391906136e5565b60405180910390f35b3480156104c857600080fd5b506104d161106a565b005b3480156104df57600080fd5b506104e86110f2565b6040516104f591906132e1565b60405180910390f35b34801561050a57600080fd5b5061051361111c565b6040516105209190613363565b60405180910390f35b610543600480360381019061053e9190612dd7565b6111ae565b005b34801561055157600080fd5b5061056c60048036038101906105679190612cb0565b61136a565b005b34801561057a57600080fd5b5061059560048036038101906105909190612c2d565b6114eb565b005b3480156105a357600080fd5b506105be60048036038101906105b99190612dd7565b611547565b6040516105cb9190613363565b60405180910390f35b3480156105e057600080fd5b506105e96115f8565b005b3480156105f757600080fd5b5061060061169c565b60405161060d91906136e5565b60405180910390f35b34801561062257600080fd5b5061063d60048036038101906106389190612b6d565b6116a2565b60405161064a91906136e5565b60405180910390f35b34801561065f57600080fd5b5061067a60048036038101906106759190612b9a565b6116b4565b6040516106879190613348565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b29190612b6d565b611748565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107ec57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107fc57506107fb82611840565b5b9050919050565b60606001805461081290613915565b80601f016020809104026020016040519081016040528092919081815260200182805461083e90613915565b801561088b5780601f106108605761010080835404028352916020019161088b565b820191906000526020600020905b81548152906001019060200180831161086e57829003601f168201915b5050505050905090565b60006108a0826118aa565b6108df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d6906136a5565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092582610edd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098d90613585565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109b56118b7565b73ffffffffffffffffffffffffffffffffffffffff1614806109e457506109e3816109de6118b7565b6116b4565b5b610a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1a90613485565b60405180910390fd5b610a2e8383836118bf565b505050565b60008054905090565b600c60009054906101000a900460ff1681565b610a5a838383611971565b505050565b6000610a6a83610f81565b8210610aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa290613385565b60405180910390fd5b6000610ab5610a33565b905060008060005b83811015610c0f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610baf57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c015786841415610bf8578195505050505050610c4b565b83806001019450505b508080600101915050610abd565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4290613625565b60405180910390fd5b92915050565b610c596118b7565b73ffffffffffffffffffffffffffffffffffffffff16610c776110f2565b73ffffffffffffffffffffffffffffffffffffffff1614610ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc490613505565b60405180910390fd5b60026008541415610d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a90613645565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610d41906132cc565b60006040518083038185875af1925050503d8060008114610d7e576040519150601f19603f3d011682016040523d82523d6000602084013e610d83565b606091505b5050905080610dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbe906133e5565b60405180910390fd5b506001600881905550565b610ded838383604051806020016040528060008152506114eb565b505050565b600b5481565b6000610e02610a33565b8210610e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3a90613405565b60405180910390fd5b819050919050565b610e536118b7565b73ffffffffffffffffffffffffffffffffffffffff16610e716110f2565b73ffffffffffffffffffffffffffffffffffffffff1614610ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebe90613505565b60405180910390fd5b818160099190610ed8929190612961565b505050565b6000610ee882611eb1565b600001519050919050565b60098054610f0090613915565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2c90613915565b8015610f795780601f10610f4e57610100808354040283529160200191610f79565b820191906000526020600020905b815481529060010190602001808311610f5c57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ff2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe9906134c5565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6110726118b7565b73ffffffffffffffffffffffffffffffffffffffff166110906110f2565b73ffffffffffffffffffffffffffffffffffffffff16146110e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dd90613505565b60405180910390fd5b6110f0600061204b565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461112b90613915565b80601f016020809104026020016040519081016040528092919081815260200182805461115790613915565b80156111a45780601f10611179576101008083540402835291602001916111a4565b820191906000526020600020905b81548152906001019060200180831161118757829003601f168201915b5050505050905090565b600c60009054906101000a900460ff166111fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f490613685565b60405180910390fd5b60008111611240576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611237906134a5565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a5906136c5565b60405180910390fd5b600a54816112ba610a33565b6112c491906137a4565b1115611305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fc906135a5565b60405180910390fd5b600b5481611312336116a2565b61131c91906137a4565b111561135d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135490613465565b60405180910390fd5b6113673382612111565b50565b6113726118b7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d790613545565b60405180910390fd5b80600660006113ed6118b7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661149a6118b7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114df9190613348565b60405180910390a35050565b6114f6848484611971565b6115028484848461212f565b611541576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611538906135c5565b60405180910390fd5b50505050565b6060611552826118aa565b611591576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158890613525565b60405180910390fd5b600061159b6122c6565b90506000815114156115c55760405180606001604052806036815260200161426b603691396115f0565b806115cf84612358565b6040516020016115e09291906132a8565b6040516020818303038152906040525b915050919050565b6116006118b7565b73ffffffffffffffffffffffffffffffffffffffff1661161e6110f2565b73ffffffffffffffffffffffffffffffffffffffff1614611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b90613505565b60405180910390fd5b61167f336064612111565b6001600c60006101000a81548160ff021916908315150217905550565b600a5481565b60006116ad826124b9565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117506118b7565b73ffffffffffffffffffffffffffffffffffffffff1661176e6110f2565b73ffffffffffffffffffffffffffffffffffffffff16146117c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bb90613505565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b906133a5565b60405180910390fd5b61183d8161204b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061197c82611eb1565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166119a36118b7565b73ffffffffffffffffffffffffffffffffffffffff1614806119ff57506119c86118b7565b73ffffffffffffffffffffffffffffffffffffffff166119e784610895565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a1b5750611a1a8260000151611a156118b7565b6116b4565b5b905080611a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5490613565565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac6906134e5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3690613425565b60405180910390fd5b611b4c85858560016125a2565b611b5c60008484600001516118bf565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611e4157611da0816118aa565b15611e405782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611eaa85858560016125a8565b5050505050565b611eb96129e7565b611ec2826118aa565b611f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef8906133c5565b60405180910390fd5b60008290505b6000811061200a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ffb578092505050612046565b50808060019003915050611f07565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203d90613665565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61212b8282604051806020016040528060008152506125ae565b5050565b60006121508473ffffffffffffffffffffffffffffffffffffffff166125c0565b156122b9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121796118b7565b8786866040518563ffffffff1660e01b815260040161219b94939291906132fc565b602060405180830381600087803b1580156121b557600080fd5b505af19250505080156121e657506040513d601f19601f820116820180604052508101906121e39190612d5d565b60015b612269573d8060008114612216576040519150601f19603f3d011682016040523d82523d6000602084013e61221b565b606091505b50600081511415612261576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612258906135c5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122be565b600190505b949350505050565b6060600980546122d590613915565b80601f016020809104026020016040519081016040528092919081815260200182805461230190613915565b801561234e5780601f106123235761010080835404028352916020019161234e565b820191906000526020600020905b81548152906001019060200180831161233157829003601f168201915b5050505050905090565b606060008214156123a0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124b4565b600082905060005b600082146123d25780806123bb90613978565b915050600a826123cb91906137fa565b91506123a8565b60008167ffffffffffffffff8111156123ee576123ed613aae565b5b6040519080825280601f01601f1916602001820160405280156124205781602001600182028036833780820191505090505b5090505b600085146124ad57600182612439919061382b565b9150600a8561244891906139c1565b603061245491906137a4565b60f81b81838151811061246a57612469613a7f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124a691906137fa565b9450612424565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561252a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252190613445565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b6125bb83838360016125e3565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612659576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612650906135e5565b60405180910390fd5b600084141561269d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269490613605565b60405180910390fd5b6126aa60008683876125a2565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561294457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561292f576128ef600088848861212f565b61292e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612925906135c5565b60405180910390fd5b5b81806001019250508080600101915050612878565b50806000819055505061295a60008683876125a8565b5050505050565b82805461296d90613915565b90600052602060002090601f01602090048101928261298f57600085556129d6565b82601f106129a857803560ff19168380011785556129d6565b828001600101855582156129d6579182015b828111156129d55782358255916020019190600101906129ba565b5b5090506129e39190612a21565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612a3a576000816000905550600101612a22565b5090565b6000612a51612a4c84613725565b613700565b905082815260208101848484011115612a6d57612a6c613aec565b5b612a788482856138d3565b509392505050565b600081359050612a8f8161420e565b92915050565b600081359050612aa481614225565b92915050565b600081359050612ab98161423c565b92915050565b600081519050612ace8161423c565b92915050565b600082601f830112612ae957612ae8613ae2565b5b8135612af9848260208601612a3e565b91505092915050565b60008083601f840112612b1857612b17613ae2565b5b8235905067ffffffffffffffff811115612b3557612b34613add565b5b602083019150836001820283011115612b5157612b50613ae7565b5b9250929050565b600081359050612b6781614253565b92915050565b600060208284031215612b8357612b82613af6565b5b6000612b9184828501612a80565b91505092915050565b60008060408385031215612bb157612bb0613af6565b5b6000612bbf85828601612a80565b9250506020612bd085828601612a80565b9150509250929050565b600080600060608486031215612bf357612bf2613af6565b5b6000612c0186828701612a80565b9350506020612c1286828701612a80565b9250506040612c2386828701612b58565b9150509250925092565b60008060008060808587031215612c4757612c46613af6565b5b6000612c5587828801612a80565b9450506020612c6687828801612a80565b9350506040612c7787828801612b58565b925050606085013567ffffffffffffffff811115612c9857612c97613af1565b5b612ca487828801612ad4565b91505092959194509250565b60008060408385031215612cc757612cc6613af6565b5b6000612cd585828601612a80565b9250506020612ce685828601612a95565b9150509250929050565b60008060408385031215612d0757612d06613af6565b5b6000612d1585828601612a80565b9250506020612d2685828601612b58565b9150509250929050565b600060208284031215612d4657612d45613af6565b5b6000612d5484828501612aaa565b91505092915050565b600060208284031215612d7357612d72613af6565b5b6000612d8184828501612abf565b91505092915050565b60008060208385031215612da157612da0613af6565b5b600083013567ffffffffffffffff811115612dbf57612dbe613af1565b5b612dcb85828601612b02565b92509250509250929050565b600060208284031215612ded57612dec613af6565b5b6000612dfb84828501612b58565b91505092915050565b612e0d8161385f565b82525050565b612e1c81613871565b82525050565b6000612e2d82613756565b612e37818561376c565b9350612e478185602086016138e2565b612e5081613afb565b840191505092915050565b6000612e6682613761565b612e708185613788565b9350612e808185602086016138e2565b612e8981613afb565b840191505092915050565b6000612e9f82613761565b612ea98185613799565b9350612eb98185602086016138e2565b80840191505092915050565b6000612ed2602283613788565b9150612edd82613b0c565b604082019050919050565b6000612ef5602683613788565b9150612f0082613b5b565b604082019050919050565b6000612f18602a83613788565b9150612f2382613baa565b604082019050919050565b6000612f3b600683613788565b9150612f4682613bf9565b602082019050919050565b6000612f5e602383613788565b9150612f6982613c22565b604082019050919050565b6000612f81602583613788565b9150612f8c82613c71565b604082019050919050565b6000612fa4603183613788565b9150612faf82613cc0565b604082019050919050565b6000612fc7600c83613788565b9150612fd282613d0f565b602082019050919050565b6000612fea603983613788565b9150612ff582613d38565b604082019050919050565b600061300d601f83613788565b915061301882613d87565b602082019050919050565b6000613030602b83613788565b915061303b82613db0565b604082019050919050565b6000613053602683613788565b915061305e82613dff565b604082019050919050565b6000613076602083613788565b915061308182613e4e565b602082019050919050565b6000613099602f83613788565b91506130a482613e77565b604082019050919050565b60006130bc601a83613788565b91506130c782613ec6565b602082019050919050565b60006130df603283613788565b91506130ea82613eef565b604082019050919050565b6000613102602283613788565b915061310d82613f3e565b604082019050919050565b600061312560008361377d565b915061313082613f8d565b600082019050919050565b6000613148600883613788565b915061315382613f90565b602082019050919050565b600061316b603383613788565b915061317682613fb9565b604082019050919050565b600061318e602183613788565b915061319982614008565b604082019050919050565b60006131b1602883613788565b91506131bc82614057565b604082019050919050565b60006131d4602e83613788565b91506131df826140a6565b604082019050919050565b60006131f7601f83613788565b9150613202826140f5565b602082019050919050565b600061321a602f83613788565b91506132258261411e565b604082019050919050565b600061323d601a83613788565b91506132488261416d565b602082019050919050565b6000613260602d83613788565b915061326b82614196565b604082019050919050565b6000613283601a83613788565b915061328e826141e5565b602082019050919050565b6132a2816138c9565b82525050565b60006132b48285612e94565b91506132c08284612e94565b91508190509392505050565b60006132d782613118565b9150819050919050565b60006020820190506132f66000830184612e04565b92915050565b60006080820190506133116000830187612e04565b61331e6020830186612e04565b61332b6040830185613299565b818103606083015261333d8184612e22565b905095945050505050565b600060208201905061335d6000830184612e13565b92915050565b6000602082019050818103600083015261337d8184612e5b565b905092915050565b6000602082019050818103600083015261339e81612ec5565b9050919050565b600060208201905081810360008301526133be81612ee8565b9050919050565b600060208201905081810360008301526133de81612f0b565b9050919050565b600060208201905081810360008301526133fe81612f2e565b9050919050565b6000602082019050818103600083015261341e81612f51565b9050919050565b6000602082019050818103600083015261343e81612f74565b9050919050565b6000602082019050818103600083015261345e81612f97565b9050919050565b6000602082019050818103600083015261347e81612fba565b9050919050565b6000602082019050818103600083015261349e81612fdd565b9050919050565b600060208201905081810360008301526134be81613000565b9050919050565b600060208201905081810360008301526134de81613023565b9050919050565b600060208201905081810360008301526134fe81613046565b9050919050565b6000602082019050818103600083015261351e81613069565b9050919050565b6000602082019050818103600083015261353e8161308c565b9050919050565b6000602082019050818103600083015261355e816130af565b9050919050565b6000602082019050818103600083015261357e816130d2565b9050919050565b6000602082019050818103600083015261359e816130f5565b9050919050565b600060208201905081810360008301526135be8161313b565b9050919050565b600060208201905081810360008301526135de8161315e565b9050919050565b600060208201905081810360008301526135fe81613181565b9050919050565b6000602082019050818103600083015261361e816131a4565b9050919050565b6000602082019050818103600083015261363e816131c7565b9050919050565b6000602082019050818103600083015261365e816131ea565b9050919050565b6000602082019050818103600083015261367e8161320d565b9050919050565b6000602082019050818103600083015261369e81613230565b9050919050565b600060208201905081810360008301526136be81613253565b9050919050565b600060208201905081810360008301526136de81613276565b9050919050565b60006020820190506136fa6000830184613299565b92915050565b600061370a61371b565b90506137168282613947565b919050565b6000604051905090565b600067ffffffffffffffff8211156137405761373f613aae565b5b61374982613afb565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006137af826138c9565b91506137ba836138c9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137ef576137ee6139f2565b5b828201905092915050565b6000613805826138c9565b9150613810836138c9565b9250826138205761381f613a21565b5b828204905092915050565b6000613836826138c9565b9150613841836138c9565b925082821015613854576138536139f2565b5b828203905092915050565b600061386a826138a9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156139005780820151818401526020810190506138e5565b8381111561390f576000848401525b50505050565b6000600282049050600182168061392d57607f821691505b6020821081141561394157613940613a50565b5b50919050565b61395082613afb565b810181811067ffffffffffffffff8211171561396f5761396e613aae565b5b80604052505050565b6000613983826138c9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139b6576139b56139f2565b5b600182019050919050565b60006139cc826138c9565b91506139d7836138c9565b9250826139e7576139e6613a21565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4661696c65640000000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f31207065722077616c6c65740000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f416d6f756e742068617320746f2062652067726561746572207468616e203100600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f636f6e7472616374206e6f742061637469766174656420796574000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f536d61727420436f6e7472616374732063616e2774206d696e74000000000000600082015250565b6142178161385f565b811461422257600080fd5b50565b61422e81613871565b811461423957600080fd5b50565b6142458161387d565b811461425057600080fd5b50565b61425c816138c9565b811461426757600080fd5b5056fe697066733a2f2f516d5658384d4c38787164336978466f6b384458366f7a6b6a6531656b5a4334325874464e73575866556b6858502fa2646970667358221220b93002f3cc40c16d893ddf3f16142fa2269be3d5bd8302a7bbe4938b3d26a07c64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80636c0360eb116100ec578063b88d4fde1161008a578063d5abeb0111610064578063d5abeb01146105eb578063dc33e68114610616578063e985e9c514610653578063f2fde38b14610690576101b7565b8063b88d4fde1461056e578063c87b56dd14610597578063c91c0462146105d4576101b7565b80638da5cb5b116100c65780638da5cb5b146104d357806395d89b41146104fe578063a0712d6814610529578063a22cb46514610545576101b7565b80636c0360eb1461045457806370a082311461047f578063715018a6146104bc576101b7565b80632f745c5911610159578063453c231011610133578063453c2310146103865780634f6ccce7146103b157806355f804b3146103ee5780636352211e14610417576101b7565b80632f745c59146103095780633ccfd60b1461034657806342842e0e1461035d576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a578063186601ca146102b557806323b872dd146102e0576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612d30565b6106b9565b6040516101f09190613348565b60405180910390f35b34801561020557600080fd5b5061020e610803565b60405161021b9190613363565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612dd7565b610895565b60405161025891906132e1565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612cf0565b61091a565b005b34801561029657600080fd5b5061029f610a33565b6040516102ac91906136e5565b60405180910390f35b3480156102c157600080fd5b506102ca610a3c565b6040516102d79190613348565b60405180910390f35b3480156102ec57600080fd5b5061030760048036038101906103029190612bda565b610a4f565b005b34801561031557600080fd5b50610330600480360381019061032b9190612cf0565b610a5f565b60405161033d91906136e5565b60405180910390f35b34801561035257600080fd5b5061035b610c51565b005b34801561036957600080fd5b50610384600480360381019061037f9190612bda565b610dd2565b005b34801561039257600080fd5b5061039b610df2565b6040516103a891906136e5565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190612dd7565b610df8565b6040516103e591906136e5565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190612d8a565b610e4b565b005b34801561042357600080fd5b5061043e60048036038101906104399190612dd7565b610edd565b60405161044b91906132e1565b60405180910390f35b34801561046057600080fd5b50610469610ef3565b6040516104769190613363565b60405180910390f35b34801561048b57600080fd5b506104a660048036038101906104a19190612b6d565b610f81565b6040516104b391906136e5565b60405180910390f35b3480156104c857600080fd5b506104d161106a565b005b3480156104df57600080fd5b506104e86110f2565b6040516104f591906132e1565b60405180910390f35b34801561050a57600080fd5b5061051361111c565b6040516105209190613363565b60405180910390f35b610543600480360381019061053e9190612dd7565b6111ae565b005b34801561055157600080fd5b5061056c60048036038101906105679190612cb0565b61136a565b005b34801561057a57600080fd5b5061059560048036038101906105909190612c2d565b6114eb565b005b3480156105a357600080fd5b506105be60048036038101906105b99190612dd7565b611547565b6040516105cb9190613363565b60405180910390f35b3480156105e057600080fd5b506105e96115f8565b005b3480156105f757600080fd5b5061060061169c565b60405161060d91906136e5565b60405180910390f35b34801561062257600080fd5b5061063d60048036038101906106389190612b6d565b6116a2565b60405161064a91906136e5565b60405180910390f35b34801561065f57600080fd5b5061067a60048036038101906106759190612b9a565b6116b4565b6040516106879190613348565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b29190612b6d565b611748565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107ec57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107fc57506107fb82611840565b5b9050919050565b60606001805461081290613915565b80601f016020809104026020016040519081016040528092919081815260200182805461083e90613915565b801561088b5780601f106108605761010080835404028352916020019161088b565b820191906000526020600020905b81548152906001019060200180831161086e57829003601f168201915b5050505050905090565b60006108a0826118aa565b6108df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d6906136a5565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092582610edd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098d90613585565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109b56118b7565b73ffffffffffffffffffffffffffffffffffffffff1614806109e457506109e3816109de6118b7565b6116b4565b5b610a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1a90613485565b60405180910390fd5b610a2e8383836118bf565b505050565b60008054905090565b600c60009054906101000a900460ff1681565b610a5a838383611971565b505050565b6000610a6a83610f81565b8210610aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa290613385565b60405180910390fd5b6000610ab5610a33565b905060008060005b83811015610c0f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610baf57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c015786841415610bf8578195505050505050610c4b565b83806001019450505b508080600101915050610abd565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4290613625565b60405180910390fd5b92915050565b610c596118b7565b73ffffffffffffffffffffffffffffffffffffffff16610c776110f2565b73ffffffffffffffffffffffffffffffffffffffff1614610ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc490613505565b60405180910390fd5b60026008541415610d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a90613645565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610d41906132cc565b60006040518083038185875af1925050503d8060008114610d7e576040519150601f19603f3d011682016040523d82523d6000602084013e610d83565b606091505b5050905080610dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbe906133e5565b60405180910390fd5b506001600881905550565b610ded838383604051806020016040528060008152506114eb565b505050565b600b5481565b6000610e02610a33565b8210610e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3a90613405565b60405180910390fd5b819050919050565b610e536118b7565b73ffffffffffffffffffffffffffffffffffffffff16610e716110f2565b73ffffffffffffffffffffffffffffffffffffffff1614610ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebe90613505565b60405180910390fd5b818160099190610ed8929190612961565b505050565b6000610ee882611eb1565b600001519050919050565b60098054610f0090613915565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2c90613915565b8015610f795780601f10610f4e57610100808354040283529160200191610f79565b820191906000526020600020905b815481529060010190602001808311610f5c57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ff2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe9906134c5565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6110726118b7565b73ffffffffffffffffffffffffffffffffffffffff166110906110f2565b73ffffffffffffffffffffffffffffffffffffffff16146110e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dd90613505565b60405180910390fd5b6110f0600061204b565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461112b90613915565b80601f016020809104026020016040519081016040528092919081815260200182805461115790613915565b80156111a45780601f10611179576101008083540402835291602001916111a4565b820191906000526020600020905b81548152906001019060200180831161118757829003601f168201915b5050505050905090565b600c60009054906101000a900460ff166111fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f490613685565b60405180910390fd5b60008111611240576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611237906134a5565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146112ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a5906136c5565b60405180910390fd5b600a54816112ba610a33565b6112c491906137a4565b1115611305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fc906135a5565b60405180910390fd5b600b5481611312336116a2565b61131c91906137a4565b111561135d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135490613465565b60405180910390fd5b6113673382612111565b50565b6113726118b7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d790613545565b60405180910390fd5b80600660006113ed6118b7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661149a6118b7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114df9190613348565b60405180910390a35050565b6114f6848484611971565b6115028484848461212f565b611541576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611538906135c5565b60405180910390fd5b50505050565b6060611552826118aa565b611591576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158890613525565b60405180910390fd5b600061159b6122c6565b90506000815114156115c55760405180606001604052806036815260200161426b603691396115f0565b806115cf84612358565b6040516020016115e09291906132a8565b6040516020818303038152906040525b915050919050565b6116006118b7565b73ffffffffffffffffffffffffffffffffffffffff1661161e6110f2565b73ffffffffffffffffffffffffffffffffffffffff1614611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b90613505565b60405180910390fd5b61167f336064612111565b6001600c60006101000a81548160ff021916908315150217905550565b600a5481565b60006116ad826124b9565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117506118b7565b73ffffffffffffffffffffffffffffffffffffffff1661176e6110f2565b73ffffffffffffffffffffffffffffffffffffffff16146117c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bb90613505565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b906133a5565b60405180910390fd5b61183d8161204b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061197c82611eb1565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166119a36118b7565b73ffffffffffffffffffffffffffffffffffffffff1614806119ff57506119c86118b7565b73ffffffffffffffffffffffffffffffffffffffff166119e784610895565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a1b5750611a1a8260000151611a156118b7565b6116b4565b5b905080611a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5490613565565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac6906134e5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3690613425565b60405180910390fd5b611b4c85858560016125a2565b611b5c60008484600001516118bf565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611e4157611da0816118aa565b15611e405782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611eaa85858560016125a8565b5050505050565b611eb96129e7565b611ec2826118aa565b611f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef8906133c5565b60405180910390fd5b60008290505b6000811061200a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ffb578092505050612046565b50808060019003915050611f07565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203d90613665565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61212b8282604051806020016040528060008152506125ae565b5050565b60006121508473ffffffffffffffffffffffffffffffffffffffff166125c0565b156122b9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121796118b7565b8786866040518563ffffffff1660e01b815260040161219b94939291906132fc565b602060405180830381600087803b1580156121b557600080fd5b505af19250505080156121e657506040513d601f19601f820116820180604052508101906121e39190612d5d565b60015b612269573d8060008114612216576040519150601f19603f3d011682016040523d82523d6000602084013e61221b565b606091505b50600081511415612261576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612258906135c5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122be565b600190505b949350505050565b6060600980546122d590613915565b80601f016020809104026020016040519081016040528092919081815260200182805461230190613915565b801561234e5780601f106123235761010080835404028352916020019161234e565b820191906000526020600020905b81548152906001019060200180831161233157829003601f168201915b5050505050905090565b606060008214156123a0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124b4565b600082905060005b600082146123d25780806123bb90613978565b915050600a826123cb91906137fa565b91506123a8565b60008167ffffffffffffffff8111156123ee576123ed613aae565b5b6040519080825280601f01601f1916602001820160405280156124205781602001600182028036833780820191505090505b5090505b600085146124ad57600182612439919061382b565b9150600a8561244891906139c1565b603061245491906137a4565b60f81b81838151811061246a57612469613a7f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124a691906137fa565b9450612424565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561252a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252190613445565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b6125bb83838360016125e3565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612659576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612650906135e5565b60405180910390fd5b600084141561269d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269490613605565b60405180910390fd5b6126aa60008683876125a2565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561294457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561292f576128ef600088848861212f565b61292e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612925906135c5565b60405180910390fd5b5b81806001019250508080600101915050612878565b50806000819055505061295a60008683876125a8565b5050505050565b82805461296d90613915565b90600052602060002090601f01602090048101928261298f57600085556129d6565b82601f106129a857803560ff19168380011785556129d6565b828001600101855582156129d6579182015b828111156129d55782358255916020019190600101906129ba565b5b5090506129e39190612a21565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612a3a576000816000905550600101612a22565b5090565b6000612a51612a4c84613725565b613700565b905082815260208101848484011115612a6d57612a6c613aec565b5b612a788482856138d3565b509392505050565b600081359050612a8f8161420e565b92915050565b600081359050612aa481614225565b92915050565b600081359050612ab98161423c565b92915050565b600081519050612ace8161423c565b92915050565b600082601f830112612ae957612ae8613ae2565b5b8135612af9848260208601612a3e565b91505092915050565b60008083601f840112612b1857612b17613ae2565b5b8235905067ffffffffffffffff811115612b3557612b34613add565b5b602083019150836001820283011115612b5157612b50613ae7565b5b9250929050565b600081359050612b6781614253565b92915050565b600060208284031215612b8357612b82613af6565b5b6000612b9184828501612a80565b91505092915050565b60008060408385031215612bb157612bb0613af6565b5b6000612bbf85828601612a80565b9250506020612bd085828601612a80565b9150509250929050565b600080600060608486031215612bf357612bf2613af6565b5b6000612c0186828701612a80565b9350506020612c1286828701612a80565b9250506040612c2386828701612b58565b9150509250925092565b60008060008060808587031215612c4757612c46613af6565b5b6000612c5587828801612a80565b9450506020612c6687828801612a80565b9350506040612c7787828801612b58565b925050606085013567ffffffffffffffff811115612c9857612c97613af1565b5b612ca487828801612ad4565b91505092959194509250565b60008060408385031215612cc757612cc6613af6565b5b6000612cd585828601612a80565b9250506020612ce685828601612a95565b9150509250929050565b60008060408385031215612d0757612d06613af6565b5b6000612d1585828601612a80565b9250506020612d2685828601612b58565b9150509250929050565b600060208284031215612d4657612d45613af6565b5b6000612d5484828501612aaa565b91505092915050565b600060208284031215612d7357612d72613af6565b5b6000612d8184828501612abf565b91505092915050565b60008060208385031215612da157612da0613af6565b5b600083013567ffffffffffffffff811115612dbf57612dbe613af1565b5b612dcb85828601612b02565b92509250509250929050565b600060208284031215612ded57612dec613af6565b5b6000612dfb84828501612b58565b91505092915050565b612e0d8161385f565b82525050565b612e1c81613871565b82525050565b6000612e2d82613756565b612e37818561376c565b9350612e478185602086016138e2565b612e5081613afb565b840191505092915050565b6000612e6682613761565b612e708185613788565b9350612e808185602086016138e2565b612e8981613afb565b840191505092915050565b6000612e9f82613761565b612ea98185613799565b9350612eb98185602086016138e2565b80840191505092915050565b6000612ed2602283613788565b9150612edd82613b0c565b604082019050919050565b6000612ef5602683613788565b9150612f0082613b5b565b604082019050919050565b6000612f18602a83613788565b9150612f2382613baa565b604082019050919050565b6000612f3b600683613788565b9150612f4682613bf9565b602082019050919050565b6000612f5e602383613788565b9150612f6982613c22565b604082019050919050565b6000612f81602583613788565b9150612f8c82613c71565b604082019050919050565b6000612fa4603183613788565b9150612faf82613cc0565b604082019050919050565b6000612fc7600c83613788565b9150612fd282613d0f565b602082019050919050565b6000612fea603983613788565b9150612ff582613d38565b604082019050919050565b600061300d601f83613788565b915061301882613d87565b602082019050919050565b6000613030602b83613788565b915061303b82613db0565b604082019050919050565b6000613053602683613788565b915061305e82613dff565b604082019050919050565b6000613076602083613788565b915061308182613e4e565b602082019050919050565b6000613099602f83613788565b91506130a482613e77565b604082019050919050565b60006130bc601a83613788565b91506130c782613ec6565b602082019050919050565b60006130df603283613788565b91506130ea82613eef565b604082019050919050565b6000613102602283613788565b915061310d82613f3e565b604082019050919050565b600061312560008361377d565b915061313082613f8d565b600082019050919050565b6000613148600883613788565b915061315382613f90565b602082019050919050565b600061316b603383613788565b915061317682613fb9565b604082019050919050565b600061318e602183613788565b915061319982614008565b604082019050919050565b60006131b1602883613788565b91506131bc82614057565b604082019050919050565b60006131d4602e83613788565b91506131df826140a6565b604082019050919050565b60006131f7601f83613788565b9150613202826140f5565b602082019050919050565b600061321a602f83613788565b91506132258261411e565b604082019050919050565b600061323d601a83613788565b91506132488261416d565b602082019050919050565b6000613260602d83613788565b915061326b82614196565b604082019050919050565b6000613283601a83613788565b915061328e826141e5565b602082019050919050565b6132a2816138c9565b82525050565b60006132b48285612e94565b91506132c08284612e94565b91508190509392505050565b60006132d782613118565b9150819050919050565b60006020820190506132f66000830184612e04565b92915050565b60006080820190506133116000830187612e04565b61331e6020830186612e04565b61332b6040830185613299565b818103606083015261333d8184612e22565b905095945050505050565b600060208201905061335d6000830184612e13565b92915050565b6000602082019050818103600083015261337d8184612e5b565b905092915050565b6000602082019050818103600083015261339e81612ec5565b9050919050565b600060208201905081810360008301526133be81612ee8565b9050919050565b600060208201905081810360008301526133de81612f0b565b9050919050565b600060208201905081810360008301526133fe81612f2e565b9050919050565b6000602082019050818103600083015261341e81612f51565b9050919050565b6000602082019050818103600083015261343e81612f74565b9050919050565b6000602082019050818103600083015261345e81612f97565b9050919050565b6000602082019050818103600083015261347e81612fba565b9050919050565b6000602082019050818103600083015261349e81612fdd565b9050919050565b600060208201905081810360008301526134be81613000565b9050919050565b600060208201905081810360008301526134de81613023565b9050919050565b600060208201905081810360008301526134fe81613046565b9050919050565b6000602082019050818103600083015261351e81613069565b9050919050565b6000602082019050818103600083015261353e8161308c565b9050919050565b6000602082019050818103600083015261355e816130af565b9050919050565b6000602082019050818103600083015261357e816130d2565b9050919050565b6000602082019050818103600083015261359e816130f5565b9050919050565b600060208201905081810360008301526135be8161313b565b9050919050565b600060208201905081810360008301526135de8161315e565b9050919050565b600060208201905081810360008301526135fe81613181565b9050919050565b6000602082019050818103600083015261361e816131a4565b9050919050565b6000602082019050818103600083015261363e816131c7565b9050919050565b6000602082019050818103600083015261365e816131ea565b9050919050565b6000602082019050818103600083015261367e8161320d565b9050919050565b6000602082019050818103600083015261369e81613230565b9050919050565b600060208201905081810360008301526136be81613253565b9050919050565b600060208201905081810360008301526136de81613276565b9050919050565b60006020820190506136fa6000830184613299565b92915050565b600061370a61371b565b90506137168282613947565b919050565b6000604051905090565b600067ffffffffffffffff8211156137405761373f613aae565b5b61374982613afb565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006137af826138c9565b91506137ba836138c9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137ef576137ee6139f2565b5b828201905092915050565b6000613805826138c9565b9150613810836138c9565b9250826138205761381f613a21565b5b828204905092915050565b6000613836826138c9565b9150613841836138c9565b925082821015613854576138536139f2565b5b828203905092915050565b600061386a826138a9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156139005780820151818401526020810190506138e5565b8381111561390f576000848401525b50505050565b6000600282049050600182168061392d57607f821691505b6020821081141561394157613940613a50565b5b50919050565b61395082613afb565b810181811067ffffffffffffffff8211171561396f5761396e613aae565b5b80604052505050565b6000613983826138c9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139b6576139b56139f2565b5b600182019050919050565b60006139cc826138c9565b91506139d7836138c9565b9250826139e7576139e6613a21565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4661696c65640000000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f31207065722077616c6c65740000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f416d6f756e742068617320746f2062652067726561746572207468616e203100600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f636f6e7472616374206e6f742061637469766174656420796574000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f536d61727420436f6e7472616374732063616e2774206d696e74000000000000600082015250565b6142178161385f565b811461422257600080fd5b50565b61422e81613871565b811461423957600080fd5b50565b6142458161387d565b811461425057600080fd5b50565b61425c816138c9565b811461426757600080fd5b5056fe697066733a2f2f516d5658384d4c38787164336978466f6b384458366f7a6b6a6531656b5a4334325874464e73575866556b6858502fa2646970667358221220b93002f3cc40c16d893ddf3f16142fa2269be3d5bd8302a7bbe4938b3d26a07c64736f6c63430008070033

Deployed Bytecode Sourcemap

50207:1285:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37011:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38897:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40515:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40036:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35268:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50362:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41391:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35932:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51312:175;;;;;;;;;;;;;:::i;:::-;;41632:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50329:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35445:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50992:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38706:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50265:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37447:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10403:103;;;;;;;;;;;;;:::i;:::-;;9752:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39066:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50453:420;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40801:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41888:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39241:391;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51094:104;;;;;;;;;;;;;:::i;:::-;;50296:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50879:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41160:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10661:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37011:372;37113:4;37165:25;37150:40;;;:11;:40;;;;:105;;;;37222:33;37207:48;;;:11;:48;;;;37150:105;:172;;;;37287:35;37272:50;;;:11;:50;;;;37150:172;:225;;;;37339:36;37363:11;37339:23;:36::i;:::-;37150:225;37130:245;;37011:372;;;:::o;38897:100::-;38951:13;38984:5;38977:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38897:100;:::o;40515:214::-;40583:7;40611:16;40619:7;40611;:16::i;:::-;40603:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;40697:15;:24;40713:7;40697:24;;;;;;;;;;;;;;;;;;;;;40690:31;;40515:214;;;:::o;40036:413::-;40109:13;40125:24;40141:7;40125:15;:24::i;:::-;40109:40;;40174:5;40168:11;;:2;:11;;;;40160:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;40269:5;40253:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;40278:37;40295:5;40302:12;:10;:12::i;:::-;40278:16;:37::i;:::-;40253:62;40231:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;40413:28;40422:2;40426:7;40435:5;40413:8;:28::i;:::-;40098:351;40036:413;;:::o;35268:100::-;35321:7;35348:12;;35341:19;;35268:100;:::o;50362:29::-;;;;;;;;;;;;;:::o;41391:170::-;41525:28;41535:4;41541:2;41545:7;41525:9;:28::i;:::-;41391:170;;;:::o;35932:1007::-;36021:7;36057:16;36067:5;36057:9;:16::i;:::-;36049:5;:24;36041:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;36123:22;36148:13;:11;:13::i;:::-;36123:38;;36172:19;36202:25;36391:9;36386:466;36406:14;36402:1;:18;36386:466;;;36446:31;36480:11;:14;36492:1;36480:14;;;;;;;;;;;36446:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36543:1;36517:28;;:9;:14;;;:28;;;36513:111;;36590:9;:14;;;36570:34;;36513:111;36667:5;36646:26;;:17;:26;;;36642:195;;;36716:5;36701:11;:20;36697:85;;;36757:1;36750:8;;;;;;;;;36697:85;36804:13;;;;;;;36642:195;36427:425;36422:3;;;;;;;36386:466;;;;36875:56;;;;;;;;;;:::i;:::-;;;;;;;;35932:1007;;;;;:::o;51312:175::-;9983:12;:10;:12::i;:::-;9972:23;;:7;:5;:7::i;:::-;:23;;;9964:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4726:1:::1;5324:7;;:19;;5316:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4726:1;5457:7;:18;;;;51372:11:::2;51397:10;51389:24;;51421:21;51389:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51371:76;;;51462:6;51454:25;;;;;;;;;;;;:::i;:::-;;;;;;;;;51364:123;4682:1:::1;5636:7;:22;;;;51312:175::o:0;41632:185::-;41770:39;41787:4;41793:2;41797:7;41770:39;;;;;;;;;;;;:16;:39::i;:::-;41632:185;;;:::o;50329:28::-;;;;:::o;35445:187::-;35512:7;35548:13;:11;:13::i;:::-;35540:5;:21;35532:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;35619:5;35612:12;;35445:187;;;:::o;50992:96::-;9983:12;:10;:12::i;:::-;9972:23;;:7;:5;:7::i;:::-;:23;;;9964:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51074:8:::1;;51064:7;:18;;;;;;;:::i;:::-;;50992:96:::0;;:::o;38706:124::-;38770:7;38797:20;38809:7;38797:11;:20::i;:::-;:25;;;38790:32;;38706:124;;;:::o;50265:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37447:221::-;37511:7;37556:1;37539:19;;:5;:19;;;;37531:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;37632:12;:19;37645:5;37632:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;37624:36;;37617:43;;37447:221;;;:::o;10403:103::-;9983:12;:10;:12::i;:::-;9972:23;;:7;:5;:7::i;:::-;:23;;;9964:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10468:30:::1;10495:1;10468:18;:30::i;:::-;10403:103::o:0;9752:87::-;9798:7;9825:6;;;;;;;;;;;9818:13;;9752:87;:::o;39066:104::-;39122:13;39155:7;39148:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39066:104;:::o;50453:420::-;50518:9;;;;;;;;;;;50510:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;50580:1;50573:6;:8;50565:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;50646:9;50632:23;;:10;:23;;;50624:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;50727:9;;50717:6;50701:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;50693:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;50800:12;;50790:6;50763:24;50776:10;50763:12;:24::i;:::-;:33;;;;:::i;:::-;:49;;50755:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;50838:29;50848:10;50860:6;50838:9;:29::i;:::-;50453:420;:::o;40801:288::-;40908:12;:10;:12::i;:::-;40896:24;;:8;:24;;;;40888:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;41009:8;40964:18;:32;40983:12;:10;:12::i;:::-;40964:32;;;;;;;;;;;;;;;:42;40997:8;40964:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;41062:8;41033:48;;41048:12;:10;:12::i;:::-;41033:48;;;41072:8;41033:48;;;;;;:::i;:::-;;;;;;;;40801:288;;:::o;41888:355::-;42047:28;42057:4;42063:2;42067:7;42047:9;:28::i;:::-;42108:48;42131:4;42137:2;42141:7;42150:5;42108:22;:48::i;:::-;42086:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;41888:355;;;;:::o;39241:391::-;39314:13;39348:16;39356:7;39348;:16::i;:::-;39340:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;39429:21;39453:10;:8;:10::i;:::-;39429:34;;39506:1;39487:7;39481:21;:26;;:141;;;;;;;;;;;;;;;;;;;;;;39534:7;39543:18;:7;:16;:18::i;:::-;39517:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39481:141;39474:148;;;39241:391;;;:::o;51094:104::-;9983:12;:10;:12::i;:::-;9972:23;;:7;:5;:7::i;:::-;:23;;;9964:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51144:25:::1;51154:10;51165:3;51144:9;:25::i;:::-;51188:4;51176:9;;:16;;;;;;;;;;;;;;;;;;51094:104::o:0;50296:28::-;;;;:::o;50879:107::-;50937:7;50960:20;50974:5;50960:13;:20::i;:::-;50953:27;;50879:107;;;:::o;41160:164::-;41257:4;41281:18;:25;41300:5;41281:25;;;;;;;;;;;;;;;:35;41307:8;41281:35;;;;;;;;;;;;;;;;;;;;;;;;;41274:42;;41160:164;;;;:::o;10661:201::-;9983:12;:10;:12::i;:::-;9972:23;;:7;:5;:7::i;:::-;:23;;;9964:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10770:1:::1;10750:22;;:8;:22;;;;10742:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10826:28;10845:8;10826:18;:28::i;:::-;10661:201:::0;:::o;26531:157::-;26616:4;26655:25;26640:40;;;:11;:40;;;;26633:47;;26531:157;;;:::o;42498:111::-;42555:4;42589:12;;42579:7;:22;42572:29;;42498:111;;;:::o;8476:98::-;8529:7;8556:10;8549:17;;8476:98;:::o;47418:196::-;47560:2;47533:15;:24;47549:7;47533:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47598:7;47594:2;47578:28;;47587:5;47578:28;;;;;;;;;;;;47418:196;;;:::o;45298:2002::-;45413:35;45451:20;45463:7;45451:11;:20::i;:::-;45413:58;;45484:22;45526:13;:18;;;45510:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;45585:12;:10;:12::i;:::-;45561:36;;:20;45573:7;45561:11;:20::i;:::-;:36;;;45510:87;:154;;;;45614:50;45631:13;:18;;;45651:12;:10;:12::i;:::-;45614:16;:50::i;:::-;45510:154;45484:181;;45686:17;45678:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;45801:4;45779:26;;:13;:18;;;:26;;;45771:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;45881:1;45867:16;;:2;:16;;;;45859:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;45938:43;45960:4;45966:2;45970:7;45979:1;45938:21;:43::i;:::-;46046:49;46063:1;46067:7;46076:13;:18;;;46046:8;:49::i;:::-;46421:1;46391:12;:18;46404:4;46391:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46465:1;46437:12;:16;46450:2;46437:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46511:2;46483:11;:20;46495:7;46483:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;46573:15;46528:11;:20;46540:7;46528:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;46841:19;46873:1;46863:7;:11;46841:33;;46934:1;46893:43;;:11;:24;46905:11;46893:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;46889:295;;;46961:20;46969:11;46961:7;:20::i;:::-;46957:212;;;47038:13;:18;;;47006:11;:24;47018:11;47006:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;47121:13;:28;;;47079:11;:24;47091:11;47079:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;46957:212;46889:295;46366:829;47231:7;47227:2;47212:27;;47221:4;47212:27;;;;;;;;;;;;47250:42;47271:4;47277:2;47281:7;47290:1;47250:20;:42::i;:::-;45402:1898;;45298:2002;;;:::o;38107:537::-;38168:21;;:::i;:::-;38210:16;38218:7;38210;:16::i;:::-;38202:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;38316:12;38331:7;38316:22;;38311:245;38348:1;38340:4;:9;38311:245;;38378:31;38412:11;:17;38424:4;38412:17;;;;;;;;;;;38378:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38478:1;38452:28;;:9;:14;;;:28;;;38448:93;;38512:9;38505:16;;;;;;38448:93;38359:197;38351:6;;;;;;;;38311:245;;;;38579:57;;;;;;;;;;:::i;:::-;;;;;;;;38107:537;;;;:::o;11022:191::-;11096:16;11115:6;;;;;;;;;;;11096:25;;11141:8;11132:6;;:17;;;;;;;;;;;;;;;;;;11196:8;11165:40;;11186:8;11165:40;;;;;;;;;;;;11085:128;11022:191;:::o;42617:104::-;42686:27;42696:2;42700:8;42686:27;;;;;;;;;;;;:9;:27::i;:::-;42617:104;;:::o;48179:804::-;48334:4;48355:15;:2;:13;;;:15::i;:::-;48351:625;;;48407:2;48391:36;;;48428:12;:10;:12::i;:::-;48442:4;48448:7;48457:5;48391:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48387:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48654:1;48637:6;:13;:18;48633:273;;;48680:61;;;;;;;;;;:::i;:::-;;;;;;;;48633:273;48856:6;48850:13;48841:6;48837:2;48833:15;48826:38;48387:534;48524:45;;;48514:55;;;:6;:55;;;;48507:62;;;;;48351:625;48960:4;48953:11;;48179:804;;;;;;;:::o;51204:102::-;51264:13;51293:7;51286:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51204:102;:::o;6038:723::-;6094:13;6324:1;6315:5;:10;6311:53;;;6342:10;;;;;;;;;;;;;;;;;;;;;6311:53;6374:12;6389:5;6374:20;;6405:14;6430:78;6445:1;6437:4;:9;6430:78;;6463:8;;;;;:::i;:::-;;;;6494:2;6486:10;;;;;:::i;:::-;;;6430:78;;;6518:19;6550:6;6540:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6518:39;;6568:154;6584:1;6575:5;:10;6568:154;;6612:1;6602:11;;;;;:::i;:::-;;;6679:2;6671:5;:10;;;;:::i;:::-;6658:2;:24;;;;:::i;:::-;6645:39;;6628:6;6635;6628:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6708:2;6699:11;;;;;:::i;:::-;;;6568:154;;;6746:6;6732:21;;;;;6038:723;;;;:::o;37676:229::-;37737:7;37782:1;37765:19;;:5;:19;;;;37757:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;37864:12;:19;37877:5;37864:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;37856:41;;37849:48;;37676:229;;;:::o;49471:159::-;;;;;:::o;50042:158::-;;;;;:::o;43084:163::-;43207:32;43213:2;43217:8;43227:5;43234:4;43207:5;:32::i;:::-;43084:163;;;:::o;12453:326::-;12513:4;12770:1;12748:7;:19;;;:23;12741:30;;12453:326;;;:::o;43506:1538::-;43645:20;43668:12;;43645:35;;43713:1;43699:16;;:2;:16;;;;43691:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;43784:1;43772:8;:13;;43764:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;43843:61;43873:1;43877:2;43881:12;43895:8;43843:21;:61::i;:::-;44218:8;44182:12;:16;44195:2;44182:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44283:8;44242:12;:16;44255:2;44242:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44342:2;44309:11;:25;44321:12;44309:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;44409:15;44359:11;:25;44371:12;44359:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;44442:20;44465:12;44442:35;;44499:9;44494:415;44514:8;44510:1;:12;44494:415;;;44578:12;44574:2;44553:38;;44570:1;44553:38;;;;;;;;;;;;44614:4;44610:249;;;44677:59;44708:1;44712:2;44716:12;44730:5;44677:22;:59::i;:::-;44643:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;44610:249;44879:14;;;;;;;44524:3;;;;;;;44494:415;;;;44940:12;44925;:27;;;;44157:807;44976:60;45005:1;45009:2;45013:12;45027:8;44976:20;:60::i;:::-;43634:1410;43506:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::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:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:118::-;7060:24;7078:5;7060:24;:::i;:::-;7055:3;7048:37;6973:118;;:::o;7097:109::-;7178:21;7193:5;7178:21;:::i;:::-;7173:3;7166:34;7097:109;;:::o;7212:360::-;7298:3;7326:38;7358:5;7326:38;:::i;:::-;7380:70;7443:6;7438:3;7380:70;:::i;:::-;7373:77;;7459:52;7504:6;7499:3;7492:4;7485:5;7481:16;7459:52;:::i;:::-;7536:29;7558:6;7536:29;:::i;:::-;7531:3;7527:39;7520:46;;7302:270;7212:360;;;;:::o;7578:364::-;7666:3;7694:39;7727:5;7694:39;:::i;:::-;7749:71;7813:6;7808:3;7749:71;:::i;:::-;7742:78;;7829:52;7874:6;7869:3;7862:4;7855:5;7851:16;7829:52;:::i;:::-;7906:29;7928:6;7906:29;:::i;:::-;7901:3;7897:39;7890:46;;7670:272;7578:364;;;;:::o;7948:377::-;8054:3;8082:39;8115:5;8082:39;:::i;:::-;8137:89;8219:6;8214:3;8137:89;:::i;:::-;8130:96;;8235:52;8280:6;8275:3;8268:4;8261:5;8257:16;8235:52;:::i;:::-;8312:6;8307:3;8303:16;8296:23;;8058:267;7948:377;;;;:::o;8331:366::-;8473:3;8494:67;8558:2;8553:3;8494:67;:::i;:::-;8487:74;;8570:93;8659:3;8570:93;:::i;:::-;8688:2;8683:3;8679:12;8672:19;;8331:366;;;:::o;8703:::-;8845:3;8866:67;8930:2;8925:3;8866:67;:::i;:::-;8859:74;;8942:93;9031:3;8942:93;:::i;:::-;9060:2;9055:3;9051:12;9044:19;;8703:366;;;:::o;9075:::-;9217:3;9238:67;9302:2;9297:3;9238:67;:::i;:::-;9231:74;;9314:93;9403:3;9314:93;:::i;:::-;9432:2;9427:3;9423:12;9416:19;;9075:366;;;:::o;9447:365::-;9589:3;9610:66;9674:1;9669:3;9610:66;:::i;:::-;9603:73;;9685:93;9774:3;9685:93;:::i;:::-;9803:2;9798:3;9794:12;9787:19;;9447:365;;;:::o;9818:366::-;9960:3;9981:67;10045:2;10040:3;9981:67;:::i;:::-;9974:74;;10057:93;10146:3;10057:93;:::i;:::-;10175:2;10170:3;10166:12;10159:19;;9818:366;;;:::o;10190:::-;10332:3;10353:67;10417:2;10412:3;10353:67;:::i;:::-;10346:74;;10429:93;10518:3;10429:93;:::i;:::-;10547:2;10542:3;10538:12;10531:19;;10190:366;;;:::o;10562:::-;10704:3;10725:67;10789:2;10784:3;10725:67;:::i;:::-;10718:74;;10801:93;10890:3;10801:93;:::i;:::-;10919:2;10914:3;10910:12;10903:19;;10562:366;;;:::o;10934:::-;11076:3;11097:67;11161:2;11156:3;11097:67;:::i;:::-;11090:74;;11173:93;11262:3;11173:93;:::i;:::-;11291:2;11286:3;11282:12;11275:19;;10934:366;;;:::o;11306:::-;11448:3;11469:67;11533:2;11528:3;11469:67;:::i;:::-;11462:74;;11545:93;11634:3;11545:93;:::i;:::-;11663:2;11658:3;11654:12;11647:19;;11306:366;;;:::o;11678:::-;11820:3;11841:67;11905:2;11900:3;11841:67;:::i;:::-;11834:74;;11917:93;12006:3;11917:93;:::i;:::-;12035:2;12030:3;12026:12;12019:19;;11678:366;;;:::o;12050:::-;12192:3;12213:67;12277:2;12272:3;12213:67;:::i;:::-;12206:74;;12289:93;12378:3;12289:93;:::i;:::-;12407:2;12402:3;12398:12;12391:19;;12050:366;;;:::o;12422:::-;12564:3;12585:67;12649:2;12644:3;12585:67;:::i;:::-;12578:74;;12661:93;12750:3;12661:93;:::i;:::-;12779:2;12774:3;12770:12;12763:19;;12422:366;;;:::o;12794:::-;12936:3;12957:67;13021:2;13016:3;12957:67;:::i;:::-;12950:74;;13033:93;13122:3;13033:93;:::i;:::-;13151:2;13146:3;13142:12;13135:19;;12794:366;;;:::o;13166:::-;13308:3;13329:67;13393:2;13388:3;13329:67;:::i;:::-;13322:74;;13405:93;13494:3;13405:93;:::i;:::-;13523:2;13518:3;13514:12;13507:19;;13166:366;;;:::o;13538:::-;13680:3;13701:67;13765:2;13760:3;13701:67;:::i;:::-;13694:74;;13777:93;13866:3;13777:93;:::i;:::-;13895:2;13890:3;13886:12;13879:19;;13538:366;;;:::o;13910:::-;14052:3;14073:67;14137:2;14132:3;14073:67;:::i;:::-;14066:74;;14149:93;14238:3;14149:93;:::i;:::-;14267:2;14262:3;14258:12;14251:19;;13910:366;;;:::o;14282:::-;14424:3;14445:67;14509:2;14504:3;14445:67;:::i;:::-;14438:74;;14521:93;14610:3;14521:93;:::i;:::-;14639:2;14634:3;14630:12;14623:19;;14282:366;;;:::o;14654:398::-;14813:3;14834:83;14915:1;14910:3;14834:83;:::i;:::-;14827:90;;14926:93;15015:3;14926:93;:::i;:::-;15044:1;15039:3;15035:11;15028:18;;14654:398;;;:::o;15058:365::-;15200:3;15221:66;15285:1;15280:3;15221:66;:::i;:::-;15214:73;;15296:93;15385:3;15296:93;:::i;:::-;15414:2;15409:3;15405:12;15398:19;;15058:365;;;:::o;15429:366::-;15571:3;15592:67;15656:2;15651:3;15592:67;:::i;:::-;15585:74;;15668:93;15757:3;15668:93;:::i;:::-;15786:2;15781:3;15777:12;15770:19;;15429:366;;;:::o;15801:::-;15943:3;15964:67;16028:2;16023:3;15964:67;:::i;:::-;15957:74;;16040:93;16129:3;16040:93;:::i;:::-;16158:2;16153:3;16149:12;16142:19;;15801:366;;;:::o;16173:::-;16315:3;16336:67;16400:2;16395:3;16336:67;:::i;:::-;16329:74;;16412:93;16501:3;16412:93;:::i;:::-;16530:2;16525:3;16521:12;16514:19;;16173:366;;;:::o;16545:::-;16687:3;16708:67;16772:2;16767:3;16708:67;:::i;:::-;16701:74;;16784:93;16873:3;16784:93;:::i;:::-;16902:2;16897:3;16893:12;16886:19;;16545:366;;;:::o;16917:::-;17059:3;17080:67;17144:2;17139:3;17080:67;:::i;:::-;17073:74;;17156:93;17245:3;17156:93;:::i;:::-;17274:2;17269:3;17265:12;17258:19;;16917:366;;;:::o;17289:::-;17431:3;17452:67;17516:2;17511:3;17452:67;:::i;:::-;17445:74;;17528:93;17617:3;17528:93;:::i;:::-;17646:2;17641:3;17637:12;17630:19;;17289:366;;;:::o;17661:::-;17803:3;17824:67;17888:2;17883:3;17824:67;:::i;:::-;17817:74;;17900:93;17989:3;17900:93;:::i;:::-;18018:2;18013:3;18009:12;18002:19;;17661:366;;;:::o;18033:::-;18175:3;18196:67;18260:2;18255:3;18196:67;:::i;:::-;18189:74;;18272:93;18361:3;18272:93;:::i;:::-;18390:2;18385:3;18381:12;18374:19;;18033:366;;;:::o;18405:::-;18547:3;18568:67;18632:2;18627:3;18568:67;:::i;:::-;18561:74;;18644:93;18733:3;18644:93;:::i;:::-;18762:2;18757:3;18753:12;18746:19;;18405:366;;;:::o;18777:118::-;18864:24;18882:5;18864:24;:::i;:::-;18859:3;18852:37;18777:118;;:::o;18901:435::-;19081:3;19103:95;19194:3;19185:6;19103:95;:::i;:::-;19096:102;;19215:95;19306:3;19297:6;19215:95;:::i;:::-;19208:102;;19327:3;19320:10;;18901:435;;;;;:::o;19342:379::-;19526:3;19548:147;19691:3;19548:147;:::i;:::-;19541:154;;19712:3;19705:10;;19342:379;;;:::o;19727:222::-;19820:4;19858:2;19847:9;19843:18;19835:26;;19871:71;19939:1;19928:9;19924:17;19915:6;19871:71;:::i;:::-;19727:222;;;;:::o;19955:640::-;20150:4;20188:3;20177:9;20173:19;20165:27;;20202:71;20270:1;20259:9;20255:17;20246:6;20202:71;:::i;:::-;20283:72;20351:2;20340:9;20336:18;20327:6;20283:72;:::i;:::-;20365;20433:2;20422:9;20418:18;20409:6;20365:72;:::i;:::-;20484:9;20478:4;20474:20;20469:2;20458:9;20454:18;20447:48;20512:76;20583:4;20574:6;20512:76;:::i;:::-;20504:84;;19955:640;;;;;;;:::o;20601:210::-;20688:4;20726:2;20715:9;20711:18;20703:26;;20739:65;20801:1;20790:9;20786:17;20777:6;20739:65;:::i;:::-;20601:210;;;;:::o;20817:313::-;20930:4;20968:2;20957:9;20953:18;20945:26;;21017:9;21011:4;21007:20;21003:1;20992:9;20988:17;20981:47;21045:78;21118:4;21109:6;21045:78;:::i;:::-;21037:86;;20817:313;;;;:::o;21136:419::-;21302:4;21340:2;21329:9;21325:18;21317:26;;21389:9;21383:4;21379:20;21375:1;21364:9;21360:17;21353:47;21417:131;21543:4;21417:131;:::i;:::-;21409:139;;21136:419;;;:::o;21561:::-;21727:4;21765:2;21754:9;21750:18;21742:26;;21814:9;21808:4;21804:20;21800:1;21789:9;21785:17;21778:47;21842:131;21968:4;21842:131;:::i;:::-;21834:139;;21561:419;;;:::o;21986:::-;22152:4;22190:2;22179:9;22175:18;22167:26;;22239:9;22233:4;22229:20;22225:1;22214:9;22210:17;22203:47;22267:131;22393:4;22267:131;:::i;:::-;22259:139;;21986:419;;;:::o;22411:::-;22577:4;22615:2;22604:9;22600:18;22592:26;;22664:9;22658:4;22654:20;22650:1;22639:9;22635:17;22628:47;22692:131;22818:4;22692:131;:::i;:::-;22684:139;;22411:419;;;:::o;22836:::-;23002:4;23040:2;23029:9;23025:18;23017:26;;23089:9;23083:4;23079:20;23075:1;23064:9;23060:17;23053:47;23117:131;23243:4;23117:131;:::i;:::-;23109:139;;22836:419;;;:::o;23261:::-;23427:4;23465:2;23454:9;23450:18;23442:26;;23514:9;23508:4;23504:20;23500:1;23489:9;23485:17;23478:47;23542:131;23668:4;23542:131;:::i;:::-;23534:139;;23261:419;;;:::o;23686:::-;23852:4;23890:2;23879:9;23875:18;23867:26;;23939:9;23933:4;23929:20;23925:1;23914:9;23910:17;23903:47;23967:131;24093:4;23967:131;:::i;:::-;23959:139;;23686:419;;;:::o;24111:::-;24277:4;24315:2;24304:9;24300:18;24292:26;;24364:9;24358:4;24354:20;24350:1;24339:9;24335:17;24328:47;24392:131;24518:4;24392:131;:::i;:::-;24384:139;;24111:419;;;:::o;24536:::-;24702:4;24740:2;24729:9;24725:18;24717:26;;24789:9;24783:4;24779:20;24775:1;24764:9;24760:17;24753:47;24817:131;24943:4;24817:131;:::i;:::-;24809:139;;24536:419;;;:::o;24961:::-;25127:4;25165:2;25154:9;25150:18;25142:26;;25214:9;25208:4;25204:20;25200:1;25189:9;25185:17;25178:47;25242:131;25368:4;25242:131;:::i;:::-;25234:139;;24961:419;;;:::o;25386:::-;25552:4;25590:2;25579:9;25575:18;25567:26;;25639:9;25633:4;25629:20;25625:1;25614:9;25610:17;25603:47;25667:131;25793:4;25667:131;:::i;:::-;25659:139;;25386:419;;;:::o;25811:::-;25977:4;26015:2;26004:9;26000:18;25992:26;;26064:9;26058:4;26054:20;26050:1;26039:9;26035:17;26028:47;26092:131;26218:4;26092:131;:::i;:::-;26084:139;;25811:419;;;:::o;26236:::-;26402:4;26440:2;26429:9;26425:18;26417:26;;26489:9;26483:4;26479:20;26475:1;26464:9;26460:17;26453:47;26517:131;26643:4;26517:131;:::i;:::-;26509:139;;26236:419;;;:::o;26661:::-;26827:4;26865:2;26854:9;26850:18;26842:26;;26914:9;26908:4;26904:20;26900:1;26889:9;26885:17;26878:47;26942:131;27068:4;26942:131;:::i;:::-;26934:139;;26661:419;;;:::o;27086:::-;27252:4;27290:2;27279:9;27275:18;27267:26;;27339:9;27333:4;27329:20;27325:1;27314:9;27310:17;27303:47;27367:131;27493:4;27367:131;:::i;:::-;27359:139;;27086:419;;;:::o;27511:::-;27677:4;27715:2;27704:9;27700:18;27692:26;;27764:9;27758:4;27754:20;27750:1;27739:9;27735:17;27728:47;27792:131;27918:4;27792:131;:::i;:::-;27784:139;;27511:419;;;:::o;27936:::-;28102:4;28140:2;28129:9;28125:18;28117:26;;28189:9;28183:4;28179:20;28175:1;28164:9;28160:17;28153:47;28217:131;28343:4;28217:131;:::i;:::-;28209:139;;27936:419;;;:::o;28361:::-;28527:4;28565:2;28554:9;28550:18;28542:26;;28614:9;28608:4;28604:20;28600:1;28589:9;28585:17;28578:47;28642:131;28768:4;28642:131;:::i;:::-;28634:139;;28361:419;;;:::o;28786:::-;28952:4;28990:2;28979:9;28975:18;28967:26;;29039:9;29033:4;29029:20;29025:1;29014:9;29010:17;29003:47;29067:131;29193:4;29067:131;:::i;:::-;29059:139;;28786:419;;;:::o;29211:::-;29377:4;29415:2;29404:9;29400:18;29392:26;;29464:9;29458:4;29454:20;29450:1;29439:9;29435:17;29428:47;29492:131;29618:4;29492:131;:::i;:::-;29484:139;;29211:419;;;:::o;29636:::-;29802:4;29840:2;29829:9;29825:18;29817:26;;29889:9;29883:4;29879:20;29875:1;29864:9;29860:17;29853:47;29917:131;30043:4;29917:131;:::i;:::-;29909:139;;29636:419;;;:::o;30061:::-;30227:4;30265:2;30254:9;30250:18;30242:26;;30314:9;30308:4;30304:20;30300:1;30289:9;30285:17;30278:47;30342:131;30468:4;30342:131;:::i;:::-;30334:139;;30061:419;;;:::o;30486:::-;30652:4;30690:2;30679:9;30675:18;30667:26;;30739:9;30733:4;30729:20;30725:1;30714:9;30710:17;30703:47;30767:131;30893:4;30767:131;:::i;:::-;30759:139;;30486:419;;;:::o;30911:::-;31077:4;31115:2;31104:9;31100:18;31092:26;;31164:9;31158:4;31154:20;31150:1;31139:9;31135:17;31128:47;31192:131;31318:4;31192:131;:::i;:::-;31184:139;;30911:419;;;:::o;31336:::-;31502:4;31540:2;31529:9;31525:18;31517:26;;31589:9;31583:4;31579:20;31575:1;31564:9;31560:17;31553:47;31617:131;31743:4;31617:131;:::i;:::-;31609:139;;31336:419;;;:::o;31761:::-;31927:4;31965:2;31954:9;31950:18;31942:26;;32014:9;32008:4;32004:20;32000:1;31989:9;31985:17;31978:47;32042:131;32168:4;32042:131;:::i;:::-;32034:139;;31761:419;;;:::o;32186:::-;32352:4;32390:2;32379:9;32375:18;32367:26;;32439:9;32433:4;32429:20;32425:1;32414:9;32410:17;32403:47;32467:131;32593:4;32467:131;:::i;:::-;32459:139;;32186:419;;;:::o;32611:222::-;32704:4;32742:2;32731:9;32727:18;32719:26;;32755:71;32823:1;32812:9;32808:17;32799:6;32755:71;:::i;:::-;32611:222;;;;:::o;32839:129::-;32873:6;32900:20;;:::i;:::-;32890:30;;32929:33;32957:4;32949:6;32929:33;:::i;:::-;32839:129;;;:::o;32974:75::-;33007:6;33040:2;33034:9;33024:19;;32974:75;:::o;33055:307::-;33116:4;33206:18;33198:6;33195:30;33192:56;;;33228:18;;:::i;:::-;33192:56;33266:29;33288:6;33266:29;:::i;:::-;33258:37;;33350:4;33344;33340:15;33332:23;;33055:307;;;:::o;33368:98::-;33419:6;33453:5;33447:12;33437:22;;33368:98;;;:::o;33472:99::-;33524:6;33558:5;33552:12;33542:22;;33472:99;;;:::o;33577:168::-;33660:11;33694:6;33689:3;33682:19;33734:4;33729:3;33725:14;33710:29;;33577:168;;;;:::o;33751:147::-;33852:11;33889:3;33874:18;;33751:147;;;;:::o;33904:169::-;33988:11;34022:6;34017:3;34010:19;34062:4;34057:3;34053:14;34038:29;;33904:169;;;;:::o;34079:148::-;34181:11;34218:3;34203:18;;34079:148;;;;:::o;34233:305::-;34273:3;34292:20;34310:1;34292:20;:::i;:::-;34287:25;;34326:20;34344:1;34326:20;:::i;:::-;34321:25;;34480:1;34412:66;34408:74;34405:1;34402:81;34399:107;;;34486:18;;:::i;:::-;34399:107;34530:1;34527;34523:9;34516:16;;34233:305;;;;:::o;34544:185::-;34584:1;34601:20;34619:1;34601:20;:::i;:::-;34596:25;;34635:20;34653:1;34635:20;:::i;:::-;34630:25;;34674:1;34664:35;;34679:18;;:::i;:::-;34664:35;34721:1;34718;34714:9;34709:14;;34544:185;;;;:::o;34735:191::-;34775:4;34795:20;34813:1;34795:20;:::i;:::-;34790:25;;34829:20;34847:1;34829:20;:::i;:::-;34824:25;;34868:1;34865;34862:8;34859:34;;;34873:18;;:::i;:::-;34859:34;34918:1;34915;34911:9;34903:17;;34735:191;;;;:::o;34932:96::-;34969:7;34998:24;35016:5;34998:24;:::i;:::-;34987:35;;34932:96;;;:::o;35034:90::-;35068:7;35111:5;35104:13;35097:21;35086:32;;35034:90;;;:::o;35130:149::-;35166:7;35206:66;35199:5;35195:78;35184:89;;35130:149;;;:::o;35285:126::-;35322:7;35362:42;35355:5;35351:54;35340:65;;35285:126;;;:::o;35417:77::-;35454:7;35483:5;35472:16;;35417:77;;;:::o;35500:154::-;35584:6;35579:3;35574;35561:30;35646:1;35637:6;35632:3;35628:16;35621:27;35500:154;;;:::o;35660:307::-;35728:1;35738:113;35752:6;35749:1;35746:13;35738:113;;;35837:1;35832:3;35828:11;35822:18;35818:1;35813:3;35809:11;35802:39;35774:2;35771:1;35767:10;35762:15;;35738:113;;;35869:6;35866:1;35863:13;35860:101;;;35949:1;35940:6;35935:3;35931:16;35924:27;35860:101;35709:258;35660:307;;;:::o;35973:320::-;36017:6;36054:1;36048:4;36044:12;36034:22;;36101:1;36095:4;36091:12;36122:18;36112:81;;36178:4;36170:6;36166:17;36156:27;;36112:81;36240:2;36232:6;36229:14;36209:18;36206:38;36203:84;;;36259:18;;:::i;:::-;36203:84;36024:269;35973:320;;;:::o;36299:281::-;36382:27;36404:4;36382:27;:::i;:::-;36374:6;36370:40;36512:6;36500:10;36497:22;36476:18;36464:10;36461:34;36458:62;36455:88;;;36523:18;;:::i;:::-;36455:88;36563:10;36559:2;36552:22;36342:238;36299:281;;:::o;36586:233::-;36625:3;36648:24;36666:5;36648:24;:::i;:::-;36639:33;;36694:66;36687:5;36684:77;36681:103;;;36764:18;;:::i;:::-;36681:103;36811:1;36804:5;36800:13;36793:20;;36586:233;;;:::o;36825:176::-;36857:1;36874:20;36892:1;36874:20;:::i;:::-;36869:25;;36908:20;36926:1;36908:20;:::i;:::-;36903:25;;36947:1;36937:35;;36952:18;;:::i;:::-;36937:35;36993:1;36990;36986:9;36981:14;;36825:176;;;;:::o;37007:180::-;37055:77;37052:1;37045:88;37152:4;37149:1;37142:15;37176:4;37173:1;37166:15;37193:180;37241:77;37238:1;37231:88;37338:4;37335:1;37328:15;37362:4;37359:1;37352:15;37379:180;37427:77;37424:1;37417:88;37524:4;37521:1;37514:15;37548:4;37545:1;37538:15;37565:180;37613:77;37610:1;37603:88;37710:4;37707:1;37700:15;37734:4;37731:1;37724:15;37751:180;37799:77;37796:1;37789:88;37896:4;37893:1;37886:15;37920:4;37917:1;37910:15;37937:117;38046:1;38043;38036:12;38060:117;38169:1;38166;38159:12;38183:117;38292:1;38289;38282:12;38306:117;38415:1;38412;38405:12;38429:117;38538:1;38535;38528:12;38552:117;38661:1;38658;38651:12;38675:102;38716:6;38767:2;38763:7;38758:2;38751:5;38747:14;38743:28;38733:38;;38675:102;;;:::o;38783:221::-;38923:34;38919:1;38911:6;38907:14;38900:58;38992:4;38987:2;38979:6;38975:15;38968:29;38783:221;:::o;39010:225::-;39150:34;39146:1;39138:6;39134:14;39127:58;39219:8;39214:2;39206:6;39202:15;39195:33;39010:225;:::o;39241:229::-;39381:34;39377:1;39369:6;39365:14;39358:58;39450:12;39445:2;39437:6;39433:15;39426:37;39241:229;:::o;39476:156::-;39616:8;39612:1;39604:6;39600:14;39593:32;39476:156;:::o;39638:222::-;39778:34;39774:1;39766:6;39762:14;39755:58;39847:5;39842:2;39834:6;39830:15;39823:30;39638:222;:::o;39866:224::-;40006:34;40002:1;39994:6;39990:14;39983:58;40075:7;40070:2;40062:6;40058:15;40051:32;39866:224;:::o;40096:236::-;40236:34;40232:1;40224:6;40220:14;40213:58;40305:19;40300:2;40292:6;40288:15;40281:44;40096:236;:::o;40338:162::-;40478:14;40474:1;40466:6;40462:14;40455:38;40338:162;:::o;40506:244::-;40646:34;40642:1;40634:6;40630:14;40623:58;40715:27;40710:2;40702:6;40698:15;40691:52;40506:244;:::o;40756:181::-;40896:33;40892:1;40884:6;40880:14;40873:57;40756:181;:::o;40943:230::-;41083:34;41079:1;41071:6;41067:14;41060:58;41152:13;41147:2;41139:6;41135:15;41128:38;40943:230;:::o;41179:225::-;41319:34;41315:1;41307:6;41303:14;41296:58;41388:8;41383:2;41375:6;41371:15;41364:33;41179:225;:::o;41410:182::-;41550:34;41546:1;41538:6;41534:14;41527:58;41410:182;:::o;41598:234::-;41738:34;41734:1;41726:6;41722:14;41715:58;41807:17;41802:2;41794:6;41790:15;41783:42;41598:234;:::o;41838:176::-;41978:28;41974:1;41966:6;41962:14;41955:52;41838:176;:::o;42020:237::-;42160:34;42156:1;42148:6;42144:14;42137:58;42229:20;42224:2;42216:6;42212:15;42205:45;42020:237;:::o;42263:221::-;42403:34;42399:1;42391:6;42387:14;42380:58;42472:4;42467:2;42459:6;42455:15;42448:29;42263:221;:::o;42490:114::-;;:::o;42610:158::-;42750:10;42746:1;42738:6;42734:14;42727:34;42610:158;:::o;42774:238::-;42914:34;42910:1;42902:6;42898:14;42891:58;42983:21;42978:2;42970:6;42966:15;42959:46;42774:238;:::o;43018:220::-;43158:34;43154:1;43146:6;43142:14;43135:58;43227:3;43222:2;43214:6;43210:15;43203:28;43018:220;:::o;43244:227::-;43384:34;43380:1;43372:6;43368:14;43361:58;43453:10;43448:2;43440:6;43436:15;43429:35;43244:227;:::o;43477:233::-;43617:34;43613:1;43605:6;43601:14;43594:58;43686:16;43681:2;43673:6;43669:15;43662:41;43477:233;:::o;43716:181::-;43856:33;43852:1;43844:6;43840:14;43833:57;43716:181;:::o;43903:234::-;44043:34;44039:1;44031:6;44027:14;44020:58;44112:17;44107:2;44099:6;44095:15;44088:42;43903:234;:::o;44143:176::-;44283:28;44279:1;44271:6;44267:14;44260:52;44143:176;:::o;44325:232::-;44465:34;44461:1;44453:6;44449:14;44442:58;44534:15;44529:2;44521:6;44517:15;44510:40;44325:232;:::o;44563:176::-;44703:28;44699:1;44691:6;44687:14;44680:52;44563:176;:::o;44745:122::-;44818:24;44836:5;44818:24;:::i;:::-;44811:5;44808:35;44798:63;;44857:1;44854;44847:12;44798:63;44745:122;:::o;44873:116::-;44943:21;44958:5;44943:21;:::i;:::-;44936:5;44933:32;44923:60;;44979:1;44976;44969:12;44923:60;44873:116;:::o;44995:120::-;45067:23;45084:5;45067:23;:::i;:::-;45060:5;45057:34;45047:62;;45105:1;45102;45095:12;45047:62;44995:120;:::o;45121:122::-;45194:24;45212:5;45194:24;:::i;:::-;45187:5;45184:35;45174:63;;45233:1;45230;45223:12;45174:63;45121:122;:::o

Swarm Source

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