ETH Price: $3,405.90 (-1.94%)
Gas: 6 Gwei

Token

0xRumbleKL (0xRumbleKL)
 

Overview

Max Total Supply

10,000 0xRumbleKL

Holders

473

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
40 0xRumbleKL
0x31b685c06590d72c67609c2d940c41c79966d2e3
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:
RumbleKL

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-04
*/

/**
 *Submitted for verification at Etherscan.io on 2022-02-28
*/

// SPDX-License-Identifier: GPL-3.0
// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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



pragma solidity ^0.8.10;









/**
 * @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).
 */
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 private currentIndex = 1;

  uint256 public immutable maxBatchSize;

  // 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) private _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;

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_
  ) {
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
  }

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

  /**
   * @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 = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; 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);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; 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()))
        : "";
  }

  /**
   * @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 override {
    _transfer(from, to, tokenId);
  }

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId
  ) public 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 Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      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);

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, 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] = TokenOwnership(
          prevOwnership.addr,
          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);
  }

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > currentIndex - 1) {
      endIndex = currentIndex - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

  /**
   * @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 {}
}
// File: contracts/RumbleKL.sol



//Developer: AFO



pragma solidity >=0.7.0 <0.9.0;





contract RumbleKL is ERC721A, Ownable {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 0.0069 ether;
  uint256 public maxSupply = 10000;
  uint256 public maxsize = 20 ; // max mint per tx
  bool public paused = false;

  constructor() ERC721A("0xRumbleKL", "0xRumbleKL", maxsize) {
    setBaseURI("ipfs://QmWixQ1Q6yGEEA4wuVs92nMKt7gZSoyXBNJ2ReaMDPvm38/");
  }

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

  // public
  function mint(uint256 tokens) public payable {
    require(!paused, "0xRumbleKL: oops contract is paused");
    uint256 supply = totalSupply();
    require(tokens > 0, "0xRumbleKL: need to mint at least 1 NFT");
    require(tokens <= maxsize, "0xRumbleKL: max mint amount per tx exceeded");
    require(supply + tokens <= maxSupply, "0xRumbleKL: We Sold Out!!");
    if (supply < 500) {
      require(msg.value >= 0 * tokens, "0xRumbleKL: It's Free Mint");
    } else {

    require(msg.value >= cost * tokens, "0xRumbleKL: insufficient funds");
    }

      _safeMint(_msgSender(), tokens);
    
  }



  /// @dev use it for giveaway and mint for yourself
     function gift(uint256 _mintAmount, address destination) public onlyOwner {
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    uint256 supply = totalSupply();
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

      _safeMint(destination, _mintAmount);
    
  }

  


  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

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

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

  //only owner

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

    function setMaxsupply(uint256 _newsupply) public onlyOwner {
    maxSupply = _newsupply;
  }


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

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }
  

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

  
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"maxBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxsize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setMaxsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a0604052600160005560006007556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90805190602001906200005b92919062000380565b506618838370f34000600b55612710600c556014600d556000600e60006101000a81548160ff0219169083151502179055503480156200009a57600080fd5b506040518060400160405280600a81526020017f307852756d626c654b4c000000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f307852756d626c654b4c00000000000000000000000000000000000000000000815250600d546000811162000150576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200014790620004b7565b60405180910390fd5b82600190805190602001906200016892919062000380565b5081600290805190602001906200018192919062000380565b508060808181525050505050620001ad620001a1620001dd60201b60201c565b620001e560201b60201c565b620001d76040518060600160405280603681526020016200535960369139620002ab60201b60201c565b620005b0565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002bb620001dd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002e16200035660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200033a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003319062000529565b60405180910390fd5b80600990805190602001906200035292919062000380565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200038e906200057a565b90600052602060002090601f016020900481019282620003b25760008555620003fe565b82601f10620003cd57805160ff1916838001178555620003fe565b82800160010185558215620003fe579182015b82811115620003fd578251825591602001919060010190620003e0565b5b5090506200040d919062000411565b5090565b5b808211156200042c57600081600090555060010162000412565b5090565b600082825260208201905092915050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b60006200049f60278362000430565b9150620004ac8262000441565b604082019050919050565b60006020820190508181036000830152620004d28162000490565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200051160208362000430565b91506200051e82620004d9565b602082019050919050565b60006020820190508181036000830152620005448162000502565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200059357607f821691505b60208210811415620005aa57620005a96200054b565b5b50919050565b608051614d78620005e160003960008181610d3a01528181612520015281816125490152612bfb0152614d786000f3fe60806040526004361061020f5760003560e01c80636352211e11610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb011461078e578063d7224ba0146107b9578063da3ef23f146107e4578063e985e9c51461080d578063f2fde38b1461084a5761020f565b8063a22cb465146106d4578063b88d4fde146106fd578063c668286214610726578063c87b56dd146107515761020f565b8063715018a6116100e7578063715018a61461062257806383a076be146106395780638da5cb5b1461066257806395d89b411461068d578063a0712d68146106b85761020f565b80636352211e146105525780636c0360eb1461058f5780636c6e927e146105ba57806370a08231146105e55761020f565b80632913daa01161019b578063438b63001161016a578063438b63001461045b57806344a0d68a146104985780634f6ccce7146104c157806355f804b3146104fe5780635c975abb146105275761020f565b80632913daa0146103b35780632f745c59146103de5780633ccfd60b1461041b57806342842e0e146104325761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806313faede61461030b578063149835a01461033657806318160ddd1461035f57806323b872dd1461038a5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613185565b610873565b60405161024891906131cd565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190613214565b6109bd565b005b34801561028657600080fd5b5061028f610a56565b60405161029c91906132da565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c79190613332565b610ae8565b6040516102d991906133a0565b60405180910390f35b3480156102ee57600080fd5b50610309600480360381019061030491906133e7565b610b6d565b005b34801561031757600080fd5b50610320610c86565b60405161032d9190613436565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190613332565b610c8c565b005b34801561036b57600080fd5b50610374610d12565b6040516103819190613436565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190613451565b610d28565b005b3480156103bf57600080fd5b506103c8610d38565b6040516103d59190613436565b60405180910390f35b3480156103ea57600080fd5b50610405600480360381019061040091906133e7565b610d5c565b6040516104129190613436565b60405180910390f35b34801561042757600080fd5b50610430610f5a565b005b34801561043e57600080fd5b5061045960048036038101906104549190613451565b611056565b005b34801561046757600080fd5b50610482600480360381019061047d91906134a4565b611076565b60405161048f919061358f565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190613332565b611124565b005b3480156104cd57600080fd5b506104e860048036038101906104e39190613332565b6111aa565b6040516104f59190613436565b60405180910390f35b34801561050a57600080fd5b50610525600480360381019061052091906136e6565b6111fd565b005b34801561053357600080fd5b5061053c611293565b60405161054991906131cd565b60405180910390f35b34801561055e57600080fd5b5061057960048036038101906105749190613332565b6112a6565b60405161058691906133a0565b60405180910390f35b34801561059b57600080fd5b506105a46112bc565b6040516105b191906132da565b60405180910390f35b3480156105c657600080fd5b506105cf61134a565b6040516105dc9190613436565b60405180910390f35b3480156105f157600080fd5b5061060c600480360381019061060791906134a4565b611350565b6040516106199190613436565b60405180910390f35b34801561062e57600080fd5b50610637611439565b005b34801561064557600080fd5b50610660600480360381019061065b919061372f565b6114c1565b005b34801561066e57600080fd5b506106776115eb565b60405161068491906133a0565b60405180910390f35b34801561069957600080fd5b506106a2611615565b6040516106af91906132da565b60405180910390f35b6106d260048036038101906106cd9190613332565b6116a7565b005b3480156106e057600080fd5b506106fb60048036038101906106f6919061376f565b61189f565b005b34801561070957600080fd5b50610724600480360381019061071f9190613850565b611a20565b005b34801561073257600080fd5b5061073b611a7c565b60405161074891906132da565b60405180910390f35b34801561075d57600080fd5b5061077860048036038101906107739190613332565b611b0a565b60405161078591906132da565b60405180910390f35b34801561079a57600080fd5b506107a3611bb4565b6040516107b09190613436565b60405180910390f35b3480156107c557600080fd5b506107ce611bba565b6040516107db9190613436565b60405180910390f35b3480156107f057600080fd5b5061080b600480360381019061080691906136e6565b611bc0565b005b34801561081957600080fd5b50610834600480360381019061082f91906138d3565b611c56565b60405161084191906131cd565b60405180910390f35b34801561085657600080fd5b50610871600480360381019061086c91906134a4565b611cea565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109b657506109b582611de2565b5b9050919050565b6109c5611e4c565b73ffffffffffffffffffffffffffffffffffffffff166109e36115eb565b73ffffffffffffffffffffffffffffffffffffffff1614610a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a309061395f565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b606060018054610a65906139ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610a91906139ae565b8015610ade5780601f10610ab357610100808354040283529160200191610ade565b820191906000526020600020905b815481529060010190602001808311610ac157829003601f168201915b5050505050905090565b6000610af382611e54565b610b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2990613a52565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b78826112a6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be090613ae4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c08611e4c565b73ffffffffffffffffffffffffffffffffffffffff161480610c375750610c3681610c31611e4c565b611c56565b5b610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d90613b76565b60405180910390fd5b610c81838383611e61565b505050565b600b5481565b610c94611e4c565b73ffffffffffffffffffffffffffffffffffffffff16610cb26115eb565b73ffffffffffffffffffffffffffffffffffffffff1614610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff9061395f565b60405180910390fd5b80600c8190555050565b60006001600054610d239190613bc5565b905090565b610d33838383611f13565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000610d6783611350565b8210610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f90613c6b565b60405180910390fd5b6000610db2610d12565b905060008060005b83811015610f18576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610eac57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f045786841415610ef5578195505050505050610f54565b8380610f0090613c8b565b9450505b508080610f1090613c8b565b915050610dba565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4b90613d46565b60405180910390fd5b92915050565b610f62611e4c565b73ffffffffffffffffffffffffffffffffffffffff16610f806115eb565b73ffffffffffffffffffffffffffffffffffffffff1614610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd9061395f565b60405180910390fd5b6000610fe06115eb565b73ffffffffffffffffffffffffffffffffffffffff164760405161100390613d97565b60006040518083038185875af1925050503d8060008114611040576040519150601f19603f3d011682016040523d82523d6000602084013e611045565b606091505b505090508061105357600080fd5b50565b61107183838360405180602001604052806000815250611a20565b505050565b6060600061108383611350565b905060008167ffffffffffffffff8111156110a1576110a06135bb565b5b6040519080825280602002602001820160405280156110cf5781602001602082028036833780820191505090505b50905060005b82811015611119576110e78582610d5c565b8282815181106110fa576110f9613dac565b5b602002602001018181525050808061111190613c8b565b9150506110d5565b508092505050919050565b61112c611e4c565b73ffffffffffffffffffffffffffffffffffffffff1661114a6115eb565b73ffffffffffffffffffffffffffffffffffffffff16146111a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111979061395f565b60405180910390fd5b80600b8190555050565b60006111b4610d12565b82106111f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ec90613e4d565b60405180910390fd5b819050919050565b611205611e4c565b73ffffffffffffffffffffffffffffffffffffffff166112236115eb565b73ffffffffffffffffffffffffffffffffffffffff1614611279576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112709061395f565b60405180910390fd5b806009908051906020019061128f92919061303c565b5050565b600e60009054906101000a900460ff1681565b60006112b1826124cc565b600001519050919050565b600980546112c9906139ae565b80601f01602080910402602001604051908101604052809291908181526020018280546112f5906139ae565b80156113425780601f1061131757610100808354040283529160200191611342565b820191906000526020600020905b81548152906001019060200180831161132557829003601f168201915b505050505081565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b890613edf565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611441611e4c565b73ffffffffffffffffffffffffffffffffffffffff1661145f6115eb565b73ffffffffffffffffffffffffffffffffffffffff16146114b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ac9061395f565b60405180910390fd5b6114bf60006126cf565b565b6114c9611e4c565b73ffffffffffffffffffffffffffffffffffffffff166114e76115eb565b73ffffffffffffffffffffffffffffffffffffffff161461153d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115349061395f565b60405180910390fd5b60008211611580576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157790613f4b565b60405180910390fd5b600061158a610d12565b9050600c54838261159b9190613f6b565b11156115dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d39061400d565b60405180910390fd5b6115e68284612795565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611624906139ae565b80601f0160208091040260200160405190810160405280929190818152602001828054611650906139ae565b801561169d5780601f106116725761010080835404028352916020019161169d565b820191906000526020600020905b81548152906001019060200180831161168057829003601f168201915b5050505050905090565b600e60009054906101000a900460ff16156116f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ee9061409f565b60405180910390fd5b6000611701610d12565b905060008211611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d90614131565b60405180910390fd5b600d5482111561178b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611782906141c3565b60405180910390fd5b600c54828261179a9190613f6b565b11156117db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d29061422f565b60405180910390fd5b6101f4811015611839578160006117f2919061424f565b341015611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b906142f5565b60405180910390fd5b61188a565b81600b54611847919061424f565b341015611889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188090614361565b60405180910390fd5b5b61189b611895611e4c565b83612795565b5050565b6118a7611e4c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190c906143cd565b60405180910390fd5b8060066000611922611e4c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119cf611e4c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a1491906131cd565b60405180910390a35050565b611a2b848484611f13565b611a37848484846127b3565b611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d9061445f565b60405180910390fd5b50505050565b600a8054611a89906139ae565b80601f0160208091040260200160405190810160405280929190818152602001828054611ab5906139ae565b8015611b025780601f10611ad757610100808354040283529160200191611b02565b820191906000526020600020905b815481529060010190602001808311611ae557829003601f168201915b505050505081565b6060611b1582611e54565b611b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4b906144f1565b60405180910390fd5b6000611b5e61293b565b90506000815111611b7e5760405180602001604052806000815250611bac565b80611b88846129cd565b600a604051602001611b9c939291906145e1565b6040516020818303038152906040525b915050919050565b600c5481565b60075481565b611bc8611e4c565b73ffffffffffffffffffffffffffffffffffffffff16611be66115eb565b73ffffffffffffffffffffffffffffffffffffffff1614611c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c339061395f565b60405180910390fd5b80600a9080519060200190611c5292919061303c565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cf2611e4c565b73ffffffffffffffffffffffffffffffffffffffff16611d106115eb565b73ffffffffffffffffffffffffffffffffffffffff1614611d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5d9061395f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcd90614684565b60405180910390fd5b611ddf816126cf565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611f1e826124cc565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f45611e4c565b73ffffffffffffffffffffffffffffffffffffffff161480611fa15750611f6a611e4c565b73ffffffffffffffffffffffffffffffffffffffff16611f8984610ae8565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fbd5750611fbc8260000151611fb7611e4c565b611c56565b5b905080611fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff690614716565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612071576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612068906147a8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d89061483a565b60405180910390fd5b6120ee8585856001612b2e565b6120fe6000848460000151611e61565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661216c9190614876565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661221091906148aa565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846123169190613f6b565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561245c5761238c81611e54565b1561245b576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124c48686866001612b34565b505050505050565b6124d46130c2565b6124dd82611e54565b61251c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251390614962565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106125805760017f0000000000000000000000000000000000000000000000000000000000000000846125739190613bc5565b61257d9190613f6b565b90505b60008390505b81811061268e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461267a578093505050506126ca565b50808061268690614982565b915050612586565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c190614a1e565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127af828260405180602001604052806000815250612b3a565b5050565b60006127d48473ffffffffffffffffffffffffffffffffffffffff16613019565b1561292e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127fd611e4c565b8786866040518563ffffffff1660e01b815260040161281f9493929190614a93565b6020604051808303816000875af192505050801561285b57506040513d601f19601f820116820180604052508101906128589190614af4565b60015b6128de573d806000811461288b576040519150601f19603f3d011682016040523d82523d6000602084013e612890565b606091505b506000815114156128d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cd9061445f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612933565b600190505b949350505050565b60606009805461294a906139ae565b80601f0160208091040260200160405190810160405280929190818152602001828054612976906139ae565b80156129c35780601f10612998576101008083540402835291602001916129c3565b820191906000526020600020905b8154815290600101906020018083116129a657829003601f168201915b5050505050905090565b60606000821415612a15576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b29565b600082905060005b60008214612a47578080612a3090613c8b565b915050600a82612a409190614b50565b9150612a1d565b60008167ffffffffffffffff811115612a6357612a626135bb565b5b6040519080825280601f01601f191660200182016040528015612a955781602001600182028036833780820191505090505b5090505b60008514612b2257600182612aae9190613bc5565b9150600a85612abd9190614b81565b6030612ac99190613f6b565b60f81b818381518110612adf57612ade613dac565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b1b9190614b50565b9450612a99565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba790614c24565b60405180910390fd5b612bb981611e54565b15612bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf090614c90565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5390614d22565b60405180910390fd5b612c696000858386612b2e565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612d6691906148aa565b6fffffffffffffffffffffffffffffffff168152602001858360200151612d8d91906148aa565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612ffc57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f9c60008884886127b3565b612fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd29061445f565b60405180910390fd5b8180612fe690613c8b565b9250508080612ff490613c8b565b915050612f2b565b50806000819055506130116000878588612b34565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054613048906139ae565b90600052602060002090601f01602090048101928261306a57600085556130b1565b82601f1061308357805160ff19168380011785556130b1565b828001600101855582156130b1579182015b828111156130b0578251825591602001919060010190613095565b5b5090506130be91906130fc565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156131155760008160009055506001016130fd565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131628161312d565b811461316d57600080fd5b50565b60008135905061317f81613159565b92915050565b60006020828403121561319b5761319a613123565b5b60006131a984828501613170565b91505092915050565b60008115159050919050565b6131c7816131b2565b82525050565b60006020820190506131e260008301846131be565b92915050565b6131f1816131b2565b81146131fc57600080fd5b50565b60008135905061320e816131e8565b92915050565b60006020828403121561322a57613229613123565b5b6000613238848285016131ff565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561327b578082015181840152602081019050613260565b8381111561328a576000848401525b50505050565b6000601f19601f8301169050919050565b60006132ac82613241565b6132b6818561324c565b93506132c681856020860161325d565b6132cf81613290565b840191505092915050565b600060208201905081810360008301526132f481846132a1565b905092915050565b6000819050919050565b61330f816132fc565b811461331a57600080fd5b50565b60008135905061332c81613306565b92915050565b60006020828403121561334857613347613123565b5b60006133568482850161331d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061338a8261335f565b9050919050565b61339a8161337f565b82525050565b60006020820190506133b56000830184613391565b92915050565b6133c48161337f565b81146133cf57600080fd5b50565b6000813590506133e1816133bb565b92915050565b600080604083850312156133fe576133fd613123565b5b600061340c858286016133d2565b925050602061341d8582860161331d565b9150509250929050565b613430816132fc565b82525050565b600060208201905061344b6000830184613427565b92915050565b60008060006060848603121561346a57613469613123565b5b6000613478868287016133d2565b9350506020613489868287016133d2565b925050604061349a8682870161331d565b9150509250925092565b6000602082840312156134ba576134b9613123565b5b60006134c8848285016133d2565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613506816132fc565b82525050565b600061351883836134fd565b60208301905092915050565b6000602082019050919050565b600061353c826134d1565b61354681856134dc565b9350613551836134ed565b8060005b83811015613582578151613569888261350c565b975061357483613524565b925050600181019050613555565b5085935050505092915050565b600060208201905081810360008301526135a98184613531565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135f382613290565b810181811067ffffffffffffffff82111715613612576136116135bb565b5b80604052505050565b6000613625613119565b905061363182826135ea565b919050565b600067ffffffffffffffff821115613651576136506135bb565b5b61365a82613290565b9050602081019050919050565b82818337600083830152505050565b600061368961368484613636565b61361b565b9050828152602081018484840111156136a5576136a46135b6565b5b6136b0848285613667565b509392505050565b600082601f8301126136cd576136cc6135b1565b5b81356136dd848260208601613676565b91505092915050565b6000602082840312156136fc576136fb613123565b5b600082013567ffffffffffffffff81111561371a57613719613128565b5b613726848285016136b8565b91505092915050565b6000806040838503121561374657613745613123565b5b60006137548582860161331d565b9250506020613765858286016133d2565b9150509250929050565b6000806040838503121561378657613785613123565b5b6000613794858286016133d2565b92505060206137a5858286016131ff565b9150509250929050565b600067ffffffffffffffff8211156137ca576137c96135bb565b5b6137d382613290565b9050602081019050919050565b60006137f36137ee846137af565b61361b565b90508281526020810184848401111561380f5761380e6135b6565b5b61381a848285613667565b509392505050565b600082601f830112613837576138366135b1565b5b81356138478482602086016137e0565b91505092915050565b6000806000806080858703121561386a57613869613123565b5b6000613878878288016133d2565b9450506020613889878288016133d2565b935050604061389a8782880161331d565b925050606085013567ffffffffffffffff8111156138bb576138ba613128565b5b6138c787828801613822565b91505092959194509250565b600080604083850312156138ea576138e9613123565b5b60006138f8858286016133d2565b9250506020613909858286016133d2565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061394960208361324c565b915061395482613913565b602082019050919050565b600060208201905081810360008301526139788161393c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806139c657607f821691505b602082108114156139da576139d961397f565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613a3c602d8361324c565b9150613a47826139e0565b604082019050919050565b60006020820190508181036000830152613a6b81613a2f565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ace60228361324c565b9150613ad982613a72565b604082019050919050565b60006020820190508181036000830152613afd81613ac1565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613b6060398361324c565b9150613b6b82613b04565b604082019050919050565b60006020820190508181036000830152613b8f81613b53565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613bd0826132fc565b9150613bdb836132fc565b925082821015613bee57613bed613b96565b5b828203905092915050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c5560228361324c565b9150613c6082613bf9565b604082019050919050565b60006020820190508181036000830152613c8481613c48565b9050919050565b6000613c96826132fc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cc957613cc8613b96565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613d30602e8361324c565b9150613d3b82613cd4565b604082019050919050565b60006020820190508181036000830152613d5f81613d23565b9050919050565b600081905092915050565b50565b6000613d81600083613d66565b9150613d8c82613d71565b600082019050919050565b6000613da282613d74565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613e3760238361324c565b9150613e4282613ddb565b604082019050919050565b60006020820190508181036000830152613e6681613e2a565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613ec9602b8361324c565b9150613ed482613e6d565b604082019050919050565b60006020820190508181036000830152613ef881613ebc565b9050919050565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6000613f35601b8361324c565b9150613f4082613eff565b602082019050919050565b60006020820190508181036000830152613f6481613f28565b9050919050565b6000613f76826132fc565b9150613f81836132fc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fb657613fb5613b96565b5b828201905092915050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b6000613ff760168361324c565b915061400282613fc1565b602082019050919050565b6000602082019050818103600083015261402681613fea565b9050919050565b7f307852756d626c654b4c3a206f6f707320636f6e74726163742069732070617560008201527f7365640000000000000000000000000000000000000000000000000000000000602082015250565b600061408960238361324c565b91506140948261402d565b604082019050919050565b600060208201905081810360008301526140b88161407c565b9050919050565b7f307852756d626c654b4c3a206e65656420746f206d696e74206174206c65617360008201527f742031204e465400000000000000000000000000000000000000000000000000602082015250565b600061411b60278361324c565b9150614126826140bf565b604082019050919050565b6000602082019050818103600083015261414a8161410e565b9050919050565b7f307852756d626c654b4c3a206d6178206d696e7420616d6f756e74207065722060008201527f7478206578636565646564000000000000000000000000000000000000000000602082015250565b60006141ad602b8361324c565b91506141b882614151565b604082019050919050565b600060208201905081810360008301526141dc816141a0565b9050919050565b7f307852756d626c654b4c3a20576520536f6c64204f7574212100000000000000600082015250565b600061421960198361324c565b9150614224826141e3565b602082019050919050565b600060208201905081810360008301526142488161420c565b9050919050565b600061425a826132fc565b9150614265836132fc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561429e5761429d613b96565b5b828202905092915050565b7f307852756d626c654b4c3a20497427732046726565204d696e74000000000000600082015250565b60006142df601a8361324c565b91506142ea826142a9565b602082019050919050565b6000602082019050818103600083015261430e816142d2565b9050919050565b7f307852756d626c654b4c3a20696e73756666696369656e742066756e64730000600082015250565b600061434b601e8361324c565b915061435682614315565b602082019050919050565b6000602082019050818103600083015261437a8161433e565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b60006143b7601a8361324c565b91506143c282614381565b602082019050919050565b600060208201905081810360008301526143e6816143aa565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b600061444960338361324c565b9150614454826143ed565b604082019050919050565b600060208201905081810360008301526144788161443c565b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b60006144db60308361324c565b91506144e68261447f565b604082019050919050565b6000602082019050818103600083015261450a816144ce565b9050919050565b600081905092915050565b600061452782613241565b6145318185614511565b935061454181856020860161325d565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461456f816139ae565b6145798186614511565b9450600182166000811461459457600181146145a5576145d8565b60ff198316865281860193506145d8565b6145ae8561454d565b60005b838110156145d0578154818901526001820191506020810190506145b1565b838801955050505b50505092915050565b60006145ed828661451c565b91506145f9828561451c565b91506146058284614562565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061466e60268361324c565b915061467982614612565b604082019050919050565b6000602082019050818103600083015261469d81614661565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b600061470060328361324c565b915061470b826146a4565b604082019050919050565b6000602082019050818103600083015261472f816146f3565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b600061479260268361324c565b915061479d82614736565b604082019050919050565b600060208201905081810360008301526147c181614785565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061482460258361324c565b915061482f826147c8565b604082019050919050565b6000602082019050818103600083015261485381614817565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b60006148818261485a565b915061488c8361485a565b92508282101561489f5761489e613b96565b5b828203905092915050565b60006148b58261485a565b91506148c08361485a565b9250826fffffffffffffffffffffffffffffffff038211156148e5576148e4613b96565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b600061494c602a8361324c565b9150614957826148f0565b604082019050919050565b6000602082019050818103600083015261497b8161493f565b9050919050565b600061498d826132fc565b915060008214156149a1576149a0613b96565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614a08602f8361324c565b9150614a13826149ac565b604082019050919050565b60006020820190508181036000830152614a37816149fb565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614a6582614a3e565b614a6f8185614a49565b9350614a7f81856020860161325d565b614a8881613290565b840191505092915050565b6000608082019050614aa86000830187613391565b614ab56020830186613391565b614ac26040830185613427565b8181036060830152614ad48184614a5a565b905095945050505050565b600081519050614aee81613159565b92915050565b600060208284031215614b0a57614b09613123565b5b6000614b1884828501614adf565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614b5b826132fc565b9150614b66836132fc565b925082614b7657614b75614b21565b5b828204905092915050565b6000614b8c826132fc565b9150614b97836132fc565b925082614ba757614ba6614b21565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c0e60218361324c565b9150614c1982614bb2565b604082019050919050565b60006020820190508181036000830152614c3d81614c01565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000614c7a601d8361324c565b9150614c8582614c44565b602082019050919050565b60006020820190508181036000830152614ca981614c6d565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000614d0c60228361324c565b9150614d1782614cb0565b604082019050919050565b60006020820190508181036000830152614d3b81614cff565b905091905056fea2646970667358221220206a56dec99adef5c12ea0e5db81cb755c4c6db314d377053f0b70dfa3d9d57a64736f6c634300080a0033697066733a2f2f516d576978513151367947454541347775567339326e4d4b7437675a536f7958424e4a325265614d4450766d33382f

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80636352211e11610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb011461078e578063d7224ba0146107b9578063da3ef23f146107e4578063e985e9c51461080d578063f2fde38b1461084a5761020f565b8063a22cb465146106d4578063b88d4fde146106fd578063c668286214610726578063c87b56dd146107515761020f565b8063715018a6116100e7578063715018a61461062257806383a076be146106395780638da5cb5b1461066257806395d89b411461068d578063a0712d68146106b85761020f565b80636352211e146105525780636c0360eb1461058f5780636c6e927e146105ba57806370a08231146105e55761020f565b80632913daa01161019b578063438b63001161016a578063438b63001461045b57806344a0d68a146104985780634f6ccce7146104c157806355f804b3146104fe5780635c975abb146105275761020f565b80632913daa0146103b35780632f745c59146103de5780633ccfd60b1461041b57806342842e0e146104325761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806313faede61461030b578063149835a01461033657806318160ddd1461035f57806323b872dd1461038a5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613185565b610873565b60405161024891906131cd565b60405180910390f35b34801561025d57600080fd5b5061027860048036038101906102739190613214565b6109bd565b005b34801561028657600080fd5b5061028f610a56565b60405161029c91906132da565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c79190613332565b610ae8565b6040516102d991906133a0565b60405180910390f35b3480156102ee57600080fd5b50610309600480360381019061030491906133e7565b610b6d565b005b34801561031757600080fd5b50610320610c86565b60405161032d9190613436565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190613332565b610c8c565b005b34801561036b57600080fd5b50610374610d12565b6040516103819190613436565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190613451565b610d28565b005b3480156103bf57600080fd5b506103c8610d38565b6040516103d59190613436565b60405180910390f35b3480156103ea57600080fd5b50610405600480360381019061040091906133e7565b610d5c565b6040516104129190613436565b60405180910390f35b34801561042757600080fd5b50610430610f5a565b005b34801561043e57600080fd5b5061045960048036038101906104549190613451565b611056565b005b34801561046757600080fd5b50610482600480360381019061047d91906134a4565b611076565b60405161048f919061358f565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190613332565b611124565b005b3480156104cd57600080fd5b506104e860048036038101906104e39190613332565b6111aa565b6040516104f59190613436565b60405180910390f35b34801561050a57600080fd5b50610525600480360381019061052091906136e6565b6111fd565b005b34801561053357600080fd5b5061053c611293565b60405161054991906131cd565b60405180910390f35b34801561055e57600080fd5b5061057960048036038101906105749190613332565b6112a6565b60405161058691906133a0565b60405180910390f35b34801561059b57600080fd5b506105a46112bc565b6040516105b191906132da565b60405180910390f35b3480156105c657600080fd5b506105cf61134a565b6040516105dc9190613436565b60405180910390f35b3480156105f157600080fd5b5061060c600480360381019061060791906134a4565b611350565b6040516106199190613436565b60405180910390f35b34801561062e57600080fd5b50610637611439565b005b34801561064557600080fd5b50610660600480360381019061065b919061372f565b6114c1565b005b34801561066e57600080fd5b506106776115eb565b60405161068491906133a0565b60405180910390f35b34801561069957600080fd5b506106a2611615565b6040516106af91906132da565b60405180910390f35b6106d260048036038101906106cd9190613332565b6116a7565b005b3480156106e057600080fd5b506106fb60048036038101906106f6919061376f565b61189f565b005b34801561070957600080fd5b50610724600480360381019061071f9190613850565b611a20565b005b34801561073257600080fd5b5061073b611a7c565b60405161074891906132da565b60405180910390f35b34801561075d57600080fd5b5061077860048036038101906107739190613332565b611b0a565b60405161078591906132da565b60405180910390f35b34801561079a57600080fd5b506107a3611bb4565b6040516107b09190613436565b60405180910390f35b3480156107c557600080fd5b506107ce611bba565b6040516107db9190613436565b60405180910390f35b3480156107f057600080fd5b5061080b600480360381019061080691906136e6565b611bc0565b005b34801561081957600080fd5b50610834600480360381019061082f91906138d3565b611c56565b60405161084191906131cd565b60405180910390f35b34801561085657600080fd5b50610871600480360381019061086c91906134a4565b611cea565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109b657506109b582611de2565b5b9050919050565b6109c5611e4c565b73ffffffffffffffffffffffffffffffffffffffff166109e36115eb565b73ffffffffffffffffffffffffffffffffffffffff1614610a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a309061395f565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b606060018054610a65906139ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610a91906139ae565b8015610ade5780601f10610ab357610100808354040283529160200191610ade565b820191906000526020600020905b815481529060010190602001808311610ac157829003601f168201915b5050505050905090565b6000610af382611e54565b610b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2990613a52565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b78826112a6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be090613ae4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c08611e4c565b73ffffffffffffffffffffffffffffffffffffffff161480610c375750610c3681610c31611e4c565b611c56565b5b610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d90613b76565b60405180910390fd5b610c81838383611e61565b505050565b600b5481565b610c94611e4c565b73ffffffffffffffffffffffffffffffffffffffff16610cb26115eb565b73ffffffffffffffffffffffffffffffffffffffff1614610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff9061395f565b60405180910390fd5b80600c8190555050565b60006001600054610d239190613bc5565b905090565b610d33838383611f13565b505050565b7f000000000000000000000000000000000000000000000000000000000000001481565b6000610d6783611350565b8210610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f90613c6b565b60405180910390fd5b6000610db2610d12565b905060008060005b83811015610f18576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610eac57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f045786841415610ef5578195505050505050610f54565b8380610f0090613c8b565b9450505b508080610f1090613c8b565b915050610dba565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4b90613d46565b60405180910390fd5b92915050565b610f62611e4c565b73ffffffffffffffffffffffffffffffffffffffff16610f806115eb565b73ffffffffffffffffffffffffffffffffffffffff1614610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd9061395f565b60405180910390fd5b6000610fe06115eb565b73ffffffffffffffffffffffffffffffffffffffff164760405161100390613d97565b60006040518083038185875af1925050503d8060008114611040576040519150601f19603f3d011682016040523d82523d6000602084013e611045565b606091505b505090508061105357600080fd5b50565b61107183838360405180602001604052806000815250611a20565b505050565b6060600061108383611350565b905060008167ffffffffffffffff8111156110a1576110a06135bb565b5b6040519080825280602002602001820160405280156110cf5781602001602082028036833780820191505090505b50905060005b82811015611119576110e78582610d5c565b8282815181106110fa576110f9613dac565b5b602002602001018181525050808061111190613c8b565b9150506110d5565b508092505050919050565b61112c611e4c565b73ffffffffffffffffffffffffffffffffffffffff1661114a6115eb565b73ffffffffffffffffffffffffffffffffffffffff16146111a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111979061395f565b60405180910390fd5b80600b8190555050565b60006111b4610d12565b82106111f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ec90613e4d565b60405180910390fd5b819050919050565b611205611e4c565b73ffffffffffffffffffffffffffffffffffffffff166112236115eb565b73ffffffffffffffffffffffffffffffffffffffff1614611279576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112709061395f565b60405180910390fd5b806009908051906020019061128f92919061303c565b5050565b600e60009054906101000a900460ff1681565b60006112b1826124cc565b600001519050919050565b600980546112c9906139ae565b80601f01602080910402602001604051908101604052809291908181526020018280546112f5906139ae565b80156113425780601f1061131757610100808354040283529160200191611342565b820191906000526020600020905b81548152906001019060200180831161132557829003601f168201915b505050505081565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b890613edf565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611441611e4c565b73ffffffffffffffffffffffffffffffffffffffff1661145f6115eb565b73ffffffffffffffffffffffffffffffffffffffff16146114b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ac9061395f565b60405180910390fd5b6114bf60006126cf565b565b6114c9611e4c565b73ffffffffffffffffffffffffffffffffffffffff166114e76115eb565b73ffffffffffffffffffffffffffffffffffffffff161461153d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115349061395f565b60405180910390fd5b60008211611580576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157790613f4b565b60405180910390fd5b600061158a610d12565b9050600c54838261159b9190613f6b565b11156115dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d39061400d565b60405180910390fd5b6115e68284612795565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611624906139ae565b80601f0160208091040260200160405190810160405280929190818152602001828054611650906139ae565b801561169d5780601f106116725761010080835404028352916020019161169d565b820191906000526020600020905b81548152906001019060200180831161168057829003601f168201915b5050505050905090565b600e60009054906101000a900460ff16156116f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ee9061409f565b60405180910390fd5b6000611701610d12565b905060008211611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d90614131565b60405180910390fd5b600d5482111561178b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611782906141c3565b60405180910390fd5b600c54828261179a9190613f6b565b11156117db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d29061422f565b60405180910390fd5b6101f4811015611839578160006117f2919061424f565b341015611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b906142f5565b60405180910390fd5b61188a565b81600b54611847919061424f565b341015611889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188090614361565b60405180910390fd5b5b61189b611895611e4c565b83612795565b5050565b6118a7611e4c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190c906143cd565b60405180910390fd5b8060066000611922611e4c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119cf611e4c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a1491906131cd565b60405180910390a35050565b611a2b848484611f13565b611a37848484846127b3565b611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d9061445f565b60405180910390fd5b50505050565b600a8054611a89906139ae565b80601f0160208091040260200160405190810160405280929190818152602001828054611ab5906139ae565b8015611b025780601f10611ad757610100808354040283529160200191611b02565b820191906000526020600020905b815481529060010190602001808311611ae557829003601f168201915b505050505081565b6060611b1582611e54565b611b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4b906144f1565b60405180910390fd5b6000611b5e61293b565b90506000815111611b7e5760405180602001604052806000815250611bac565b80611b88846129cd565b600a604051602001611b9c939291906145e1565b6040516020818303038152906040525b915050919050565b600c5481565b60075481565b611bc8611e4c565b73ffffffffffffffffffffffffffffffffffffffff16611be66115eb565b73ffffffffffffffffffffffffffffffffffffffff1614611c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c339061395f565b60405180910390fd5b80600a9080519060200190611c5292919061303c565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cf2611e4c565b73ffffffffffffffffffffffffffffffffffffffff16611d106115eb565b73ffffffffffffffffffffffffffffffffffffffff1614611d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5d9061395f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcd90614684565b60405180910390fd5b611ddf816126cf565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611f1e826124cc565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611f45611e4c565b73ffffffffffffffffffffffffffffffffffffffff161480611fa15750611f6a611e4c565b73ffffffffffffffffffffffffffffffffffffffff16611f8984610ae8565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fbd5750611fbc8260000151611fb7611e4c565b611c56565b5b905080611fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff690614716565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612071576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612068906147a8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d89061483a565b60405180910390fd5b6120ee8585856001612b2e565b6120fe6000848460000151611e61565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661216c9190614876565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661221091906148aa565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846123169190613f6b565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561245c5761238c81611e54565b1561245b576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124c48686866001612b34565b505050505050565b6124d46130c2565b6124dd82611e54565b61251c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251390614962565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000001483106125805760017f0000000000000000000000000000000000000000000000000000000000000014846125739190613bc5565b61257d9190613f6b565b90505b60008390505b81811061268e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461267a578093505050506126ca565b50808061268690614982565b915050612586565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c190614a1e565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127af828260405180602001604052806000815250612b3a565b5050565b60006127d48473ffffffffffffffffffffffffffffffffffffffff16613019565b1561292e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127fd611e4c565b8786866040518563ffffffff1660e01b815260040161281f9493929190614a93565b6020604051808303816000875af192505050801561285b57506040513d601f19601f820116820180604052508101906128589190614af4565b60015b6128de573d806000811461288b576040519150601f19603f3d011682016040523d82523d6000602084013e612890565b606091505b506000815114156128d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cd9061445f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612933565b600190505b949350505050565b60606009805461294a906139ae565b80601f0160208091040260200160405190810160405280929190818152602001828054612976906139ae565b80156129c35780601f10612998576101008083540402835291602001916129c3565b820191906000526020600020905b8154815290600101906020018083116129a657829003601f168201915b5050505050905090565b60606000821415612a15576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b29565b600082905060005b60008214612a47578080612a3090613c8b565b915050600a82612a409190614b50565b9150612a1d565b60008167ffffffffffffffff811115612a6357612a626135bb565b5b6040519080825280601f01601f191660200182016040528015612a955781602001600182028036833780820191505090505b5090505b60008514612b2257600182612aae9190613bc5565b9150600a85612abd9190614b81565b6030612ac99190613f6b565b60f81b818381518110612adf57612ade613dac565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b1b9190614b50565b9450612a99565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba790614c24565b60405180910390fd5b612bb981611e54565b15612bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf090614c90565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000014831115612c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5390614d22565b60405180910390fd5b612c696000858386612b2e565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612d6691906148aa565b6fffffffffffffffffffffffffffffffff168152602001858360200151612d8d91906148aa565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612ffc57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f9c60008884886127b3565b612fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd29061445f565b60405180910390fd5b8180612fe690613c8b565b9250508080612ff490613c8b565b915050612f2b565b50806000819055506130116000878588612b34565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054613048906139ae565b90600052602060002090601f01602090048101928261306a57600085556130b1565b82601f1061308357805160ff19168380011785556130b1565b828001600101855582156130b1579182015b828111156130b0578251825591602001919060010190613095565b5b5090506130be91906130fc565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156131155760008160009055506001016130fd565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131628161312d565b811461316d57600080fd5b50565b60008135905061317f81613159565b92915050565b60006020828403121561319b5761319a613123565b5b60006131a984828501613170565b91505092915050565b60008115159050919050565b6131c7816131b2565b82525050565b60006020820190506131e260008301846131be565b92915050565b6131f1816131b2565b81146131fc57600080fd5b50565b60008135905061320e816131e8565b92915050565b60006020828403121561322a57613229613123565b5b6000613238848285016131ff565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561327b578082015181840152602081019050613260565b8381111561328a576000848401525b50505050565b6000601f19601f8301169050919050565b60006132ac82613241565b6132b6818561324c565b93506132c681856020860161325d565b6132cf81613290565b840191505092915050565b600060208201905081810360008301526132f481846132a1565b905092915050565b6000819050919050565b61330f816132fc565b811461331a57600080fd5b50565b60008135905061332c81613306565b92915050565b60006020828403121561334857613347613123565b5b60006133568482850161331d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061338a8261335f565b9050919050565b61339a8161337f565b82525050565b60006020820190506133b56000830184613391565b92915050565b6133c48161337f565b81146133cf57600080fd5b50565b6000813590506133e1816133bb565b92915050565b600080604083850312156133fe576133fd613123565b5b600061340c858286016133d2565b925050602061341d8582860161331d565b9150509250929050565b613430816132fc565b82525050565b600060208201905061344b6000830184613427565b92915050565b60008060006060848603121561346a57613469613123565b5b6000613478868287016133d2565b9350506020613489868287016133d2565b925050604061349a8682870161331d565b9150509250925092565b6000602082840312156134ba576134b9613123565b5b60006134c8848285016133d2565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613506816132fc565b82525050565b600061351883836134fd565b60208301905092915050565b6000602082019050919050565b600061353c826134d1565b61354681856134dc565b9350613551836134ed565b8060005b83811015613582578151613569888261350c565b975061357483613524565b925050600181019050613555565b5085935050505092915050565b600060208201905081810360008301526135a98184613531565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135f382613290565b810181811067ffffffffffffffff82111715613612576136116135bb565b5b80604052505050565b6000613625613119565b905061363182826135ea565b919050565b600067ffffffffffffffff821115613651576136506135bb565b5b61365a82613290565b9050602081019050919050565b82818337600083830152505050565b600061368961368484613636565b61361b565b9050828152602081018484840111156136a5576136a46135b6565b5b6136b0848285613667565b509392505050565b600082601f8301126136cd576136cc6135b1565b5b81356136dd848260208601613676565b91505092915050565b6000602082840312156136fc576136fb613123565b5b600082013567ffffffffffffffff81111561371a57613719613128565b5b613726848285016136b8565b91505092915050565b6000806040838503121561374657613745613123565b5b60006137548582860161331d565b9250506020613765858286016133d2565b9150509250929050565b6000806040838503121561378657613785613123565b5b6000613794858286016133d2565b92505060206137a5858286016131ff565b9150509250929050565b600067ffffffffffffffff8211156137ca576137c96135bb565b5b6137d382613290565b9050602081019050919050565b60006137f36137ee846137af565b61361b565b90508281526020810184848401111561380f5761380e6135b6565b5b61381a848285613667565b509392505050565b600082601f830112613837576138366135b1565b5b81356138478482602086016137e0565b91505092915050565b6000806000806080858703121561386a57613869613123565b5b6000613878878288016133d2565b9450506020613889878288016133d2565b935050604061389a8782880161331d565b925050606085013567ffffffffffffffff8111156138bb576138ba613128565b5b6138c787828801613822565b91505092959194509250565b600080604083850312156138ea576138e9613123565b5b60006138f8858286016133d2565b9250506020613909858286016133d2565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061394960208361324c565b915061395482613913565b602082019050919050565b600060208201905081810360008301526139788161393c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806139c657607f821691505b602082108114156139da576139d961397f565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613a3c602d8361324c565b9150613a47826139e0565b604082019050919050565b60006020820190508181036000830152613a6b81613a2f565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ace60228361324c565b9150613ad982613a72565b604082019050919050565b60006020820190508181036000830152613afd81613ac1565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613b6060398361324c565b9150613b6b82613b04565b604082019050919050565b60006020820190508181036000830152613b8f81613b53565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613bd0826132fc565b9150613bdb836132fc565b925082821015613bee57613bed613b96565b5b828203905092915050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c5560228361324c565b9150613c6082613bf9565b604082019050919050565b60006020820190508181036000830152613c8481613c48565b9050919050565b6000613c96826132fc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cc957613cc8613b96565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613d30602e8361324c565b9150613d3b82613cd4565b604082019050919050565b60006020820190508181036000830152613d5f81613d23565b9050919050565b600081905092915050565b50565b6000613d81600083613d66565b9150613d8c82613d71565b600082019050919050565b6000613da282613d74565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613e3760238361324c565b9150613e4282613ddb565b604082019050919050565b60006020820190508181036000830152613e6681613e2a565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613ec9602b8361324c565b9150613ed482613e6d565b604082019050919050565b60006020820190508181036000830152613ef881613ebc565b9050919050565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6000613f35601b8361324c565b9150613f4082613eff565b602082019050919050565b60006020820190508181036000830152613f6481613f28565b9050919050565b6000613f76826132fc565b9150613f81836132fc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fb657613fb5613b96565b5b828201905092915050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b6000613ff760168361324c565b915061400282613fc1565b602082019050919050565b6000602082019050818103600083015261402681613fea565b9050919050565b7f307852756d626c654b4c3a206f6f707320636f6e74726163742069732070617560008201527f7365640000000000000000000000000000000000000000000000000000000000602082015250565b600061408960238361324c565b91506140948261402d565b604082019050919050565b600060208201905081810360008301526140b88161407c565b9050919050565b7f307852756d626c654b4c3a206e65656420746f206d696e74206174206c65617360008201527f742031204e465400000000000000000000000000000000000000000000000000602082015250565b600061411b60278361324c565b9150614126826140bf565b604082019050919050565b6000602082019050818103600083015261414a8161410e565b9050919050565b7f307852756d626c654b4c3a206d6178206d696e7420616d6f756e74207065722060008201527f7478206578636565646564000000000000000000000000000000000000000000602082015250565b60006141ad602b8361324c565b91506141b882614151565b604082019050919050565b600060208201905081810360008301526141dc816141a0565b9050919050565b7f307852756d626c654b4c3a20576520536f6c64204f7574212100000000000000600082015250565b600061421960198361324c565b9150614224826141e3565b602082019050919050565b600060208201905081810360008301526142488161420c565b9050919050565b600061425a826132fc565b9150614265836132fc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561429e5761429d613b96565b5b828202905092915050565b7f307852756d626c654b4c3a20497427732046726565204d696e74000000000000600082015250565b60006142df601a8361324c565b91506142ea826142a9565b602082019050919050565b6000602082019050818103600083015261430e816142d2565b9050919050565b7f307852756d626c654b4c3a20696e73756666696369656e742066756e64730000600082015250565b600061434b601e8361324c565b915061435682614315565b602082019050919050565b6000602082019050818103600083015261437a8161433e565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b60006143b7601a8361324c565b91506143c282614381565b602082019050919050565b600060208201905081810360008301526143e6816143aa565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b600061444960338361324c565b9150614454826143ed565b604082019050919050565b600060208201905081810360008301526144788161443c565b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b60006144db60308361324c565b91506144e68261447f565b604082019050919050565b6000602082019050818103600083015261450a816144ce565b9050919050565b600081905092915050565b600061452782613241565b6145318185614511565b935061454181856020860161325d565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461456f816139ae565b6145798186614511565b9450600182166000811461459457600181146145a5576145d8565b60ff198316865281860193506145d8565b6145ae8561454d565b60005b838110156145d0578154818901526001820191506020810190506145b1565b838801955050505b50505092915050565b60006145ed828661451c565b91506145f9828561451c565b91506146058284614562565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061466e60268361324c565b915061467982614612565b604082019050919050565b6000602082019050818103600083015261469d81614661565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b600061470060328361324c565b915061470b826146a4565b604082019050919050565b6000602082019050818103600083015261472f816146f3565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b600061479260268361324c565b915061479d82614736565b604082019050919050565b600060208201905081810360008301526147c181614785565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061482460258361324c565b915061482f826147c8565b604082019050919050565b6000602082019050818103600083015261485381614817565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b60006148818261485a565b915061488c8361485a565b92508282101561489f5761489e613b96565b5b828203905092915050565b60006148b58261485a565b91506148c08361485a565b9250826fffffffffffffffffffffffffffffffff038211156148e5576148e4613b96565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b600061494c602a8361324c565b9150614957826148f0565b604082019050919050565b6000602082019050818103600083015261497b8161493f565b9050919050565b600061498d826132fc565b915060008214156149a1576149a0613b96565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614a08602f8361324c565b9150614a13826149ac565b604082019050919050565b60006020820190508181036000830152614a37816149fb565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614a6582614a3e565b614a6f8185614a49565b9350614a7f81856020860161325d565b614a8881613290565b840191505092915050565b6000608082019050614aa86000830187613391565b614ab56020830186613391565b614ac26040830185613427565b8181036060830152614ad48184614a5a565b905095945050505050565b600081519050614aee81613159565b92915050565b600060208284031215614b0a57614b09613123565b5b6000614b1884828501614adf565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614b5b826132fc565b9150614b66836132fc565b925082614b7657614b75614b21565b5b828204905092915050565b6000614b8c826132fc565b9150614b97836132fc565b925082614ba757614ba6614b21565b5b828206905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c0e60218361324c565b9150614c1982614bb2565b604082019050919050565b60006020820190508181036000830152614c3d81614c01565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000614c7a601d8361324c565b9150614c8582614c44565b602082019050919050565b60006020820190508181036000830152614ca981614c6d565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000614d0c60228361324c565b9150614d1782614cb0565b604082019050919050565b60006020820190508181036000830152614d3b81614cff565b905091905056fea2646970667358221220206a56dec99adef5c12ea0e5db81cb755c4c6db314d377053f0b70dfa3d9d57a64736f6c634300080a0033

Deployed Bytecode Sourcemap

46601:3057:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34281:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49422:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36007:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37532:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37095:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46744:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49084:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32841:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38382:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31719:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33473:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49502:147;;;;;;;;;;;;;:::i;:::-;;38587:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48188:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48996:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33008:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49186:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46872:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35830:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46676:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46820:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34707:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11865:103;;;;;;;;;;;;;:::i;:::-;;47869:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11214:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36162:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47187:615;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37800:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38807:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46702:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48542:430;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46783:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43138:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49290:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38137:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12123:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34281:370;34408:4;34453:25;34438:40;;;:11;:40;;;;:99;;;;34504:33;34489:48;;;:11;:48;;;;34438:99;:160;;;;34563:35;34548:50;;;:11;:50;;;;34438:160;:207;;;;34609:36;34633:11;34609:23;:36::i;:::-;34438:207;34424:221;;34281:370;;;:::o;49422:73::-;11445:12;:10;:12::i;:::-;11434:23;;:7;:5;:7::i;:::-;:23;;;11426:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49483:6:::1;49474;;:15;;;;;;;;;;;;;;;;;;49422:73:::0;:::o;36007:94::-;36061:13;36090:5;36083:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36007:94;:::o;37532:204::-;37600:7;37624:16;37632:7;37624;:16::i;:::-;37616:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;37706:15;:24;37722:7;37706:24;;;;;;;;;;;;;;;;;;;;;37699:31;;37532:204;;;:::o;37095:379::-;37164:13;37180:24;37196:7;37180:15;:24::i;:::-;37164:40;;37225:5;37219:11;;:2;:11;;;;37211:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;37310:5;37294:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;37319:37;37336:5;37343:12;:10;:12::i;:::-;37319:16;:37::i;:::-;37294:62;37278:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;37440:28;37449:2;37453:7;37462:5;37440:8;:28::i;:::-;37157:317;37095:379;;:::o;46744:34::-;;;;:::o;49084:94::-;11445:12;:10;:12::i;:::-;11434:23;;:7;:5;:7::i;:::-;:23;;;11426:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49162:10:::1;49150:9;:22;;;;49084:94:::0;:::o;32841:98::-;32894:7;32932:1;32917:12;;:16;;;;:::i;:::-;32910:23;;32841:98;:::o;38382:142::-;38490:28;38500:4;38506:2;38510:7;38490:9;:28::i;:::-;38382:142;;;:::o;31719:37::-;;;:::o;33473:744::-;33582:7;33617:16;33627:5;33617:9;:16::i;:::-;33609:5;:24;33601:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;33679:22;33704:13;:11;:13::i;:::-;33679:38;;33724:19;33754:25;33804:9;33799:350;33823:14;33819:1;:18;33799:350;;;33853:31;33887:11;:14;33899:1;33887:14;;;;;;;;;;;33853:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33940:1;33914:28;;:9;:14;;;:28;;;33910:89;;33975:9;:14;;;33955:34;;33910:89;34032:5;34011:26;;:17;:26;;;34007:135;;;34069:5;34054:11;:20;34050:59;;;34096:1;34089:8;;;;;;;;;34050:59;34119:13;;;;;:::i;:::-;;;;34007:135;33844:305;33839:3;;;;;:::i;:::-;;;;33799:350;;;;34155:56;;;;;;;;;;:::i;:::-;;;;;;;;33473:744;;;;;:::o;49502:147::-;11445:12;:10;:12::i;:::-;11434:23;;:7;:5;:7::i;:::-;:23;;;11426:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49547:12:::1;49573:7;:5;:7::i;:::-;49565:21;;49594;49565:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49546:74;;;49635:7;49627:16;;;::::0;::::1;;49539:110;49502:147::o:0;38587:157::-;38699:39;38716:4;38722:2;38726:7;38699:39;;;;;;;;;;;;:16;:39::i;:::-;38587:157;;;:::o;48188:348::-;48263:16;48291:23;48317:17;48327:6;48317:9;:17::i;:::-;48291:43;;48341:25;48383:15;48369:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48341:58;;48411:9;48406:103;48426:15;48422:1;:19;48406:103;;;48471:30;48491:6;48499:1;48471:19;:30::i;:::-;48457:8;48466:1;48457:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;48443:3;;;;;:::i;:::-;;;;48406:103;;;;48522:8;48515:15;;;;48188:348;;;:::o;48996:80::-;11445:12;:10;:12::i;:::-;11434:23;;:7;:5;:7::i;:::-;:23;;;11426:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49062:8:::1;49055:4;:15;;;;48996:80:::0;:::o;33008:177::-;33075:7;33107:13;:11;:13::i;:::-;33099:5;:21;33091:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;33174:5;33167:12;;33008:177;;;:::o;49186:98::-;11445:12;:10;:12::i;:::-;11434:23;;:7;:5;:7::i;:::-;:23;;;11426:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49267:11:::1;49257:7;:21;;;;;;;;;;;;:::i;:::-;;49186:98:::0;:::o;46872:26::-;;;;;;;;;;;;;:::o;35830:118::-;35894:7;35917:20;35929:7;35917:11;:20::i;:::-;:25;;;35910:32;;35830:118;;;:::o;46676:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46820:27::-;;;;:::o;34707:211::-;34771:7;34812:1;34795:19;;:5;:19;;;;34787:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;34884:12;:19;34897:5;34884:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;34876:36;;34869:43;;34707:211;;;:::o;11865:103::-;11445:12;:10;:12::i;:::-;11434:23;;:7;:5;:7::i;:::-;:23;;;11426:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11930:30:::1;11957:1;11930:18;:30::i;:::-;11865:103::o:0;47869:305::-;11445:12;:10;:12::i;:::-;11434:23;;:7;:5;:7::i;:::-;:23;;;11426:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47971:1:::1;47957:11;:15;47949:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;48011:14;48028:13;:11;:13::i;:::-;48011:30;;48080:9;;48065:11;48056:6;:20;;;;:::i;:::-;:33;;48048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48127:35;48137:11;48150;48127:9;:35::i;:::-;47942:232;47869:305:::0;;:::o;11214:87::-;11260:7;11287:6;;;;;;;;;;;11280:13;;11214:87;:::o;36162:98::-;36218:13;36247:7;36240:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36162:98;:::o;47187:615::-;47248:6;;;;;;;;;;;47247:7;47239:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;47301:14;47318:13;:11;:13::i;:::-;47301:30;;47355:1;47346:6;:10;47338:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;47425:7;;47415:6;:17;;47407:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;47514:9;;47504:6;47495;:15;;;;:::i;:::-;:28;;47487:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;47573:3;47564:6;:12;47560:189;;;47612:6;47608:1;:10;;;;:::i;:::-;47595:9;:23;;47587:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;47560:189;;;47700:6;47693:4;;:13;;;;:::i;:::-;47680:9;:26;;47672:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;47560:189;47759:31;47769:12;:10;:12::i;:::-;47783:6;47759:9;:31::i;:::-;47232:570;47187:615;:::o;37800:274::-;37903:12;:10;:12::i;:::-;37891:24;;:8;:24;;;;37883:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;38000:8;37955:18;:32;37974:12;:10;:12::i;:::-;37955:32;;;;;;;;;;;;;;;:42;37988:8;37955:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;38049:8;38020:48;;38035:12;:10;:12::i;:::-;38020:48;;;38059:8;38020:48;;;;;;:::i;:::-;;;;;;;;37800:274;;:::o;38807:311::-;38944:28;38954:4;38960:2;38964:7;38944:9;:28::i;:::-;38995:48;39018:4;39024:2;39028:7;39037:5;38995:22;:48::i;:::-;38979:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;38807:311;;;;:::o;46702:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48542:430::-;48640:13;48681:16;48689:7;48681;:16::i;:::-;48665:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;48778:28;48809:10;:8;:10::i;:::-;48778:41;;48864:1;48839:14;48833:28;:32;:133;;;;;;;;;;;;;;;;;48901:14;48917:18;:7;:16;:18::i;:::-;48937:13;48884:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48833:133;48826:140;;;48542:430;;;:::o;46783:32::-;;;;:::o;43138:43::-;;;;:::o;49290:122::-;11445:12;:10;:12::i;:::-;11434:23;;:7;:5;:7::i;:::-;:23;;;11426:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49389:17:::1;49373:13;:33;;;;;;;;;;;;:::i;:::-;;49290:122:::0;:::o;38137:186::-;38259:4;38282:18;:25;38301:5;38282:25;;;;;;;;;;;;;;;:35;38308:8;38282:35;;;;;;;;;;;;;;;;;;;;;;;;;38275:42;;38137:186;;;;:::o;12123:201::-;11445:12;:10;:12::i;:::-;11434:23;;:7;:5;:7::i;:::-;:23;;;11426:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12232:1:::1;12212:22;;:8;:22;;;;12204:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;12288:28;12307:8;12288:18;:28::i;:::-;12123:201:::0;:::o;23998:157::-;24083:4;24122:25;24107:40;;;:11;:40;;;;24100:47;;23998:157;;;:::o;9938:98::-;9991:7;10018:10;10011:17;;9938:98;:::o;39357:105::-;39414:4;39444:12;;39434:7;:22;39427:29;;39357:105;;;:::o;42960:172::-;43084:2;43057:15;:24;43073:7;43057:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43118:7;43114:2;43098:28;;43107:5;43098:28;;;;;;;;;;;;42960:172;;;:::o;41325:1529::-;41422:35;41460:20;41472:7;41460:11;:20::i;:::-;41422:58;;41489:22;41531:13;:18;;;41515:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;41584:12;:10;:12::i;:::-;41560:36;;:20;41572:7;41560:11;:20::i;:::-;:36;;;41515:81;:142;;;;41607:50;41624:13;:18;;;41644:12;:10;:12::i;:::-;41607:16;:50::i;:::-;41515:142;41489:169;;41683:17;41667:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;41815:4;41793:26;;:13;:18;;;:26;;;41777:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;41904:1;41890:16;;:2;:16;;;;41882:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;41957:43;41979:4;41985:2;41989:7;41998:1;41957:21;:43::i;:::-;42057:49;42074:1;42078:7;42087:13;:18;;;42057:8;:49::i;:::-;42145:1;42115:12;:18;42128:4;42115:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;42181:1;42153:12;:16;42166:2;42153:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;42212:43;;;;;;;;42227:2;42212:43;;;;;;42238:15;42212:43;;;;;42189:11;:20;42201:7;42189:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42483:19;42515:1;42505:7;:11;;;;:::i;:::-;42483:33;;42568:1;42527:43;;:11;:24;42539:11;42527:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;42523:236;;;42585:20;42593:11;42585:7;:20::i;:::-;42581:171;;;42645:97;;;;;;;;42672:13;:18;;;42645:97;;;;;;42703:13;:28;;;42645:97;;;;;42618:11;:24;42630:11;42618:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42581:171;42523:236;42791:7;42787:2;42772:27;;42781:4;42772:27;;;;;;;;;;;;42806:42;42827:4;42833:2;42837:7;42846:1;42806:20;:42::i;:::-;41415:1439;;;41325:1529;;;:::o;35170:606::-;35246:21;;:::i;:::-;35287:16;35295:7;35287;:16::i;:::-;35279:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;35359:26;35407:12;35396:7;:23;35392:93;;35476:1;35461:12;35451:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;35430:47;;35392:93;35498:12;35513:7;35498:22;;35493:212;35530:18;35522:4;:26;35493:212;;35567:31;35601:11;:17;35613:4;35601:17;;;;;;;;;;;35567:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35657:1;35631:28;;:9;:14;;;:28;;;35627:71;;35679:9;35672:16;;;;;;;35627:71;35558:147;35550:6;;;;;:::i;:::-;;;;35493:212;;;;35713:57;;;;;;;;;;:::i;:::-;;;;;;;;35170:606;;;;:::o;12484:191::-;12558:16;12577:6;;;;;;;;;;;12558:25;;12603:8;12594:6;;:17;;;;;;;;;;;;;;;;;;12658:8;12627:40;;12648:8;12627:40;;;;;;;;;;;;12547:128;12484:191;:::o;39468:98::-;39533:27;39543:2;39547:8;39533:27;;;;;;;;;;;;:9;:27::i;:::-;39468:98;;:::o;44671:690::-;44808:4;44825:15;:2;:13;;;:15::i;:::-;44821:535;;;44880:2;44864:36;;;44901:12;:10;:12::i;:::-;44915:4;44921:7;44930:5;44864:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44851:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45112:1;45095:6;:13;:18;45091:215;;;45128:61;;;;;;;;;;:::i;:::-;;;;;;;;45091:215;45274:6;45268:13;45259:6;45255:2;45251:15;45244:38;44851:464;44996:45;;;44986:55;;;:6;:55;;;;44979:62;;;;;44821:535;45344:4;45337:11;;44671:690;;;;;;;:::o;47066:102::-;47126:13;47155:7;47148:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47066:102;:::o;7500:723::-;7556:13;7786:1;7777:5;:10;7773:53;;;7804:10;;;;;;;;;;;;;;;;;;;;;7773:53;7836:12;7851:5;7836:20;;7867:14;7892:78;7907:1;7899:4;:9;7892:78;;7925:8;;;;;:::i;:::-;;;;7956:2;7948:10;;;;;:::i;:::-;;;7892:78;;;7980:19;8012:6;8002:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7980:39;;8030:154;8046:1;8037:5;:10;8030:154;;8074:1;8064:11;;;;;:::i;:::-;;;8141:2;8133:5;:10;;;;:::i;:::-;8120:2;:24;;;;:::i;:::-;8107:39;;8090:6;8097;8090:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8170:2;8161:11;;;;;:::i;:::-;;;8030:154;;;8208:6;8194:21;;;;;7500:723;;;;:::o;45823:141::-;;;;;:::o;46350:140::-;;;;;:::o;39821:1272::-;39926:20;39949:12;;39926:35;;39990:1;39976:16;;:2;:16;;;;39968:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;40167:21;40175:12;40167:7;:21::i;:::-;40166:22;40158:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;40249:12;40237:8;:24;;40229:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;40309:61;40339:1;40343:2;40347:12;40361:8;40309:21;:61::i;:::-;40379:30;40412:12;:16;40425:2;40412:16;;;;;;;;;;;;;;;40379:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40454:119;;;;;;;;40504:8;40474:11;:19;;;:39;;;;:::i;:::-;40454:119;;;;;;40557:8;40522:11;:24;;;:44;;;;:::i;:::-;40454:119;;;;;40435:12;:16;40448:2;40435:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40608:43;;;;;;;;40623:2;40608:43;;;;;;40634:15;40608:43;;;;;40580:11;:25;40592:12;40580:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40660:20;40683:12;40660:35;;40709:9;40704:281;40728:8;40724:1;:12;40704:281;;;40782:12;40778:2;40757:38;;40774:1;40757:38;;;;;;;;;;;;40822:59;40853:1;40857:2;40861:12;40875:5;40822:22;:59::i;:::-;40804:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;40963:14;;;;;:::i;:::-;;;;40738:3;;;;;:::i;:::-;;;;40704:281;;;;41008:12;40993;:27;;;;41027:60;41056:1;41060:2;41064:12;41078:8;41027:20;:60::i;:::-;39919:1174;;;39821:1272;;;:::o;13915:326::-;13975:4;14232:1;14210:7;:19;;;:23;14203:30;;13915:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:307::-;2456:1;2466:113;2480:6;2477:1;2474:13;2466:113;;;2565:1;2560:3;2556:11;2550:18;2546:1;2541:3;2537:11;2530:39;2502:2;2499:1;2495:10;2490:15;;2466:113;;;2597:6;2594:1;2591:13;2588:101;;;2677:1;2668:6;2663:3;2659:16;2652:27;2588:101;2437:258;2388:307;;;:::o;2701:102::-;2742:6;2793:2;2789:7;2784:2;2777:5;2773:14;2769:28;2759:38;;2701:102;;;:::o;2809:364::-;2897:3;2925:39;2958:5;2925:39;:::i;:::-;2980:71;3044:6;3039:3;2980:71;:::i;:::-;2973:78;;3060:52;3105:6;3100:3;3093:4;3086:5;3082:16;3060:52;:::i;:::-;3137:29;3159:6;3137:29;:::i;:::-;3132:3;3128:39;3121:46;;2901:272;2809:364;;;;:::o;3179:313::-;3292:4;3330:2;3319:9;3315:18;3307:26;;3379:9;3373:4;3369:20;3365:1;3354:9;3350:17;3343:47;3407:78;3480:4;3471:6;3407:78;:::i;:::-;3399:86;;3179:313;;;;:::o;3498:77::-;3535:7;3564:5;3553:16;;3498:77;;;:::o;3581:122::-;3654:24;3672:5;3654:24;:::i;:::-;3647:5;3644:35;3634:63;;3693:1;3690;3683:12;3634:63;3581:122;:::o;3709:139::-;3755:5;3793:6;3780:20;3771:29;;3809:33;3836:5;3809:33;:::i;:::-;3709:139;;;;:::o;3854:329::-;3913:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:119;;;3968:79;;:::i;:::-;3930:119;4088:1;4113:53;4158:7;4149:6;4138:9;4134:22;4113:53;:::i;:::-;4103:63;;4059:117;3854:329;;;;:::o;4189:126::-;4226:7;4266:42;4259:5;4255:54;4244:65;;4189:126;;;:::o;4321:96::-;4358:7;4387:24;4405:5;4387:24;:::i;:::-;4376:35;;4321:96;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:122::-;4848:24;4866:5;4848:24;:::i;:::-;4841:5;4838:35;4828:63;;4887:1;4884;4877:12;4828:63;4775:122;:::o;4903:139::-;4949:5;4987:6;4974:20;4965:29;;5003:33;5030:5;5003:33;:::i;:::-;4903:139;;;;:::o;5048:474::-;5116:6;5124;5173:2;5161:9;5152:7;5148:23;5144:32;5141:119;;;5179:79;;:::i;:::-;5141:119;5299:1;5324:53;5369:7;5360:6;5349:9;5345:22;5324:53;:::i;:::-;5314:63;;5270:117;5426:2;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5397:118;5048:474;;;;;:::o;5528:118::-;5615:24;5633:5;5615:24;:::i;:::-;5610:3;5603:37;5528:118;;:::o;5652:222::-;5745:4;5783:2;5772:9;5768:18;5760:26;;5796:71;5864:1;5853:9;5849:17;5840:6;5796:71;:::i;:::-;5652:222;;;;:::o;5880:619::-;5957:6;5965;5973;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:53;6218:7;6209:6;6198:9;6194:22;6173:53;:::i;:::-;6163:63;;6119:117;6275:2;6301:53;6346:7;6337:6;6326:9;6322:22;6301:53;:::i;:::-;6291:63;;6246:118;6403:2;6429:53;6474:7;6465:6;6454:9;6450:22;6429:53;:::i;:::-;6419:63;;6374:118;5880:619;;;;;:::o;6505:329::-;6564:6;6613:2;6601:9;6592:7;6588:23;6584:32;6581:119;;;6619:79;;:::i;:::-;6581:119;6739:1;6764:53;6809:7;6800:6;6789:9;6785:22;6764:53;:::i;:::-;6754:63;;6710:117;6505:329;;;;:::o;6840:114::-;6907:6;6941:5;6935:12;6925:22;;6840:114;;;:::o;6960:184::-;7059:11;7093:6;7088:3;7081:19;7133:4;7128:3;7124:14;7109:29;;6960:184;;;;:::o;7150:132::-;7217:4;7240:3;7232:11;;7270:4;7265:3;7261:14;7253:22;;7150:132;;;:::o;7288:108::-;7365:24;7383:5;7365:24;:::i;:::-;7360:3;7353:37;7288:108;;:::o;7402:179::-;7471:10;7492:46;7534:3;7526:6;7492:46;:::i;:::-;7570:4;7565:3;7561:14;7547:28;;7402:179;;;;:::o;7587:113::-;7657:4;7689;7684:3;7680:14;7672:22;;7587:113;;;:::o;7736:732::-;7855:3;7884:54;7932:5;7884:54;:::i;:::-;7954:86;8033:6;8028:3;7954:86;:::i;:::-;7947:93;;8064:56;8114:5;8064:56;:::i;:::-;8143:7;8174:1;8159:284;8184:6;8181:1;8178:13;8159:284;;;8260:6;8254:13;8287:63;8346:3;8331:13;8287:63;:::i;:::-;8280:70;;8373:60;8426:6;8373:60;:::i;:::-;8363:70;;8219:224;8206:1;8203;8199:9;8194:14;;8159:284;;;8163:14;8459:3;8452:10;;7860:608;;;7736:732;;;;:::o;8474:373::-;8617:4;8655:2;8644:9;8640:18;8632:26;;8704:9;8698:4;8694:20;8690:1;8679:9;8675:17;8668:47;8732:108;8835:4;8826:6;8732:108;:::i;:::-;8724:116;;8474:373;;;;:::o;8853:117::-;8962:1;8959;8952:12;8976:117;9085:1;9082;9075:12;9099:180;9147:77;9144:1;9137:88;9244:4;9241:1;9234:15;9268:4;9265:1;9258:15;9285:281;9368:27;9390:4;9368:27;:::i;:::-;9360:6;9356:40;9498:6;9486:10;9483:22;9462:18;9450:10;9447:34;9444:62;9441:88;;;9509:18;;:::i;:::-;9441:88;9549:10;9545:2;9538:22;9328:238;9285:281;;:::o;9572:129::-;9606:6;9633:20;;:::i;:::-;9623:30;;9662:33;9690:4;9682:6;9662:33;:::i;:::-;9572:129;;;:::o;9707:308::-;9769:4;9859:18;9851:6;9848:30;9845:56;;;9881:18;;:::i;:::-;9845:56;9919:29;9941:6;9919:29;:::i;:::-;9911:37;;10003:4;9997;9993:15;9985:23;;9707:308;;;:::o;10021:154::-;10105:6;10100:3;10095;10082:30;10167:1;10158:6;10153:3;10149:16;10142:27;10021:154;;;:::o;10181:412::-;10259:5;10284:66;10300:49;10342:6;10300:49;:::i;:::-;10284:66;:::i;:::-;10275:75;;10373:6;10366:5;10359:21;10411:4;10404:5;10400:16;10449:3;10440:6;10435:3;10431:16;10428:25;10425:112;;;10456:79;;:::i;:::-;10425:112;10546:41;10580:6;10575:3;10570;10546:41;:::i;:::-;10265:328;10181:412;;;;;:::o;10613:340::-;10669:5;10718:3;10711:4;10703:6;10699:17;10695:27;10685:122;;10726:79;;:::i;:::-;10685:122;10843:6;10830:20;10868:79;10943:3;10935:6;10928:4;10920:6;10916:17;10868:79;:::i;:::-;10859:88;;10675:278;10613:340;;;;:::o;10959:509::-;11028:6;11077:2;11065:9;11056:7;11052:23;11048:32;11045:119;;;11083:79;;:::i;:::-;11045:119;11231:1;11220:9;11216:17;11203:31;11261:18;11253:6;11250:30;11247:117;;;11283:79;;:::i;:::-;11247:117;11388:63;11443:7;11434:6;11423:9;11419:22;11388:63;:::i;:::-;11378:73;;11174:287;10959:509;;;;:::o;11474:474::-;11542:6;11550;11599:2;11587:9;11578:7;11574:23;11570:32;11567:119;;;11605:79;;:::i;:::-;11567:119;11725:1;11750:53;11795:7;11786:6;11775:9;11771:22;11750:53;:::i;:::-;11740:63;;11696:117;11852:2;11878:53;11923:7;11914:6;11903:9;11899:22;11878:53;:::i;:::-;11868:63;;11823:118;11474:474;;;;;:::o;11954:468::-;12019:6;12027;12076:2;12064:9;12055:7;12051:23;12047:32;12044:119;;;12082:79;;:::i;:::-;12044:119;12202:1;12227:53;12272:7;12263:6;12252:9;12248:22;12227:53;:::i;:::-;12217:63;;12173:117;12329:2;12355:50;12397:7;12388:6;12377:9;12373:22;12355:50;:::i;:::-;12345:60;;12300:115;11954:468;;;;;:::o;12428:307::-;12489:4;12579:18;12571:6;12568:30;12565:56;;;12601:18;;:::i;:::-;12565:56;12639:29;12661:6;12639:29;:::i;:::-;12631:37;;12723:4;12717;12713:15;12705:23;;12428:307;;;:::o;12741:410::-;12818:5;12843:65;12859:48;12900:6;12859:48;:::i;:::-;12843:65;:::i;:::-;12834:74;;12931:6;12924:5;12917:21;12969:4;12962:5;12958:16;13007:3;12998:6;12993:3;12989:16;12986:25;12983:112;;;13014:79;;:::i;:::-;12983:112;13104:41;13138:6;13133:3;13128;13104:41;:::i;:::-;12824:327;12741:410;;;;;:::o;13170:338::-;13225:5;13274:3;13267:4;13259:6;13255:17;13251:27;13241:122;;13282:79;;:::i;:::-;13241:122;13399:6;13386:20;13424:78;13498:3;13490:6;13483:4;13475:6;13471:17;13424:78;:::i;:::-;13415:87;;13231:277;13170:338;;;;:::o;13514:943::-;13609:6;13617;13625;13633;13682:3;13670:9;13661:7;13657:23;13653:33;13650:120;;;13689:79;;:::i;:::-;13650:120;13809:1;13834:53;13879:7;13870:6;13859:9;13855:22;13834:53;:::i;:::-;13824:63;;13780:117;13936:2;13962:53;14007:7;13998:6;13987:9;13983:22;13962:53;:::i;:::-;13952:63;;13907:118;14064:2;14090:53;14135:7;14126:6;14115:9;14111:22;14090:53;:::i;:::-;14080:63;;14035:118;14220:2;14209:9;14205:18;14192:32;14251:18;14243:6;14240:30;14237:117;;;14273:79;;:::i;:::-;14237:117;14378:62;14432:7;14423:6;14412:9;14408:22;14378:62;:::i;:::-;14368:72;;14163:287;13514:943;;;;;;;:::o;14463:474::-;14531:6;14539;14588:2;14576:9;14567:7;14563:23;14559:32;14556:119;;;14594:79;;:::i;:::-;14556:119;14714:1;14739:53;14784:7;14775:6;14764:9;14760:22;14739:53;:::i;:::-;14729:63;;14685:117;14841:2;14867:53;14912:7;14903:6;14892:9;14888:22;14867:53;:::i;:::-;14857:63;;14812:118;14463:474;;;;;:::o;14943:182::-;15083:34;15079:1;15071:6;15067:14;15060:58;14943:182;:::o;15131:366::-;15273:3;15294:67;15358:2;15353:3;15294:67;:::i;:::-;15287:74;;15370:93;15459:3;15370:93;:::i;:::-;15488:2;15483:3;15479:12;15472:19;;15131:366;;;:::o;15503:419::-;15669:4;15707:2;15696:9;15692:18;15684:26;;15756:9;15750:4;15746:20;15742:1;15731:9;15727:17;15720:47;15784:131;15910:4;15784:131;:::i;:::-;15776:139;;15503:419;;;:::o;15928:180::-;15976:77;15973:1;15966:88;16073:4;16070:1;16063:15;16097:4;16094:1;16087:15;16114:320;16158:6;16195:1;16189:4;16185:12;16175:22;;16242:1;16236:4;16232:12;16263:18;16253:81;;16319:4;16311:6;16307:17;16297:27;;16253:81;16381:2;16373:6;16370:14;16350:18;16347:38;16344:84;;;16400:18;;:::i;:::-;16344:84;16165:269;16114:320;;;:::o;16440:232::-;16580:34;16576:1;16568:6;16564:14;16557:58;16649:15;16644:2;16636:6;16632:15;16625:40;16440:232;:::o;16678:366::-;16820:3;16841:67;16905:2;16900:3;16841:67;:::i;:::-;16834:74;;16917:93;17006:3;16917:93;:::i;:::-;17035:2;17030:3;17026:12;17019:19;;16678:366;;;:::o;17050:419::-;17216:4;17254:2;17243:9;17239:18;17231:26;;17303:9;17297:4;17293:20;17289:1;17278:9;17274:17;17267:47;17331:131;17457:4;17331:131;:::i;:::-;17323:139;;17050:419;;;:::o;17475:221::-;17615:34;17611:1;17603:6;17599:14;17592:58;17684:4;17679:2;17671:6;17667:15;17660:29;17475:221;:::o;17702:366::-;17844:3;17865:67;17929:2;17924:3;17865:67;:::i;:::-;17858:74;;17941:93;18030:3;17941:93;:::i;:::-;18059:2;18054:3;18050:12;18043:19;;17702:366;;;:::o;18074:419::-;18240:4;18278:2;18267:9;18263:18;18255:26;;18327:9;18321:4;18317:20;18313:1;18302:9;18298:17;18291:47;18355:131;18481:4;18355:131;:::i;:::-;18347:139;;18074:419;;;:::o;18499:244::-;18639:34;18635:1;18627:6;18623:14;18616:58;18708:27;18703:2;18695:6;18691:15;18684:52;18499:244;:::o;18749:366::-;18891:3;18912:67;18976:2;18971:3;18912:67;:::i;:::-;18905:74;;18988:93;19077:3;18988:93;:::i;:::-;19106:2;19101:3;19097:12;19090:19;;18749:366;;;:::o;19121:419::-;19287:4;19325:2;19314:9;19310:18;19302:26;;19374:9;19368:4;19364:20;19360:1;19349:9;19345:17;19338:47;19402:131;19528:4;19402:131;:::i;:::-;19394:139;;19121:419;;;:::o;19546:180::-;19594:77;19591:1;19584:88;19691:4;19688:1;19681:15;19715:4;19712:1;19705:15;19732:191;19772:4;19792:20;19810:1;19792:20;:::i;:::-;19787:25;;19826:20;19844:1;19826:20;:::i;:::-;19821:25;;19865:1;19862;19859:8;19856:34;;;19870:18;;:::i;:::-;19856:34;19915:1;19912;19908:9;19900:17;;19732:191;;;;:::o;19929:221::-;20069:34;20065:1;20057:6;20053:14;20046:58;20138:4;20133:2;20125:6;20121:15;20114:29;19929:221;:::o;20156:366::-;20298:3;20319:67;20383:2;20378:3;20319:67;:::i;:::-;20312:74;;20395:93;20484:3;20395:93;:::i;:::-;20513:2;20508:3;20504:12;20497:19;;20156:366;;;:::o;20528:419::-;20694:4;20732:2;20721:9;20717:18;20709:26;;20781:9;20775:4;20771:20;20767:1;20756:9;20752:17;20745:47;20809:131;20935:4;20809:131;:::i;:::-;20801:139;;20528:419;;;:::o;20953:233::-;20992:3;21015:24;21033:5;21015:24;:::i;:::-;21006:33;;21061:66;21054:5;21051:77;21048:103;;;21131:18;;:::i;:::-;21048:103;21178:1;21171:5;21167:13;21160:20;;20953:233;;;:::o;21192:::-;21332:34;21328:1;21320:6;21316:14;21309:58;21401:16;21396:2;21388:6;21384:15;21377:41;21192:233;:::o;21431:366::-;21573:3;21594:67;21658:2;21653:3;21594:67;:::i;:::-;21587:74;;21670:93;21759:3;21670:93;:::i;:::-;21788:2;21783:3;21779:12;21772:19;;21431:366;;;:::o;21803:419::-;21969:4;22007:2;21996:9;21992:18;21984:26;;22056:9;22050:4;22046:20;22042:1;22031:9;22027:17;22020:47;22084:131;22210:4;22084:131;:::i;:::-;22076:139;;21803:419;;;:::o;22228:147::-;22329:11;22366:3;22351:18;;22228:147;;;;:::o;22381:114::-;;:::o;22501:398::-;22660:3;22681:83;22762:1;22757:3;22681:83;:::i;:::-;22674:90;;22773:93;22862:3;22773:93;:::i;:::-;22891:1;22886:3;22882:11;22875:18;;22501:398;;;:::o;22905:379::-;23089:3;23111:147;23254:3;23111:147;:::i;:::-;23104:154;;23275:3;23268:10;;22905:379;;;:::o;23290:180::-;23338:77;23335:1;23328:88;23435:4;23432:1;23425:15;23459:4;23456:1;23449:15;23476:222;23616:34;23612:1;23604:6;23600:14;23593:58;23685:5;23680:2;23672:6;23668:15;23661:30;23476:222;:::o;23704:366::-;23846:3;23867:67;23931:2;23926:3;23867:67;:::i;:::-;23860:74;;23943:93;24032:3;23943:93;:::i;:::-;24061:2;24056:3;24052:12;24045:19;;23704:366;;;:::o;24076:419::-;24242:4;24280:2;24269:9;24265:18;24257:26;;24329:9;24323:4;24319:20;24315:1;24304:9;24300:17;24293:47;24357:131;24483:4;24357:131;:::i;:::-;24349:139;;24076:419;;;:::o;24501:230::-;24641:34;24637:1;24629:6;24625:14;24618:58;24710:13;24705:2;24697:6;24693:15;24686:38;24501:230;:::o;24737:366::-;24879:3;24900:67;24964:2;24959:3;24900:67;:::i;:::-;24893:74;;24976:93;25065:3;24976:93;:::i;:::-;25094:2;25089:3;25085:12;25078:19;;24737:366;;;:::o;25109:419::-;25275:4;25313:2;25302:9;25298:18;25290:26;;25362:9;25356:4;25352:20;25348:1;25337:9;25333:17;25326:47;25390:131;25516:4;25390:131;:::i;:::-;25382:139;;25109:419;;;:::o;25534:177::-;25674:29;25670:1;25662:6;25658:14;25651:53;25534:177;:::o;25717:366::-;25859:3;25880:67;25944:2;25939:3;25880:67;:::i;:::-;25873:74;;25956:93;26045:3;25956:93;:::i;:::-;26074:2;26069:3;26065:12;26058:19;;25717:366;;;:::o;26089:419::-;26255:4;26293:2;26282:9;26278:18;26270:26;;26342:9;26336:4;26332:20;26328:1;26317:9;26313:17;26306:47;26370:131;26496:4;26370:131;:::i;:::-;26362:139;;26089:419;;;:::o;26514:305::-;26554:3;26573:20;26591:1;26573:20;:::i;:::-;26568:25;;26607:20;26625:1;26607:20;:::i;:::-;26602:25;;26761:1;26693:66;26689:74;26686:1;26683:81;26680:107;;;26767:18;;:::i;:::-;26680:107;26811:1;26808;26804:9;26797:16;;26514:305;;;;:::o;26825:172::-;26965:24;26961:1;26953:6;26949:14;26942:48;26825:172;:::o;27003:366::-;27145:3;27166:67;27230:2;27225:3;27166:67;:::i;:::-;27159:74;;27242:93;27331:3;27242:93;:::i;:::-;27360:2;27355:3;27351:12;27344:19;;27003:366;;;:::o;27375:419::-;27541:4;27579:2;27568:9;27564:18;27556:26;;27628:9;27622:4;27618:20;27614:1;27603:9;27599:17;27592:47;27656:131;27782:4;27656:131;:::i;:::-;27648:139;;27375:419;;;:::o;27800:222::-;27940:34;27936:1;27928:6;27924:14;27917:58;28009:5;28004:2;27996:6;27992:15;27985:30;27800:222;:::o;28028:366::-;28170:3;28191:67;28255:2;28250:3;28191:67;:::i;:::-;28184:74;;28267:93;28356:3;28267:93;:::i;:::-;28385:2;28380:3;28376:12;28369:19;;28028:366;;;:::o;28400:419::-;28566:4;28604:2;28593:9;28589:18;28581:26;;28653:9;28647:4;28643:20;28639:1;28628:9;28624:17;28617:47;28681:131;28807:4;28681:131;:::i;:::-;28673:139;;28400:419;;;:::o;28825:226::-;28965:34;28961:1;28953:6;28949:14;28942:58;29034:9;29029:2;29021:6;29017:15;29010:34;28825:226;:::o;29057:366::-;29199:3;29220:67;29284:2;29279:3;29220:67;:::i;:::-;29213:74;;29296:93;29385:3;29296:93;:::i;:::-;29414:2;29409:3;29405:12;29398:19;;29057:366;;;:::o;29429:419::-;29595:4;29633:2;29622:9;29618:18;29610:26;;29682:9;29676:4;29672:20;29668:1;29657:9;29653:17;29646:47;29710:131;29836:4;29710:131;:::i;:::-;29702:139;;29429:419;;;:::o;29854:230::-;29994:34;29990:1;29982:6;29978:14;29971:58;30063:13;30058:2;30050:6;30046:15;30039:38;29854:230;:::o;30090:366::-;30232:3;30253:67;30317:2;30312:3;30253:67;:::i;:::-;30246:74;;30329:93;30418:3;30329:93;:::i;:::-;30447:2;30442:3;30438:12;30431:19;;30090:366;;;:::o;30462:419::-;30628:4;30666:2;30655:9;30651:18;30643:26;;30715:9;30709:4;30705:20;30701:1;30690:9;30686:17;30679:47;30743:131;30869:4;30743:131;:::i;:::-;30735:139;;30462:419;;;:::o;30887:175::-;31027:27;31023:1;31015:6;31011:14;31004:51;30887:175;:::o;31068:366::-;31210:3;31231:67;31295:2;31290:3;31231:67;:::i;:::-;31224:74;;31307:93;31396:3;31307:93;:::i;:::-;31425:2;31420:3;31416:12;31409:19;;31068:366;;;:::o;31440:419::-;31606:4;31644:2;31633:9;31629:18;31621:26;;31693:9;31687:4;31683:20;31679:1;31668:9;31664:17;31657:47;31721:131;31847:4;31721:131;:::i;:::-;31713:139;;31440:419;;;:::o;31865:348::-;31905:7;31928:20;31946:1;31928:20;:::i;:::-;31923:25;;31962:20;31980:1;31962:20;:::i;:::-;31957:25;;32150:1;32082:66;32078:74;32075:1;32072:81;32067:1;32060:9;32053:17;32049:105;32046:131;;;32157:18;;:::i;:::-;32046:131;32205:1;32202;32198:9;32187:20;;31865:348;;;;:::o;32219:176::-;32359:28;32355:1;32347:6;32343:14;32336:52;32219:176;:::o;32401:366::-;32543:3;32564:67;32628:2;32623:3;32564:67;:::i;:::-;32557:74;;32640:93;32729:3;32640:93;:::i;:::-;32758:2;32753:3;32749:12;32742:19;;32401:366;;;:::o;32773:419::-;32939:4;32977:2;32966:9;32962:18;32954:26;;33026:9;33020:4;33016:20;33012:1;33001:9;32997:17;32990:47;33054:131;33180:4;33054:131;:::i;:::-;33046:139;;32773:419;;;:::o;33198:180::-;33338:32;33334:1;33326:6;33322:14;33315:56;33198:180;:::o;33384:366::-;33526:3;33547:67;33611:2;33606:3;33547:67;:::i;:::-;33540:74;;33623:93;33712:3;33623:93;:::i;:::-;33741:2;33736:3;33732:12;33725:19;;33384:366;;;:::o;33756:419::-;33922:4;33960:2;33949:9;33945:18;33937:26;;34009:9;34003:4;33999:20;33995:1;33984:9;33980:17;33973:47;34037:131;34163:4;34037:131;:::i;:::-;34029:139;;33756:419;;;:::o;34181:176::-;34321:28;34317:1;34309:6;34305:14;34298:52;34181:176;:::o;34363:366::-;34505:3;34526:67;34590:2;34585:3;34526:67;:::i;:::-;34519:74;;34602:93;34691:3;34602:93;:::i;:::-;34720:2;34715:3;34711:12;34704:19;;34363:366;;;:::o;34735:419::-;34901:4;34939:2;34928:9;34924:18;34916:26;;34988:9;34982:4;34978:20;34974:1;34963:9;34959:17;34952:47;35016:131;35142:4;35016:131;:::i;:::-;35008:139;;34735:419;;;:::o;35160:238::-;35300:34;35296:1;35288:6;35284:14;35277:58;35369:21;35364:2;35356:6;35352:15;35345:46;35160:238;:::o;35404:366::-;35546:3;35567:67;35631:2;35626:3;35567:67;:::i;:::-;35560:74;;35643:93;35732:3;35643:93;:::i;:::-;35761:2;35756:3;35752:12;35745:19;;35404:366;;;:::o;35776:419::-;35942:4;35980:2;35969:9;35965:18;35957:26;;36029:9;36023:4;36019:20;36015:1;36004:9;36000:17;35993:47;36057:131;36183:4;36057:131;:::i;:::-;36049:139;;35776:419;;;:::o;36201:235::-;36341:34;36337:1;36329:6;36325:14;36318:58;36410:18;36405:2;36397:6;36393:15;36386:43;36201:235;:::o;36442:366::-;36584:3;36605:67;36669:2;36664:3;36605:67;:::i;:::-;36598:74;;36681:93;36770:3;36681:93;:::i;:::-;36799:2;36794:3;36790:12;36783:19;;36442:366;;;:::o;36814:419::-;36980:4;37018:2;37007:9;37003:18;36995:26;;37067:9;37061:4;37057:20;37053:1;37042:9;37038:17;37031:47;37095:131;37221:4;37095:131;:::i;:::-;37087:139;;36814:419;;;:::o;37239:148::-;37341:11;37378:3;37363:18;;37239:148;;;;:::o;37393:377::-;37499:3;37527:39;37560:5;37527:39;:::i;:::-;37582:89;37664:6;37659:3;37582:89;:::i;:::-;37575:96;;37680:52;37725:6;37720:3;37713:4;37706:5;37702:16;37680:52;:::i;:::-;37757:6;37752:3;37748:16;37741:23;;37503:267;37393:377;;;;:::o;37776:141::-;37825:4;37848:3;37840:11;;37871:3;37868:1;37861:14;37905:4;37902:1;37892:18;37884:26;;37776:141;;;:::o;37947:845::-;38050:3;38087:5;38081:12;38116:36;38142:9;38116:36;:::i;:::-;38168:89;38250:6;38245:3;38168:89;:::i;:::-;38161:96;;38288:1;38277:9;38273:17;38304:1;38299:137;;;;38450:1;38445:341;;;;38266:520;;38299:137;38383:4;38379:9;38368;38364:25;38359:3;38352:38;38419:6;38414:3;38410:16;38403:23;;38299:137;;38445:341;38512:38;38544:5;38512:38;:::i;:::-;38572:1;38586:154;38600:6;38597:1;38594:13;38586:154;;;38674:7;38668:14;38664:1;38659:3;38655:11;38648:35;38724:1;38715:7;38711:15;38700:26;;38622:4;38619:1;38615:12;38610:17;;38586:154;;;38769:6;38764:3;38760:16;38753:23;;38452:334;;38266:520;;38054:738;;37947:845;;;;:::o;38798:589::-;39023:3;39045:95;39136:3;39127:6;39045:95;:::i;:::-;39038:102;;39157:95;39248:3;39239:6;39157:95;:::i;:::-;39150:102;;39269:92;39357:3;39348:6;39269:92;:::i;:::-;39262:99;;39378:3;39371:10;;38798:589;;;;;;:::o;39393:225::-;39533:34;39529:1;39521:6;39517:14;39510:58;39602:8;39597:2;39589:6;39585:15;39578:33;39393:225;:::o;39624:366::-;39766:3;39787:67;39851:2;39846:3;39787:67;:::i;:::-;39780:74;;39863:93;39952:3;39863:93;:::i;:::-;39981:2;39976:3;39972:12;39965:19;;39624:366;;;:::o;39996:419::-;40162:4;40200:2;40189:9;40185:18;40177:26;;40249:9;40243:4;40239:20;40235:1;40224:9;40220:17;40213:47;40277:131;40403:4;40277:131;:::i;:::-;40269:139;;39996:419;;;:::o;40421:237::-;40561:34;40557:1;40549:6;40545:14;40538:58;40630:20;40625:2;40617:6;40613:15;40606:45;40421:237;:::o;40664:366::-;40806:3;40827:67;40891:2;40886:3;40827:67;:::i;:::-;40820:74;;40903:93;40992:3;40903:93;:::i;:::-;41021:2;41016:3;41012:12;41005:19;;40664:366;;;:::o;41036:419::-;41202:4;41240:2;41229:9;41225:18;41217:26;;41289:9;41283:4;41279:20;41275:1;41264:9;41260:17;41253:47;41317:131;41443:4;41317:131;:::i;:::-;41309:139;;41036:419;;;:::o;41461:225::-;41601:34;41597:1;41589:6;41585:14;41578:58;41670:8;41665:2;41657:6;41653:15;41646:33;41461:225;:::o;41692:366::-;41834:3;41855:67;41919:2;41914:3;41855:67;:::i;:::-;41848:74;;41931:93;42020:3;41931:93;:::i;:::-;42049:2;42044:3;42040:12;42033:19;;41692:366;;;:::o;42064:419::-;42230:4;42268:2;42257:9;42253:18;42245:26;;42317:9;42311:4;42307:20;42303:1;42292:9;42288:17;42281:47;42345:131;42471:4;42345:131;:::i;:::-;42337:139;;42064:419;;;:::o;42489:224::-;42629:34;42625:1;42617:6;42613:14;42606:58;42698:7;42693:2;42685:6;42681:15;42674:32;42489:224;:::o;42719:366::-;42861:3;42882:67;42946:2;42941:3;42882:67;:::i;:::-;42875:74;;42958:93;43047:3;42958:93;:::i;:::-;43076:2;43071:3;43067:12;43060:19;;42719:366;;;:::o;43091:419::-;43257:4;43295:2;43284:9;43280:18;43272:26;;43344:9;43338:4;43334:20;43330:1;43319:9;43315:17;43308:47;43372:131;43498:4;43372:131;:::i;:::-;43364:139;;43091:419;;;:::o;43516:118::-;43553:7;43593:34;43586:5;43582:46;43571:57;;43516:118;;;:::o;43640:191::-;43680:4;43700:20;43718:1;43700:20;:::i;:::-;43695:25;;43734:20;43752:1;43734:20;:::i;:::-;43729:25;;43773:1;43770;43767:8;43764:34;;;43778:18;;:::i;:::-;43764:34;43823:1;43820;43816:9;43808:17;;43640:191;;;;:::o;43837:273::-;43877:3;43896:20;43914:1;43896:20;:::i;:::-;43891:25;;43930:20;43948:1;43930:20;:::i;:::-;43925:25;;44052:1;44016:34;44012:42;44009:1;44006:49;44003:75;;;44058:18;;:::i;:::-;44003:75;44102:1;44099;44095:9;44088:16;;43837:273;;;;:::o;44116:229::-;44256:34;44252:1;44244:6;44240:14;44233:58;44325:12;44320:2;44312:6;44308:15;44301:37;44116:229;:::o;44351:366::-;44493:3;44514:67;44578:2;44573:3;44514:67;:::i;:::-;44507:74;;44590:93;44679:3;44590:93;:::i;:::-;44708:2;44703:3;44699:12;44692:19;;44351:366;;;:::o;44723:419::-;44889:4;44927:2;44916:9;44912:18;44904:26;;44976:9;44970:4;44966:20;44962:1;44951:9;44947:17;44940:47;45004:131;45130:4;45004:131;:::i;:::-;44996:139;;44723:419;;;:::o;45148:171::-;45187:3;45210:24;45228:5;45210:24;:::i;:::-;45201:33;;45256:4;45249:5;45246:15;45243:41;;;45264:18;;:::i;:::-;45243:41;45311:1;45304:5;45300:13;45293:20;;45148:171;;;:::o;45325:234::-;45465:34;45461:1;45453:6;45449:14;45442:58;45534:17;45529:2;45521:6;45517:15;45510:42;45325:234;:::o;45565:366::-;45707:3;45728:67;45792:2;45787:3;45728:67;:::i;:::-;45721:74;;45804:93;45893:3;45804:93;:::i;:::-;45922:2;45917:3;45913:12;45906:19;;45565:366;;;:::o;45937:419::-;46103:4;46141:2;46130:9;46126:18;46118:26;;46190:9;46184:4;46180:20;46176:1;46165:9;46161:17;46154:47;46218:131;46344:4;46218:131;:::i;:::-;46210:139;;45937:419;;;:::o;46362:98::-;46413:6;46447:5;46441:12;46431:22;;46362:98;;;:::o;46466:168::-;46549:11;46583:6;46578:3;46571:19;46623:4;46618:3;46614:14;46599:29;;46466:168;;;;:::o;46640:360::-;46726:3;46754:38;46786:5;46754:38;:::i;:::-;46808:70;46871:6;46866:3;46808:70;:::i;:::-;46801:77;;46887:52;46932:6;46927:3;46920:4;46913:5;46909:16;46887:52;:::i;:::-;46964:29;46986:6;46964:29;:::i;:::-;46959:3;46955:39;46948:46;;46730:270;46640:360;;;;:::o;47006:640::-;47201:4;47239:3;47228:9;47224:19;47216:27;;47253:71;47321:1;47310:9;47306:17;47297:6;47253:71;:::i;:::-;47334:72;47402:2;47391:9;47387:18;47378:6;47334:72;:::i;:::-;47416;47484:2;47473:9;47469:18;47460:6;47416:72;:::i;:::-;47535:9;47529:4;47525:20;47520:2;47509:9;47505:18;47498:48;47563:76;47634:4;47625:6;47563:76;:::i;:::-;47555:84;;47006:640;;;;;;;:::o;47652:141::-;47708:5;47739:6;47733:13;47724:22;;47755:32;47781:5;47755:32;:::i;:::-;47652:141;;;;:::o;47799:349::-;47868:6;47917:2;47905:9;47896:7;47892:23;47888:32;47885:119;;;47923:79;;:::i;:::-;47885:119;48043:1;48068:63;48123:7;48114:6;48103:9;48099:22;48068:63;:::i;:::-;48058:73;;48014:127;47799:349;;;;:::o;48154:180::-;48202:77;48199:1;48192:88;48299:4;48296:1;48289:15;48323:4;48320:1;48313:15;48340:185;48380:1;48397:20;48415:1;48397:20;:::i;:::-;48392:25;;48431:20;48449:1;48431:20;:::i;:::-;48426:25;;48470:1;48460:35;;48475:18;;:::i;:::-;48460:35;48517:1;48514;48510:9;48505:14;;48340:185;;;;:::o;48531:176::-;48563:1;48580:20;48598:1;48580:20;:::i;:::-;48575:25;;48614:20;48632:1;48614:20;:::i;:::-;48609:25;;48653:1;48643:35;;48658:18;;:::i;:::-;48643:35;48699:1;48696;48692:9;48687:14;;48531:176;;;;:::o;48713:220::-;48853:34;48849:1;48841:6;48837:14;48830:58;48922:3;48917:2;48909:6;48905:15;48898:28;48713:220;:::o;48939:366::-;49081:3;49102:67;49166:2;49161:3;49102:67;:::i;:::-;49095:74;;49178:93;49267:3;49178:93;:::i;:::-;49296:2;49291:3;49287:12;49280:19;;48939:366;;;:::o;49311:419::-;49477:4;49515:2;49504:9;49500:18;49492:26;;49564:9;49558:4;49554:20;49550:1;49539:9;49535:17;49528:47;49592:131;49718:4;49592:131;:::i;:::-;49584:139;;49311:419;;;:::o;49736:179::-;49876:31;49872:1;49864:6;49860:14;49853:55;49736:179;:::o;49921:366::-;50063:3;50084:67;50148:2;50143:3;50084:67;:::i;:::-;50077:74;;50160:93;50249:3;50160:93;:::i;:::-;50278:2;50273:3;50269:12;50262:19;;49921:366;;;:::o;50293:419::-;50459:4;50497:2;50486:9;50482:18;50474:26;;50546:9;50540:4;50536:20;50532:1;50521:9;50517:17;50510:47;50574:131;50700:4;50574:131;:::i;:::-;50566:139;;50293:419;;;:::o;50718:221::-;50858:34;50854:1;50846:6;50842:14;50835:58;50927:4;50922:2;50914:6;50910:15;50903:29;50718:221;:::o;50945:366::-;51087:3;51108:67;51172:2;51167:3;51108:67;:::i;:::-;51101:74;;51184:93;51273:3;51184:93;:::i;:::-;51302:2;51297:3;51293:12;51286:19;;50945:366;;;:::o;51317:419::-;51483:4;51521:2;51510:9;51506:18;51498:26;;51570:9;51564:4;51560:20;51556:1;51545:9;51541:17;51534:47;51598:131;51724:4;51598:131;:::i;:::-;51590:139;;51317:419;;;:::o

Swarm Source

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