ETH Price: $2,996.36 (-1.80%)
Gas: 3 Gwei

Token

Kawaii Club Cuties (CUTIES)
 

Overview

Max Total Supply

120 CUTIES

Holders

89

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CUTIES
0x15e50931249be6997538672490f6ec28f1ebb413
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:
KawaiiClub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-09
*/

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

// SPDX-License-Identifier: MIT

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 no longer needed starting with Solidity 0.8. 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



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



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



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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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



pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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



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



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



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



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



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 tokenId);

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

        _balances[to] += 1;
        _owners[tokenId] = to;

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/KawaiiClub.sol

//          ._                __.
//         / \"-.          ,-",'/ 
//        (   \ ,"--.__.--".,' /  
//        =---Y(_i.-'  |-.i_)---=
//       f ,  "..'/\\v/|/|/\  , l
//       l//  ,'|/   V / /||  \\j
//        "--; / db     db|/---"
//           | \ YY   , YY//
//           '.\>_   (_),"' __
//         .-"    "-.-." I,"  `.
//         \.-""-. ( , ) ( \   |
//         (     l  `"'  -'-._j 
//  __,---_ '._." .  .    \
// (__.--_-'.  ,  :  '  \  '-.
//     ,' .'  /   |   \  \  \ "-
//      "--.._____t____.--'-""'
//             /  /  `. ".
//            / ":     \' '.
//          .'  (       \   : 
//          |    l      j    "-.
//          l_;_;I      l____;_I
// B-baka~! You're not supposed to be back here, d-don't look~!

pragma solidity ^0.8.7;




contract KawaiiClub is ERC721Enumerable, Ownable {

    using SafeMath for uint256;
    using Strings for uint256;

    string public _baseTokenURI;
    string public _baseExtension = ".json";
    uint256 public price = 0.1 ether;
    uint256 public _currentMintedSupply = 4;
    uint256 private _reserved = 102;
    uint256 private _giveawayID = 10000;
    bool public paused = true;
    uint256 public saleState = 0; // 0 = paused, 1 = presale, 2 = live

    // vault address
    address public vault = 0xb6fEbc07cDD78732238fa441980d55e0bB075099;

    // owner addresses
    address student1 = 0x49D40Bc9eE70c145ebb3A339a44eD901B1f9C766;
    address student2 = 0xb112e3a5B72F9c93a9a6b96df44a1caD6Ca63301;
    address student3 = 0xD40c83b7e6F7A4835D6680207d49822DC8f22E09;
    address student4 = 0x53161f80D92E208a7Dd31dD82f6aDD504fE9A975;

    mapping (address => uint256) public preSaleReserved;

    constructor(string memory baseURI) ERC721("Kawaii Club Cuties", "CUTIES")  {
        setBaseURI(baseURI);
        
        _safeMint(student1, 0);
        _safeMint(student2, 1);
        _safeMint(student3, 2);
        _safeMint(student4, 3);
    }

    function mint(uint256 num) public payable {
        uint256 supply = _currentMintedSupply;
        require( saleState > 1,             "The sale has not started");
        require(num > 0,                    "You can't mint 0 baka!");
        require( num < 21,                  "Only 20 per transaction please");
        require( supply + num < 10000,      "Exceeds max Cutie supply!");
        require( msg.value >= price * num,  "Not enough Ether");

        for(uint256 i; i < num; i++){
            _safeMint( msg.sender, supply + i );
        }
        
        _currentMintedSupply += num;
    }

    function preSaleMint(uint256 num) public payable {
        uint256 supply = _currentMintedSupply;
        uint256 reservedAmt = preSaleReserved[msg.sender];
        require( saleState > 0,              "Presale is not active");
        require( reservedAmt > 0,            "No Cuties left to mint for presale");
        require( num <= reservedAmt,         "Can't mint more than reserved");
        require( supply + num < 10000,       "Exceeds max Cutie supply!");
        require( msg.value >= price * num,   "Not enough Ether");
        preSaleReserved[msg.sender] = reservedAmt - num;
        for(uint256 i; i < num; i++){
            _safeMint( msg.sender, supply + i );
        }
        
        _currentMintedSupply += num;
    }


    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function setPreSaleWhitelist(address[] memory _a) public onlyOwner {
        for(uint256 i; i < _a.length; i++){
            preSaleReserved[_a[i]] = 5;
        }
    }
    
    function setSaleState(uint256 _saleState) public onlyOwner {
        saleState = _saleState;
    }
    
    function giveAway(address _to, uint256 _amount) external onlyOwner {
        require(_amount <= _reserved, "No more to give away");

        for (uint256 i; i < _amount; i++) {
            _safeMint(_to, _giveawayID + i);
        }

        _reserved -= _amount;
        _giveawayID += _amount;
    }

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

        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        tokenId.toString(),
                        _baseExtension
                    )
                )
                : "";
    }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }
    
    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    function setBaseExtension(string memory baseExtension) public onlyOwner {
        _baseExtension = baseExtension;
    }
    
    function pause(bool val) public onlyOwner {
        paused = val;
    }
    
    function getPrice() public view returns (uint256) {
        return price;
    }
    
    function setPrice(uint256 _newPrice) public onlyOwner() {
        price = _newPrice;
    }
    
    function setVault(address _newVaultAddress) public onlyOwner {
        vault = _newVaultAddress;
    }

    function withdrawAll() public payable onlyOwner {
        require(address(vault) != address(0), "No address set");
        require(payable(vault).send(address(this).balance));
    }

    function withdrawMultiple(address[] memory _withdrawAddresses) public payable onlyOwner {
        require(_withdrawAddresses.length != 0, "No addresses set");
        uint256 _each = address(this).balance / _withdrawAddresses.length;
        for (uint i=0; i < _withdrawAddresses.length; i++) {
            require(payable(_withdrawAddresses[i]).send(_each));
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_currentMintedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"giveAway","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":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preSaleReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleState","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"baseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_a","type":"address[]"}],"name":"setPreSaleWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleState","type":"uint256"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newVaultAddress","type":"address"}],"name":"setVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_withdrawAddresses","type":"address[]"}],"name":"withdrawMultiple","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200005192919062000fa1565b5067016345785d8a0000600d556004600e556066600f556127106010556001601160006101000a81548160ff021916908315150217905550600060125573b6febc07cdd78732238fa441980d55e0bb075099601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507349d40bc9ee70c145ebb3a339a44ed901b1f9c766601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073b112e3a5b72f9c93a9a6b96df44a1cad6ca63301601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073d40c83b7e6f7a4835d6680207d49822dc8f22e09601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507353161f80d92e208a7dd31dd82f6add504fe9a975601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200024457600080fd5b50604051620068d9380380620068d983398181016040528101906200026a919062001118565b6040518060400160405280601281526020017f4b617761696920436c75622043757469657300000000000000000000000000008152506040518060400160405280600681526020017f43555449455300000000000000000000000000000000000000000000000000008152508160009080519060200190620002ee92919062000fa1565b5080600190805190602001906200030792919062000fa1565b5050506200032a6200031e6200041660201b60201c565b6200041e60201b60201c565b6200033b81620004e460201b60201c565b62000370601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660006200058f60201b60201c565b620003a5601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200058f60201b60201c565b620003da601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660026200058f60201b60201c565b6200040f601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660036200058f60201b60201c565b5062001800565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620004f46200041660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200051a620005b560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000573576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200056a906200136b565b60405180910390fd5b80600b90805190602001906200058b92919062000fa1565b5050565b620005b1828260405180602001604052806000815250620005df60201b60201c565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620005f183836200064d60201b60201c565b6200060660008484846200083360201b60201c565b62000648576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200063f90620012e3565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620006c0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006b79062001349565b60405180910390fd5b620006d181620009ed60201b60201c565b1562000714576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200070b9062001305565b60405180910390fd5b620007286000838362000a5960201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200077a919062001419565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620008618473ffffffffffffffffffffffffffffffffffffffff1662000ba060201b620023401760201c565b15620009e0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620008936200041660201b60201c565b8786866040518563ffffffff1660e01b8152600401620008b794939291906200128f565b602060405180830381600087803b158015620008d257600080fd5b505af19250505080156200090657506040513d601f19601f82011682018060405250810190620009039190620010e6565b60015b6200098f573d806000811462000939576040519150601f19603f3d011682016040523d82523d6000602084013e6200093e565b606091505b5060008151141562000987576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200097e90620012e3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620009e5565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b62000a7183838362000bb360201b620023531760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000abe5762000ab88162000bb860201b60201c565b62000b06565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000b055762000b04838262000c0160201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000b535762000b4d8162000d7e60201b60201c565b62000b9b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000b9a5762000b99828262000e5a60201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000c1b8462000ee660201b6200137a1760201c565b62000c27919062001476565b905060006007600084815260200190815260200160002054905081811462000d0d576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000d94919062001476565b905060006009600084815260200190815260200160002054905060006008838154811062000dc75762000dc66200164a565b5b90600052602060002001549050806008838154811062000dec5762000deb6200164a565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000e3e5762000e3d6200161b565b5b6001900381819060005260206000200160009055905550505050565b600062000e728362000ee660201b6200137a1760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000f5a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000f519062001327565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000faf9062001551565b90600052602060002090601f01602090048101928262000fd357600085556200101f565b82601f1062000fee57805160ff19168380011785556200101f565b828001600101855582156200101f579182015b828111156200101e57825182559160200191906001019062001001565b5b5090506200102e919062001032565b5090565b5b808211156200104d57600081600090555060010162001033565b5090565b6000620010686200106284620013b6565b6200138d565b905082815260208101848484011115620010875762001086620016ad565b5b620010948482856200151b565b509392505050565b600081519050620010ad81620017e6565b92915050565b600082601f830112620010cb57620010ca620016a8565b5b8151620010dd84826020860162001051565b91505092915050565b600060208284031215620010ff57620010fe620016b7565b5b60006200110f848285016200109c565b91505092915050565b600060208284031215620011315762001130620016b7565b5b600082015167ffffffffffffffff811115620011525762001151620016b2565b5b6200116084828501620010b3565b91505092915050565b6200117481620014b1565b82525050565b60006200118782620013ec565b620011938185620013f7565b9350620011a58185602086016200151b565b620011b081620016bc565b840191505092915050565b6000620011ca60328362001408565b9150620011d782620016cd565b604082019050919050565b6000620011f1601c8362001408565b9150620011fe826200171c565b602082019050919050565b600062001218602a8362001408565b9150620012258262001745565b604082019050919050565b60006200123f60208362001408565b91506200124c8262001794565b602082019050919050565b60006200126660208362001408565b91506200127382620017bd565b602082019050919050565b620012898162001511565b82525050565b6000608082019050620012a6600083018762001169565b620012b5602083018662001169565b620012c460408301856200127e565b8181036060830152620012d881846200117a565b905095945050505050565b60006020820190508181036000830152620012fe81620011bb565b9050919050565b600060208201905081810360008301526200132081620011e2565b9050919050565b60006020820190508181036000830152620013428162001209565b9050919050565b60006020820190508181036000830152620013648162001230565b9050919050565b60006020820190508181036000830152620013868162001257565b9050919050565b600062001399620013ac565b9050620013a7828262001587565b919050565b6000604051905090565b600067ffffffffffffffff821115620013d457620013d362001679565b5b620013df82620016bc565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000620014268262001511565b9150620014338362001511565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200146b576200146a620015bd565b5b828201905092915050565b6000620014838262001511565b9150620014908362001511565b925082821015620014a657620014a5620015bd565b5b828203905092915050565b6000620014be82620014f1565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200153b5780820151818401526020810190506200151e565b838111156200154b576000848401525b50505050565b600060028204905060018216806200156a57607f821691505b60208210811415620015815762001580620015ec565b5b50919050565b6200159282620016bc565b810181811067ffffffffffffffff82111715620015b457620015b362001679565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b620017f181620014c5565b8114620017fd57600080fd5b50565b6150c980620018106000396000f3fe6080604052600436106102465760003560e01c8063715018a611610139578063a0712d68116100b6578063ca8001441161007a578063ca80014414610856578063cfc86f7b1461087f578063da3ef23f146108aa578063e985e9c5146108d3578063f2fde38b14610910578063fbfa77cf1461093957610246565b8063a0712d6814610782578063a22cb4651461079e578063b88d4fde146107c7578063bd4a82e4146107f0578063c87b56dd1461081957610246565b806391b7f5ed116100fd57806391b7f5ed1461069b578063928e8015146106c457806395d89b411461070157806398d5fdca1461072c578063a035b1fe1461075757610246565b8063715018a6146106085780637835c6351461061f5780637d2048f81461063b578063853828b6146106665780638da5cb5b1461067057610246565b80632f745c59116101c75780635c975abb1161018b5780635c975abb1461050f578063603f4d521461053a5780636352211e146105655780636817031b146105a257806370a08231146105cb57610246565b80632f745c591461040657806342842e0e14610443578063438b63001461046c5780634f6ccce7146104a957806355f804b3146104e657610246565b8063095ea7b31161020e578063095ea7b31461034257806318160ddd1461036b57806323b872dd146103965780632672c902146103bf5780632895e837146103ea57610246565b806301ffc9a71461024b57806302329a291461028857806306fdde03146102b1578063081812fc146102dc578063084c408814610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906138db565b610964565b60405161027f9190614030565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa91906138ae565b6109de565b005b3480156102bd57600080fd5b506102c6610a77565b6040516102d3919061404b565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe919061397e565b610b09565b6040516103109190613fa7565b60405180910390f35b34801561032557600080fd5b50610340600480360381019061033b919061397e565b610b8e565b005b34801561034e57600080fd5b5061036960048036038101906103649190613825565b610c14565b005b34801561037757600080fd5b50610380610d2c565b60405161038d919061440d565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b8919061370f565b610d39565b005b3480156103cb57600080fd5b506103d4610d99565b6040516103e1919061404b565b60405180910390f35b61040460048036038101906103ff9190613865565b610e27565b005b34801561041257600080fd5b5061042d60048036038101906104289190613825565b610f75565b60405161043a919061440d565b60405180910390f35b34801561044f57600080fd5b5061046a6004803603810190610465919061370f565b61101a565b005b34801561047857600080fd5b50610493600480360381019061048e91906136a2565b61103a565b6040516104a0919061400e565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb919061397e565b6110e8565b6040516104dd919061440d565b60405180910390f35b3480156104f257600080fd5b5061050d60048036038101906105089190613935565b611159565b005b34801561051b57600080fd5b506105246111ef565b6040516105319190614030565b60405180910390f35b34801561054657600080fd5b5061054f611202565b60405161055c919061440d565b60405180910390f35b34801561057157600080fd5b5061058c6004803603810190610587919061397e565b611208565b6040516105999190613fa7565b60405180910390f35b3480156105ae57600080fd5b506105c960048036038101906105c491906136a2565b6112ba565b005b3480156105d757600080fd5b506105f260048036038101906105ed91906136a2565b61137a565b6040516105ff919061440d565b60405180910390f35b34801561061457600080fd5b5061061d611432565b005b6106396004803603810190610634919061397e565b6114ba565b005b34801561064757600080fd5b50610650611710565b60405161065d919061440d565b60405180910390f35b61066e611716565b005b34801561067c57600080fd5b50610685611886565b6040516106929190613fa7565b60405180910390f35b3480156106a757600080fd5b506106c260048036038101906106bd919061397e565b6118b0565b005b3480156106d057600080fd5b506106eb60048036038101906106e691906136a2565b611936565b6040516106f8919061440d565b60405180910390f35b34801561070d57600080fd5b5061071661194e565b604051610723919061404b565b60405180910390f35b34801561073857600080fd5b506107416119e0565b60405161074e919061440d565b60405180910390f35b34801561076357600080fd5b5061076c6119ea565b604051610779919061440d565b60405180910390f35b61079c6004803603810190610797919061397e565b6119f0565b005b3480156107aa57600080fd5b506107c560048036038101906107c091906137e5565b611bb2565b005b3480156107d357600080fd5b506107ee60048036038101906107e99190613762565b611d33565b005b3480156107fc57600080fd5b5061081760048036038101906108129190613865565b611d95565b005b34801561082557600080fd5b50610840600480360381019061083b919061397e565b611e93565b60405161084d919061404b565b60405180910390f35b34801561086257600080fd5b5061087d60048036038101906108789190613825565b611f3d565b005b34801561088b57600080fd5b5061089461206a565b6040516108a1919061404b565b60405180910390f35b3480156108b657600080fd5b506108d160048036038101906108cc9190613935565b6120f8565b005b3480156108df57600080fd5b506108fa60048036038101906108f591906136cf565b61218e565b6040516109079190614030565b60405180910390f35b34801561091c57600080fd5b50610937600480360381019061093291906136a2565b612222565b005b34801561094557600080fd5b5061094e61231a565b60405161095b9190613fa7565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109d757506109d682612358565b5b9050919050565b6109e661243a565b73ffffffffffffffffffffffffffffffffffffffff16610a04611886565b73ffffffffffffffffffffffffffffffffffffffff1614610a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a519061426d565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b606060008054610a8690614737565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab290614737565b8015610aff5780601f10610ad457610100808354040283529160200191610aff565b820191906000526020600020905b815481529060010190602001808311610ae257829003601f168201915b5050505050905090565b6000610b1482612442565b610b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4a9061424d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610b9661243a565b73ffffffffffffffffffffffffffffffffffffffff16610bb4611886565b73ffffffffffffffffffffffffffffffffffffffff1614610c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c019061426d565b60405180910390fd5b8060128190555050565b6000610c1f82611208565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c87906142cd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610caf61243a565b73ffffffffffffffffffffffffffffffffffffffff161480610cde5750610cdd81610cd861243a565b61218e565b5b610d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d14906141ad565b60405180910390fd5b610d2783836124ae565b505050565b6000600880549050905090565b610d4a610d4461243a565b82612567565b610d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d809061430d565b60405180910390fd5b610d94838383612645565b505050565b600c8054610da690614737565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd290614737565b8015610e1f5780601f10610df457610100808354040283529160200191610e1f565b820191906000526020600020905b815481529060010190602001808311610e0257829003601f168201915b505050505081565b610e2f61243a565b73ffffffffffffffffffffffffffffffffffffffff16610e4d611886565b73ffffffffffffffffffffffffffffffffffffffff1614610ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9a9061426d565b60405180910390fd5b600081511415610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf9061406d565b60405180910390fd5b6000815147610ef791906145c2565b905060005b8251811015610f7057828181518110610f1857610f176148d0565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050610f5d57600080fd5b8080610f689061479a565b915050610efc565b505050565b6000610f808361137a565b8210610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb8906140ad565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61103583838360405180602001604052806000815250611d33565b505050565b606060006110478361137a565b905060008167ffffffffffffffff811115611065576110646148ff565b5b6040519080825280602002602001820160405280156110935781602001602082028036833780820191505090505b50905060005b828110156110dd576110ab8582610f75565b8282815181106110be576110bd6148d0565b5b60200260200101818152505080806110d59061479a565b915050611099565b508092505050919050565b60006110f2610d2c565b8210611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a9061434d565b60405180910390fd5b60088281548110611147576111466148d0565b5b90600052602060002001549050919050565b61116161243a565b73ffffffffffffffffffffffffffffffffffffffff1661117f611886565b73ffffffffffffffffffffffffffffffffffffffff16146111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc9061426d565b60405180910390fd5b80600b90805190602001906111eb929190613418565b5050565b601160009054906101000a900460ff1681565b60125481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a8906141ed565b60405180910390fd5b80915050919050565b6112c261243a565b73ffffffffffffffffffffffffffffffffffffffff166112e0611886565b73ffffffffffffffffffffffffffffffffffffffff1614611336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132d9061426d565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e2906141cd565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61143a61243a565b73ffffffffffffffffffffffffffffffffffffffff16611458611886565b73ffffffffffffffffffffffffffffffffffffffff16146114ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a59061426d565b60405180910390fd5b6114b860006128a1565b565b6000600e5490506000601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060006012541161154a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115419061436d565b60405180910390fd5b6000811161158d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611584906142ed565b60405180910390fd5b808311156115d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c79061408d565b60405180910390fd5b61271083836115df919061456c565b1061161f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116169061422d565b60405180910390fd5b82600d5461162d91906145f3565b34101561166f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116669061432d565b60405180910390fd5b828161167b919061464d565b601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b838110156116f1576116de3382856116d9919061456c565b612967565b80806116e99061479a565b9150506116c1565b5082600e6000828254611704919061456c565b92505081905550505050565b600e5481565b61171e61243a565b73ffffffffffffffffffffffffffffffffffffffff1661173c611886565b73ffffffffffffffffffffffffffffffffffffffff1614611792576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117899061426d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181b906143ad565b60405180910390fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061188457600080fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118b861243a565b73ffffffffffffffffffffffffffffffffffffffff166118d6611886565b73ffffffffffffffffffffffffffffffffffffffff161461192c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119239061426d565b60405180910390fd5b80600d8190555050565b60186020528060005260406000206000915090505481565b60606001805461195d90614737565b80601f016020809104026020016040519081016040528092919081815260200182805461198990614737565b80156119d65780601f106119ab576101008083540402835291602001916119d6565b820191906000526020600020905b8154815290600101906020018083116119b957829003601f168201915b5050505050905090565b6000600d54905090565b600d5481565b6000600e549050600160125411611a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a33906143cd565b60405180910390fd5b60008211611a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a769061438d565b60405180910390fd5b60158210611ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab99061412d565b60405180910390fd5b6127108282611ad1919061456c565b10611b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b089061422d565b60405180910390fd5b81600d54611b1f91906145f3565b341015611b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b589061432d565b60405180910390fd5b60005b82811015611b9457611b81338284611b7c919061456c565b612967565b8080611b8c9061479a565b915050611b64565b5081600e6000828254611ba7919061456c565b925050819055505050565b611bba61243a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1f9061416d565b60405180910390fd5b8060056000611c3561243a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ce261243a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d279190614030565b60405180910390a35050565b611d44611d3e61243a565b83612567565b611d83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7a9061430d565b60405180910390fd5b611d8f84848484612985565b50505050565b611d9d61243a565b73ffffffffffffffffffffffffffffffffffffffff16611dbb611886565b73ffffffffffffffffffffffffffffffffffffffff1614611e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e089061426d565b60405180910390fd5b60005b8151811015611e8f57600560186000848481518110611e3657611e356148d0565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611e879061479a565b915050611e14565b5050565b6060611e9e82612442565b611edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed4906142ad565b60405180910390fd5b6000611ee76129e1565b90506000815111611f075760405180602001604052806000815250611f35565b80611f1184612a73565b600c604051602001611f2593929190613f76565b6040516020818303038152906040525b915050919050565b611f4561243a565b73ffffffffffffffffffffffffffffffffffffffff16611f63611886565b73ffffffffffffffffffffffffffffffffffffffff1614611fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb09061426d565b60405180910390fd5b600f54811115611ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff5906143ed565b60405180910390fd5b60005b8181101561203357612020838260105461201b919061456c565b612967565b808061202b9061479a565b915050612001565b5080600f6000828254612046919061464d565b92505081905550806010600082825461205f919061456c565b925050819055505050565b600b805461207790614737565b80601f01602080910402602001604051908101604052809291908181526020018280546120a390614737565b80156120f05780601f106120c5576101008083540402835291602001916120f0565b820191906000526020600020905b8154815290600101906020018083116120d357829003601f168201915b505050505081565b61210061243a565b73ffffffffffffffffffffffffffffffffffffffff1661211e611886565b73ffffffffffffffffffffffffffffffffffffffff1614612174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216b9061426d565b60405180910390fd5b80600c908051906020019061218a929190613418565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61222a61243a565b73ffffffffffffffffffffffffffffffffffffffff16612248611886565b73ffffffffffffffffffffffffffffffffffffffff161461229e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122959061426d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561230e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612305906140ed565b60405180910390fd5b612317816128a1565b50565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061242357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612433575061243282612bd4565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661252183611208565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061257282612442565b6125b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a89061418d565b60405180910390fd5b60006125bc83611208565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061262b57508373ffffffffffffffffffffffffffffffffffffffff1661261384610b09565b73ffffffffffffffffffffffffffffffffffffffff16145b8061263c575061263b818561218e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661266582611208565b73ffffffffffffffffffffffffffffffffffffffff16146126bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b29061428d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561272b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127229061414d565b60405180910390fd5b612736838383612c3e565b6127416000826124ae565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612791919061464d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127e8919061456c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612981828260405180602001604052806000815250612d52565b5050565b612990848484612645565b61299c84848484612dad565b6129db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d2906140cd565b60405180910390fd5b50505050565b6060600b80546129f090614737565b80601f0160208091040260200160405190810160405280929190818152602001828054612a1c90614737565b8015612a695780601f10612a3e57610100808354040283529160200191612a69565b820191906000526020600020905b815481529060010190602001808311612a4c57829003601f168201915b5050505050905090565b60606000821415612abb576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bcf565b600082905060005b60008214612aed578080612ad69061479a565b915050600a82612ae691906145c2565b9150612ac3565b60008167ffffffffffffffff811115612b0957612b086148ff565b5b6040519080825280601f01601f191660200182016040528015612b3b5781602001600182028036833780820191505090505b5090505b60008514612bc857600182612b54919061464d565b9150600a85612b6391906147e3565b6030612b6f919061456c565b60f81b818381518110612b8557612b846148d0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bc191906145c2565b9450612b3f565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612c49838383612353565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c8c57612c8781612f44565b612ccb565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612cca57612cc98382612f8d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d0e57612d09816130fa565b612d4d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612d4c57612d4b82826131cb565b5b5b505050565b612d5c838361324a565b612d696000848484612dad565b612da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9f906140cd565b60405180910390fd5b505050565b6000612dce8473ffffffffffffffffffffffffffffffffffffffff16612340565b15612f37578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612df761243a565b8786866040518563ffffffff1660e01b8152600401612e199493929190613fc2565b602060405180830381600087803b158015612e3357600080fd5b505af1925050508015612e6457506040513d601f19601f82011682018060405250810190612e619190613908565b60015b612ee7573d8060008114612e94576040519150601f19603f3d011682016040523d82523d6000602084013e612e99565b606091505b50600081511415612edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed6906140cd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f3c565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612f9a8461137a565b612fa4919061464d565b9050600060076000848152602001908152602001600020549050818114613089576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061310e919061464d565b905060006009600084815260200190815260200160002054905060006008838154811061313e5761313d6148d0565b5b9060005260206000200154905080600883815481106131605761315f6148d0565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806131af576131ae6148a1565b5b6001900381819060005260206000200160009055905550505050565b60006131d68361137a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b19061420d565b60405180910390fd5b6132c381612442565b15613303576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132fa9061410d565b60405180910390fd5b61330f60008383612c3e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461335f919061456c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461342490614737565b90600052602060002090601f016020900481019282613446576000855561348d565b82601f1061345f57805160ff191683800117855561348d565b8280016001018555821561348d579182015b8281111561348c578251825591602001919060010190613471565b5b50905061349a919061349e565b5090565b5b808211156134b757600081600090555060010161349f565b5090565b60006134ce6134c98461444d565b614428565b905080838252602082019050828560208602820111156134f1576134f0614933565b5b60005b85811015613521578161350788826135af565b8452602084019350602083019250506001810190506134f4565b5050509392505050565b600061353e61353984614479565b614428565b90508281526020810184848401111561355a57613559614938565b5b6135658482856146f5565b509392505050565b600061358061357b846144aa565b614428565b90508281526020810184848401111561359c5761359b614938565b5b6135a78482856146f5565b509392505050565b6000813590506135be81615037565b92915050565b600082601f8301126135d9576135d861492e565b5b81356135e98482602086016134bb565b91505092915050565b6000813590506136018161504e565b92915050565b60008135905061361681615065565b92915050565b60008151905061362b81615065565b92915050565b600082601f8301126136465761364561492e565b5b813561365684826020860161352b565b91505092915050565b600082601f8301126136745761367361492e565b5b813561368484826020860161356d565b91505092915050565b60008135905061369c8161507c565b92915050565b6000602082840312156136b8576136b7614942565b5b60006136c6848285016135af565b91505092915050565b600080604083850312156136e6576136e5614942565b5b60006136f4858286016135af565b9250506020613705858286016135af565b9150509250929050565b60008060006060848603121561372857613727614942565b5b6000613736868287016135af565b9350506020613747868287016135af565b92505060406137588682870161368d565b9150509250925092565b6000806000806080858703121561377c5761377b614942565b5b600061378a878288016135af565b945050602061379b878288016135af565b93505060406137ac8782880161368d565b925050606085013567ffffffffffffffff8111156137cd576137cc61493d565b5b6137d987828801613631565b91505092959194509250565b600080604083850312156137fc576137fb614942565b5b600061380a858286016135af565b925050602061381b858286016135f2565b9150509250929050565b6000806040838503121561383c5761383b614942565b5b600061384a858286016135af565b925050602061385b8582860161368d565b9150509250929050565b60006020828403121561387b5761387a614942565b5b600082013567ffffffffffffffff8111156138995761389861493d565b5b6138a5848285016135c4565b91505092915050565b6000602082840312156138c4576138c3614942565b5b60006138d2848285016135f2565b91505092915050565b6000602082840312156138f1576138f0614942565b5b60006138ff84828501613607565b91505092915050565b60006020828403121561391e5761391d614942565b5b600061392c8482850161361c565b91505092915050565b60006020828403121561394b5761394a614942565b5b600082013567ffffffffffffffff8111156139695761396861493d565b5b6139758482850161365f565b91505092915050565b60006020828403121561399457613993614942565b5b60006139a28482850161368d565b91505092915050565b60006139b78383613f58565b60208301905092915050565b6139cc81614681565b82525050565b60006139dd82614500565b6139e7818561452e565b93506139f2836144db565b8060005b83811015613a23578151613a0a88826139ab565b9750613a1583614521565b9250506001810190506139f6565b5085935050505092915050565b613a3981614693565b82525050565b6000613a4a8261450b565b613a54818561453f565b9350613a64818560208601614704565b613a6d81614947565b840191505092915050565b6000613a8382614516565b613a8d8185614550565b9350613a9d818560208601614704565b613aa681614947565b840191505092915050565b6000613abc82614516565b613ac68185614561565b9350613ad6818560208601614704565b80840191505092915050565b60008154613aef81614737565b613af98186614561565b94506001821660008114613b145760018114613b2557613b58565b60ff19831686528186019350613b58565b613b2e856144eb565b60005b83811015613b5057815481890152600182019150602081019050613b31565b838801955050505b50505092915050565b6000613b6e601083614550565b9150613b7982614958565b602082019050919050565b6000613b91601d83614550565b9150613b9c82614981565b602082019050919050565b6000613bb4602b83614550565b9150613bbf826149aa565b604082019050919050565b6000613bd7603283614550565b9150613be2826149f9565b604082019050919050565b6000613bfa602683614550565b9150613c0582614a48565b604082019050919050565b6000613c1d601c83614550565b9150613c2882614a97565b602082019050919050565b6000613c40601e83614550565b9150613c4b82614ac0565b602082019050919050565b6000613c63602483614550565b9150613c6e82614ae9565b604082019050919050565b6000613c86601983614550565b9150613c9182614b38565b602082019050919050565b6000613ca9602c83614550565b9150613cb482614b61565b604082019050919050565b6000613ccc603883614550565b9150613cd782614bb0565b604082019050919050565b6000613cef602a83614550565b9150613cfa82614bff565b604082019050919050565b6000613d12602983614550565b9150613d1d82614c4e565b604082019050919050565b6000613d35602083614550565b9150613d4082614c9d565b602082019050919050565b6000613d58601983614550565b9150613d6382614cc6565b602082019050919050565b6000613d7b602c83614550565b9150613d8682614cef565b604082019050919050565b6000613d9e602083614550565b9150613da982614d3e565b602082019050919050565b6000613dc1602983614550565b9150613dcc82614d67565b604082019050919050565b6000613de4602f83614550565b9150613def82614db6565b604082019050919050565b6000613e07602183614550565b9150613e1282614e05565b604082019050919050565b6000613e2a602283614550565b9150613e3582614e54565b604082019050919050565b6000613e4d603183614550565b9150613e5882614ea3565b604082019050919050565b6000613e70601083614550565b9150613e7b82614ef2565b602082019050919050565b6000613e93602c83614550565b9150613e9e82614f1b565b604082019050919050565b6000613eb6601583614550565b9150613ec182614f6a565b602082019050919050565b6000613ed9601683614550565b9150613ee482614f93565b602082019050919050565b6000613efc600e83614550565b9150613f0782614fbc565b602082019050919050565b6000613f1f601883614550565b9150613f2a82614fe5565b602082019050919050565b6000613f42601483614550565b9150613f4d8261500e565b602082019050919050565b613f61816146eb565b82525050565b613f70816146eb565b82525050565b6000613f828286613ab1565b9150613f8e8285613ab1565b9150613f9a8284613ae2565b9150819050949350505050565b6000602082019050613fbc60008301846139c3565b92915050565b6000608082019050613fd760008301876139c3565b613fe460208301866139c3565b613ff16040830185613f67565b81810360608301526140038184613a3f565b905095945050505050565b6000602082019050818103600083015261402881846139d2565b905092915050565b60006020820190506140456000830184613a30565b92915050565b600060208201905081810360008301526140658184613a78565b905092915050565b6000602082019050818103600083015261408681613b61565b9050919050565b600060208201905081810360008301526140a681613b84565b9050919050565b600060208201905081810360008301526140c681613ba7565b9050919050565b600060208201905081810360008301526140e681613bca565b9050919050565b6000602082019050818103600083015261410681613bed565b9050919050565b6000602082019050818103600083015261412681613c10565b9050919050565b6000602082019050818103600083015261414681613c33565b9050919050565b6000602082019050818103600083015261416681613c56565b9050919050565b6000602082019050818103600083015261418681613c79565b9050919050565b600060208201905081810360008301526141a681613c9c565b9050919050565b600060208201905081810360008301526141c681613cbf565b9050919050565b600060208201905081810360008301526141e681613ce2565b9050919050565b6000602082019050818103600083015261420681613d05565b9050919050565b6000602082019050818103600083015261422681613d28565b9050919050565b6000602082019050818103600083015261424681613d4b565b9050919050565b6000602082019050818103600083015261426681613d6e565b9050919050565b6000602082019050818103600083015261428681613d91565b9050919050565b600060208201905081810360008301526142a681613db4565b9050919050565b600060208201905081810360008301526142c681613dd7565b9050919050565b600060208201905081810360008301526142e681613dfa565b9050919050565b6000602082019050818103600083015261430681613e1d565b9050919050565b6000602082019050818103600083015261432681613e40565b9050919050565b6000602082019050818103600083015261434681613e63565b9050919050565b6000602082019050818103600083015261436681613e86565b9050919050565b6000602082019050818103600083015261438681613ea9565b9050919050565b600060208201905081810360008301526143a681613ecc565b9050919050565b600060208201905081810360008301526143c681613eef565b9050919050565b600060208201905081810360008301526143e681613f12565b9050919050565b6000602082019050818103600083015261440681613f35565b9050919050565b60006020820190506144226000830184613f67565b92915050565b6000614432614443565b905061443e8282614769565b919050565b6000604051905090565b600067ffffffffffffffff821115614468576144676148ff565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614494576144936148ff565b5b61449d82614947565b9050602081019050919050565b600067ffffffffffffffff8211156144c5576144c46148ff565b5b6144ce82614947565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614577826146eb565b9150614582836146eb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145b7576145b6614814565b5b828201905092915050565b60006145cd826146eb565b91506145d8836146eb565b9250826145e8576145e7614843565b5b828204905092915050565b60006145fe826146eb565b9150614609836146eb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561464257614641614814565b5b828202905092915050565b6000614658826146eb565b9150614663836146eb565b92508282101561467657614675614814565b5b828203905092915050565b600061468c826146cb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614722578082015181840152602081019050614707565b83811115614731576000848401525b50505050565b6000600282049050600182168061474f57607f821691505b6020821081141561476357614762614872565b5b50919050565b61477282614947565b810181811067ffffffffffffffff82111715614791576147906148ff565b5b80604052505050565b60006147a5826146eb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147d8576147d7614814565b5b600182019050919050565b60006147ee826146eb565b91506147f9836146eb565b92508261480957614808614843565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f206164647265737365732073657400000000000000000000000000000000600082015250565b7f43616e2774206d696e74206d6f7265207468616e207265736572766564000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4f6e6c7920323020706572207472616e73616374696f6e20706c656173650000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45786365656473206d617820437574696520737570706c792100000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f20437574696573206c65667420746f206d696e7420666f7220707265736160008201527f6c65000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820457468657200000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f50726573616c65206973206e6f74206163746976650000000000000000000000600082015250565b7f596f752063616e2774206d696e7420302062616b612100000000000000000000600082015250565b7f4e6f206164647265737320736574000000000000000000000000000000000000600082015250565b7f5468652073616c6520686173206e6f7420737461727465640000000000000000600082015250565b7f4e6f206d6f726520746f20676976652061776179000000000000000000000000600082015250565b61504081614681565b811461504b57600080fd5b50565b61505781614693565b811461506257600080fd5b50565b61506e8161469f565b811461507957600080fd5b50565b615085816146eb565b811461509057600080fd5b5056fea264697066735822122053a91275eb5a2d481291a792232a3538f45c8c7abbb230a628fb836e71289d8164736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6262367358756e78327851714c716f347a73615463724379383573666f487465527a41346258736a4e7969462f00000000000000000000

Deployed Bytecode

0x6080604052600436106102465760003560e01c8063715018a611610139578063a0712d68116100b6578063ca8001441161007a578063ca80014414610856578063cfc86f7b1461087f578063da3ef23f146108aa578063e985e9c5146108d3578063f2fde38b14610910578063fbfa77cf1461093957610246565b8063a0712d6814610782578063a22cb4651461079e578063b88d4fde146107c7578063bd4a82e4146107f0578063c87b56dd1461081957610246565b806391b7f5ed116100fd57806391b7f5ed1461069b578063928e8015146106c457806395d89b411461070157806398d5fdca1461072c578063a035b1fe1461075757610246565b8063715018a6146106085780637835c6351461061f5780637d2048f81461063b578063853828b6146106665780638da5cb5b1461067057610246565b80632f745c59116101c75780635c975abb1161018b5780635c975abb1461050f578063603f4d521461053a5780636352211e146105655780636817031b146105a257806370a08231146105cb57610246565b80632f745c591461040657806342842e0e14610443578063438b63001461046c5780634f6ccce7146104a957806355f804b3146104e657610246565b8063095ea7b31161020e578063095ea7b31461034257806318160ddd1461036b57806323b872dd146103965780632672c902146103bf5780632895e837146103ea57610246565b806301ffc9a71461024b57806302329a291461028857806306fdde03146102b1578063081812fc146102dc578063084c408814610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906138db565b610964565b60405161027f9190614030565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa91906138ae565b6109de565b005b3480156102bd57600080fd5b506102c6610a77565b6040516102d3919061404b565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe919061397e565b610b09565b6040516103109190613fa7565b60405180910390f35b34801561032557600080fd5b50610340600480360381019061033b919061397e565b610b8e565b005b34801561034e57600080fd5b5061036960048036038101906103649190613825565b610c14565b005b34801561037757600080fd5b50610380610d2c565b60405161038d919061440d565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b8919061370f565b610d39565b005b3480156103cb57600080fd5b506103d4610d99565b6040516103e1919061404b565b60405180910390f35b61040460048036038101906103ff9190613865565b610e27565b005b34801561041257600080fd5b5061042d60048036038101906104289190613825565b610f75565b60405161043a919061440d565b60405180910390f35b34801561044f57600080fd5b5061046a6004803603810190610465919061370f565b61101a565b005b34801561047857600080fd5b50610493600480360381019061048e91906136a2565b61103a565b6040516104a0919061400e565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb919061397e565b6110e8565b6040516104dd919061440d565b60405180910390f35b3480156104f257600080fd5b5061050d60048036038101906105089190613935565b611159565b005b34801561051b57600080fd5b506105246111ef565b6040516105319190614030565b60405180910390f35b34801561054657600080fd5b5061054f611202565b60405161055c919061440d565b60405180910390f35b34801561057157600080fd5b5061058c6004803603810190610587919061397e565b611208565b6040516105999190613fa7565b60405180910390f35b3480156105ae57600080fd5b506105c960048036038101906105c491906136a2565b6112ba565b005b3480156105d757600080fd5b506105f260048036038101906105ed91906136a2565b61137a565b6040516105ff919061440d565b60405180910390f35b34801561061457600080fd5b5061061d611432565b005b6106396004803603810190610634919061397e565b6114ba565b005b34801561064757600080fd5b50610650611710565b60405161065d919061440d565b60405180910390f35b61066e611716565b005b34801561067c57600080fd5b50610685611886565b6040516106929190613fa7565b60405180910390f35b3480156106a757600080fd5b506106c260048036038101906106bd919061397e565b6118b0565b005b3480156106d057600080fd5b506106eb60048036038101906106e691906136a2565b611936565b6040516106f8919061440d565b60405180910390f35b34801561070d57600080fd5b5061071661194e565b604051610723919061404b565b60405180910390f35b34801561073857600080fd5b506107416119e0565b60405161074e919061440d565b60405180910390f35b34801561076357600080fd5b5061076c6119ea565b604051610779919061440d565b60405180910390f35b61079c6004803603810190610797919061397e565b6119f0565b005b3480156107aa57600080fd5b506107c560048036038101906107c091906137e5565b611bb2565b005b3480156107d357600080fd5b506107ee60048036038101906107e99190613762565b611d33565b005b3480156107fc57600080fd5b5061081760048036038101906108129190613865565b611d95565b005b34801561082557600080fd5b50610840600480360381019061083b919061397e565b611e93565b60405161084d919061404b565b60405180910390f35b34801561086257600080fd5b5061087d60048036038101906108789190613825565b611f3d565b005b34801561088b57600080fd5b5061089461206a565b6040516108a1919061404b565b60405180910390f35b3480156108b657600080fd5b506108d160048036038101906108cc9190613935565b6120f8565b005b3480156108df57600080fd5b506108fa60048036038101906108f591906136cf565b61218e565b6040516109079190614030565b60405180910390f35b34801561091c57600080fd5b50610937600480360381019061093291906136a2565b612222565b005b34801561094557600080fd5b5061094e61231a565b60405161095b9190613fa7565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109d757506109d682612358565b5b9050919050565b6109e661243a565b73ffffffffffffffffffffffffffffffffffffffff16610a04611886565b73ffffffffffffffffffffffffffffffffffffffff1614610a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a519061426d565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b606060008054610a8690614737565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab290614737565b8015610aff5780601f10610ad457610100808354040283529160200191610aff565b820191906000526020600020905b815481529060010190602001808311610ae257829003601f168201915b5050505050905090565b6000610b1482612442565b610b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4a9061424d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610b9661243a565b73ffffffffffffffffffffffffffffffffffffffff16610bb4611886565b73ffffffffffffffffffffffffffffffffffffffff1614610c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c019061426d565b60405180910390fd5b8060128190555050565b6000610c1f82611208565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c87906142cd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610caf61243a565b73ffffffffffffffffffffffffffffffffffffffff161480610cde5750610cdd81610cd861243a565b61218e565b5b610d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d14906141ad565b60405180910390fd5b610d2783836124ae565b505050565b6000600880549050905090565b610d4a610d4461243a565b82612567565b610d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d809061430d565b60405180910390fd5b610d94838383612645565b505050565b600c8054610da690614737565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd290614737565b8015610e1f5780601f10610df457610100808354040283529160200191610e1f565b820191906000526020600020905b815481529060010190602001808311610e0257829003601f168201915b505050505081565b610e2f61243a565b73ffffffffffffffffffffffffffffffffffffffff16610e4d611886565b73ffffffffffffffffffffffffffffffffffffffff1614610ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9a9061426d565b60405180910390fd5b600081511415610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf9061406d565b60405180910390fd5b6000815147610ef791906145c2565b905060005b8251811015610f7057828181518110610f1857610f176148d0565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050610f5d57600080fd5b8080610f689061479a565b915050610efc565b505050565b6000610f808361137a565b8210610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb8906140ad565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61103583838360405180602001604052806000815250611d33565b505050565b606060006110478361137a565b905060008167ffffffffffffffff811115611065576110646148ff565b5b6040519080825280602002602001820160405280156110935781602001602082028036833780820191505090505b50905060005b828110156110dd576110ab8582610f75565b8282815181106110be576110bd6148d0565b5b60200260200101818152505080806110d59061479a565b915050611099565b508092505050919050565b60006110f2610d2c565b8210611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a9061434d565b60405180910390fd5b60088281548110611147576111466148d0565b5b90600052602060002001549050919050565b61116161243a565b73ffffffffffffffffffffffffffffffffffffffff1661117f611886565b73ffffffffffffffffffffffffffffffffffffffff16146111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc9061426d565b60405180910390fd5b80600b90805190602001906111eb929190613418565b5050565b601160009054906101000a900460ff1681565b60125481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a8906141ed565b60405180910390fd5b80915050919050565b6112c261243a565b73ffffffffffffffffffffffffffffffffffffffff166112e0611886565b73ffffffffffffffffffffffffffffffffffffffff1614611336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132d9061426d565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e2906141cd565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61143a61243a565b73ffffffffffffffffffffffffffffffffffffffff16611458611886565b73ffffffffffffffffffffffffffffffffffffffff16146114ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a59061426d565b60405180910390fd5b6114b860006128a1565b565b6000600e5490506000601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060006012541161154a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115419061436d565b60405180910390fd5b6000811161158d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611584906142ed565b60405180910390fd5b808311156115d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c79061408d565b60405180910390fd5b61271083836115df919061456c565b1061161f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116169061422d565b60405180910390fd5b82600d5461162d91906145f3565b34101561166f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116669061432d565b60405180910390fd5b828161167b919061464d565b601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b838110156116f1576116de3382856116d9919061456c565b612967565b80806116e99061479a565b9150506116c1565b5082600e6000828254611704919061456c565b92505081905550505050565b600e5481565b61171e61243a565b73ffffffffffffffffffffffffffffffffffffffff1661173c611886565b73ffffffffffffffffffffffffffffffffffffffff1614611792576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117899061426d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181b906143ad565b60405180910390fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061188457600080fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118b861243a565b73ffffffffffffffffffffffffffffffffffffffff166118d6611886565b73ffffffffffffffffffffffffffffffffffffffff161461192c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119239061426d565b60405180910390fd5b80600d8190555050565b60186020528060005260406000206000915090505481565b60606001805461195d90614737565b80601f016020809104026020016040519081016040528092919081815260200182805461198990614737565b80156119d65780601f106119ab576101008083540402835291602001916119d6565b820191906000526020600020905b8154815290600101906020018083116119b957829003601f168201915b5050505050905090565b6000600d54905090565b600d5481565b6000600e549050600160125411611a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a33906143cd565b60405180910390fd5b60008211611a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a769061438d565b60405180910390fd5b60158210611ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab99061412d565b60405180910390fd5b6127108282611ad1919061456c565b10611b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b089061422d565b60405180910390fd5b81600d54611b1f91906145f3565b341015611b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b589061432d565b60405180910390fd5b60005b82811015611b9457611b81338284611b7c919061456c565b612967565b8080611b8c9061479a565b915050611b64565b5081600e6000828254611ba7919061456c565b925050819055505050565b611bba61243a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1f9061416d565b60405180910390fd5b8060056000611c3561243a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ce261243a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d279190614030565b60405180910390a35050565b611d44611d3e61243a565b83612567565b611d83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7a9061430d565b60405180910390fd5b611d8f84848484612985565b50505050565b611d9d61243a565b73ffffffffffffffffffffffffffffffffffffffff16611dbb611886565b73ffffffffffffffffffffffffffffffffffffffff1614611e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e089061426d565b60405180910390fd5b60005b8151811015611e8f57600560186000848481518110611e3657611e356148d0565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611e879061479a565b915050611e14565b5050565b6060611e9e82612442565b611edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed4906142ad565b60405180910390fd5b6000611ee76129e1565b90506000815111611f075760405180602001604052806000815250611f35565b80611f1184612a73565b600c604051602001611f2593929190613f76565b6040516020818303038152906040525b915050919050565b611f4561243a565b73ffffffffffffffffffffffffffffffffffffffff16611f63611886565b73ffffffffffffffffffffffffffffffffffffffff1614611fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb09061426d565b60405180910390fd5b600f54811115611ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff5906143ed565b60405180910390fd5b60005b8181101561203357612020838260105461201b919061456c565b612967565b808061202b9061479a565b915050612001565b5080600f6000828254612046919061464d565b92505081905550806010600082825461205f919061456c565b925050819055505050565b600b805461207790614737565b80601f01602080910402602001604051908101604052809291908181526020018280546120a390614737565b80156120f05780601f106120c5576101008083540402835291602001916120f0565b820191906000526020600020905b8154815290600101906020018083116120d357829003601f168201915b505050505081565b61210061243a565b73ffffffffffffffffffffffffffffffffffffffff1661211e611886565b73ffffffffffffffffffffffffffffffffffffffff1614612174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216b9061426d565b60405180910390fd5b80600c908051906020019061218a929190613418565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61222a61243a565b73ffffffffffffffffffffffffffffffffffffffff16612248611886565b73ffffffffffffffffffffffffffffffffffffffff161461229e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122959061426d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561230e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612305906140ed565b60405180910390fd5b612317816128a1565b50565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061242357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612433575061243282612bd4565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661252183611208565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061257282612442565b6125b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a89061418d565b60405180910390fd5b60006125bc83611208565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061262b57508373ffffffffffffffffffffffffffffffffffffffff1661261384610b09565b73ffffffffffffffffffffffffffffffffffffffff16145b8061263c575061263b818561218e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661266582611208565b73ffffffffffffffffffffffffffffffffffffffff16146126bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b29061428d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561272b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127229061414d565b60405180910390fd5b612736838383612c3e565b6127416000826124ae565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612791919061464d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127e8919061456c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612981828260405180602001604052806000815250612d52565b5050565b612990848484612645565b61299c84848484612dad565b6129db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d2906140cd565b60405180910390fd5b50505050565b6060600b80546129f090614737565b80601f0160208091040260200160405190810160405280929190818152602001828054612a1c90614737565b8015612a695780601f10612a3e57610100808354040283529160200191612a69565b820191906000526020600020905b815481529060010190602001808311612a4c57829003601f168201915b5050505050905090565b60606000821415612abb576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bcf565b600082905060005b60008214612aed578080612ad69061479a565b915050600a82612ae691906145c2565b9150612ac3565b60008167ffffffffffffffff811115612b0957612b086148ff565b5b6040519080825280601f01601f191660200182016040528015612b3b5781602001600182028036833780820191505090505b5090505b60008514612bc857600182612b54919061464d565b9150600a85612b6391906147e3565b6030612b6f919061456c565b60f81b818381518110612b8557612b846148d0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612bc191906145c2565b9450612b3f565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612c49838383612353565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c8c57612c8781612f44565b612ccb565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612cca57612cc98382612f8d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d0e57612d09816130fa565b612d4d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612d4c57612d4b82826131cb565b5b5b505050565b612d5c838361324a565b612d696000848484612dad565b612da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9f906140cd565b60405180910390fd5b505050565b6000612dce8473ffffffffffffffffffffffffffffffffffffffff16612340565b15612f37578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612df761243a565b8786866040518563ffffffff1660e01b8152600401612e199493929190613fc2565b602060405180830381600087803b158015612e3357600080fd5b505af1925050508015612e6457506040513d601f19601f82011682018060405250810190612e619190613908565b60015b612ee7573d8060008114612e94576040519150601f19603f3d011682016040523d82523d6000602084013e612e99565b606091505b50600081511415612edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed6906140cd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f3c565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612f9a8461137a565b612fa4919061464d565b9050600060076000848152602001908152602001600020549050818114613089576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061310e919061464d565b905060006009600084815260200190815260200160002054905060006008838154811061313e5761313d6148d0565b5b9060005260206000200154905080600883815481106131605761315f6148d0565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806131af576131ae6148a1565b5b6001900381819060005260206000200160009055905550505050565b60006131d68361137a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b19061420d565b60405180910390fd5b6132c381612442565b15613303576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132fa9061410d565b60405180910390fd5b61330f60008383612c3e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461335f919061456c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461342490614737565b90600052602060002090601f016020900481019282613446576000855561348d565b82601f1061345f57805160ff191683800117855561348d565b8280016001018555821561348d579182015b8281111561348c578251825591602001919060010190613471565b5b50905061349a919061349e565b5090565b5b808211156134b757600081600090555060010161349f565b5090565b60006134ce6134c98461444d565b614428565b905080838252602082019050828560208602820111156134f1576134f0614933565b5b60005b85811015613521578161350788826135af565b8452602084019350602083019250506001810190506134f4565b5050509392505050565b600061353e61353984614479565b614428565b90508281526020810184848401111561355a57613559614938565b5b6135658482856146f5565b509392505050565b600061358061357b846144aa565b614428565b90508281526020810184848401111561359c5761359b614938565b5b6135a78482856146f5565b509392505050565b6000813590506135be81615037565b92915050565b600082601f8301126135d9576135d861492e565b5b81356135e98482602086016134bb565b91505092915050565b6000813590506136018161504e565b92915050565b60008135905061361681615065565b92915050565b60008151905061362b81615065565b92915050565b600082601f8301126136465761364561492e565b5b813561365684826020860161352b565b91505092915050565b600082601f8301126136745761367361492e565b5b813561368484826020860161356d565b91505092915050565b60008135905061369c8161507c565b92915050565b6000602082840312156136b8576136b7614942565b5b60006136c6848285016135af565b91505092915050565b600080604083850312156136e6576136e5614942565b5b60006136f4858286016135af565b9250506020613705858286016135af565b9150509250929050565b60008060006060848603121561372857613727614942565b5b6000613736868287016135af565b9350506020613747868287016135af565b92505060406137588682870161368d565b9150509250925092565b6000806000806080858703121561377c5761377b614942565b5b600061378a878288016135af565b945050602061379b878288016135af565b93505060406137ac8782880161368d565b925050606085013567ffffffffffffffff8111156137cd576137cc61493d565b5b6137d987828801613631565b91505092959194509250565b600080604083850312156137fc576137fb614942565b5b600061380a858286016135af565b925050602061381b858286016135f2565b9150509250929050565b6000806040838503121561383c5761383b614942565b5b600061384a858286016135af565b925050602061385b8582860161368d565b9150509250929050565b60006020828403121561387b5761387a614942565b5b600082013567ffffffffffffffff8111156138995761389861493d565b5b6138a5848285016135c4565b91505092915050565b6000602082840312156138c4576138c3614942565b5b60006138d2848285016135f2565b91505092915050565b6000602082840312156138f1576138f0614942565b5b60006138ff84828501613607565b91505092915050565b60006020828403121561391e5761391d614942565b5b600061392c8482850161361c565b91505092915050565b60006020828403121561394b5761394a614942565b5b600082013567ffffffffffffffff8111156139695761396861493d565b5b6139758482850161365f565b91505092915050565b60006020828403121561399457613993614942565b5b60006139a28482850161368d565b91505092915050565b60006139b78383613f58565b60208301905092915050565b6139cc81614681565b82525050565b60006139dd82614500565b6139e7818561452e565b93506139f2836144db565b8060005b83811015613a23578151613a0a88826139ab565b9750613a1583614521565b9250506001810190506139f6565b5085935050505092915050565b613a3981614693565b82525050565b6000613a4a8261450b565b613a54818561453f565b9350613a64818560208601614704565b613a6d81614947565b840191505092915050565b6000613a8382614516565b613a8d8185614550565b9350613a9d818560208601614704565b613aa681614947565b840191505092915050565b6000613abc82614516565b613ac68185614561565b9350613ad6818560208601614704565b80840191505092915050565b60008154613aef81614737565b613af98186614561565b94506001821660008114613b145760018114613b2557613b58565b60ff19831686528186019350613b58565b613b2e856144eb565b60005b83811015613b5057815481890152600182019150602081019050613b31565b838801955050505b50505092915050565b6000613b6e601083614550565b9150613b7982614958565b602082019050919050565b6000613b91601d83614550565b9150613b9c82614981565b602082019050919050565b6000613bb4602b83614550565b9150613bbf826149aa565b604082019050919050565b6000613bd7603283614550565b9150613be2826149f9565b604082019050919050565b6000613bfa602683614550565b9150613c0582614a48565b604082019050919050565b6000613c1d601c83614550565b9150613c2882614a97565b602082019050919050565b6000613c40601e83614550565b9150613c4b82614ac0565b602082019050919050565b6000613c63602483614550565b9150613c6e82614ae9565b604082019050919050565b6000613c86601983614550565b9150613c9182614b38565b602082019050919050565b6000613ca9602c83614550565b9150613cb482614b61565b604082019050919050565b6000613ccc603883614550565b9150613cd782614bb0565b604082019050919050565b6000613cef602a83614550565b9150613cfa82614bff565b604082019050919050565b6000613d12602983614550565b9150613d1d82614c4e565b604082019050919050565b6000613d35602083614550565b9150613d4082614c9d565b602082019050919050565b6000613d58601983614550565b9150613d6382614cc6565b602082019050919050565b6000613d7b602c83614550565b9150613d8682614cef565b604082019050919050565b6000613d9e602083614550565b9150613da982614d3e565b602082019050919050565b6000613dc1602983614550565b9150613dcc82614d67565b604082019050919050565b6000613de4602f83614550565b9150613def82614db6565b604082019050919050565b6000613e07602183614550565b9150613e1282614e05565b604082019050919050565b6000613e2a602283614550565b9150613e3582614e54565b604082019050919050565b6000613e4d603183614550565b9150613e5882614ea3565b604082019050919050565b6000613e70601083614550565b9150613e7b82614ef2565b602082019050919050565b6000613e93602c83614550565b9150613e9e82614f1b565b604082019050919050565b6000613eb6601583614550565b9150613ec182614f6a565b602082019050919050565b6000613ed9601683614550565b9150613ee482614f93565b602082019050919050565b6000613efc600e83614550565b9150613f0782614fbc565b602082019050919050565b6000613f1f601883614550565b9150613f2a82614fe5565b602082019050919050565b6000613f42601483614550565b9150613f4d8261500e565b602082019050919050565b613f61816146eb565b82525050565b613f70816146eb565b82525050565b6000613f828286613ab1565b9150613f8e8285613ab1565b9150613f9a8284613ae2565b9150819050949350505050565b6000602082019050613fbc60008301846139c3565b92915050565b6000608082019050613fd760008301876139c3565b613fe460208301866139c3565b613ff16040830185613f67565b81810360608301526140038184613a3f565b905095945050505050565b6000602082019050818103600083015261402881846139d2565b905092915050565b60006020820190506140456000830184613a30565b92915050565b600060208201905081810360008301526140658184613a78565b905092915050565b6000602082019050818103600083015261408681613b61565b9050919050565b600060208201905081810360008301526140a681613b84565b9050919050565b600060208201905081810360008301526140c681613ba7565b9050919050565b600060208201905081810360008301526140e681613bca565b9050919050565b6000602082019050818103600083015261410681613bed565b9050919050565b6000602082019050818103600083015261412681613c10565b9050919050565b6000602082019050818103600083015261414681613c33565b9050919050565b6000602082019050818103600083015261416681613c56565b9050919050565b6000602082019050818103600083015261418681613c79565b9050919050565b600060208201905081810360008301526141a681613c9c565b9050919050565b600060208201905081810360008301526141c681613cbf565b9050919050565b600060208201905081810360008301526141e681613ce2565b9050919050565b6000602082019050818103600083015261420681613d05565b9050919050565b6000602082019050818103600083015261422681613d28565b9050919050565b6000602082019050818103600083015261424681613d4b565b9050919050565b6000602082019050818103600083015261426681613d6e565b9050919050565b6000602082019050818103600083015261428681613d91565b9050919050565b600060208201905081810360008301526142a681613db4565b9050919050565b600060208201905081810360008301526142c681613dd7565b9050919050565b600060208201905081810360008301526142e681613dfa565b9050919050565b6000602082019050818103600083015261430681613e1d565b9050919050565b6000602082019050818103600083015261432681613e40565b9050919050565b6000602082019050818103600083015261434681613e63565b9050919050565b6000602082019050818103600083015261436681613e86565b9050919050565b6000602082019050818103600083015261438681613ea9565b9050919050565b600060208201905081810360008301526143a681613ecc565b9050919050565b600060208201905081810360008301526143c681613eef565b9050919050565b600060208201905081810360008301526143e681613f12565b9050919050565b6000602082019050818103600083015261440681613f35565b9050919050565b60006020820190506144226000830184613f67565b92915050565b6000614432614443565b905061443e8282614769565b919050565b6000604051905090565b600067ffffffffffffffff821115614468576144676148ff565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614494576144936148ff565b5b61449d82614947565b9050602081019050919050565b600067ffffffffffffffff8211156144c5576144c46148ff565b5b6144ce82614947565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614577826146eb565b9150614582836146eb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145b7576145b6614814565b5b828201905092915050565b60006145cd826146eb565b91506145d8836146eb565b9250826145e8576145e7614843565b5b828204905092915050565b60006145fe826146eb565b9150614609836146eb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561464257614641614814565b5b828202905092915050565b6000614658826146eb565b9150614663836146eb565b92508282101561467657614675614814565b5b828203905092915050565b600061468c826146cb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614722578082015181840152602081019050614707565b83811115614731576000848401525b50505050565b6000600282049050600182168061474f57607f821691505b6020821081141561476357614762614872565b5b50919050565b61477282614947565b810181811067ffffffffffffffff82111715614791576147906148ff565b5b80604052505050565b60006147a5826146eb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147d8576147d7614814565b5b600182019050919050565b60006147ee826146eb565b91506147f9836146eb565b92508261480957614808614843565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f206164647265737365732073657400000000000000000000000000000000600082015250565b7f43616e2774206d696e74206d6f7265207468616e207265736572766564000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4f6e6c7920323020706572207472616e73616374696f6e20706c656173650000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45786365656473206d617820437574696520737570706c792100000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f20437574696573206c65667420746f206d696e7420666f7220707265736160008201527f6c65000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820457468657200000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f50726573616c65206973206e6f74206163746976650000000000000000000000600082015250565b7f596f752063616e2774206d696e7420302062616b612100000000000000000000600082015250565b7f4e6f206164647265737320736574000000000000000000000000000000000000600082015250565b7f5468652073616c6520686173206e6f7420737461727465640000000000000000600082015250565b7f4e6f206d6f726520746f20676976652061776179000000000000000000000000600082015250565b61504081614681565b811461504b57600080fd5b50565b61505781614693565b811461506257600080fd5b50565b61506e8161469f565b811461507957600080fd5b50565b615085816146eb565b811461509057600080fd5b5056fea264697066735822122053a91275eb5a2d481291a792232a3538f45c8c7abbb230a628fb836e71289d8164736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6262367358756e78327851714c716f347a73615463724379383573666f487465527a41346258736a4e7969462f00000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://Qmbb6sXunx2xQqLqo4zsaTcrCy85sfoHteRzA4bXsjNyiF/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d6262367358756e78327851714c716f347a736154637243
Arg [3] : 79383573666f487465527a41346258736a4e7969462f00000000000000000000


Deployed Bytecode Sourcemap

50936:5568:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43955:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55534:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31847:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33406:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54081:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32929:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44595:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34296:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51095:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56120:381;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44263:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34706:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53512:377;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44785:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55291:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51305:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51337:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31541:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55816:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31271:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11546:94;;;;;;;;;;;;;:::i;:::-;;52751:751;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51179:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55928:184;;;:::i;:::-;;10895:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55712:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51805:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32016:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55619:81;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51140:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52128:615;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33699:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34962:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53897:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54510:643;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54193:309;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51061:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55401:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34065:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11795:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51433:65;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43955:224;44057:4;44096:35;44081:50;;;:11;:50;;;;:90;;;;44135:36;44159:11;44135:23;:36::i;:::-;44081:90;44074:97;;43955:224;;;:::o;55534:73::-;11126:12;:10;:12::i;:::-;11115:23;;:7;:5;:7::i;:::-;:23;;;11107:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55596:3:::1;55587:6;;:12;;;;;;;;;;;;;;;;;;55534:73:::0;:::o;31847:100::-;31901:13;31934:5;31927:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31847:100;:::o;33406:221::-;33482:7;33510:16;33518:7;33510;:16::i;:::-;33502:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;33595:15;:24;33611:7;33595:24;;;;;;;;;;;;;;;;;;;;;33588:31;;33406:221;;;:::o;54081:100::-;11126:12;:10;:12::i;:::-;11115:23;;:7;:5;:7::i;:::-;:23;;;11107:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54163:10:::1;54151:9;:22;;;;54081:100:::0;:::o;32929:411::-;33010:13;33026:23;33041:7;33026:14;:23::i;:::-;33010:39;;33074:5;33068:11;;:2;:11;;;;33060:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;33168:5;33152:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;33177:37;33194:5;33201:12;:10;:12::i;:::-;33177:16;:37::i;:::-;33152:62;33130:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;33311:21;33320:2;33324:7;33311:8;:21::i;:::-;32999:341;32929:411;;:::o;44595:113::-;44656:7;44683:10;:17;;;;44676:24;;44595:113;:::o;34296:339::-;34491:41;34510:12;:10;:12::i;:::-;34524:7;34491:18;:41::i;:::-;34483:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;34599:28;34609:4;34615:2;34619:7;34599:9;:28::i;:::-;34296:339;;;:::o;51095:38::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56120:381::-;11126:12;:10;:12::i;:::-;11115:23;;:7;:5;:7::i;:::-;:23;;;11107:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56256:1:::1;56227:18;:25;:30;;56219:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;56289:13;56329:18;:25;56305:21;:49;;;;:::i;:::-;56289:65;;56370:6;56365:129;56384:18;:25;56380:1;:29;56365:129;;;56447:18;56466:1;56447:21;;;;;;;;:::i;:::-;;;;;;;;56439:35;;:42;56475:5;56439:42;;;;;;;;;;;;;;;;;;;;;;;56431:51;;;::::0;::::1;;56411:3;;;;;:::i;:::-;;;;56365:129;;;;56208:293;56120:381:::0;:::o;44263:256::-;44360:7;44396:23;44413:5;44396:16;:23::i;:::-;44388:5;:31;44380:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;44485:12;:19;44498:5;44485:19;;;;;;;;;;;;;;;:26;44505:5;44485:26;;;;;;;;;;;;44478:33;;44263:256;;;;:::o;34706:185::-;34844:39;34861:4;34867:2;34871:7;34844:39;;;;;;;;;;;;:16;:39::i;:::-;34706:185;;;:::o;53512:377::-;53599:16;53633:18;53654:17;53664:6;53654:9;:17::i;:::-;53633:38;;53684:25;53726:10;53712:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53684:53;;53753:9;53748:108;53768:10;53764:1;:14;53748:108;;;53814:30;53834:6;53842:1;53814:19;:30::i;:::-;53800:8;53809:1;53800:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;53780:3;;;;;:::i;:::-;;;;53748:108;;;;53873:8;53866:15;;;;53512:377;;;:::o;44785:233::-;44860:7;44896:30;:28;:30::i;:::-;44888:5;:38;44880:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;44993:10;45004:5;44993:17;;;;;;;;:::i;:::-;;;;;;;;;;44986:24;;44785:233;;;:::o;55291:102::-;11126:12;:10;:12::i;:::-;11115:23;;:7;:5;:7::i;:::-;:23;;;11107:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55378:7:::1;55362:13;:23;;;;;;;;;;;;:::i;:::-;;55291:102:::0;:::o;51305:25::-;;;;;;;;;;;;;:::o;51337:28::-;;;;:::o;31541:239::-;31613:7;31633:13;31649:7;:16;31657:7;31649:16;;;;;;;;;;;;;;;;;;;;;31633:32;;31701:1;31684:19;;:5;:19;;;;31676:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31767:5;31760:12;;;31541:239;;;:::o;55816:104::-;11126:12;:10;:12::i;:::-;11115:23;;:7;:5;:7::i;:::-;:23;;;11107:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55896:16:::1;55888:5;;:24;;;;;;;;;;;;;;;;;;55816:104:::0;:::o;31271:208::-;31343:7;31388:1;31371:19;;:5;:19;;;;31363:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;31455:9;:16;31465:5;31455:16;;;;;;;;;;;;;;;;31448:23;;31271:208;;;:::o;11546:94::-;11126:12;:10;:12::i;:::-;11115:23;;:7;:5;:7::i;:::-;:23;;;11107:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11611:21:::1;11629:1;11611:9;:21::i;:::-;11546:94::o:0;52751:751::-;52811:14;52828:20;;52811:37;;52859:19;52881:15;:27;52897:10;52881:27;;;;;;;;;;;;;;;;52859:49;;52940:1;52928:9;;:13;52919:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;53014:1;53000:11;:15;52991:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;53092:11;53085:3;:18;;53076:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;53180:5;53174:3;53165:6;:12;;;;:::i;:::-;:20;53156:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;53262:3;53254:5;;:11;;;;:::i;:::-;53241:9;:24;;53232:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;53343:3;53329:11;:17;;;;:::i;:::-;53299:15;:27;53315:10;53299:27;;;;;;;;;;;;;;;:47;;;;53361:9;53357:90;53376:3;53372:1;:7;53357:90;;;53400:35;53411:10;53432:1;53423:6;:10;;;;:::i;:::-;53400:9;:35::i;:::-;53381:3;;;;;:::i;:::-;;;;53357:90;;;;53491:3;53467:20;;:27;;;;;;;:::i;:::-;;;;;;;;52800:702;;52751:751;:::o;51179:39::-;;;;:::o;55928:184::-;11126:12;:10;:12::i;:::-;11115:23;;:7;:5;:7::i;:::-;:23;;;11107:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56021:1:::1;55995:28;;56003:5;;;;;;;;;;;55995:28;;;;55987:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;56069:5;;;;;;;;;;;56061:19;;:42;56081:21;56061:42;;;;;;;;;;;;;;;;;;;;;;;56053:51;;;::::0;::::1;;55928:184::o:0;10895:87::-;10941:7;10968:6;;;;;;;;;;;10961:13;;10895:87;:::o;55712:92::-;11126:12;:10;:12::i;:::-;11115:23;;:7;:5;:7::i;:::-;:23;;;11107:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55787:9:::1;55779:5;:17;;;;55712:92:::0;:::o;51805:51::-;;;;;;;;;;;;;;;;;:::o;32016:104::-;32072:13;32105:7;32098:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32016:104;:::o;55619:81::-;55660:7;55687:5;;55680:12;;55619:81;:::o;51140:32::-;;;;:::o;52128:615::-;52181:14;52198:20;;52181:37;;52250:1;52238:9;;:13;52229:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;52317:1;52311:3;:7;52303:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;52390:2;52384:3;:8;52375:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52479:5;52473:3;52464:6;:12;;;;:::i;:::-;:20;52455:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;52560:3;52552:5;;:11;;;;:::i;:::-;52539:9;:24;;52530:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;52602:9;52598:90;52617:3;52613:1;:7;52598:90;;;52641:35;52652:10;52673:1;52664:6;:10;;;;:::i;:::-;52641:9;:35::i;:::-;52622:3;;;;;:::i;:::-;;;;52598:90;;;;52732:3;52708:20;;:27;;;;;;;:::i;:::-;;;;;;;;52170:573;52128:615;:::o;33699:295::-;33814:12;:10;:12::i;:::-;33802:24;;:8;:24;;;;33794:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33914:8;33869:18;:32;33888:12;:10;:12::i;:::-;33869:32;;;;;;;;;;;;;;;:42;33902:8;33869:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33967:8;33938:48;;33953:12;:10;:12::i;:::-;33938:48;;;33977:8;33938:48;;;;;;:::i;:::-;;;;;;;;33699:295;;:::o;34962:328::-;35137:41;35156:12;:10;:12::i;:::-;35170:7;35137:18;:41::i;:::-;35129:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;35243:39;35257:4;35263:2;35267:7;35276:5;35243:13;:39::i;:::-;34962:328;;;;:::o;53897:172::-;11126:12;:10;:12::i;:::-;11115:23;;:7;:5;:7::i;:::-;:23;;;11107:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53979:9:::1;53975:87;53994:2;:9;53990:1;:13;53975:87;;;54049:1;54024:15;:22;54040:2;54043:1;54040:5;;;;;;;;:::i;:::-;;;;;;;;54024:22;;;;;;;;;;;;;;;:26;;;;54005:3;;;;;:::i;:::-;;;;53975:87;;;;53897:172:::0;:::o;54510:643::-;54628:13;54681:16;54689:7;54681;:16::i;:::-;54659:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;54785:28;54816:10;:8;:10::i;:::-;54785:41;;54888:1;54863:14;54857:28;:32;:288;;;;;;;;;;;;;;;;;54981:14;55022:18;:7;:16;:18::i;:::-;55067:14;54938:166;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54857:288;54837:308;;;54510:643;;;:::o;54193:309::-;11126:12;:10;:12::i;:::-;11115:23;;:7;:5;:7::i;:::-;:23;;;11107:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54290:9:::1;;54279:7;:20;;54271:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;54342:9;54337:92;54357:7;54353:1;:11;54337:92;;;54386:31;54396:3;54415:1;54401:11;;:15;;;;:::i;:::-;54386:9;:31::i;:::-;54366:3;;;;;:::i;:::-;;;;54337:92;;;;54454:7;54441:9;;:20;;;;;;;:::i;:::-;;;;;;;;54487:7;54472:11;;:22;;;;;;;:::i;:::-;;;;;;;;54193:309:::0;;:::o;51061:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55401:121::-;11126:12;:10;:12::i;:::-;11115:23;;:7;:5;:7::i;:::-;:23;;;11107:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55501:13:::1;55484:14;:30;;;;;;;;;;;;:::i;:::-;;55401:121:::0;:::o;34065:164::-;34162:4;34186:18;:25;34205:5;34186:25;;;;;;;;;;;;;;;:35;34212:8;34186:35;;;;;;;;;;;;;;;;;;;;;;;;;34179:42;;34065:164;;;;:::o;11795:192::-;11126:12;:10;:12::i;:::-;11115:23;;:7;:5;:7::i;:::-;:23;;;11107:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11904:1:::1;11884:22;;:8;:22;;;;11876:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11960:19;11970:8;11960:9;:19::i;:::-;11795:192:::0;:::o;51433:65::-;;;;;;;;;;;;;:::o;12941:387::-;13001:4;13209:12;13276:7;13264:20;13256:28;;13319:1;13312:4;:8;13305:15;;;12941:387;;;:::o;42892:126::-;;;;:::o;30902:305::-;31004:4;31056:25;31041:40;;;:11;:40;;;;:105;;;;31113:33;31098:48;;;:11;:48;;;;31041:105;:158;;;;31163:36;31187:11;31163:23;:36::i;:::-;31041:158;31021:178;;30902:305;;;:::o;9683:98::-;9736:7;9763:10;9756:17;;9683:98;:::o;36800:127::-;36865:4;36917:1;36889:30;;:7;:16;36897:7;36889:16;;;;;;;;;;;;;;;;;;;;;:30;;;;36882:37;;36800:127;;;:::o;40782:174::-;40884:2;40857:15;:24;40873:7;40857:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;40940:7;40936:2;40902:46;;40911:23;40926:7;40911:14;:23::i;:::-;40902:46;;;;;;;;;;;;40782:174;;:::o;37094:348::-;37187:4;37212:16;37220:7;37212;:16::i;:::-;37204:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;37288:13;37304:23;37319:7;37304:14;:23::i;:::-;37288:39;;37357:5;37346:16;;:7;:16;;;:51;;;;37390:7;37366:31;;:20;37378:7;37366:11;:20::i;:::-;:31;;;37346:51;:87;;;;37401:32;37418:5;37425:7;37401:16;:32::i;:::-;37346:87;37338:96;;;37094:348;;;;:::o;40086:578::-;40245:4;40218:31;;:23;40233:7;40218:14;:23::i;:::-;:31;;;40210:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;40328:1;40314:16;;:2;:16;;;;40306:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;40384:39;40405:4;40411:2;40415:7;40384:20;:39::i;:::-;40488:29;40505:1;40509:7;40488:8;:29::i;:::-;40549:1;40530:9;:15;40540:4;40530:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;40578:1;40561:9;:13;40571:2;40561:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;40609:2;40590:7;:16;40598:7;40590:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;40648:7;40644:2;40629:27;;40638:4;40629:27;;;;;;;;;;;;40086:578;;;:::o;11995:173::-;12051:16;12070:6;;;;;;;;;;;12051:25;;12096:8;12087:6;;:17;;;;;;;;;;;;;;;;;;12151:8;12120:40;;12141:8;12120:40;;;;;;;;;;;;12040:128;11995:173;:::o;37784:110::-;37860:26;37870:2;37874:7;37860:26;;;;;;;;;;;;:9;:26::i;:::-;37784:110;;:::o;36172:315::-;36329:28;36339:4;36345:2;36349:7;36329:9;:28::i;:::-;36376:48;36399:4;36405:2;36409:7;36418:5;36376:22;:48::i;:::-;36368:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;36172:315;;;;:::o;55165:114::-;55225:13;55258;55251:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55165:114;:::o;7299:723::-;7355:13;7585:1;7576:5;:10;7572:53;;;7603:10;;;;;;;;;;;;;;;;;;;;;7572:53;7635:12;7650:5;7635:20;;7666:14;7691:78;7706:1;7698:4;:9;7691:78;;7724:8;;;;;:::i;:::-;;;;7755:2;7747:10;;;;;:::i;:::-;;;7691:78;;;7779:19;7811:6;7801:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7779:39;;7829:154;7845:1;7836:5;:10;7829:154;;7873:1;7863:11;;;;;:::i;:::-;;;7940:2;7932:5;:10;;;;:::i;:::-;7919:2;:24;;;;:::i;:::-;7906:39;;7889:6;7896;7889:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;7969:2;7960:11;;;;;:::i;:::-;;;7829:154;;;8007:6;7993:21;;;;;7299:723;;;;:::o;22881:157::-;22966:4;23005:25;22990:40;;;:11;:40;;;;22983:47;;22881:157;;;:::o;45631:589::-;45775:45;45802:4;45808:2;45812:7;45775:26;:45::i;:::-;45853:1;45837:18;;:4;:18;;;45833:187;;;45872:40;45904:7;45872:31;:40::i;:::-;45833:187;;;45942:2;45934:10;;:4;:10;;;45930:90;;45961:47;45994:4;46000:7;45961:32;:47::i;:::-;45930:90;45833:187;46048:1;46034:16;;:2;:16;;;46030:183;;;46067:45;46104:7;46067:36;:45::i;:::-;46030:183;;;46140:4;46134:10;;:2;:10;;;46130:83;;46161:40;46189:2;46193:7;46161:27;:40::i;:::-;46130:83;46030:183;45631:589;;;:::o;38121:321::-;38251:18;38257:2;38261:7;38251:5;:18::i;:::-;38302:54;38333:1;38337:2;38341:7;38350:5;38302:22;:54::i;:::-;38280:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;38121:321;;;:::o;41521:799::-;41676:4;41697:15;:2;:13;;;:15::i;:::-;41693:620;;;41749:2;41733:36;;;41770:12;:10;:12::i;:::-;41784:4;41790:7;41799:5;41733:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41729:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41992:1;41975:6;:13;:18;41971:272;;;42018:60;;;;;;;;;;:::i;:::-;;;;;;;;41971:272;42193:6;42187:13;42178:6;42174:2;42170:15;42163:38;41729:529;41866:41;;;41856:51;;;:6;:51;;;;41849:58;;;;;41693:620;42297:4;42290:11;;41521:799;;;;;;;:::o;46943:164::-;47047:10;:17;;;;47020:15;:24;47036:7;47020:24;;;;;;;;;;;:44;;;;47075:10;47091:7;47075:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46943:164;:::o;47734:988::-;48000:22;48050:1;48025:22;48042:4;48025:16;:22::i;:::-;:26;;;;:::i;:::-;48000:51;;48062:18;48083:17;:26;48101:7;48083:26;;;;;;;;;;;;48062:47;;48230:14;48216:10;:28;48212:328;;48261:19;48283:12;:18;48296:4;48283:18;;;;;;;;;;;;;;;:34;48302:14;48283:34;;;;;;;;;;;;48261:56;;48367:11;48334:12;:18;48347:4;48334:18;;;;;;;;;;;;;;;:30;48353:10;48334:30;;;;;;;;;;;:44;;;;48484:10;48451:17;:30;48469:11;48451:30;;;;;;;;;;;:43;;;;48246:294;48212:328;48636:17;:26;48654:7;48636:26;;;;;;;;;;;48629:33;;;48680:12;:18;48693:4;48680:18;;;;;;;;;;;;;;;:34;48699:14;48680:34;;;;;;;;;;;48673:41;;;47815:907;;47734:988;;:::o;49017:1079::-;49270:22;49315:1;49295:10;:17;;;;:21;;;;:::i;:::-;49270:46;;49327:18;49348:15;:24;49364:7;49348:24;;;;;;;;;;;;49327:45;;49699:19;49721:10;49732:14;49721:26;;;;;;;;:::i;:::-;;;;;;;;;;49699:48;;49785:11;49760:10;49771;49760:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;49896:10;49865:15;:28;49881:11;49865:28;;;;;;;;;;;:41;;;;50037:15;:24;50053:7;50037:24;;;;;;;;;;;50030:31;;;50072:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;49088:1008;;;49017:1079;:::o;46521:221::-;46606:14;46623:20;46640:2;46623:16;:20::i;:::-;46606:37;;46681:7;46654:12;:16;46667:2;46654:16;;;;;;;;;;;;;;;:24;46671:6;46654:24;;;;;;;;;;;:34;;;;46728:6;46699:17;:26;46717:7;46699:26;;;;;;;;;;;:35;;;;46595:147;46521:221;;:::o;38778:382::-;38872:1;38858:16;;:2;:16;;;;38850:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;38931:16;38939:7;38931;:16::i;:::-;38930:17;38922:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;38993:45;39022:1;39026:2;39030:7;38993:20;:45::i;:::-;39068:1;39051:9;:13;39061:2;39051:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;39099:2;39080:7;:16;39088:7;39080:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;39144:7;39140:2;39119:33;;39136:1;39119:33;;;;;;;;;;;;38778:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2924:340::-;2980:5;3029:3;3022:4;3014:6;3010:17;3006:27;2996:122;;3037:79;;:::i;:::-;2996:122;3154:6;3141:20;3179:79;3254:3;3246:6;3239:4;3231:6;3227:17;3179:79;:::i;:::-;3170:88;;2986:278;2924:340;;;;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:329::-;3474:6;3523:2;3511:9;3502:7;3498:23;3494:32;3491:119;;;3529:79;;:::i;:::-;3491:119;3649:1;3674:53;3719:7;3710:6;3699:9;3695:22;3674:53;:::i;:::-;3664:63;;3620:117;3415:329;;;;:::o;3750:474::-;3818:6;3826;3875:2;3863:9;3854:7;3850:23;3846:32;3843:119;;;3881:79;;:::i;:::-;3843:119;4001:1;4026:53;4071:7;4062:6;4051:9;4047:22;4026:53;:::i;:::-;4016:63;;3972:117;4128:2;4154:53;4199:7;4190:6;4179:9;4175:22;4154:53;:::i;:::-;4144:63;;4099:118;3750:474;;;;;:::o;4230:619::-;4307:6;4315;4323;4372:2;4360:9;4351:7;4347:23;4343:32;4340:119;;;4378:79;;:::i;:::-;4340:119;4498:1;4523:53;4568:7;4559:6;4548:9;4544:22;4523:53;:::i;:::-;4513:63;;4469:117;4625:2;4651:53;4696:7;4687:6;4676:9;4672:22;4651:53;:::i;:::-;4641:63;;4596:118;4753:2;4779:53;4824:7;4815:6;4804:9;4800:22;4779:53;:::i;:::-;4769:63;;4724:118;4230:619;;;;;:::o;4855:943::-;4950:6;4958;4966;4974;5023:3;5011:9;5002:7;4998:23;4994:33;4991:120;;;5030:79;;:::i;:::-;4991:120;5150:1;5175:53;5220:7;5211:6;5200:9;5196:22;5175:53;:::i;:::-;5165:63;;5121:117;5277:2;5303:53;5348:7;5339:6;5328:9;5324:22;5303:53;:::i;:::-;5293:63;;5248:118;5405:2;5431:53;5476:7;5467:6;5456:9;5452:22;5431:53;:::i;:::-;5421:63;;5376:118;5561:2;5550:9;5546:18;5533:32;5592:18;5584:6;5581:30;5578:117;;;5614:79;;:::i;:::-;5578:117;5719:62;5773:7;5764:6;5753:9;5749:22;5719:62;:::i;:::-;5709:72;;5504:287;4855:943;;;;;;;:::o;5804:468::-;5869:6;5877;5926:2;5914:9;5905:7;5901:23;5897:32;5894:119;;;5932:79;;:::i;:::-;5894:119;6052:1;6077:53;6122:7;6113:6;6102:9;6098:22;6077:53;:::i;:::-;6067:63;;6023:117;6179:2;6205:50;6247:7;6238:6;6227:9;6223:22;6205:50;:::i;:::-;6195:60;;6150:115;5804:468;;;;;:::o;6278:474::-;6346:6;6354;6403:2;6391:9;6382:7;6378:23;6374:32;6371:119;;;6409:79;;:::i;:::-;6371:119;6529:1;6554:53;6599:7;6590:6;6579:9;6575:22;6554:53;:::i;:::-;6544:63;;6500:117;6656:2;6682:53;6727:7;6718:6;6707:9;6703:22;6682:53;:::i;:::-;6672:63;;6627:118;6278:474;;;;;:::o;6758:539::-;6842:6;6891:2;6879:9;6870:7;6866:23;6862:32;6859:119;;;6897:79;;:::i;:::-;6859:119;7045:1;7034:9;7030:17;7017:31;7075:18;7067:6;7064:30;7061:117;;;7097:79;;:::i;:::-;7061:117;7202:78;7272:7;7263:6;7252:9;7248:22;7202:78;:::i;:::-;7192:88;;6988:302;6758:539;;;;:::o;7303:323::-;7359:6;7408:2;7396:9;7387:7;7383:23;7379:32;7376:119;;;7414:79;;:::i;:::-;7376:119;7534:1;7559:50;7601:7;7592:6;7581:9;7577:22;7559:50;:::i;:::-;7549:60;;7505:114;7303:323;;;;:::o;7632:327::-;7690:6;7739:2;7727:9;7718:7;7714:23;7710:32;7707:119;;;7745:79;;:::i;:::-;7707:119;7865:1;7890:52;7934:7;7925:6;7914:9;7910:22;7890:52;:::i;:::-;7880:62;;7836:116;7632:327;;;;:::o;7965:349::-;8034:6;8083:2;8071:9;8062:7;8058:23;8054:32;8051:119;;;8089:79;;:::i;:::-;8051:119;8209:1;8234:63;8289:7;8280:6;8269:9;8265:22;8234:63;:::i;:::-;8224:73;;8180:127;7965:349;;;;:::o;8320:509::-;8389:6;8438:2;8426:9;8417:7;8413:23;8409:32;8406:119;;;8444:79;;:::i;:::-;8406:119;8592:1;8581:9;8577:17;8564:31;8622:18;8614:6;8611:30;8608:117;;;8644:79;;:::i;:::-;8608:117;8749:63;8804:7;8795:6;8784:9;8780:22;8749:63;:::i;:::-;8739:73;;8535:287;8320:509;;;;:::o;8835:329::-;8894:6;8943:2;8931:9;8922:7;8918:23;8914:32;8911:119;;;8949:79;;:::i;:::-;8911:119;9069:1;9094:53;9139:7;9130:6;9119:9;9115:22;9094:53;:::i;:::-;9084:63;;9040:117;8835:329;;;;:::o;9170:179::-;9239:10;9260:46;9302:3;9294:6;9260:46;:::i;:::-;9338:4;9333:3;9329:14;9315:28;;9170:179;;;;:::o;9355:118::-;9442:24;9460:5;9442:24;:::i;:::-;9437:3;9430:37;9355:118;;:::o;9509:732::-;9628:3;9657:54;9705:5;9657:54;:::i;:::-;9727:86;9806:6;9801:3;9727:86;:::i;:::-;9720:93;;9837:56;9887:5;9837:56;:::i;:::-;9916:7;9947:1;9932:284;9957:6;9954:1;9951:13;9932:284;;;10033:6;10027:13;10060:63;10119:3;10104:13;10060:63;:::i;:::-;10053:70;;10146:60;10199:6;10146:60;:::i;:::-;10136:70;;9992:224;9979:1;9976;9972:9;9967:14;;9932:284;;;9936:14;10232:3;10225:10;;9633:608;;;9509:732;;;;:::o;10247:109::-;10328:21;10343:5;10328:21;:::i;:::-;10323:3;10316:34;10247:109;;:::o;10362:360::-;10448:3;10476:38;10508:5;10476:38;:::i;:::-;10530:70;10593:6;10588:3;10530:70;:::i;:::-;10523:77;;10609:52;10654:6;10649:3;10642:4;10635:5;10631:16;10609:52;:::i;:::-;10686:29;10708:6;10686:29;:::i;:::-;10681:3;10677:39;10670:46;;10452:270;10362:360;;;;:::o;10728:364::-;10816:3;10844:39;10877:5;10844:39;:::i;:::-;10899:71;10963:6;10958:3;10899:71;:::i;:::-;10892:78;;10979:52;11024:6;11019:3;11012:4;11005:5;11001:16;10979:52;:::i;:::-;11056:29;11078:6;11056:29;:::i;:::-;11051:3;11047:39;11040:46;;10820:272;10728:364;;;;:::o;11098:377::-;11204:3;11232:39;11265:5;11232:39;:::i;:::-;11287:89;11369:6;11364:3;11287:89;:::i;:::-;11280:96;;11385:52;11430:6;11425:3;11418:4;11411:5;11407:16;11385:52;:::i;:::-;11462:6;11457:3;11453:16;11446:23;;11208:267;11098:377;;;;:::o;11505:845::-;11608:3;11645:5;11639:12;11674:36;11700:9;11674:36;:::i;:::-;11726:89;11808:6;11803:3;11726:89;:::i;:::-;11719:96;;11846:1;11835:9;11831:17;11862:1;11857:137;;;;12008:1;12003:341;;;;11824:520;;11857:137;11941:4;11937:9;11926;11922:25;11917:3;11910:38;11977:6;11972:3;11968:16;11961:23;;11857:137;;12003:341;12070:38;12102:5;12070:38;:::i;:::-;12130:1;12144:154;12158:6;12155:1;12152:13;12144:154;;;12232:7;12226:14;12222:1;12217:3;12213:11;12206:35;12282:1;12273:7;12269:15;12258:26;;12180:4;12177:1;12173:12;12168:17;;12144:154;;;12327:6;12322:3;12318:16;12311:23;;12010:334;;11824:520;;11612:738;;11505:845;;;;:::o;12356:366::-;12498:3;12519:67;12583:2;12578:3;12519:67;:::i;:::-;12512:74;;12595:93;12684:3;12595:93;:::i;:::-;12713:2;12708:3;12704:12;12697:19;;12356:366;;;:::o;12728:::-;12870:3;12891:67;12955:2;12950:3;12891:67;:::i;:::-;12884:74;;12967:93;13056:3;12967:93;:::i;:::-;13085:2;13080:3;13076:12;13069:19;;12728:366;;;:::o;13100:::-;13242:3;13263:67;13327:2;13322:3;13263:67;:::i;:::-;13256:74;;13339:93;13428:3;13339:93;:::i;:::-;13457:2;13452:3;13448:12;13441:19;;13100:366;;;:::o;13472:::-;13614:3;13635:67;13699:2;13694:3;13635:67;:::i;:::-;13628:74;;13711:93;13800:3;13711:93;:::i;:::-;13829:2;13824:3;13820:12;13813:19;;13472:366;;;:::o;13844:::-;13986:3;14007:67;14071:2;14066:3;14007:67;:::i;:::-;14000:74;;14083:93;14172:3;14083:93;:::i;:::-;14201:2;14196:3;14192:12;14185:19;;13844:366;;;:::o;14216:::-;14358:3;14379:67;14443:2;14438:3;14379:67;:::i;:::-;14372:74;;14455:93;14544:3;14455:93;:::i;:::-;14573:2;14568:3;14564:12;14557:19;;14216:366;;;:::o;14588:::-;14730:3;14751:67;14815:2;14810:3;14751:67;:::i;:::-;14744:74;;14827:93;14916:3;14827:93;:::i;:::-;14945:2;14940:3;14936:12;14929:19;;14588:366;;;:::o;14960:::-;15102:3;15123:67;15187:2;15182:3;15123:67;:::i;:::-;15116:74;;15199:93;15288:3;15199:93;:::i;:::-;15317:2;15312:3;15308:12;15301:19;;14960:366;;;:::o;15332:::-;15474:3;15495:67;15559:2;15554:3;15495:67;:::i;:::-;15488:74;;15571:93;15660:3;15571:93;:::i;:::-;15689:2;15684:3;15680:12;15673:19;;15332:366;;;:::o;15704:::-;15846:3;15867:67;15931:2;15926:3;15867:67;:::i;:::-;15860:74;;15943:93;16032:3;15943:93;:::i;:::-;16061:2;16056:3;16052:12;16045:19;;15704:366;;;:::o;16076:::-;16218:3;16239:67;16303:2;16298:3;16239:67;:::i;:::-;16232:74;;16315:93;16404:3;16315:93;:::i;:::-;16433:2;16428:3;16424:12;16417:19;;16076:366;;;:::o;16448:::-;16590:3;16611:67;16675:2;16670:3;16611:67;:::i;:::-;16604:74;;16687:93;16776:3;16687:93;:::i;:::-;16805:2;16800:3;16796:12;16789:19;;16448:366;;;:::o;16820:::-;16962:3;16983:67;17047:2;17042:3;16983:67;:::i;:::-;16976:74;;17059:93;17148:3;17059:93;:::i;:::-;17177:2;17172:3;17168:12;17161:19;;16820:366;;;:::o;17192:::-;17334:3;17355:67;17419:2;17414:3;17355:67;:::i;:::-;17348:74;;17431:93;17520:3;17431:93;:::i;:::-;17549:2;17544:3;17540:12;17533:19;;17192:366;;;:::o;17564:::-;17706:3;17727:67;17791:2;17786:3;17727:67;:::i;:::-;17720:74;;17803:93;17892:3;17803:93;:::i;:::-;17921:2;17916:3;17912:12;17905:19;;17564:366;;;:::o;17936:::-;18078:3;18099:67;18163:2;18158:3;18099:67;:::i;:::-;18092:74;;18175:93;18264:3;18175:93;:::i;:::-;18293:2;18288:3;18284:12;18277:19;;17936:366;;;:::o;18308:::-;18450:3;18471:67;18535:2;18530:3;18471:67;:::i;:::-;18464:74;;18547:93;18636:3;18547:93;:::i;:::-;18665:2;18660:3;18656:12;18649:19;;18308:366;;;:::o;18680:::-;18822:3;18843:67;18907:2;18902:3;18843:67;:::i;:::-;18836:74;;18919:93;19008:3;18919:93;:::i;:::-;19037:2;19032:3;19028:12;19021:19;;18680:366;;;:::o;19052:::-;19194:3;19215:67;19279:2;19274:3;19215:67;:::i;:::-;19208:74;;19291:93;19380:3;19291:93;:::i;:::-;19409:2;19404:3;19400:12;19393:19;;19052:366;;;:::o;19424:::-;19566:3;19587:67;19651:2;19646:3;19587:67;:::i;:::-;19580:74;;19663:93;19752:3;19663:93;:::i;:::-;19781:2;19776:3;19772:12;19765:19;;19424:366;;;:::o;19796:::-;19938:3;19959:67;20023:2;20018:3;19959:67;:::i;:::-;19952:74;;20035:93;20124:3;20035:93;:::i;:::-;20153:2;20148:3;20144:12;20137:19;;19796:366;;;:::o;20168:::-;20310:3;20331:67;20395:2;20390:3;20331:67;:::i;:::-;20324:74;;20407:93;20496:3;20407:93;:::i;:::-;20525:2;20520:3;20516:12;20509:19;;20168:366;;;:::o;20540:::-;20682:3;20703:67;20767:2;20762:3;20703:67;:::i;:::-;20696:74;;20779:93;20868:3;20779:93;:::i;:::-;20897:2;20892:3;20888:12;20881:19;;20540:366;;;:::o;20912:::-;21054:3;21075:67;21139:2;21134:3;21075:67;:::i;:::-;21068:74;;21151:93;21240:3;21151:93;:::i;:::-;21269:2;21264:3;21260:12;21253:19;;20912:366;;;:::o;21284:::-;21426:3;21447:67;21511:2;21506:3;21447:67;:::i;:::-;21440:74;;21523:93;21612:3;21523:93;:::i;:::-;21641:2;21636:3;21632:12;21625:19;;21284:366;;;:::o;21656:::-;21798:3;21819:67;21883:2;21878:3;21819:67;:::i;:::-;21812:74;;21895:93;21984:3;21895:93;:::i;:::-;22013:2;22008:3;22004:12;21997:19;;21656:366;;;:::o;22028:::-;22170:3;22191:67;22255:2;22250:3;22191:67;:::i;:::-;22184:74;;22267:93;22356:3;22267:93;:::i;:::-;22385:2;22380:3;22376:12;22369:19;;22028:366;;;:::o;22400:::-;22542:3;22563:67;22627:2;22622:3;22563:67;:::i;:::-;22556:74;;22639:93;22728:3;22639:93;:::i;:::-;22757:2;22752:3;22748:12;22741:19;;22400:366;;;:::o;22772:::-;22914:3;22935:67;22999:2;22994:3;22935:67;:::i;:::-;22928:74;;23011:93;23100:3;23011:93;:::i;:::-;23129:2;23124:3;23120:12;23113:19;;22772:366;;;:::o;23144:108::-;23221:24;23239:5;23221:24;:::i;:::-;23216:3;23209:37;23144:108;;:::o;23258:118::-;23345:24;23363:5;23345:24;:::i;:::-;23340:3;23333:37;23258:118;;:::o;23382:589::-;23607:3;23629:95;23720:3;23711:6;23629:95;:::i;:::-;23622:102;;23741:95;23832:3;23823:6;23741:95;:::i;:::-;23734:102;;23853:92;23941:3;23932:6;23853:92;:::i;:::-;23846:99;;23962:3;23955:10;;23382:589;;;;;;:::o;23977:222::-;24070:4;24108:2;24097:9;24093:18;24085:26;;24121:71;24189:1;24178:9;24174:17;24165:6;24121:71;:::i;:::-;23977:222;;;;:::o;24205:640::-;24400:4;24438:3;24427:9;24423:19;24415:27;;24452:71;24520:1;24509:9;24505:17;24496:6;24452:71;:::i;:::-;24533:72;24601:2;24590:9;24586:18;24577:6;24533:72;:::i;:::-;24615;24683:2;24672:9;24668:18;24659:6;24615:72;:::i;:::-;24734:9;24728:4;24724:20;24719:2;24708:9;24704:18;24697:48;24762:76;24833:4;24824:6;24762:76;:::i;:::-;24754:84;;24205:640;;;;;;;:::o;24851:373::-;24994:4;25032:2;25021:9;25017:18;25009:26;;25081:9;25075:4;25071:20;25067:1;25056:9;25052:17;25045:47;25109:108;25212:4;25203:6;25109:108;:::i;:::-;25101:116;;24851:373;;;;:::o;25230:210::-;25317:4;25355:2;25344:9;25340:18;25332:26;;25368:65;25430:1;25419:9;25415:17;25406:6;25368:65;:::i;:::-;25230:210;;;;:::o;25446:313::-;25559:4;25597:2;25586:9;25582:18;25574:26;;25646:9;25640:4;25636:20;25632:1;25621:9;25617:17;25610:47;25674:78;25747:4;25738:6;25674:78;:::i;:::-;25666:86;;25446:313;;;;:::o;25765:419::-;25931:4;25969:2;25958:9;25954:18;25946:26;;26018:9;26012:4;26008:20;26004:1;25993:9;25989:17;25982:47;26046:131;26172:4;26046:131;:::i;:::-;26038:139;;25765:419;;;:::o;26190:::-;26356:4;26394:2;26383:9;26379:18;26371:26;;26443:9;26437:4;26433:20;26429:1;26418:9;26414:17;26407:47;26471:131;26597:4;26471:131;:::i;:::-;26463:139;;26190:419;;;:::o;26615:::-;26781:4;26819:2;26808:9;26804:18;26796:26;;26868:9;26862:4;26858:20;26854:1;26843:9;26839:17;26832:47;26896:131;27022:4;26896:131;:::i;:::-;26888:139;;26615:419;;;:::o;27040:::-;27206:4;27244:2;27233:9;27229:18;27221:26;;27293:9;27287:4;27283:20;27279:1;27268:9;27264:17;27257:47;27321:131;27447:4;27321:131;:::i;:::-;27313:139;;27040:419;;;:::o;27465:::-;27631:4;27669:2;27658:9;27654:18;27646:26;;27718:9;27712:4;27708:20;27704:1;27693:9;27689:17;27682:47;27746:131;27872:4;27746:131;:::i;:::-;27738:139;;27465:419;;;:::o;27890:::-;28056:4;28094:2;28083:9;28079:18;28071:26;;28143:9;28137:4;28133:20;28129:1;28118:9;28114:17;28107:47;28171:131;28297:4;28171:131;:::i;:::-;28163:139;;27890:419;;;:::o;28315:::-;28481:4;28519:2;28508:9;28504:18;28496:26;;28568:9;28562:4;28558:20;28554:1;28543:9;28539:17;28532:47;28596:131;28722:4;28596:131;:::i;:::-;28588:139;;28315:419;;;:::o;28740:::-;28906:4;28944:2;28933:9;28929:18;28921:26;;28993:9;28987:4;28983:20;28979:1;28968:9;28964:17;28957:47;29021:131;29147:4;29021:131;:::i;:::-;29013:139;;28740:419;;;:::o;29165:::-;29331:4;29369:2;29358:9;29354:18;29346:26;;29418:9;29412:4;29408:20;29404:1;29393:9;29389:17;29382:47;29446:131;29572:4;29446:131;:::i;:::-;29438:139;;29165:419;;;:::o;29590:::-;29756:4;29794:2;29783:9;29779:18;29771:26;;29843:9;29837:4;29833:20;29829:1;29818:9;29814:17;29807:47;29871:131;29997:4;29871:131;:::i;:::-;29863:139;;29590:419;;;:::o;30015:::-;30181:4;30219:2;30208:9;30204:18;30196:26;;30268:9;30262:4;30258:20;30254:1;30243:9;30239:17;30232:47;30296:131;30422:4;30296:131;:::i;:::-;30288:139;;30015:419;;;:::o;30440:::-;30606:4;30644:2;30633:9;30629:18;30621:26;;30693:9;30687:4;30683:20;30679:1;30668:9;30664:17;30657:47;30721:131;30847:4;30721:131;:::i;:::-;30713:139;;30440:419;;;:::o;30865:::-;31031:4;31069:2;31058:9;31054:18;31046:26;;31118:9;31112:4;31108:20;31104:1;31093:9;31089:17;31082:47;31146:131;31272:4;31146:131;:::i;:::-;31138:139;;30865:419;;;:::o;31290:::-;31456:4;31494:2;31483:9;31479:18;31471:26;;31543:9;31537:4;31533:20;31529:1;31518:9;31514:17;31507:47;31571:131;31697:4;31571:131;:::i;:::-;31563:139;;31290:419;;;:::o;31715:::-;31881:4;31919:2;31908:9;31904:18;31896:26;;31968:9;31962:4;31958:20;31954:1;31943:9;31939:17;31932:47;31996:131;32122:4;31996:131;:::i;:::-;31988:139;;31715:419;;;:::o;32140:::-;32306:4;32344:2;32333:9;32329:18;32321:26;;32393:9;32387:4;32383:20;32379:1;32368:9;32364:17;32357:47;32421:131;32547:4;32421:131;:::i;:::-;32413:139;;32140:419;;;:::o;32565:::-;32731:4;32769:2;32758:9;32754:18;32746:26;;32818:9;32812:4;32808:20;32804:1;32793:9;32789:17;32782:47;32846:131;32972:4;32846:131;:::i;:::-;32838:139;;32565:419;;;:::o;32990:::-;33156:4;33194:2;33183:9;33179:18;33171:26;;33243:9;33237:4;33233:20;33229:1;33218:9;33214:17;33207:47;33271:131;33397:4;33271:131;:::i;:::-;33263:139;;32990:419;;;:::o;33415:::-;33581:4;33619:2;33608:9;33604:18;33596:26;;33668:9;33662:4;33658:20;33654:1;33643:9;33639:17;33632:47;33696:131;33822:4;33696:131;:::i;:::-;33688:139;;33415:419;;;:::o;33840:::-;34006:4;34044:2;34033:9;34029:18;34021:26;;34093:9;34087:4;34083:20;34079:1;34068:9;34064:17;34057:47;34121:131;34247:4;34121:131;:::i;:::-;34113:139;;33840:419;;;:::o;34265:::-;34431:4;34469:2;34458:9;34454:18;34446:26;;34518:9;34512:4;34508:20;34504:1;34493:9;34489:17;34482:47;34546:131;34672:4;34546:131;:::i;:::-;34538:139;;34265:419;;;:::o;34690:::-;34856:4;34894:2;34883:9;34879:18;34871:26;;34943:9;34937:4;34933:20;34929:1;34918:9;34914:17;34907:47;34971:131;35097:4;34971:131;:::i;:::-;34963:139;;34690:419;;;:::o;35115:::-;35281:4;35319:2;35308:9;35304:18;35296:26;;35368:9;35362:4;35358:20;35354:1;35343:9;35339:17;35332:47;35396:131;35522:4;35396:131;:::i;:::-;35388:139;;35115:419;;;:::o;35540:::-;35706:4;35744:2;35733:9;35729:18;35721:26;;35793:9;35787:4;35783:20;35779:1;35768:9;35764:17;35757:47;35821:131;35947:4;35821:131;:::i;:::-;35813:139;;35540:419;;;:::o;35965:::-;36131:4;36169:2;36158:9;36154:18;36146:26;;36218:9;36212:4;36208:20;36204:1;36193:9;36189:17;36182:47;36246:131;36372:4;36246:131;:::i;:::-;36238:139;;35965:419;;;:::o;36390:::-;36556:4;36594:2;36583:9;36579:18;36571:26;;36643:9;36637:4;36633:20;36629:1;36618:9;36614:17;36607:47;36671:131;36797:4;36671:131;:::i;:::-;36663:139;;36390:419;;;:::o;36815:::-;36981:4;37019:2;37008:9;37004:18;36996:26;;37068:9;37062:4;37058:20;37054:1;37043:9;37039:17;37032:47;37096:131;37222:4;37096:131;:::i;:::-;37088:139;;36815:419;;;:::o;37240:::-;37406:4;37444:2;37433:9;37429:18;37421:26;;37493:9;37487:4;37483:20;37479:1;37468:9;37464:17;37457:47;37521:131;37647:4;37521:131;:::i;:::-;37513:139;;37240:419;;;:::o;37665:::-;37831:4;37869:2;37858:9;37854:18;37846:26;;37918:9;37912:4;37908:20;37904:1;37893:9;37889:17;37882:47;37946:131;38072:4;37946:131;:::i;:::-;37938:139;;37665:419;;;:::o;38090:222::-;38183:4;38221:2;38210:9;38206:18;38198:26;;38234:71;38302:1;38291:9;38287:17;38278:6;38234:71;:::i;:::-;38090:222;;;;:::o;38318:129::-;38352:6;38379:20;;:::i;:::-;38369:30;;38408:33;38436:4;38428:6;38408:33;:::i;:::-;38318:129;;;:::o;38453:75::-;38486:6;38519:2;38513:9;38503:19;;38453:75;:::o;38534:311::-;38611:4;38701:18;38693:6;38690:30;38687:56;;;38723:18;;:::i;:::-;38687:56;38773:4;38765:6;38761:17;38753:25;;38833:4;38827;38823:15;38815:23;;38534:311;;;:::o;38851:307::-;38912:4;39002:18;38994:6;38991:30;38988:56;;;39024:18;;:::i;:::-;38988:56;39062:29;39084:6;39062:29;:::i;:::-;39054:37;;39146:4;39140;39136:15;39128:23;;38851:307;;;:::o;39164:308::-;39226:4;39316:18;39308:6;39305:30;39302:56;;;39338:18;;:::i;:::-;39302:56;39376:29;39398:6;39376:29;:::i;:::-;39368:37;;39460:4;39454;39450:15;39442:23;;39164:308;;;:::o;39478:132::-;39545:4;39568:3;39560:11;;39598:4;39593:3;39589:14;39581:22;;39478:132;;;:::o;39616:141::-;39665:4;39688:3;39680:11;;39711:3;39708:1;39701:14;39745:4;39742:1;39732:18;39724:26;;39616:141;;;:::o;39763:114::-;39830:6;39864:5;39858:12;39848:22;;39763:114;;;:::o;39883:98::-;39934:6;39968:5;39962:12;39952:22;;39883:98;;;:::o;39987:99::-;40039:6;40073:5;40067:12;40057:22;;39987:99;;;:::o;40092:113::-;40162:4;40194;40189:3;40185:14;40177:22;;40092:113;;;:::o;40211:184::-;40310:11;40344:6;40339:3;40332:19;40384:4;40379:3;40375:14;40360:29;;40211:184;;;;:::o;40401:168::-;40484:11;40518:6;40513:3;40506:19;40558:4;40553:3;40549:14;40534:29;;40401:168;;;;:::o;40575:169::-;40659:11;40693:6;40688:3;40681:19;40733:4;40728:3;40724:14;40709:29;;40575:169;;;;:::o;40750:148::-;40852:11;40889:3;40874:18;;40750:148;;;;:::o;40904:305::-;40944:3;40963:20;40981:1;40963:20;:::i;:::-;40958:25;;40997:20;41015:1;40997:20;:::i;:::-;40992:25;;41151:1;41083:66;41079:74;41076:1;41073:81;41070:107;;;41157:18;;:::i;:::-;41070:107;41201:1;41198;41194:9;41187:16;;40904:305;;;;:::o;41215:185::-;41255:1;41272:20;41290:1;41272:20;:::i;:::-;41267:25;;41306:20;41324:1;41306:20;:::i;:::-;41301:25;;41345:1;41335:35;;41350:18;;:::i;:::-;41335:35;41392:1;41389;41385:9;41380:14;;41215:185;;;;:::o;41406:348::-;41446:7;41469:20;41487:1;41469:20;:::i;:::-;41464:25;;41503:20;41521:1;41503:20;:::i;:::-;41498:25;;41691:1;41623:66;41619:74;41616:1;41613:81;41608:1;41601:9;41594:17;41590:105;41587:131;;;41698:18;;:::i;:::-;41587:131;41746:1;41743;41739:9;41728:20;;41406:348;;;;:::o;41760:191::-;41800:4;41820:20;41838:1;41820:20;:::i;:::-;41815:25;;41854:20;41872:1;41854:20;:::i;:::-;41849:25;;41893:1;41890;41887:8;41884:34;;;41898:18;;:::i;:::-;41884:34;41943:1;41940;41936:9;41928:17;;41760:191;;;;:::o;41957:96::-;41994:7;42023:24;42041:5;42023:24;:::i;:::-;42012:35;;41957:96;;;:::o;42059:90::-;42093:7;42136:5;42129:13;42122:21;42111:32;;42059:90;;;:::o;42155:149::-;42191:7;42231:66;42224:5;42220:78;42209:89;;42155:149;;;:::o;42310:126::-;42347:7;42387:42;42380:5;42376:54;42365:65;;42310:126;;;:::o;42442:77::-;42479:7;42508:5;42497:16;;42442:77;;;:::o;42525:154::-;42609:6;42604:3;42599;42586:30;42671:1;42662:6;42657:3;42653:16;42646:27;42525:154;;;:::o;42685:307::-;42753:1;42763:113;42777:6;42774:1;42771:13;42763:113;;;42862:1;42857:3;42853:11;42847:18;42843:1;42838:3;42834:11;42827:39;42799:2;42796:1;42792:10;42787:15;;42763:113;;;42894:6;42891:1;42888:13;42885:101;;;42974:1;42965:6;42960:3;42956:16;42949:27;42885:101;42734:258;42685:307;;;:::o;42998:320::-;43042:6;43079:1;43073:4;43069:12;43059:22;;43126:1;43120:4;43116:12;43147:18;43137:81;;43203:4;43195:6;43191:17;43181:27;;43137:81;43265:2;43257:6;43254:14;43234:18;43231:38;43228:84;;;43284:18;;:::i;:::-;43228:84;43049:269;42998:320;;;:::o;43324:281::-;43407:27;43429:4;43407:27;:::i;:::-;43399:6;43395:40;43537:6;43525:10;43522:22;43501:18;43489:10;43486:34;43483:62;43480:88;;;43548:18;;:::i;:::-;43480:88;43588:10;43584:2;43577:22;43367:238;43324:281;;:::o;43611:233::-;43650:3;43673:24;43691:5;43673:24;:::i;:::-;43664:33;;43719:66;43712:5;43709:77;43706:103;;;43789:18;;:::i;:::-;43706:103;43836:1;43829:5;43825:13;43818:20;;43611:233;;;:::o;43850:176::-;43882:1;43899:20;43917:1;43899:20;:::i;:::-;43894:25;;43933:20;43951:1;43933:20;:::i;:::-;43928:25;;43972:1;43962:35;;43977:18;;:::i;:::-;43962:35;44018:1;44015;44011:9;44006:14;;43850:176;;;;:::o;44032:180::-;44080:77;44077:1;44070:88;44177:4;44174:1;44167:15;44201:4;44198:1;44191:15;44218:180;44266:77;44263:1;44256:88;44363:4;44360:1;44353:15;44387:4;44384:1;44377:15;44404:180;44452:77;44449:1;44442:88;44549:4;44546:1;44539:15;44573:4;44570:1;44563:15;44590:180;44638:77;44635:1;44628:88;44735:4;44732:1;44725:15;44759:4;44756:1;44749:15;44776:180;44824:77;44821:1;44814:88;44921:4;44918:1;44911:15;44945:4;44942:1;44935:15;44962:180;45010:77;45007:1;45000:88;45107:4;45104:1;45097:15;45131:4;45128:1;45121:15;45148:117;45257:1;45254;45247:12;45271:117;45380:1;45377;45370:12;45394:117;45503:1;45500;45493:12;45517:117;45626:1;45623;45616:12;45640:117;45749:1;45746;45739:12;45763:102;45804:6;45855:2;45851:7;45846:2;45839:5;45835:14;45831:28;45821:38;;45763:102;;;:::o;45871:166::-;46011:18;46007:1;45999:6;45995:14;45988:42;45871:166;:::o;46043:179::-;46183:31;46179:1;46171:6;46167:14;46160:55;46043:179;:::o;46228:230::-;46368:34;46364:1;46356:6;46352:14;46345:58;46437:13;46432:2;46424:6;46420:15;46413:38;46228:230;:::o;46464:237::-;46604:34;46600:1;46592:6;46588:14;46581:58;46673:20;46668:2;46660:6;46656:15;46649:45;46464:237;:::o;46707:225::-;46847:34;46843:1;46835:6;46831:14;46824:58;46916:8;46911:2;46903:6;46899:15;46892:33;46707:225;:::o;46938:178::-;47078:30;47074:1;47066:6;47062:14;47055:54;46938:178;:::o;47122:180::-;47262:32;47258:1;47250:6;47246:14;47239:56;47122:180;:::o;47308:223::-;47448:34;47444:1;47436:6;47432:14;47425:58;47517:6;47512:2;47504:6;47500:15;47493:31;47308:223;:::o;47537:175::-;47677:27;47673:1;47665:6;47661:14;47654:51;47537:175;:::o;47718:231::-;47858:34;47854:1;47846:6;47842:14;47835:58;47927:14;47922:2;47914:6;47910:15;47903:39;47718:231;:::o;47955:243::-;48095:34;48091:1;48083:6;48079:14;48072:58;48164:26;48159:2;48151:6;48147:15;48140:51;47955:243;:::o;48204:229::-;48344:34;48340:1;48332:6;48328:14;48321:58;48413:12;48408:2;48400:6;48396:15;48389:37;48204:229;:::o;48439:228::-;48579:34;48575:1;48567:6;48563:14;48556:58;48648:11;48643:2;48635:6;48631:15;48624:36;48439:228;:::o;48673:182::-;48813:34;48809:1;48801:6;48797:14;48790:58;48673:182;:::o;48861:175::-;49001:27;48997:1;48989:6;48985:14;48978:51;48861:175;:::o;49042:231::-;49182:34;49178:1;49170:6;49166:14;49159:58;49251:14;49246:2;49238:6;49234:15;49227:39;49042:231;:::o;49279:182::-;49419:34;49415:1;49407:6;49403:14;49396:58;49279:182;:::o;49467:228::-;49607:34;49603:1;49595:6;49591:14;49584:58;49676:11;49671:2;49663:6;49659:15;49652:36;49467:228;:::o;49701:234::-;49841:34;49837:1;49829:6;49825:14;49818:58;49910:17;49905:2;49897:6;49893:15;49886:42;49701:234;:::o;49941:220::-;50081:34;50077:1;50069:6;50065:14;50058:58;50150:3;50145:2;50137:6;50133:15;50126:28;49941:220;:::o;50167:221::-;50307:34;50303:1;50295:6;50291:14;50284:58;50376:4;50371:2;50363:6;50359:15;50352:29;50167:221;:::o;50394:236::-;50534:34;50530:1;50522:6;50518:14;50511:58;50603:19;50598:2;50590:6;50586:15;50579:44;50394:236;:::o;50636:166::-;50776:18;50772:1;50764:6;50760:14;50753:42;50636:166;:::o;50808:231::-;50948:34;50944:1;50936:6;50932:14;50925:58;51017:14;51012:2;51004:6;51000:15;50993:39;50808:231;:::o;51045:171::-;51185:23;51181:1;51173:6;51169:14;51162:47;51045:171;:::o;51222:172::-;51362:24;51358:1;51350:6;51346:14;51339:48;51222:172;:::o;51400:164::-;51540:16;51536:1;51528:6;51524:14;51517:40;51400:164;:::o;51570:174::-;51710:26;51706:1;51698:6;51694:14;51687:50;51570:174;:::o;51750:170::-;51890:22;51886:1;51878:6;51874:14;51867:46;51750:170;:::o;51926:122::-;51999:24;52017:5;51999:24;:::i;:::-;51992:5;51989:35;51979:63;;52038:1;52035;52028:12;51979:63;51926:122;:::o;52054:116::-;52124:21;52139:5;52124:21;:::i;:::-;52117:5;52114:32;52104:60;;52160:1;52157;52150:12;52104:60;52054:116;:::o;52176:120::-;52248:23;52265:5;52248:23;:::i;:::-;52241:5;52238:34;52228:62;;52286:1;52283;52276:12;52228:62;52176:120;:::o;52302:122::-;52375:24;52393:5;52375:24;:::i;:::-;52368:5;52365:35;52355:63;;52414:1;52411;52404:12;52355:63;52302:122;:::o

Swarm Source

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