ETH Price: $3,452.71 (-0.71%)
Gas: 2 Gwei

Token

TheOddballClub (OBC)
 

Overview

Max Total Supply

2,333 OBC

Holders

845

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
ecifircas.eth
Balance
1 OBC
0x4f6F6b4EACff3e96C19D8773ac5ac05F5a650207
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:
TheOddballClub

Compiler Version
v0.8.5+commit.a4f2e591

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/**
 *Submitted for verification at Etherscan.io on 2021-08-23
 */

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

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

pragma solidity ^0.8.0;

/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}

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

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

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 @openzeppelin/contracts/utils/introspection/[email protected]

pragma solidity ^0.8.0;

/**
 * @dev Storage based implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165Storage is ERC165 {
    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return
            super.supportsInterface(interfaceId) ||
            _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

pragma solidity ^0.8.5;
pragma experimental ABIEncoderV2;

contract TheOddballClub is Ownable, ERC721Enumerable, ReentrancyGuard {
    using SafeMath for uint256;

    string public ODDBALL_PROVENANCE = "";
    string public LICENSE_TEXT = "";
    string public BASE_URI = "";

    uint256 public constant PRICE = 0.0275 ether;
    uint256 public constant PURCHASE_LIMIT = 20;
    uint256 public constant MAX_ODDBALL = 8888;
    uint256 public constant PRESALE_MAX_PURCHASE_LIMIT = 5;

    uint256 public oddballReserve = 250;
    uint256 public totalPublicSupply;

    mapping(address => bool) private _allowList;
    mapping(address => uint256) private _allowListClaimed;

    bool public saleIsActive = false;
    bool public preSaleIsActive = false;
    bool public licenseLocked = false;

    address public team1Address;
    address public team2Address;
    address public team3Address;
    uint256 public constant TEAM_1_SELL_PERCENT = 11;
    uint256 public constant TEAM_2_SELL_PERCENT = 5;
    uint256 public constant TEAM_3_SELL_PERCENT = 3;

    event licenseisLocked(string _licenseText);

    constructor(
        address addr1,
        address addr2,
        address addr3
    ) ERC721("TheOddballClub", "OBC") {
        team1Address = addr1;
        team2Address = addr2;
        team3Address = addr3;
    }

    function withdraw() public onlyOwner {
        uint256 value = address(this).balance;
        sendValueTo(team1Address, (value * TEAM_1_SELL_PERCENT) / 100);
        sendValueTo(team2Address, (value * TEAM_2_SELL_PERCENT) / 100);
        sendValueTo(team3Address, (value * TEAM_3_SELL_PERCENT) / 100);
        sendValueTo(msg.sender, (value * 81) / 100);
    }

    /**
    * @dev Send value to address
    */
    function sendValueTo(address to_, uint256 value) internal {
        address payable to = payable(to_);
        (bool success, ) = to.call{value: value}("");
        require(success, "Transfer failed.");
    }

    /**
    * @dev Flip the pre / main sale flags
    */
    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function flipPreSaleState() public onlyOwner {
        preSaleIsActive = !preSaleIsActive;
    }

    /**
    * @dev Return base URI
    */
    function _baseURI() internal view override returns (string memory) {
        return BASE_URI;
    }

    /**
    * @dev Set data
    */
    function setBaseURI(string memory baseURI_) public onlyOwner {
        BASE_URI = baseURI_;
    }

    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        ODDBALL_PROVENANCE = provenanceHash;
    }

    function setOddballReserve(uint256 reserveLimit) public onlyOwner {
        oddballReserve = reserveLimit;
    }

    function setTeamAddress(
        address _team1,
        address _team2,
        address _team3
    ) public onlyOwner {
        team1Address = _team1;
        team2Address = _team2;
        team3Address = _team3;
    }

    /**
    * @dev Add array of address's to the whitelist
    *
    * Shoutout to 0N1 contract for this code
    */
    function addToAllowList(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "Can't add the null address");
            _allowList[addresses[i]] = true;
            _allowListClaimed[addresses[i]] > 0
                ? _allowListClaimed[addresses[i]]
                : 0;
        }
    }

    function onAllowList(address addr) external view returns (bool) {
        return _allowList[addr];
    }

    function removeFromAllowList(address[] calldata addresses) external onlyOwner
    {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "Can't add the null address");
            _allowList[addresses[i]] = false;
        }
    }

    function purchase(uint256 numberOfTokens) public payable nonReentrant {
        require(saleIsActive, "Contract is not active");
        require(!preSaleIsActive, "Pre sale is active");
        require(totalSupply().add(numberOfTokens) <= MAX_ODDBALL, "Purchase would exceed max supply");
        require(numberOfTokens > 0 && numberOfTokens <= PURCHASE_LIMIT, "Would exceed PURCHASE_LIMIT");
        require( msg.value >= PRICE.mul(numberOfTokens),"Ether value sent is not correct");
        require(msg.value / numberOfTokens == PRICE, "Mint value is not good");

        for (uint256 i = 0; i < numberOfTokens; i++) {
            if (totalPublicSupply < MAX_ODDBALL) {
                uint256 tokenId = totalPublicSupply;
                totalPublicSupply += 1;
                _safeMint(msg.sender, tokenId);
            }
        }
    }

    function purchasePreSale(uint256 numberOfTokens) public payable nonReentrant
    {
        require(!saleIsActive, "Contract is active");
        require(preSaleIsActive, "Pre Sale is not active");
        require(_allowList[msg.sender], "You are not on the Allow List");
        require(totalSupply().add(numberOfTokens) <= MAX_ODDBALL,"Purchase would exceed max supply");
        require(numberOfTokens <= PRESALE_MAX_PURCHASE_LIMIT,"Cannot purchase this many tokens");
        require(_allowListClaimed[msg.sender] + numberOfTokens <= PRESALE_MAX_PURCHASE_LIMIT, "Purchase exceeds max allowed");
        require( PRICE * numberOfTokens <= msg.value, "ETH amount is not sufficient");

        for (uint256 i = 0; i < numberOfTokens; i++) {
            if (totalPublicSupply < MAX_ODDBALL) {
                uint256 tokenId = totalPublicSupply;
                totalPublicSupply += 1;
                _allowListClaimed[msg.sender] += 1;
                _safeMint(msg.sender, tokenId);
            }
        }
    }

    function reserve(address _to, uint256 _reserveAmount) public onlyOwner {
        require(_reserveAmount > 0 && _reserveAmount <= oddballReserve, "Not enough reserve left");
        require(totalSupply() <= MAX_ODDBALL, "All tokens have been minted");

        for (uint256 i = 0; i < _reserveAmount; i++) {
            uint256 tokenId = totalPublicSupply;
            totalPublicSupply += 1;
            _safeMint(_to, tokenId);
        }

        oddballReserve = oddballReserve.sub(_reserveAmount);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"addr1","type":"address"},{"internalType":"address","name":"addr2","type":"address"},{"internalType":"address","name":"addr3","type":"address"}],"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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_licenseText","type":"string"}],"name":"licenseisLocked","type":"event"},{"inputs":[],"name":"BASE_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LICENSE_TEXT","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ODDBALL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ODDBALL_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_MAX_PURCHASE_LIMIT","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":"PURCHASE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_1_SELL_PERCENT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_2_SELL_PERCENT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_3_SELL_PERCENT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPreSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"licenseLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oddballReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"onAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"purchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"purchasePreSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reserve","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":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"reserveLimit","type":"uint256"}],"name":"setOddballReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_team1","type":"address"},{"internalType":"address","name":"_team2","type":"address"},{"internalType":"address","name":"_team3","type":"address"}],"name":"setTeamAddress","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":[],"name":"team1Address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"team2Address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"team3Address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPublicSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600c90805190602001906200002b92919062000365565b5060405180602001604052806000815250600d90805190602001906200005392919062000365565b5060405180602001604052806000815250600e90805190602001906200007b92919062000365565b5060fa600f556000601360006101000a81548160ff0219169083151502179055506000601360016101000a81548160ff0219169083151502179055506000601360026101000a81548160ff021916908315150217905550348015620000df57600080fd5b50604051620062213803806200622183398181016040528101906200010591906200042c565b6040518060400160405280600e81526020017f5468654f646462616c6c436c75620000000000000000000000000000000000008152506040518060400160405280600381526020017f4f4243000000000000000000000000000000000000000000000000000000000081525062000191620001856200029960201b60201c565b620002a160201b60201c565b8160019080519060200190620001a992919062000365565b508060029080519060200190620001c292919062000365565b5050506001600b8190555082601360036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505062000540565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200037390620004bc565b90600052602060002090601f016020900481019282620003975760008555620003e3565b82601f10620003b257805160ff1916838001178555620003e3565b82800160010185558215620003e3579182015b82811115620003e2578251825591602001919060010190620003c5565b5b509050620003f29190620003f6565b5090565b5b8082111562000411576000816000905550600101620003f7565b5090565b600081519050620004268162000526565b92915050565b60008060006060848603121562000448576200044762000521565b5b6000620004588682870162000415565b93505060206200046b8682870162000415565b92505060406200047e8682870162000415565b9150509250925092565b600062000495826200049c565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620004d557607f821691505b60208210811415620004ec57620004eb620004f2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b620005318162000488565b81146200053d57600080fd5b50565b615cd180620005506000396000f3fe6080604052600436106102e45760003560e01c80637263cfe211610190578063b616d64c116100dc578063dbddb26a11610095578063eb8d24441161006f578063eb8d244414610b1f578063efef39a114610b4a578063f032554914610b66578063f2fde38b14610b7d576102e4565b8063dbddb26a14610a8c578063e6a5931e14610ab7578063e985e9c514610ae2576102e4565b8063b616d64c1461098b578063b88d4fde146109b6578063c5f9d931146109df578063c87b56dd146109fb578063cc47a40b14610a38578063d75e611014610a61576102e4565b8063973ea9d5116101495780639c3e72bd116101235780639c3e72bd146108e3578063a22cb4651461090e578063a51312c814610937578063b405522d14610960576102e4565b8063973ea9d51461086257806397b564891461088d57806398ca4b9a146108b8576102e4565b80637263cfe214610750578063736cf799146107795780638462151c146107a45780638d859f3e146107e15780638da5cb5b1461080c57806395d89b4114610837576102e4565b80632f745c591161024f5780634811c070116102085780636352211e116101e25780636352211e1461069657806369713163146106d357806370a08231146106fc578063715018a614610739576102e4565b80634811c070146106055780634f6ccce71461063057806355f804b31461066d576102e4565b80632f745c591461050b57806334918dfd146105485780633a0658921461055f5780633ccfd60b1461059c57806342842e0e146105b357806347540b31146105dc576102e4565b806318160ddd116102a157806318160ddd1461040b5780631a5722b2146104365780631c0a258e146104615780631f0234d81461048c57806323b872dd146104b75780632889e822146104e0576102e4565b806301c2dcf7146102e957806301ffc9a71461031457806306fdde0314610351578063081812fc1461037c578063095ea7b3146103b957806310969523146103e2575b600080fd5b3480156102f557600080fd5b506102fe610ba6565b60405161030b9190614af1565b60405180910390f35b34801561032057600080fd5b5061033b60048036038101906103369190614303565b610c34565b6040516103489190614ad6565b60405180910390f35b34801561035d57600080fd5b50610366610cae565b6040516103739190614af1565b60405180910390f35b34801561038857600080fd5b506103a3600480360381019061039e91906143a6565b610d40565b6040516103b09190614a4d565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db9190614276565b610dc5565b005b3480156103ee57600080fd5b506104096004803603810190610404919061435d565b610edd565b005b34801561041757600080fd5b50610420610f73565b60405161042d9190614f73565b60405180910390f35b34801561044257600080fd5b5061044b610f80565b6040516104589190614ad6565b60405180910390f35b34801561046d57600080fd5b50610476610f93565b6040516104839190614f73565b60405180910390f35b34801561049857600080fd5b506104a1610f98565b6040516104ae9190614ad6565b60405180910390f35b3480156104c357600080fd5b506104de60048036038101906104d99190614160565b610fab565b005b3480156104ec57600080fd5b506104f561100b565b6040516105029190614a4d565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d9190614276565b611031565b60405161053f9190614f73565b60405180910390f35b34801561055457600080fd5b5061055d6110d6565b005b34801561056b57600080fd5b50610586600480360381019061058191906140a0565b61117e565b6040516105939190614ad6565b60405180910390f35b3480156105a857600080fd5b506105b16111d4565b005b3480156105bf57600080fd5b506105da60048036038101906105d59190614160565b611346565b005b3480156105e857600080fd5b5061060360048036038101906105fe919061410d565b611366565b005b34801561061157600080fd5b5061061a6114aa565b6040516106279190614a4d565b60405180910390f35b34801561063c57600080fd5b50610657600480360381019061065291906143a6565b6114d0565b6040516106649190614f73565b60405180910390f35b34801561067957600080fd5b50610694600480360381019061068f919061435d565b611541565b005b3480156106a257600080fd5b506106bd60048036038101906106b891906143a6565b6115d7565b6040516106ca9190614a4d565b60405180910390f35b3480156106df57600080fd5b506106fa60048036038101906106f591906143a6565b611689565b005b34801561070857600080fd5b50610723600480360381019061071e91906140a0565b61170f565b6040516107309190614f73565b60405180910390f35b34801561074557600080fd5b5061074e6117c7565b005b34801561075c57600080fd5b50610777600480360381019061077291906142b6565b61184f565b005b34801561078557600080fd5b5061078e611ae5565b60405161079b9190614f73565b60405180910390f35b3480156107b057600080fd5b506107cb60048036038101906107c691906140a0565b611aeb565b6040516107d89190614ab4565b60405180910390f35b3480156107ed57600080fd5b506107f6611bf5565b6040516108039190614f73565b60405180910390f35b34801561081857600080fd5b50610821611c00565b60405161082e9190614a4d565b60405180910390f35b34801561084357600080fd5b5061084c611c29565b6040516108599190614af1565b60405180910390f35b34801561086e57600080fd5b50610877611cbb565b6040516108849190614a4d565b60405180910390f35b34801561089957600080fd5b506108a2611ce1565b6040516108af9190614f73565b60405180910390f35b3480156108c457600080fd5b506108cd611ce6565b6040516108da9190614f73565b60405180910390f35b3480156108ef57600080fd5b506108f8611ceb565b6040516109059190614af1565b60405180910390f35b34801561091a57600080fd5b5061093560048036038101906109309190614236565b611d79565b005b34801561094357600080fd5b5061095e600480360381019061095991906142b6565b611efa565b005b34801561096c57600080fd5b506109756120b2565b6040516109829190614f73565b60405180910390f35b34801561099757600080fd5b506109a06120b7565b6040516109ad9190614f73565b60405180910390f35b3480156109c257600080fd5b506109dd60048036038101906109d891906141b3565b6120bd565b005b6109f960048036038101906109f491906143a6565b61211f565b005b348015610a0757600080fd5b50610a226004803603810190610a1d91906143a6565b6124d7565b604051610a2f9190614af1565b60405180910390f35b348015610a4457600080fd5b50610a5f6004803603810190610a5a9190614276565b61257e565b005b348015610a6d57600080fd5b50610a76612701565b604051610a839190614f73565b60405180910390f35b348015610a9857600080fd5b50610aa1612706565b604051610aae9190614af1565b60405180910390f35b348015610ac357600080fd5b50610acc612794565b604051610ad99190614f73565b60405180910390f35b348015610aee57600080fd5b50610b096004803603810190610b0491906140cd565b61279a565b604051610b169190614ad6565b60405180910390f35b348015610b2b57600080fd5b50610b3461282e565b604051610b419190614ad6565b60405180910390f35b610b646004803603810190610b5f91906143a6565b612841565b005b348015610b7257600080fd5b50610b7b612aef565b005b348015610b8957600080fd5b50610ba46004803603810190610b9f91906140a0565b612b97565b005b600c8054610bb390615267565b80601f0160208091040260200160405190810160405280929190818152602001828054610bdf90615267565b8015610c2c5780601f10610c0157610100808354040283529160200191610c2c565b820191906000526020600020905b815481529060010190602001808311610c0f57829003601f168201915b505050505081565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ca75750610ca682612c8f565b5b9050919050565b606060018054610cbd90615267565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce990615267565b8015610d365780601f10610d0b57610100808354040283529160200191610d36565b820191906000526020600020905b815481529060010190602001808311610d1957829003601f168201915b5050505050905090565b6000610d4b82612d71565b610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8190614d73565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610dd0826115d7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3890614e53565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e60612ddd565b73ffffffffffffffffffffffffffffffffffffffff161480610e8f5750610e8e81610e89612ddd565b61279a565b5b610ece576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec590614c93565b60405180910390fd5b610ed88383612de5565b505050565b610ee5612ddd565b73ffffffffffffffffffffffffffffffffffffffff16610f03611c00565b73ffffffffffffffffffffffffffffffffffffffff1614610f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5090614d93565b60405180910390fd5b80600c9080519060200190610f6f929190613e5e565b5050565b6000600980549050905090565b601360029054906101000a900460ff1681565b600581565b601360019054906101000a900460ff1681565b610fbc610fb6612ddd565b82612e9e565b610ffb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff290614e93565b60405180910390fd5b611006838383612f7c565b505050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061103c8361170f565b821061107d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107490614b33565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6110de612ddd565b73ffffffffffffffffffffffffffffffffffffffff166110fc611c00565b73ffffffffffffffffffffffffffffffffffffffff1614611152576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114990614d93565b60405180910390fd5b601360009054906101000a900460ff1615601360006101000a81548160ff021916908315150217905550565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6111dc612ddd565b73ffffffffffffffffffffffffffffffffffffffff166111fa611c00565b73ffffffffffffffffffffffffffffffffffffffff1614611250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124790614d93565b60405180910390fd5b6000479050611299601360039054906101000a900473ffffffffffffffffffffffffffffffffffffffff166064600b8461128a9190615123565b61129491906150f2565b6131d8565b6112dd601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660646005846112ce9190615123565b6112d891906150f2565b6131d8565b611321601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660646003846113129190615123565b61131c91906150f2565b6131d8565b6113433360646051846113349190615123565b61133e91906150f2565b6131d8565b50565b611361838383604051806020016040528060008152506120bd565b505050565b61136e612ddd565b73ffffffffffffffffffffffffffffffffffffffff1661138c611c00565b73ffffffffffffffffffffffffffffffffffffffff16146113e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d990614d93565b60405180910390fd5b82601360036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050565b601360039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006114da610f73565b821061151b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151290614eb3565b60405180910390fd5b6009828154811061152f5761152e615400565b5b90600052602060002001549050919050565b611549612ddd565b73ffffffffffffffffffffffffffffffffffffffff16611567611c00565b73ffffffffffffffffffffffffffffffffffffffff16146115bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b490614d93565b60405180910390fd5b80600e90805190602001906115d3929190613e5e565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167790614cf3565b60405180910390fd5b80915050919050565b611691612ddd565b73ffffffffffffffffffffffffffffffffffffffff166116af611c00565b73ffffffffffffffffffffffffffffffffffffffff1614611705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fc90614d93565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177790614cd3565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117cf612ddd565b73ffffffffffffffffffffffffffffffffffffffff166117ed611c00565b73ffffffffffffffffffffffffffffffffffffffff1614611843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183a90614d93565b60405180910390fd5b61184d600061328f565b565b611857612ddd565b73ffffffffffffffffffffffffffffffffffffffff16611875611c00565b73ffffffffffffffffffffffffffffffffffffffff16146118cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c290614d93565b60405180910390fd5b60005b82829050811015611ae057600073ffffffffffffffffffffffffffffffffffffffff1683838381811061190457611903615400565b5b905060200201602081019061191991906140a0565b73ffffffffffffffffffffffffffffffffffffffff161415611970576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196790614db3565b60405180910390fd5b60016011600085858581811061198957611988615400565b5b905060200201602081019061199e91906140a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600060126000858585818110611a0857611a07615400565b5b9050602002016020810190611a1d91906140a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611a64576000611acc565b60126000848484818110611a7b57611a7a615400565b5b9050602002016020810190611a9091906140a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b508080611ad8906152ca565b9150506118ce565b505050565b600f5481565b60606000611af88361170f565b90506000811415611b5557600067ffffffffffffffff811115611b1e57611b1d61542f565b5b604051908082528060200260200182016040528015611b4c5781602001602082028036833780820191505090505b50915050611bf0565b60008167ffffffffffffffff811115611b7157611b7061542f565b5b604051908082528060200260200182016040528015611b9f5781602001602082028036833780820191505090505b50905060005b82811015611be957611bb78582611031565b828281518110611bca57611bc9615400565b5b6020026020010181815250508080611be1906152ca565b915050611ba5565b8193505050505b919050565b6661b31ab352c00081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611c3890615267565b80601f0160208091040260200160405190810160405280929190818152602001828054611c6490615267565b8015611cb15780601f10611c8657610100808354040283529160200191611cb1565b820191906000526020600020905b815481529060010190602001808311611c9457829003601f168201915b5050505050905090565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600581565b600381565b600d8054611cf890615267565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2490615267565b8015611d715780601f10611d4657610100808354040283529160200191611d71565b820191906000526020600020905b815481529060010190602001808311611d5457829003601f168201915b505050505081565b611d81612ddd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de690614bf3565b60405180910390fd5b8060066000611dfc612ddd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ea9612ddd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611eee9190614ad6565b60405180910390a35050565b611f02612ddd565b73ffffffffffffffffffffffffffffffffffffffff16611f20611c00565b73ffffffffffffffffffffffffffffffffffffffff1614611f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6d90614d93565b60405180910390fd5b60005b828290508110156120ad57600073ffffffffffffffffffffffffffffffffffffffff16838383818110611faf57611fae615400565b5b9050602002016020810190611fc491906140a0565b73ffffffffffffffffffffffffffffffffffffffff16141561201b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201290614db3565b60405180910390fd5b60006011600085858581811061203457612033615400565b5b905060200201602081019061204991906140a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806120a5906152ca565b915050611f79565b505050565b600b81565b6122b881565b6120ce6120c8612ddd565b83612e9e565b61210d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210490614e93565b60405180910390fd5b61211984848484613353565b50505050565b6002600b541415612165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215c90614f13565b60405180910390fd5b6002600b81905550601360009054906101000a900460ff16156121bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b490614dd3565b60405180910390fd5b601360019054906101000a900460ff1661220c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220390614ed3565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228f90614b13565b60405180910390fd5b6122b86122b5826122a7610f73565b6133af90919063ffffffff16565b11156122f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ed90614d13565b60405180910390fd5b600581111561233a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233190614f53565b60405180910390fd5b600581601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612387919061509c565b11156123c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bf90614ef3565b60405180910390fd5b34816661b31ab352c0006123dc9190615123565b111561241d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241490614c53565b60405180910390fd5b60005b818110156124cb576122b860105410156124b8576000601054905060016010600082825461244e919061509c565b925050819055506001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124a5919061509c565b925050819055506124b633826133c5565b505b80806124c3906152ca565b915050612420565b506001600b8190555050565b60606124e282612d71565b612521576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251890614e13565b60405180910390fd5b600061252b6133e3565b9050600081511161254b5760405180602001604052806000815250612576565b8061255584613475565b604051602001612566929190614a14565b6040516020818303038152906040525b915050919050565b612586612ddd565b73ffffffffffffffffffffffffffffffffffffffff166125a4611c00565b73ffffffffffffffffffffffffffffffffffffffff16146125fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f190614d93565b60405180910390fd5b60008111801561260c5750600f548111155b61264b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264290614e33565b60405180910390fd5b6122b8612656610f73565b1115612697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268e90614f33565b60405180910390fd5b60005b818110156126e157600060105490506001601060008282546126bc919061509c565b925050819055506126cd84826133c5565b5080806126d9906152ca565b91505061269a565b506126f781600f546135d690919063ffffffff16565b600f819055505050565b601481565b600e805461271390615267565b80601f016020809104026020016040519081016040528092919081815260200182805461273f90615267565b801561278c5780601f106127615761010080835404028352916020019161278c565b820191906000526020600020905b81548152906001019060200180831161276f57829003601f168201915b505050505081565b60105481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601360009054906101000a900460ff1681565b6002600b541415612887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287e90614f13565b60405180910390fd5b6002600b81905550601360009054906101000a900460ff166128de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d590614d53565b60405180910390fd5b601360019054906101000a900460ff161561292e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292590614cb3565b60405180910390fd5b6122b861294b8261293d610f73565b6133af90919063ffffffff16565b111561298c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298390614d13565b60405180910390fd5b60008111801561299d575060148111155b6129dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d390614bb3565b60405180910390fd5b6129f6816661b31ab352c0006135ec90919063ffffffff16565b341015612a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2f90614c33565b60405180910390fd5b6661b31ab352c0008134612a4c91906150f2565b14612a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8390614c13565b60405180910390fd5b60005b81811015612ae3576122b86010541015612ad05760006010549050600160106000828254612abd919061509c565b92505081905550612ace33826133c5565b505b8080612adb906152ca565b915050612a8f565b506001600b8190555050565b612af7612ddd565b73ffffffffffffffffffffffffffffffffffffffff16612b15611c00565b73ffffffffffffffffffffffffffffffffffffffff1614612b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6290614d93565b60405180910390fd5b601360019054906101000a900460ff1615601360016101000a81548160ff021916908315150217905550565b612b9f612ddd565b73ffffffffffffffffffffffffffffffffffffffff16612bbd611c00565b73ffffffffffffffffffffffffffffffffffffffff1614612c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0a90614d93565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7a90614b73565b60405180910390fd5b612c8c8161328f565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612d5a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612d6a5750612d6982613602565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612e58836115d7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612ea982612d71565b612ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612edf90614c73565b60405180910390fd5b6000612ef3836115d7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612f6257508373ffffffffffffffffffffffffffffffffffffffff16612f4a84610d40565b73ffffffffffffffffffffffffffffffffffffffff16145b80612f735750612f72818561279a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612f9c826115d7565b73ffffffffffffffffffffffffffffffffffffffff1614612ff2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe990614df3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305990614bd3565b60405180910390fd5b61306d83838361366c565b613078600082612de5565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130c8919061517d565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461311f919061509c565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600082905060008173ffffffffffffffffffffffffffffffffffffffff168360405161320390614a38565b60006040518083038185875af1925050503d8060008114613240576040519150601f19603f3d011682016040523d82523d6000602084013e613245565b606091505b5050905080613289576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328090614e73565b60405180910390fd5b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61335e848484612f7c565b61336a84848484613780565b6133a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133a090614b53565b60405180910390fd5b50505050565b600081836133bd919061509c565b905092915050565b6133df828260405180602001604052806000815250613917565b5050565b6060600e80546133f290615267565b80601f016020809104026020016040519081016040528092919081815260200182805461341e90615267565b801561346b5780601f106134405761010080835404028352916020019161346b565b820191906000526020600020905b81548152906001019060200180831161344e57829003601f168201915b5050505050905090565b606060008214156134bd576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506135d1565b600082905060005b600082146134ef5780806134d8906152ca565b915050600a826134e891906150f2565b91506134c5565b60008167ffffffffffffffff81111561350b5761350a61542f565b5b6040519080825280601f01601f19166020018201604052801561353d5781602001600182028036833780820191505090505b5090505b600085146135ca57600182613556919061517d565b9150600a856135659190615313565b6030613571919061509c565b60f81b81838151811061358757613586615400565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856135c391906150f2565b9450613541565b8093505050505b919050565b600081836135e4919061517d565b905092915050565b600081836135fa9190615123565b905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613677838383613972565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156136ba576136b581613977565b6136f9565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146136f8576136f783826139c0565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561373c5761373781613b2d565b61377b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461377a576137798282613bfe565b5b5b505050565b60006137a18473ffffffffffffffffffffffffffffffffffffffff16613c7d565b1561390a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026137ca612ddd565b8786866040518563ffffffff1660e01b81526004016137ec9493929190614a68565b602060405180830381600087803b15801561380657600080fd5b505af192505050801561383757506040513d601f19601f820116820180604052508101906138349190614330565b60015b6138ba573d8060008114613867576040519150601f19603f3d011682016040523d82523d6000602084013e61386c565b606091505b506000815114156138b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138a990614b53565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061390f565b600190505b949350505050565b6139218383613c90565b61392e6000848484613780565b61396d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161396490614b53565b60405180910390fd5b505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016139cd8461170f565b6139d7919061517d565b9050600060086000848152602001908152602001600020549050818114613abc576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050613b41919061517d565b90506000600a6000848152602001908152602001600020549050600060098381548110613b7157613b70615400565b5b906000526020600020015490508060098381548110613b9357613b92615400565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480613be257613be16153d1565b5b6001900381819060005260206000200160009055905550505050565b6000613c098361170f565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cf790614d33565b60405180910390fd5b613d0981612d71565b15613d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d4090614b93565b60405180910390fd5b613d556000838361366c565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613da5919061509c565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613e6a90615267565b90600052602060002090601f016020900481019282613e8c5760008555613ed3565b82601f10613ea557805160ff1916838001178555613ed3565b82800160010185558215613ed3579182015b82811115613ed2578251825591602001919060010190613eb7565b5b509050613ee09190613ee4565b5090565b5b80821115613efd576000816000905550600101613ee5565b5090565b6000613f14613f0f84614fb3565b614f8e565b905082815260208101848484011115613f3057613f2f61546d565b5b613f3b848285615225565b509392505050565b6000613f56613f5184614fe4565b614f8e565b905082815260208101848484011115613f7257613f7161546d565b5b613f7d848285615225565b509392505050565b600081359050613f9481615c3f565b92915050565b60008083601f840112613fb057613faf615463565b5b8235905067ffffffffffffffff811115613fcd57613fcc61545e565b5b602083019150836020820283011115613fe957613fe8615468565b5b9250929050565b600081359050613fff81615c56565b92915050565b60008135905061401481615c6d565b92915050565b60008151905061402981615c6d565b92915050565b600082601f83011261404457614043615463565b5b8135614054848260208601613f01565b91505092915050565b600082601f83011261407257614071615463565b5b8135614082848260208601613f43565b91505092915050565b60008135905061409a81615c84565b92915050565b6000602082840312156140b6576140b5615477565b5b60006140c484828501613f85565b91505092915050565b600080604083850312156140e4576140e3615477565b5b60006140f285828601613f85565b925050602061410385828601613f85565b9150509250929050565b60008060006060848603121561412657614125615477565b5b600061413486828701613f85565b935050602061414586828701613f85565b925050604061415686828701613f85565b9150509250925092565b60008060006060848603121561417957614178615477565b5b600061418786828701613f85565b935050602061419886828701613f85565b92505060406141a98682870161408b565b9150509250925092565b600080600080608085870312156141cd576141cc615477565b5b60006141db87828801613f85565b94505060206141ec87828801613f85565b93505060406141fd8782880161408b565b925050606085013567ffffffffffffffff81111561421e5761421d615472565b5b61422a8782880161402f565b91505092959194509250565b6000806040838503121561424d5761424c615477565b5b600061425b85828601613f85565b925050602061426c85828601613ff0565b9150509250929050565b6000806040838503121561428d5761428c615477565b5b600061429b85828601613f85565b92505060206142ac8582860161408b565b9150509250929050565b600080602083850312156142cd576142cc615477565b5b600083013567ffffffffffffffff8111156142eb576142ea615472565b5b6142f785828601613f9a565b92509250509250929050565b60006020828403121561431957614318615477565b5b600061432784828501614005565b91505092915050565b60006020828403121561434657614345615477565b5b60006143548482850161401a565b91505092915050565b60006020828403121561437357614372615477565b5b600082013567ffffffffffffffff81111561439157614390615472565b5b61439d8482850161405d565b91505092915050565b6000602082840312156143bc576143bb615477565b5b60006143ca8482850161408b565b91505092915050565b60006143df83836149f6565b60208301905092915050565b6143f4816151b1565b82525050565b600061440582615025565b61440f8185615053565b935061441a83615015565b8060005b8381101561444b57815161443288826143d3565b975061443d83615046565b92505060018101905061441e565b5085935050505092915050565b614461816151c3565b82525050565b600061447282615030565b61447c8185615064565b935061448c818560208601615234565b6144958161547c565b840191505092915050565b60006144ab8261503b565b6144b58185615080565b93506144c5818560208601615234565b6144ce8161547c565b840191505092915050565b60006144e48261503b565b6144ee8185615091565b93506144fe818560208601615234565b80840191505092915050565b6000614517601d83615080565b91506145228261548d565b602082019050919050565b600061453a602b83615080565b9150614545826154b6565b604082019050919050565b600061455d603283615080565b915061456882615505565b604082019050919050565b6000614580602683615080565b915061458b82615554565b604082019050919050565b60006145a3601c83615080565b91506145ae826155a3565b602082019050919050565b60006145c6601b83615080565b91506145d1826155cc565b602082019050919050565b60006145e9602483615080565b91506145f4826155f5565b604082019050919050565b600061460c601983615080565b915061461782615644565b602082019050919050565b600061462f601683615080565b915061463a8261566d565b602082019050919050565b6000614652601f83615080565b915061465d82615696565b602082019050919050565b6000614675601c83615080565b9150614680826156bf565b602082019050919050565b6000614698602c83615080565b91506146a3826156e8565b604082019050919050565b60006146bb603883615080565b91506146c682615737565b604082019050919050565b60006146de601283615080565b91506146e982615786565b602082019050919050565b6000614701602a83615080565b915061470c826157af565b604082019050919050565b6000614724602983615080565b915061472f826157fe565b604082019050919050565b6000614747602083615080565b91506147528261584d565b602082019050919050565b600061476a602083615080565b915061477582615876565b602082019050919050565b600061478d601683615080565b91506147988261589f565b602082019050919050565b60006147b0602c83615080565b91506147bb826158c8565b604082019050919050565b60006147d3602083615080565b91506147de82615917565b602082019050919050565b60006147f6601a83615080565b915061480182615940565b602082019050919050565b6000614819601283615080565b915061482482615969565b602082019050919050565b600061483c602983615080565b915061484782615992565b604082019050919050565b600061485f602f83615080565b915061486a826159e1565b604082019050919050565b6000614882601783615080565b915061488d82615a30565b602082019050919050565b60006148a5602183615080565b91506148b082615a59565b604082019050919050565b60006148c8600083615075565b91506148d382615aa8565b600082019050919050565b60006148eb601083615080565b91506148f682615aab565b602082019050919050565b600061490e603183615080565b915061491982615ad4565b604082019050919050565b6000614931602c83615080565b915061493c82615b23565b604082019050919050565b6000614954601683615080565b915061495f82615b72565b602082019050919050565b6000614977601c83615080565b915061498282615b9b565b602082019050919050565b600061499a601f83615080565b91506149a582615bc4565b602082019050919050565b60006149bd601b83615080565b91506149c882615bed565b602082019050919050565b60006149e0602083615080565b91506149eb82615c16565b602082019050919050565b6149ff8161521b565b82525050565b614a0e8161521b565b82525050565b6000614a2082856144d9565b9150614a2c82846144d9565b91508190509392505050565b6000614a43826148bb565b9150819050919050565b6000602082019050614a6260008301846143eb565b92915050565b6000608082019050614a7d60008301876143eb565b614a8a60208301866143eb565b614a976040830185614a05565b8181036060830152614aa98184614467565b905095945050505050565b60006020820190508181036000830152614ace81846143fa565b905092915050565b6000602082019050614aeb6000830184614458565b92915050565b60006020820190508181036000830152614b0b81846144a0565b905092915050565b60006020820190508181036000830152614b2c8161450a565b9050919050565b60006020820190508181036000830152614b4c8161452d565b9050919050565b60006020820190508181036000830152614b6c81614550565b9050919050565b60006020820190508181036000830152614b8c81614573565b9050919050565b60006020820190508181036000830152614bac81614596565b9050919050565b60006020820190508181036000830152614bcc816145b9565b9050919050565b60006020820190508181036000830152614bec816145dc565b9050919050565b60006020820190508181036000830152614c0c816145ff565b9050919050565b60006020820190508181036000830152614c2c81614622565b9050919050565b60006020820190508181036000830152614c4c81614645565b9050919050565b60006020820190508181036000830152614c6c81614668565b9050919050565b60006020820190508181036000830152614c8c8161468b565b9050919050565b60006020820190508181036000830152614cac816146ae565b9050919050565b60006020820190508181036000830152614ccc816146d1565b9050919050565b60006020820190508181036000830152614cec816146f4565b9050919050565b60006020820190508181036000830152614d0c81614717565b9050919050565b60006020820190508181036000830152614d2c8161473a565b9050919050565b60006020820190508181036000830152614d4c8161475d565b9050919050565b60006020820190508181036000830152614d6c81614780565b9050919050565b60006020820190508181036000830152614d8c816147a3565b9050919050565b60006020820190508181036000830152614dac816147c6565b9050919050565b60006020820190508181036000830152614dcc816147e9565b9050919050565b60006020820190508181036000830152614dec8161480c565b9050919050565b60006020820190508181036000830152614e0c8161482f565b9050919050565b60006020820190508181036000830152614e2c81614852565b9050919050565b60006020820190508181036000830152614e4c81614875565b9050919050565b60006020820190508181036000830152614e6c81614898565b9050919050565b60006020820190508181036000830152614e8c816148de565b9050919050565b60006020820190508181036000830152614eac81614901565b9050919050565b60006020820190508181036000830152614ecc81614924565b9050919050565b60006020820190508181036000830152614eec81614947565b9050919050565b60006020820190508181036000830152614f0c8161496a565b9050919050565b60006020820190508181036000830152614f2c8161498d565b9050919050565b60006020820190508181036000830152614f4c816149b0565b9050919050565b60006020820190508181036000830152614f6c816149d3565b9050919050565b6000602082019050614f886000830184614a05565b92915050565b6000614f98614fa9565b9050614fa48282615299565b919050565b6000604051905090565b600067ffffffffffffffff821115614fce57614fcd61542f565b5b614fd78261547c565b9050602081019050919050565b600067ffffffffffffffff821115614fff57614ffe61542f565b5b6150088261547c565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006150a78261521b565b91506150b28361521b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156150e7576150e6615344565b5b828201905092915050565b60006150fd8261521b565b91506151088361521b565b92508261511857615117615373565b5b828204905092915050565b600061512e8261521b565b91506151398361521b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561517257615171615344565b5b828202905092915050565b60006151888261521b565b91506151938361521b565b9250828210156151a6576151a5615344565b5b828203905092915050565b60006151bc826151fb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615252578082015181840152602081019050615237565b83811115615261576000848401525b50505050565b6000600282049050600182168061527f57607f821691505b60208210811415615293576152926153a2565b5b50919050565b6152a28261547c565b810181811067ffffffffffffffff821117156152c1576152c061542f565b5b80604052505050565b60006152d58261521b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561530857615307615344565b5b600182019050919050565b600061531e8261521b565b91506153298361521b565b92508261533957615338615373565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f596f7520617265206e6f74206f6e2074686520416c6c6f77204c697374000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f576f756c64206578636565642050555243484153455f4c494d49540000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d696e742076616c7565206973206e6f7420676f6f6400000000000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f45544820616d6f756e74206973206e6f742073756666696369656e7400000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f5072652073616c65206973206163746976650000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f436f6e7472616374206973206e6f742061637469766500000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616e27742061646420746865206e756c6c2061646472657373000000000000600082015250565b7f436f6e7472616374206973206163746976650000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682072657365727665206c656674000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5072652053616c65206973206e6f742061637469766500000000000000000000600082015250565b7f50757263686173652065786365656473206d617820616c6c6f77656400000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000600082015250565b7f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73600082015250565b615c48816151b1565b8114615c5357600080fd5b50565b615c5f816151c3565b8114615c6a57600080fd5b50565b615c76816151cf565b8114615c8157600080fd5b50565b615c8d8161521b565b8114615c9857600080fd5b5056fea2646970667358221220d4d9b6525b81bab37e299b4c1f94c8f3a07692ef92deede86e3c913eddf1fb9664736f6c634300080500330000000000000000000000004fdd1b80f1feb116a9c5a2dc7d97ac259c0e4edb000000000000000000000000065b7911afbd60b9b6f26f9ab5990ffc2b1e81f6000000000000000000000000c2bc30b75acf15b2de5d988e38c606b6208e63c4

Deployed Bytecode

0x6080604052600436106102e45760003560e01c80637263cfe211610190578063b616d64c116100dc578063dbddb26a11610095578063eb8d24441161006f578063eb8d244414610b1f578063efef39a114610b4a578063f032554914610b66578063f2fde38b14610b7d576102e4565b8063dbddb26a14610a8c578063e6a5931e14610ab7578063e985e9c514610ae2576102e4565b8063b616d64c1461098b578063b88d4fde146109b6578063c5f9d931146109df578063c87b56dd146109fb578063cc47a40b14610a38578063d75e611014610a61576102e4565b8063973ea9d5116101495780639c3e72bd116101235780639c3e72bd146108e3578063a22cb4651461090e578063a51312c814610937578063b405522d14610960576102e4565b8063973ea9d51461086257806397b564891461088d57806398ca4b9a146108b8576102e4565b80637263cfe214610750578063736cf799146107795780638462151c146107a45780638d859f3e146107e15780638da5cb5b1461080c57806395d89b4114610837576102e4565b80632f745c591161024f5780634811c070116102085780636352211e116101e25780636352211e1461069657806369713163146106d357806370a08231146106fc578063715018a614610739576102e4565b80634811c070146106055780634f6ccce71461063057806355f804b31461066d576102e4565b80632f745c591461050b57806334918dfd146105485780633a0658921461055f5780633ccfd60b1461059c57806342842e0e146105b357806347540b31146105dc576102e4565b806318160ddd116102a157806318160ddd1461040b5780631a5722b2146104365780631c0a258e146104615780631f0234d81461048c57806323b872dd146104b75780632889e822146104e0576102e4565b806301c2dcf7146102e957806301ffc9a71461031457806306fdde0314610351578063081812fc1461037c578063095ea7b3146103b957806310969523146103e2575b600080fd5b3480156102f557600080fd5b506102fe610ba6565b60405161030b9190614af1565b60405180910390f35b34801561032057600080fd5b5061033b60048036038101906103369190614303565b610c34565b6040516103489190614ad6565b60405180910390f35b34801561035d57600080fd5b50610366610cae565b6040516103739190614af1565b60405180910390f35b34801561038857600080fd5b506103a3600480360381019061039e91906143a6565b610d40565b6040516103b09190614a4d565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db9190614276565b610dc5565b005b3480156103ee57600080fd5b506104096004803603810190610404919061435d565b610edd565b005b34801561041757600080fd5b50610420610f73565b60405161042d9190614f73565b60405180910390f35b34801561044257600080fd5b5061044b610f80565b6040516104589190614ad6565b60405180910390f35b34801561046d57600080fd5b50610476610f93565b6040516104839190614f73565b60405180910390f35b34801561049857600080fd5b506104a1610f98565b6040516104ae9190614ad6565b60405180910390f35b3480156104c357600080fd5b506104de60048036038101906104d99190614160565b610fab565b005b3480156104ec57600080fd5b506104f561100b565b6040516105029190614a4d565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d9190614276565b611031565b60405161053f9190614f73565b60405180910390f35b34801561055457600080fd5b5061055d6110d6565b005b34801561056b57600080fd5b50610586600480360381019061058191906140a0565b61117e565b6040516105939190614ad6565b60405180910390f35b3480156105a857600080fd5b506105b16111d4565b005b3480156105bf57600080fd5b506105da60048036038101906105d59190614160565b611346565b005b3480156105e857600080fd5b5061060360048036038101906105fe919061410d565b611366565b005b34801561061157600080fd5b5061061a6114aa565b6040516106279190614a4d565b60405180910390f35b34801561063c57600080fd5b50610657600480360381019061065291906143a6565b6114d0565b6040516106649190614f73565b60405180910390f35b34801561067957600080fd5b50610694600480360381019061068f919061435d565b611541565b005b3480156106a257600080fd5b506106bd60048036038101906106b891906143a6565b6115d7565b6040516106ca9190614a4d565b60405180910390f35b3480156106df57600080fd5b506106fa60048036038101906106f591906143a6565b611689565b005b34801561070857600080fd5b50610723600480360381019061071e91906140a0565b61170f565b6040516107309190614f73565b60405180910390f35b34801561074557600080fd5b5061074e6117c7565b005b34801561075c57600080fd5b50610777600480360381019061077291906142b6565b61184f565b005b34801561078557600080fd5b5061078e611ae5565b60405161079b9190614f73565b60405180910390f35b3480156107b057600080fd5b506107cb60048036038101906107c691906140a0565b611aeb565b6040516107d89190614ab4565b60405180910390f35b3480156107ed57600080fd5b506107f6611bf5565b6040516108039190614f73565b60405180910390f35b34801561081857600080fd5b50610821611c00565b60405161082e9190614a4d565b60405180910390f35b34801561084357600080fd5b5061084c611c29565b6040516108599190614af1565b60405180910390f35b34801561086e57600080fd5b50610877611cbb565b6040516108849190614a4d565b60405180910390f35b34801561089957600080fd5b506108a2611ce1565b6040516108af9190614f73565b60405180910390f35b3480156108c457600080fd5b506108cd611ce6565b6040516108da9190614f73565b60405180910390f35b3480156108ef57600080fd5b506108f8611ceb565b6040516109059190614af1565b60405180910390f35b34801561091a57600080fd5b5061093560048036038101906109309190614236565b611d79565b005b34801561094357600080fd5b5061095e600480360381019061095991906142b6565b611efa565b005b34801561096c57600080fd5b506109756120b2565b6040516109829190614f73565b60405180910390f35b34801561099757600080fd5b506109a06120b7565b6040516109ad9190614f73565b60405180910390f35b3480156109c257600080fd5b506109dd60048036038101906109d891906141b3565b6120bd565b005b6109f960048036038101906109f491906143a6565b61211f565b005b348015610a0757600080fd5b50610a226004803603810190610a1d91906143a6565b6124d7565b604051610a2f9190614af1565b60405180910390f35b348015610a4457600080fd5b50610a5f6004803603810190610a5a9190614276565b61257e565b005b348015610a6d57600080fd5b50610a76612701565b604051610a839190614f73565b60405180910390f35b348015610a9857600080fd5b50610aa1612706565b604051610aae9190614af1565b60405180910390f35b348015610ac357600080fd5b50610acc612794565b604051610ad99190614f73565b60405180910390f35b348015610aee57600080fd5b50610b096004803603810190610b0491906140cd565b61279a565b604051610b169190614ad6565b60405180910390f35b348015610b2b57600080fd5b50610b3461282e565b604051610b419190614ad6565b60405180910390f35b610b646004803603810190610b5f91906143a6565b612841565b005b348015610b7257600080fd5b50610b7b612aef565b005b348015610b8957600080fd5b50610ba46004803603810190610b9f91906140a0565b612b97565b005b600c8054610bb390615267565b80601f0160208091040260200160405190810160405280929190818152602001828054610bdf90615267565b8015610c2c5780601f10610c0157610100808354040283529160200191610c2c565b820191906000526020600020905b815481529060010190602001808311610c0f57829003601f168201915b505050505081565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ca75750610ca682612c8f565b5b9050919050565b606060018054610cbd90615267565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce990615267565b8015610d365780601f10610d0b57610100808354040283529160200191610d36565b820191906000526020600020905b815481529060010190602001808311610d1957829003601f168201915b5050505050905090565b6000610d4b82612d71565b610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8190614d73565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610dd0826115d7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3890614e53565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e60612ddd565b73ffffffffffffffffffffffffffffffffffffffff161480610e8f5750610e8e81610e89612ddd565b61279a565b5b610ece576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec590614c93565b60405180910390fd5b610ed88383612de5565b505050565b610ee5612ddd565b73ffffffffffffffffffffffffffffffffffffffff16610f03611c00565b73ffffffffffffffffffffffffffffffffffffffff1614610f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5090614d93565b60405180910390fd5b80600c9080519060200190610f6f929190613e5e565b5050565b6000600980549050905090565b601360029054906101000a900460ff1681565b600581565b601360019054906101000a900460ff1681565b610fbc610fb6612ddd565b82612e9e565b610ffb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff290614e93565b60405180910390fd5b611006838383612f7c565b505050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061103c8361170f565b821061107d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107490614b33565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6110de612ddd565b73ffffffffffffffffffffffffffffffffffffffff166110fc611c00565b73ffffffffffffffffffffffffffffffffffffffff1614611152576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114990614d93565b60405180910390fd5b601360009054906101000a900460ff1615601360006101000a81548160ff021916908315150217905550565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6111dc612ddd565b73ffffffffffffffffffffffffffffffffffffffff166111fa611c00565b73ffffffffffffffffffffffffffffffffffffffff1614611250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124790614d93565b60405180910390fd5b6000479050611299601360039054906101000a900473ffffffffffffffffffffffffffffffffffffffff166064600b8461128a9190615123565b61129491906150f2565b6131d8565b6112dd601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660646005846112ce9190615123565b6112d891906150f2565b6131d8565b611321601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660646003846113129190615123565b61131c91906150f2565b6131d8565b6113433360646051846113349190615123565b61133e91906150f2565b6131d8565b50565b611361838383604051806020016040528060008152506120bd565b505050565b61136e612ddd565b73ffffffffffffffffffffffffffffffffffffffff1661138c611c00565b73ffffffffffffffffffffffffffffffffffffffff16146113e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d990614d93565b60405180910390fd5b82601360036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050565b601360039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006114da610f73565b821061151b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151290614eb3565b60405180910390fd5b6009828154811061152f5761152e615400565b5b90600052602060002001549050919050565b611549612ddd565b73ffffffffffffffffffffffffffffffffffffffff16611567611c00565b73ffffffffffffffffffffffffffffffffffffffff16146115bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b490614d93565b60405180910390fd5b80600e90805190602001906115d3929190613e5e565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167790614cf3565b60405180910390fd5b80915050919050565b611691612ddd565b73ffffffffffffffffffffffffffffffffffffffff166116af611c00565b73ffffffffffffffffffffffffffffffffffffffff1614611705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fc90614d93565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177790614cd3565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117cf612ddd565b73ffffffffffffffffffffffffffffffffffffffff166117ed611c00565b73ffffffffffffffffffffffffffffffffffffffff1614611843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183a90614d93565b60405180910390fd5b61184d600061328f565b565b611857612ddd565b73ffffffffffffffffffffffffffffffffffffffff16611875611c00565b73ffffffffffffffffffffffffffffffffffffffff16146118cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c290614d93565b60405180910390fd5b60005b82829050811015611ae057600073ffffffffffffffffffffffffffffffffffffffff1683838381811061190457611903615400565b5b905060200201602081019061191991906140a0565b73ffffffffffffffffffffffffffffffffffffffff161415611970576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196790614db3565b60405180910390fd5b60016011600085858581811061198957611988615400565b5b905060200201602081019061199e91906140a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600060126000858585818110611a0857611a07615400565b5b9050602002016020810190611a1d91906140a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611a64576000611acc565b60126000848484818110611a7b57611a7a615400565b5b9050602002016020810190611a9091906140a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b508080611ad8906152ca565b9150506118ce565b505050565b600f5481565b60606000611af88361170f565b90506000811415611b5557600067ffffffffffffffff811115611b1e57611b1d61542f565b5b604051908082528060200260200182016040528015611b4c5781602001602082028036833780820191505090505b50915050611bf0565b60008167ffffffffffffffff811115611b7157611b7061542f565b5b604051908082528060200260200182016040528015611b9f5781602001602082028036833780820191505090505b50905060005b82811015611be957611bb78582611031565b828281518110611bca57611bc9615400565b5b6020026020010181815250508080611be1906152ca565b915050611ba5565b8193505050505b919050565b6661b31ab352c00081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611c3890615267565b80601f0160208091040260200160405190810160405280929190818152602001828054611c6490615267565b8015611cb15780601f10611c8657610100808354040283529160200191611cb1565b820191906000526020600020905b815481529060010190602001808311611c9457829003601f168201915b5050505050905090565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600581565b600381565b600d8054611cf890615267565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2490615267565b8015611d715780601f10611d4657610100808354040283529160200191611d71565b820191906000526020600020905b815481529060010190602001808311611d5457829003601f168201915b505050505081565b611d81612ddd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de690614bf3565b60405180910390fd5b8060066000611dfc612ddd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ea9612ddd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611eee9190614ad6565b60405180910390a35050565b611f02612ddd565b73ffffffffffffffffffffffffffffffffffffffff16611f20611c00565b73ffffffffffffffffffffffffffffffffffffffff1614611f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6d90614d93565b60405180910390fd5b60005b828290508110156120ad57600073ffffffffffffffffffffffffffffffffffffffff16838383818110611faf57611fae615400565b5b9050602002016020810190611fc491906140a0565b73ffffffffffffffffffffffffffffffffffffffff16141561201b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201290614db3565b60405180910390fd5b60006011600085858581811061203457612033615400565b5b905060200201602081019061204991906140a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806120a5906152ca565b915050611f79565b505050565b600b81565b6122b881565b6120ce6120c8612ddd565b83612e9e565b61210d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210490614e93565b60405180910390fd5b61211984848484613353565b50505050565b6002600b541415612165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215c90614f13565b60405180910390fd5b6002600b81905550601360009054906101000a900460ff16156121bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b490614dd3565b60405180910390fd5b601360019054906101000a900460ff1661220c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220390614ed3565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228f90614b13565b60405180910390fd5b6122b86122b5826122a7610f73565b6133af90919063ffffffff16565b11156122f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ed90614d13565b60405180910390fd5b600581111561233a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233190614f53565b60405180910390fd5b600581601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612387919061509c565b11156123c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bf90614ef3565b60405180910390fd5b34816661b31ab352c0006123dc9190615123565b111561241d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241490614c53565b60405180910390fd5b60005b818110156124cb576122b860105410156124b8576000601054905060016010600082825461244e919061509c565b925050819055506001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124a5919061509c565b925050819055506124b633826133c5565b505b80806124c3906152ca565b915050612420565b506001600b8190555050565b60606124e282612d71565b612521576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251890614e13565b60405180910390fd5b600061252b6133e3565b9050600081511161254b5760405180602001604052806000815250612576565b8061255584613475565b604051602001612566929190614a14565b6040516020818303038152906040525b915050919050565b612586612ddd565b73ffffffffffffffffffffffffffffffffffffffff166125a4611c00565b73ffffffffffffffffffffffffffffffffffffffff16146125fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f190614d93565b60405180910390fd5b60008111801561260c5750600f548111155b61264b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264290614e33565b60405180910390fd5b6122b8612656610f73565b1115612697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268e90614f33565b60405180910390fd5b60005b818110156126e157600060105490506001601060008282546126bc919061509c565b925050819055506126cd84826133c5565b5080806126d9906152ca565b91505061269a565b506126f781600f546135d690919063ffffffff16565b600f819055505050565b601481565b600e805461271390615267565b80601f016020809104026020016040519081016040528092919081815260200182805461273f90615267565b801561278c5780601f106127615761010080835404028352916020019161278c565b820191906000526020600020905b81548152906001019060200180831161276f57829003601f168201915b505050505081565b60105481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601360009054906101000a900460ff1681565b6002600b541415612887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287e90614f13565b60405180910390fd5b6002600b81905550601360009054906101000a900460ff166128de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d590614d53565b60405180910390fd5b601360019054906101000a900460ff161561292e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292590614cb3565b60405180910390fd5b6122b861294b8261293d610f73565b6133af90919063ffffffff16565b111561298c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298390614d13565b60405180910390fd5b60008111801561299d575060148111155b6129dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d390614bb3565b60405180910390fd5b6129f6816661b31ab352c0006135ec90919063ffffffff16565b341015612a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2f90614c33565b60405180910390fd5b6661b31ab352c0008134612a4c91906150f2565b14612a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8390614c13565b60405180910390fd5b60005b81811015612ae3576122b86010541015612ad05760006010549050600160106000828254612abd919061509c565b92505081905550612ace33826133c5565b505b8080612adb906152ca565b915050612a8f565b506001600b8190555050565b612af7612ddd565b73ffffffffffffffffffffffffffffffffffffffff16612b15611c00565b73ffffffffffffffffffffffffffffffffffffffff1614612b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6290614d93565b60405180910390fd5b601360019054906101000a900460ff1615601360016101000a81548160ff021916908315150217905550565b612b9f612ddd565b73ffffffffffffffffffffffffffffffffffffffff16612bbd611c00565b73ffffffffffffffffffffffffffffffffffffffff1614612c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0a90614d93565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7a90614b73565b60405180910390fd5b612c8c8161328f565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612d5a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612d6a5750612d6982613602565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612e58836115d7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612ea982612d71565b612ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612edf90614c73565b60405180910390fd5b6000612ef3836115d7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612f6257508373ffffffffffffffffffffffffffffffffffffffff16612f4a84610d40565b73ffffffffffffffffffffffffffffffffffffffff16145b80612f735750612f72818561279a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612f9c826115d7565b73ffffffffffffffffffffffffffffffffffffffff1614612ff2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe990614df3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305990614bd3565b60405180910390fd5b61306d83838361366c565b613078600082612de5565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130c8919061517d565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461311f919061509c565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600082905060008173ffffffffffffffffffffffffffffffffffffffff168360405161320390614a38565b60006040518083038185875af1925050503d8060008114613240576040519150601f19603f3d011682016040523d82523d6000602084013e613245565b606091505b5050905080613289576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328090614e73565b60405180910390fd5b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61335e848484612f7c565b61336a84848484613780565b6133a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133a090614b53565b60405180910390fd5b50505050565b600081836133bd919061509c565b905092915050565b6133df828260405180602001604052806000815250613917565b5050565b6060600e80546133f290615267565b80601f016020809104026020016040519081016040528092919081815260200182805461341e90615267565b801561346b5780601f106134405761010080835404028352916020019161346b565b820191906000526020600020905b81548152906001019060200180831161344e57829003601f168201915b5050505050905090565b606060008214156134bd576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506135d1565b600082905060005b600082146134ef5780806134d8906152ca565b915050600a826134e891906150f2565b91506134c5565b60008167ffffffffffffffff81111561350b5761350a61542f565b5b6040519080825280601f01601f19166020018201604052801561353d5781602001600182028036833780820191505090505b5090505b600085146135ca57600182613556919061517d565b9150600a856135659190615313565b6030613571919061509c565b60f81b81838151811061358757613586615400565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856135c391906150f2565b9450613541565b8093505050505b919050565b600081836135e4919061517d565b905092915050565b600081836135fa9190615123565b905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613677838383613972565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156136ba576136b581613977565b6136f9565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146136f8576136f783826139c0565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561373c5761373781613b2d565b61377b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461377a576137798282613bfe565b5b5b505050565b60006137a18473ffffffffffffffffffffffffffffffffffffffff16613c7d565b1561390a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026137ca612ddd565b8786866040518563ffffffff1660e01b81526004016137ec9493929190614a68565b602060405180830381600087803b15801561380657600080fd5b505af192505050801561383757506040513d601f19601f820116820180604052508101906138349190614330565b60015b6138ba573d8060008114613867576040519150601f19603f3d011682016040523d82523d6000602084013e61386c565b606091505b506000815114156138b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138a990614b53565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061390f565b600190505b949350505050565b6139218383613c90565b61392e6000848484613780565b61396d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161396490614b53565b60405180910390fd5b505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016139cd8461170f565b6139d7919061517d565b9050600060086000848152602001908152602001600020549050818114613abc576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050613b41919061517d565b90506000600a6000848152602001908152602001600020549050600060098381548110613b7157613b70615400565b5b906000526020600020015490508060098381548110613b9357613b92615400565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480613be257613be16153d1565b5b6001900381819060005260206000200160009055905550505050565b6000613c098361170f565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613cf790614d33565b60405180910390fd5b613d0981612d71565b15613d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d4090614b93565b60405180910390fd5b613d556000838361366c565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613da5919061509c565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613e6a90615267565b90600052602060002090601f016020900481019282613e8c5760008555613ed3565b82601f10613ea557805160ff1916838001178555613ed3565b82800160010185558215613ed3579182015b82811115613ed2578251825591602001919060010190613eb7565b5b509050613ee09190613ee4565b5090565b5b80821115613efd576000816000905550600101613ee5565b5090565b6000613f14613f0f84614fb3565b614f8e565b905082815260208101848484011115613f3057613f2f61546d565b5b613f3b848285615225565b509392505050565b6000613f56613f5184614fe4565b614f8e565b905082815260208101848484011115613f7257613f7161546d565b5b613f7d848285615225565b509392505050565b600081359050613f9481615c3f565b92915050565b60008083601f840112613fb057613faf615463565b5b8235905067ffffffffffffffff811115613fcd57613fcc61545e565b5b602083019150836020820283011115613fe957613fe8615468565b5b9250929050565b600081359050613fff81615c56565b92915050565b60008135905061401481615c6d565b92915050565b60008151905061402981615c6d565b92915050565b600082601f83011261404457614043615463565b5b8135614054848260208601613f01565b91505092915050565b600082601f83011261407257614071615463565b5b8135614082848260208601613f43565b91505092915050565b60008135905061409a81615c84565b92915050565b6000602082840312156140b6576140b5615477565b5b60006140c484828501613f85565b91505092915050565b600080604083850312156140e4576140e3615477565b5b60006140f285828601613f85565b925050602061410385828601613f85565b9150509250929050565b60008060006060848603121561412657614125615477565b5b600061413486828701613f85565b935050602061414586828701613f85565b925050604061415686828701613f85565b9150509250925092565b60008060006060848603121561417957614178615477565b5b600061418786828701613f85565b935050602061419886828701613f85565b92505060406141a98682870161408b565b9150509250925092565b600080600080608085870312156141cd576141cc615477565b5b60006141db87828801613f85565b94505060206141ec87828801613f85565b93505060406141fd8782880161408b565b925050606085013567ffffffffffffffff81111561421e5761421d615472565b5b61422a8782880161402f565b91505092959194509250565b6000806040838503121561424d5761424c615477565b5b600061425b85828601613f85565b925050602061426c85828601613ff0565b9150509250929050565b6000806040838503121561428d5761428c615477565b5b600061429b85828601613f85565b92505060206142ac8582860161408b565b9150509250929050565b600080602083850312156142cd576142cc615477565b5b600083013567ffffffffffffffff8111156142eb576142ea615472565b5b6142f785828601613f9a565b92509250509250929050565b60006020828403121561431957614318615477565b5b600061432784828501614005565b91505092915050565b60006020828403121561434657614345615477565b5b60006143548482850161401a565b91505092915050565b60006020828403121561437357614372615477565b5b600082013567ffffffffffffffff81111561439157614390615472565b5b61439d8482850161405d565b91505092915050565b6000602082840312156143bc576143bb615477565b5b60006143ca8482850161408b565b91505092915050565b60006143df83836149f6565b60208301905092915050565b6143f4816151b1565b82525050565b600061440582615025565b61440f8185615053565b935061441a83615015565b8060005b8381101561444b57815161443288826143d3565b975061443d83615046565b92505060018101905061441e565b5085935050505092915050565b614461816151c3565b82525050565b600061447282615030565b61447c8185615064565b935061448c818560208601615234565b6144958161547c565b840191505092915050565b60006144ab8261503b565b6144b58185615080565b93506144c5818560208601615234565b6144ce8161547c565b840191505092915050565b60006144e48261503b565b6144ee8185615091565b93506144fe818560208601615234565b80840191505092915050565b6000614517601d83615080565b91506145228261548d565b602082019050919050565b600061453a602b83615080565b9150614545826154b6565b604082019050919050565b600061455d603283615080565b915061456882615505565b604082019050919050565b6000614580602683615080565b915061458b82615554565b604082019050919050565b60006145a3601c83615080565b91506145ae826155a3565b602082019050919050565b60006145c6601b83615080565b91506145d1826155cc565b602082019050919050565b60006145e9602483615080565b91506145f4826155f5565b604082019050919050565b600061460c601983615080565b915061461782615644565b602082019050919050565b600061462f601683615080565b915061463a8261566d565b602082019050919050565b6000614652601f83615080565b915061465d82615696565b602082019050919050565b6000614675601c83615080565b9150614680826156bf565b602082019050919050565b6000614698602c83615080565b91506146a3826156e8565b604082019050919050565b60006146bb603883615080565b91506146c682615737565b604082019050919050565b60006146de601283615080565b91506146e982615786565b602082019050919050565b6000614701602a83615080565b915061470c826157af565b604082019050919050565b6000614724602983615080565b915061472f826157fe565b604082019050919050565b6000614747602083615080565b91506147528261584d565b602082019050919050565b600061476a602083615080565b915061477582615876565b602082019050919050565b600061478d601683615080565b91506147988261589f565b602082019050919050565b60006147b0602c83615080565b91506147bb826158c8565b604082019050919050565b60006147d3602083615080565b91506147de82615917565b602082019050919050565b60006147f6601a83615080565b915061480182615940565b602082019050919050565b6000614819601283615080565b915061482482615969565b602082019050919050565b600061483c602983615080565b915061484782615992565b604082019050919050565b600061485f602f83615080565b915061486a826159e1565b604082019050919050565b6000614882601783615080565b915061488d82615a30565b602082019050919050565b60006148a5602183615080565b91506148b082615a59565b604082019050919050565b60006148c8600083615075565b91506148d382615aa8565b600082019050919050565b60006148eb601083615080565b91506148f682615aab565b602082019050919050565b600061490e603183615080565b915061491982615ad4565b604082019050919050565b6000614931602c83615080565b915061493c82615b23565b604082019050919050565b6000614954601683615080565b915061495f82615b72565b602082019050919050565b6000614977601c83615080565b915061498282615b9b565b602082019050919050565b600061499a601f83615080565b91506149a582615bc4565b602082019050919050565b60006149bd601b83615080565b91506149c882615bed565b602082019050919050565b60006149e0602083615080565b91506149eb82615c16565b602082019050919050565b6149ff8161521b565b82525050565b614a0e8161521b565b82525050565b6000614a2082856144d9565b9150614a2c82846144d9565b91508190509392505050565b6000614a43826148bb565b9150819050919050565b6000602082019050614a6260008301846143eb565b92915050565b6000608082019050614a7d60008301876143eb565b614a8a60208301866143eb565b614a976040830185614a05565b8181036060830152614aa98184614467565b905095945050505050565b60006020820190508181036000830152614ace81846143fa565b905092915050565b6000602082019050614aeb6000830184614458565b92915050565b60006020820190508181036000830152614b0b81846144a0565b905092915050565b60006020820190508181036000830152614b2c8161450a565b9050919050565b60006020820190508181036000830152614b4c8161452d565b9050919050565b60006020820190508181036000830152614b6c81614550565b9050919050565b60006020820190508181036000830152614b8c81614573565b9050919050565b60006020820190508181036000830152614bac81614596565b9050919050565b60006020820190508181036000830152614bcc816145b9565b9050919050565b60006020820190508181036000830152614bec816145dc565b9050919050565b60006020820190508181036000830152614c0c816145ff565b9050919050565b60006020820190508181036000830152614c2c81614622565b9050919050565b60006020820190508181036000830152614c4c81614645565b9050919050565b60006020820190508181036000830152614c6c81614668565b9050919050565b60006020820190508181036000830152614c8c8161468b565b9050919050565b60006020820190508181036000830152614cac816146ae565b9050919050565b60006020820190508181036000830152614ccc816146d1565b9050919050565b60006020820190508181036000830152614cec816146f4565b9050919050565b60006020820190508181036000830152614d0c81614717565b9050919050565b60006020820190508181036000830152614d2c8161473a565b9050919050565b60006020820190508181036000830152614d4c8161475d565b9050919050565b60006020820190508181036000830152614d6c81614780565b9050919050565b60006020820190508181036000830152614d8c816147a3565b9050919050565b60006020820190508181036000830152614dac816147c6565b9050919050565b60006020820190508181036000830152614dcc816147e9565b9050919050565b60006020820190508181036000830152614dec8161480c565b9050919050565b60006020820190508181036000830152614e0c8161482f565b9050919050565b60006020820190508181036000830152614e2c81614852565b9050919050565b60006020820190508181036000830152614e4c81614875565b9050919050565b60006020820190508181036000830152614e6c81614898565b9050919050565b60006020820190508181036000830152614e8c816148de565b9050919050565b60006020820190508181036000830152614eac81614901565b9050919050565b60006020820190508181036000830152614ecc81614924565b9050919050565b60006020820190508181036000830152614eec81614947565b9050919050565b60006020820190508181036000830152614f0c8161496a565b9050919050565b60006020820190508181036000830152614f2c8161498d565b9050919050565b60006020820190508181036000830152614f4c816149b0565b9050919050565b60006020820190508181036000830152614f6c816149d3565b9050919050565b6000602082019050614f886000830184614a05565b92915050565b6000614f98614fa9565b9050614fa48282615299565b919050565b6000604051905090565b600067ffffffffffffffff821115614fce57614fcd61542f565b5b614fd78261547c565b9050602081019050919050565b600067ffffffffffffffff821115614fff57614ffe61542f565b5b6150088261547c565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006150a78261521b565b91506150b28361521b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156150e7576150e6615344565b5b828201905092915050565b60006150fd8261521b565b91506151088361521b565b92508261511857615117615373565b5b828204905092915050565b600061512e8261521b565b91506151398361521b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561517257615171615344565b5b828202905092915050565b60006151888261521b565b91506151938361521b565b9250828210156151a6576151a5615344565b5b828203905092915050565b60006151bc826151fb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615252578082015181840152602081019050615237565b83811115615261576000848401525b50505050565b6000600282049050600182168061527f57607f821691505b60208210811415615293576152926153a2565b5b50919050565b6152a28261547c565b810181811067ffffffffffffffff821117156152c1576152c061542f565b5b80604052505050565b60006152d58261521b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561530857615307615344565b5b600182019050919050565b600061531e8261521b565b91506153298361521b565b92508261533957615338615373565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f596f7520617265206e6f74206f6e2074686520416c6c6f77204c697374000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f576f756c64206578636565642050555243484153455f4c494d49540000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d696e742076616c7565206973206e6f7420676f6f6400000000000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f45544820616d6f756e74206973206e6f742073756666696369656e7400000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f5072652073616c65206973206163746976650000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f436f6e7472616374206973206e6f742061637469766500000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616e27742061646420746865206e756c6c2061646472657373000000000000600082015250565b7f436f6e7472616374206973206163746976650000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682072657365727665206c656674000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5072652053616c65206973206e6f742061637469766500000000000000000000600082015250565b7f50757263686173652065786365656473206d617820616c6c6f77656400000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000600082015250565b7f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73600082015250565b615c48816151b1565b8114615c5357600080fd5b50565b615c5f816151c3565b8114615c6a57600080fd5b50565b615c76816151cf565b8114615c8157600080fd5b50565b615c8d8161521b565b8114615c9857600080fd5b5056fea2646970667358221220d4d9b6525b81bab37e299b4c1f94c8f3a07692ef92deede86e3c913eddf1fb9664736f6c63430008050033

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

0000000000000000000000004fdd1b80f1feb116a9c5a2dc7d97ac259c0e4edb000000000000000000000000065b7911afbd60b9b6f26f9ab5990ffc2b1e81f6000000000000000000000000c2bc30b75acf15b2de5d988e38c606b6208e63c4

-----Decoded View---------------
Arg [0] : addr1 (address): 0x4fDd1B80F1FeB116a9C5a2dc7D97ac259C0e4Edb
Arg [1] : addr2 (address): 0x065b7911afBd60B9b6f26F9ab5990Ffc2b1e81F6
Arg [2] : addr3 (address): 0xC2BC30b75ACf15B2dE5D988e38c606b6208e63c4

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000004fdd1b80f1feb116a9c5a2dc7d97ac259c0e4edb
Arg [1] : 000000000000000000000000065b7911afbd60b9b6f26f9ab5990ffc2b1e81f6
Arg [2] : 000000000000000000000000c2bc30b75acf15b2de5d988e38c606b6208e63c4


Deployed Bytecode Sourcemap

59758:6926:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59870:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49146:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32147:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33840:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33363:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62276:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49949:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60477:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60676:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60435:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34899:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60587:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49530:343;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61774:89;;;;;;;;;;;;;:::i;:::-;;63297:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61069:366;;;;;;;;;;;;;:::i;:::-;;35346:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62534:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60519:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50139:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62169:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31754:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62412:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31397:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2686:94;;;;;;;;;;;;;:::i;:::-;;62891:398;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60201:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66136:545;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59988:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2035:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32316:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60553:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60138:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60730:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59914:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34220:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63411:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60621:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60089:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35602:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64571:1032;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32491:468;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65611:517;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60039:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59952:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60243:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34618:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60396:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63706:857;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61871:98;;;;;;;;;;;;;:::i;:::-;;2935:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59870:37;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49146:300::-;49293:4;49350:35;49335:50;;;:11;:50;;;;:103;;;;49402:36;49426:11;49402:23;:36::i;:::-;49335:103;49315:123;;49146:300;;;:::o;32147:100::-;32201:13;32234:5;32227:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32147:100;:::o;33840:308::-;33961:7;34008:16;34016:7;34008;:16::i;:::-;33986:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;34116:15;:24;34132:7;34116:24;;;;;;;;;;;;;;;;;;;;;34109:31;;33840:308;;;:::o;33363:411::-;33444:13;33460:23;33475:7;33460:14;:23::i;:::-;33444:39;;33508:5;33502:11;;:2;:11;;;;33494:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;33602:5;33586:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;33611:37;33628:5;33635:12;:10;:12::i;:::-;33611:16;:37::i;:::-;33586:62;33564:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;33745:21;33754:2;33758:7;33745:8;:21::i;:::-;33433:341;33363:411;;:::o;62276:128::-;2266:12;:10;:12::i;:::-;2255:23;;:7;:5;:7::i;:::-;:23;;;2247:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62382:14:::1;62361:18;:35;;;;;;;;;;;;:::i;:::-;;62276:128:::0;:::o;49949:113::-;50010:7;50037:10;:17;;;;50030:24;;49949:113;:::o;60477:33::-;;;;;;;;;;;;;:::o;60676:47::-;60722:1;60676:47;:::o;60435:35::-;;;;;;;;;;;;;:::o;34899:376::-;35108:41;35127:12;:10;:12::i;:::-;35141:7;35108:18;:41::i;:::-;35086:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;35239:28;35249:4;35255:2;35259:7;35239:9;:28::i;:::-;34899:376;;;:::o;60587:27::-;;;;;;;;;;;;;:::o;49530:343::-;49672:7;49727:23;49744:5;49727:16;:23::i;:::-;49719:5;:31;49697:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;49839:12;:19;49852:5;49839:19;;;;;;;;;;;;;;;:26;49859:5;49839:26;;;;;;;;;;;;49832:33;;49530:343;;;;:::o;61774:89::-;2266:12;:10;:12::i;:::-;2255:23;;:7;:5;:7::i;:::-;:23;;;2247:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61843:12:::1;;;;;;;;;;;61842:13;61827:12;;:28;;;;;;;;;;;;;;;;;;61774:89::o:0;63297:106::-;63355:4;63379:10;:16;63390:4;63379:16;;;;;;;;;;;;;;;;;;;;;;;;;63372:23;;63297:106;;;:::o;61069:366::-;2266:12;:10;:12::i;:::-;2255:23;;:7;:5;:7::i;:::-;:23;;;2247:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61117:13:::1;61133:21;61117:37;;61165:62;61177:12;;;;;;;;;;;61223:3;60667:2;61192:5;:27;;;;:::i;:::-;61191:35;;;;:::i;:::-;61165:11;:62::i;:::-;61238;61250:12;;;;;;;;;;;61296:3;60722:1;61265:5;:27;;;;:::i;:::-;61264:35;;;;:::i;:::-;61238:11;:62::i;:::-;61311;61323:12;;;;;;;;;;;61369:3;60776:1;61338:5;:27;;;;:::i;:::-;61337:35;;;;:::i;:::-;61311:11;:62::i;:::-;61384:43;61396:10;61423:3;61417:2;61409:5;:10;;;;:::i;:::-;61408:18;;;;:::i;:::-;61384:11;:43::i;:::-;61106:329;61069:366::o:0;35346:185::-;35484:39;35501:4;35507:2;35511:7;35484:39;;;;;;;;;;;;:16;:39::i;:::-;35346:185;;;:::o;62534:227::-;2266:12;:10;:12::i;:::-;2255:23;;:7;:5;:7::i;:::-;:23;;;2247:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62683:6:::1;62668:12;;:21;;;;;;;;;;;;;;;;;;62715:6;62700:12;;:21;;;;;;;;;;;;;;;;;;62747:6;62732:12;;:21;;;;;;;;;;;;;;;;;;62534:227:::0;;;:::o;60519:27::-;;;;;;;;;;;;;:::o;50139:320::-;50259:7;50314:30;:28;:30::i;:::-;50306:5;:38;50284:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;50434:10;50445:5;50434:17;;;;;;;;:::i;:::-;;;;;;;;;;50427:24;;50139:320;;;:::o;62169:99::-;2266:12;:10;:12::i;:::-;2255:23;;:7;:5;:7::i;:::-;:23;;;2247:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62252:8:::1;62241;:19;;;;;;;;;;;;:::i;:::-;;62169:99:::0;:::o;31754:326::-;31871:7;31896:13;31912:7;:16;31920:7;31912:16;;;;;;;;;;;;;;;;;;;;;31896:32;;31978:1;31961:19;;:5;:19;;;;31939:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;32067:5;32060:12;;;31754:326;;;:::o;62412:114::-;2266:12;:10;:12::i;:::-;2255:23;;:7;:5;:7::i;:::-;:23;;;2247:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62506:12:::1;62489:14;:29;;;;62412:114:::0;:::o;31397:295::-;31514:7;31578:1;31561:19;;:5;:19;;;;31539:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;31668:9;:16;31678:5;31668:16;;;;;;;;;;;;;;;;31661:23;;31397:295;;;:::o;2686:94::-;2266:12;:10;:12::i;:::-;2255:23;;:7;:5;:7::i;:::-;:23;;;2247:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2751:21:::1;2769:1;2751:9;:21::i;:::-;2686:94::o:0;62891:398::-;2266:12;:10;:12::i;:::-;2255:23;;:7;:5;:7::i;:::-;:23;;;2247:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62980:9:::1;62975:307;62999:9;;:16;;62995:1;:20;62975:307;;;63069:1;63045:26;;:9;;63055:1;63045:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;:26;;;;63037:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;63144:4;63117:10;:24;63128:9;;63138:1;63128:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;63117:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;63197:1;63163:17;:31;63181:9;;63191:1;63181:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;63163:31;;;;;;;;;;;;;;;;:35;:107;;63269:1;63163:107;;;63218:17;:31;63236:9;;63246:1;63236:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;63218:31;;;;;;;;;;;;;;;;63163:107;;63017:3;;;;;:::i;:::-;;;;62975:307;;;;62891:398:::0;;:::o;60201:35::-;;;;:::o;66136:545::-;66198:16;66232:18;66253:17;66263:6;66253:9;:17::i;:::-;66232:38;;66299:1;66285:10;:15;66281:393;;;66376:1;66362:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66355:23;;;;;66281:393;66411:23;66451:10;66437:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66411:51;;66477:13;66505:130;66529:10;66521:5;:18;66505:130;;;66585:34;66605:6;66613:5;66585:19;:34::i;:::-;66569:6;66576:5;66569:13;;;;;;;;:::i;:::-;;;;;;;:50;;;;;66541:7;;;;;:::i;:::-;;;;66505:130;;;66656:6;66649:13;;;;;66136:545;;;;:::o;59988:44::-;60020:12;59988:44;:::o;2035:87::-;2081:7;2108:6;;;;;;;;;;;2101:13;;2035:87;:::o;32316:104::-;32372:13;32405:7;32398:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32316:104;:::o;60553:27::-;;;;;;;;;;;;;:::o;60138:54::-;60191:1;60138:54;:::o;60730:47::-;60776:1;60730:47;:::o;59914:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34220:327::-;34367:12;:10;:12::i;:::-;34355:24;;:8;:24;;;;34347:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;34467:8;34422:18;:32;34441:12;:10;:12::i;:::-;34422:32;;;;;;;;;;;;;;;:42;34455:8;34422:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34520:8;34491:48;;34506:12;:10;:12::i;:::-;34491:48;;;34530:8;34491:48;;;;;;:::i;:::-;;;;;;;;34220:327;;:::o;63411:287::-;2266:12;:10;:12::i;:::-;2255:23;;:7;:5;:7::i;:::-;:23;;;2247:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63510:9:::1;63505:186;63529:9;;:16;;63525:1;:20;63505:186;;;63599:1;63575:26;;:9;;63585:1;63575:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;:26;;;;63567:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;63674:5;63647:10;:24;63658:9;;63668:1;63658:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;63647:24;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;63547:3;;;;;:::i;:::-;;;;63505:186;;;;63411:287:::0;;:::o;60621:48::-;60667:2;60621:48;:::o;60089:42::-;60127:4;60089:42;:::o;35602:365::-;35791:41;35810:12;:10;:12::i;:::-;35824:7;35791:18;:41::i;:::-;35769:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;35920:39;35934:4;35940:2;35944:7;35953:5;35920:13;:39::i;:::-;35602:365;;;;:::o;64571:1032::-;58751:1;59347:7;;:19;;59339:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;58751:1;59480:7;:18;;;;64673:12:::1;;;;;;;;;;;64672:13;64664:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;64727:15;;;;;;;;;;;64719:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;64788:10;:22;64799:10;64788:22;;;;;;;;;;;;;;;;;;;;;;;;;64780:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;60127:4;64863:33;64881:14;64863:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:48;;64855:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;60191:1;64966:14;:44;;64958:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;60191:1;65097:14;65065:17;:29;65083:10;65065:29;;;;;;;;;;;;;;;;:46;;;;:::i;:::-;:76;;65057:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;65220:9;65202:14;60020:12;65194:22;;;;:::i;:::-;:35;;65185:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;65280:9;65275:321;65299:14;65295:1;:18;65275:321;;;60127:4;65339:17;;:31;65335:250;;;65391:15;65409:17;;65391:35;;65466:1;65445:17;;:22;;;;;;;:::i;:::-;;;;;;;;65519:1;65486:17;:29;65504:10;65486:29;;;;;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;65539:30;65549:10;65561:7;65539:9;:30::i;:::-;65372:213;65335:250;65315:3;;;;;:::i;:::-;;;;65275:321;;;;58707:1:::0;59659:7;:22;;;;64571:1032;:::o;32491:468::-;32609:13;32662:16;32670:7;32662;:16::i;:::-;32640:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;32766:21;32790:10;:8;:10::i;:::-;32766:34;;32855:1;32837:7;32831:21;:25;:120;;;;;;;;;;;;;;;;;32900:7;32909:18;:7;:16;:18::i;:::-;32883:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32831:120;32811:140;;;32491:468;;;:::o;65611:517::-;2266:12;:10;:12::i;:::-;2255:23;;:7;:5;:7::i;:::-;:23;;;2247:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;65718:1:::1;65701:14;:18;:54;;;;;65741:14;;65723;:32;;65701:54;65693:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;60127:4;65802:13;:11;:13::i;:::-;:28;;65794:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;65880:9;65875:182;65899:14;65895:1;:18;65875:182;;;65935:15;65953:17;;65935:35;;66006:1;65985:17;;:22;;;;;;;:::i;:::-;;;;;;;;66022:23;66032:3;66037:7;66022:9;:23::i;:::-;65920:137;65915:3;;;;;:::i;:::-;;;;65875:182;;;;66086:34;66105:14;66086;;:18;;:34;;;;:::i;:::-;66069:14;:51;;;;65611:517:::0;;:::o;60039:43::-;60080:2;60039:43;:::o;59952:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;60243:32::-;;;;:::o;34618:214::-;34760:4;34789:18;:25;34808:5;34789:25;;;;;;;;;;;;;;;:35;34815:8;34789:35;;;;;;;;;;;;;;;;;;;;;;;;;34782:42;;34618:214;;;;:::o;60396:32::-;;;;;;;;;;;;;:::o;63706:857::-;58751:1;59347:7;;:19;;59339:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;58751:1;59480:7;:18;;;;63795:12:::1;;;;;;;;;;;63787:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;63854:15;;;;;;;;;;;63853:16;63845:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;60127:4;63911:33;63929:14;63911:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:48;;63903:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;64032:1;64015:14;:18;:54;;;;;60080:2;64037:14;:32;;64015:54;64007:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;64134:25;64144:14;60020:12;64134:9;;:25;;;;:::i;:::-;64121:9;:38;;64112:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;60020:12;64225:14;64213:9;:26;;;;:::i;:::-;:35;64205:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;64293:9;64288:268;64312:14;64308:1;:18;64288:268;;;60127:4;64352:17;;:31;64348:197;;;64404:15;64422:17;;64404:35;;64479:1;64458:17;;:22;;;;;;;:::i;:::-;;;;;;;;64499:30;64509:10;64521:7;64499:9;:30::i;:::-;64385:160;64348:197;64328:3;;;;;:::i;:::-;;;;64288:268;;;;58707:1:::0;59659:7;:22;;;;63706:857;:::o;61871:98::-;2266:12;:10;:12::i;:::-;2255:23;;:7;:5;:7::i;:::-;:23;;;2247:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61946:15:::1;;;;;;;;;;;61945:16;61927:15;;:34;;;;;;;;;;;;;;;;;;61871:98::o:0;2935:229::-;2266:12;:10;:12::i;:::-;2255:23;;:7;:5;:7::i;:::-;:23;;;2247:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3058:1:::1;3038:22;;:8;:22;;;;3016:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;3137:19;3147:8;3137:9;:19::i;:::-;2935:229:::0;:::o;30978:355::-;31125:4;31182:25;31167:40;;;:11;:40;;;;:105;;;;31239:33;31224:48;;;:11;:48;;;;31167:105;:158;;;;31289:36;31313:11;31289:23;:36::i;:::-;31167:158;31147:178;;30978:355;;;:::o;37514:127::-;37579:4;37631:1;37603:30;;:7;:16;37611:7;37603:16;;;;;;;;;;;;;;;;;;;;;:30;;;;37596:37;;37514:127;;;:::o;798:98::-;851:7;878:10;871:17;;798:98;:::o;41637:174::-;41739:2;41712:15;:24;41728:7;41712:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;41795:7;41791:2;41757:46;;41766:23;41781:7;41766:14;:23::i;:::-;41757:46;;;;;;;;;;;;41637:174;;:::o;37808:452::-;37937:4;37981:16;37989:7;37981;:16::i;:::-;37959:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;38080:13;38096:23;38111:7;38096:14;:23::i;:::-;38080:39;;38149:5;38138:16;;:7;:16;;;:64;;;;38195:7;38171:31;;:20;38183:7;38171:11;:20::i;:::-;:31;;;38138:64;:113;;;;38219:32;38236:5;38243:7;38219:16;:32::i;:::-;38138:113;38130:122;;;37808:452;;;;:::o;40904:615::-;41077:4;41050:31;;:23;41065:7;41050:14;:23::i;:::-;:31;;;41028:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;41183:1;41169:16;;:2;:16;;;;41161:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;41239:39;41260:4;41266:2;41270:7;41239:20;:39::i;:::-;41343:29;41360:1;41364:7;41343:8;:29::i;:::-;41404:1;41385:9;:15;41395:4;41385:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;41433:1;41416:9;:13;41426:2;41416:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;41464:2;41445:7;:16;41453:7;41445:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;41503:7;41499:2;41484:27;;41493:4;41484:27;;;;;;;;;;;;40904:615;;;:::o;61494:212::-;61563:18;61592:3;61563:33;;61608:12;61626:2;:7;;61641:5;61626:25;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61607:44;;;61670:7;61662:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;61552:154;;61494:212;;:::o;3172:173::-;3228:16;3247:6;;;;;;;;;;;3228:25;;3273:8;3264:6;;:17;;;;;;;;;;;;;;;;;;3328:8;3297:40;;3318:8;3297:40;;;;;;;;;;;;3217:128;3172:173;:::o;36849:352::-;37006:28;37016:4;37022:2;37026:7;37006:9;:28::i;:::-;37067:48;37090:4;37096:2;37100:7;37109:5;37067:22;:48::i;:::-;37045:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;36849:352;;;;:::o;6306:98::-;6364:7;6395:1;6391;:5;;;;:::i;:::-;6384:12;;6306:98;;;;:::o;38602:110::-;38678:26;38688:2;38692:7;38678:26;;;;;;;;;;;;:9;:26::i;:::-;38602:110;;:::o;62022:101::-;62074:13;62107:8;62100:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62022:101;:::o;26855:723::-;26911:13;27141:1;27132:5;:10;27128:53;;;27159:10;;;;;;;;;;;;;;;;;;;;;27128:53;27191:12;27206:5;27191:20;;27222:14;27247:78;27262:1;27254:4;:9;27247:78;;27280:8;;;;;:::i;:::-;;;;27311:2;27303:10;;;;;:::i;:::-;;;27247:78;;;27335:19;27367:6;27357:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27335:39;;27385:154;27401:1;27392:5;:10;27385:154;;27429:1;27419:11;;;;;:::i;:::-;;;27496:2;27488:5;:10;;;;:::i;:::-;27475:2;:24;;;;:::i;:::-;27462:39;;27445:6;27452;27445:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;27525:2;27516:11;;;;;:::i;:::-;;;27385:154;;;27563:6;27549:21;;;;;26855:723;;;;:::o;6687:98::-;6745:7;6776:1;6772;:5;;;;:::i;:::-;6765:12;;6687:98;;;;:::o;7044:::-;7102:7;7133:1;7129;:5;;;;:::i;:::-;7122:12;;7044:98;;;;:::o;29444:207::-;29574:4;29618:25;29603:40;;;:11;:40;;;;29596:47;;29444:207;;;:::o;51072:589::-;51216:45;51243:4;51249:2;51253:7;51216:26;:45::i;:::-;51294:1;51278:18;;:4;:18;;;51274:187;;;51313:40;51345:7;51313:31;:40::i;:::-;51274:187;;;51383:2;51375:10;;:4;:10;;;51371:90;;51402:47;51435:4;51441:7;51402:32;:47::i;:::-;51371:90;51274:187;51489:1;51475:16;;:2;:16;;;51471:183;;;51508:45;51545:7;51508:36;:45::i;:::-;51471:183;;;51581:4;51575:10;;:2;:10;;;51571:83;;51602:40;51630:2;51634:7;51602:27;:40::i;:::-;51571:83;51471:183;51072:589;;;:::o;42376:980::-;42531:4;42552:15;:2;:13;;;:15::i;:::-;42548:801;;;42621:2;42605:36;;;42664:12;:10;:12::i;:::-;42699:4;42726:7;42756:5;42605:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42584:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42980:1;42963:6;:13;:18;42959:320;;;43006:108;;;;;;;;;;:::i;:::-;;;;;;;;42959:320;43229:6;43223:13;43214:6;43210:2;43206:15;43199:38;42584:710;42854:41;;;42844:51;;;:6;:51;;;;42837:58;;;;;42548:801;43333:4;43326:11;;42376:980;;;;;;;:::o;38939:321::-;39069:18;39075:2;39079:7;39069:5;:18::i;:::-;39120:54;39151:1;39155:2;39159:7;39168:5;39120:22;:54::i;:::-;39098:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;38939:321;;;:::o;43928:126::-;;;;:::o;52384:164::-;52488:10;:17;;;;52461:15;:24;52477:7;52461:24;;;;;;;;;;;:44;;;;52516:10;52532:7;52516:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52384:164;:::o;53175:1002::-;53455:22;53505:1;53480:22;53497:4;53480:16;:22::i;:::-;:26;;;;:::i;:::-;53455:51;;53517:18;53538:17;:26;53556:7;53538:26;;;;;;;;;;;;53517:47;;53685:14;53671:10;:28;53667:328;;53716:19;53738:12;:18;53751:4;53738:18;;;;;;;;;;;;;;;:34;53757:14;53738:34;;;;;;;;;;;;53716:56;;53822:11;53789:12;:18;53802:4;53789:18;;;;;;;;;;;;;;;:30;53808:10;53789:30;;;;;;;;;;;:44;;;;53939:10;53906:17;:30;53924:11;53906:30;;;;;;;;;;;:43;;;;53701:294;53667:328;54091:17;:26;54109:7;54091:26;;;;;;;;;;;54084:33;;;54135:12;:18;54148:4;54135:18;;;;;;;;;;;;;;;:34;54154:14;54135:34;;;;;;;;;;;54128:41;;;53270:907;;53175:1002;;:::o;54472:1079::-;54725:22;54770:1;54750:10;:17;;;;:21;;;;:::i;:::-;54725:46;;54782:18;54803:15;:24;54819:7;54803:24;;;;;;;;;;;;54782:45;;55154:19;55176:10;55187:14;55176:26;;;;;;;;:::i;:::-;;;;;;;;;;55154:48;;55240:11;55215:10;55226;55215:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;55351:10;55320:15;:28;55336:11;55320:28;;;;;;;;;;;:41;;;;55492:15;:24;55508:7;55492:24;;;;;;;;;;;55485:31;;;55527:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;54543:1008;;;54472:1079;:::o;51962:221::-;52047:14;52064:20;52081:2;52064:16;:20::i;:::-;52047:37;;52122:7;52095:12;:16;52108:2;52095:16;;;;;;;;;;;;;;;:24;52112:6;52095:24;;;;;;;;;;;:34;;;;52169:6;52140:17;:26;52158:7;52140:26;;;;;;;;;;;:35;;;;52036:147;51962:221;;:::o;18744:387::-;18804:4;19012:12;19079:7;19067:20;19059:28;;19122:1;19115:4;:8;19108:15;;;18744:387;;;:::o;39596:382::-;39690:1;39676:16;;:2;:16;;;;39668:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;39749:16;39757:7;39749;:16::i;:::-;39748:17;39740:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;39811:45;39840:1;39844:2;39848:7;39811:20;:45::i;:::-;39886:1;39869:9;:13;39879:2;39869:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;39917:2;39898:7;:16;39906:7;39898:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;39962:7;39958:2;39937:33;;39954:1;39937:33;;;;;;;;;;;;39596:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;280:79;;:::i;:::-;249:2;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:2;;;698:79;;:::i;:::-;667:2;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;893:87;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:2;;1144:79;;:::i;:::-;1103:2;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:2;;;1309:79;;:::i;:::-;1273:2;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:2;;;1484:79;;:::i;:::-;1437:2;1093:478;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1626:84;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1767:86;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1921:79;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:2;;2131:79;;:::i;:::-;2090:2;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:2;;2490:79;;:::i;:::-;2449:2;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2775:87;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:2;;;2982:79;;:::i;:::-;2944:2;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2934:263;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:2;;;3334:79;;:::i;:::-;3296:2;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3286:391;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:2;;;3831:79;;:::i;:::-;3793:2;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3783:519;;;;;:::o;4308:619::-;4385:6;4393;4401;4450:2;4438:9;4429:7;4425:23;4421:32;4418:2;;;4456:79;;:::i;:::-;4418:2;4576:1;4601:53;4646:7;4637:6;4626:9;4622:22;4601:53;:::i;:::-;4591:63;;4547:117;4703:2;4729:53;4774:7;4765:6;4754:9;4750:22;4729:53;:::i;:::-;4719:63;;4674:118;4831:2;4857:53;4902:7;4893:6;4882:9;4878:22;4857:53;:::i;:::-;4847:63;;4802:118;4408:519;;;;;:::o;4933:943::-;5028:6;5036;5044;5052;5101:3;5089:9;5080:7;5076:23;5072:33;5069:2;;;5108:79;;:::i;:::-;5069:2;5228:1;5253:53;5298:7;5289:6;5278:9;5274:22;5253:53;:::i;:::-;5243:63;;5199:117;5355:2;5381:53;5426:7;5417:6;5406:9;5402:22;5381:53;:::i;:::-;5371:63;;5326:118;5483:2;5509:53;5554:7;5545:6;5534:9;5530:22;5509:53;:::i;:::-;5499:63;;5454:118;5639:2;5628:9;5624:18;5611:32;5670:18;5662:6;5659:30;5656:2;;;5692:79;;:::i;:::-;5656:2;5797:62;5851:7;5842:6;5831:9;5827:22;5797:62;:::i;:::-;5787:72;;5582:287;5059:817;;;;;;;:::o;5882:468::-;5947:6;5955;6004:2;5992:9;5983:7;5979:23;5975:32;5972:2;;;6010:79;;:::i;:::-;5972:2;6130:1;6155:53;6200:7;6191:6;6180:9;6176:22;6155:53;:::i;:::-;6145:63;;6101:117;6257:2;6283:50;6325:7;6316:6;6305:9;6301:22;6283:50;:::i;:::-;6273:60;;6228:115;5962:388;;;;;:::o;6356:474::-;6424:6;6432;6481:2;6469:9;6460:7;6456:23;6452:32;6449:2;;;6487:79;;:::i;:::-;6449:2;6607:1;6632:53;6677:7;6668:6;6657:9;6653:22;6632:53;:::i;:::-;6622:63;;6578:117;6734:2;6760:53;6805:7;6796:6;6785:9;6781:22;6760:53;:::i;:::-;6750:63;;6705:118;6439:391;;;;;:::o;6836:559::-;6922:6;6930;6979:2;6967:9;6958:7;6954:23;6950:32;6947:2;;;6985:79;;:::i;:::-;6947:2;7133:1;7122:9;7118:17;7105:31;7163:18;7155:6;7152:30;7149:2;;;7185:79;;:::i;:::-;7149:2;7298:80;7370:7;7361:6;7350:9;7346:22;7298:80;:::i;:::-;7280:98;;;;7076:312;6937:458;;;;;:::o;7401:327::-;7459:6;7508:2;7496:9;7487:7;7483:23;7479:32;7476:2;;;7514:79;;:::i;:::-;7476:2;7634:1;7659:52;7703:7;7694:6;7683:9;7679:22;7659:52;:::i;:::-;7649:62;;7605:116;7466:262;;;;:::o;7734:349::-;7803:6;7852:2;7840:9;7831:7;7827:23;7823:32;7820:2;;;7858:79;;:::i;:::-;7820:2;7978:1;8003:63;8058:7;8049:6;8038:9;8034:22;8003:63;:::i;:::-;7993:73;;7949:127;7810:273;;;;:::o;8089:509::-;8158:6;8207:2;8195:9;8186:7;8182:23;8178:32;8175:2;;;8213:79;;:::i;:::-;8175:2;8361:1;8350:9;8346:17;8333:31;8391:18;8383:6;8380:30;8377:2;;;8413:79;;:::i;:::-;8377:2;8518:63;8573:7;8564:6;8553:9;8549:22;8518:63;:::i;:::-;8508:73;;8304:287;8165:433;;;;:::o;8604:329::-;8663:6;8712:2;8700:9;8691:7;8687:23;8683:32;8680:2;;;8718:79;;:::i;:::-;8680:2;8838:1;8863:53;8908:7;8899:6;8888:9;8884:22;8863:53;:::i;:::-;8853:63;;8809:117;8670:263;;;;:::o;8939:179::-;9008:10;9029:46;9071:3;9063:6;9029:46;:::i;:::-;9107:4;9102:3;9098:14;9084:28;;9019:99;;;;:::o;9124:118::-;9211:24;9229:5;9211:24;:::i;:::-;9206:3;9199:37;9189:53;;:::o;9278:732::-;9397:3;9426:54;9474:5;9426:54;:::i;:::-;9496:86;9575:6;9570:3;9496:86;:::i;:::-;9489:93;;9606:56;9656:5;9606:56;:::i;:::-;9685:7;9716:1;9701:284;9726:6;9723:1;9720:13;9701:284;;;9802:6;9796:13;9829:63;9888:3;9873:13;9829:63;:::i;:::-;9822:70;;9915:60;9968:6;9915:60;:::i;:::-;9905:70;;9761:224;9748:1;9745;9741:9;9736:14;;9701:284;;;9705:14;10001:3;9994:10;;9402:608;;;;;;;:::o;10016:109::-;10097:21;10112:5;10097:21;:::i;:::-;10092:3;10085:34;10075:50;;:::o;10131:360::-;10217:3;10245:38;10277:5;10245:38;:::i;:::-;10299:70;10362:6;10357:3;10299:70;:::i;:::-;10292:77;;10378:52;10423:6;10418:3;10411:4;10404:5;10400:16;10378:52;:::i;:::-;10455:29;10477:6;10455:29;:::i;:::-;10450:3;10446:39;10439:46;;10221:270;;;;;:::o;10497:364::-;10585:3;10613:39;10646:5;10613:39;:::i;:::-;10668:71;10732:6;10727:3;10668:71;:::i;:::-;10661:78;;10748:52;10793:6;10788:3;10781:4;10774:5;10770:16;10748:52;:::i;:::-;10825:29;10847:6;10825:29;:::i;:::-;10820:3;10816:39;10809:46;;10589:272;;;;;:::o;10867:377::-;10973:3;11001:39;11034:5;11001:39;:::i;:::-;11056:89;11138:6;11133:3;11056:89;:::i;:::-;11049:96;;11154:52;11199:6;11194:3;11187:4;11180:5;11176:16;11154:52;:::i;:::-;11231:6;11226:3;11222:16;11215:23;;10977:267;;;;;:::o;11250:366::-;11392:3;11413:67;11477:2;11472:3;11413:67;:::i;:::-;11406:74;;11489:93;11578:3;11489:93;:::i;:::-;11607:2;11602:3;11598:12;11591:19;;11396:220;;;:::o;11622:366::-;11764:3;11785:67;11849:2;11844:3;11785:67;:::i;:::-;11778:74;;11861:93;11950:3;11861:93;:::i;:::-;11979:2;11974:3;11970:12;11963:19;;11768:220;;;:::o;11994:366::-;12136:3;12157:67;12221:2;12216:3;12157:67;:::i;:::-;12150:74;;12233:93;12322:3;12233:93;:::i;:::-;12351:2;12346:3;12342:12;12335:19;;12140:220;;;:::o;12366:366::-;12508:3;12529:67;12593:2;12588:3;12529:67;:::i;:::-;12522:74;;12605:93;12694:3;12605:93;:::i;:::-;12723:2;12718:3;12714:12;12707:19;;12512:220;;;:::o;12738:366::-;12880:3;12901:67;12965:2;12960:3;12901:67;:::i;:::-;12894:74;;12977:93;13066:3;12977:93;:::i;:::-;13095:2;13090:3;13086:12;13079:19;;12884:220;;;:::o;13110:366::-;13252:3;13273:67;13337:2;13332:3;13273:67;:::i;:::-;13266:74;;13349:93;13438:3;13349:93;:::i;:::-;13467:2;13462:3;13458:12;13451:19;;13256:220;;;:::o;13482:366::-;13624:3;13645:67;13709:2;13704:3;13645:67;:::i;:::-;13638:74;;13721:93;13810:3;13721:93;:::i;:::-;13839:2;13834:3;13830:12;13823:19;;13628:220;;;:::o;13854:366::-;13996:3;14017:67;14081:2;14076:3;14017:67;:::i;:::-;14010:74;;14093:93;14182:3;14093:93;:::i;:::-;14211:2;14206:3;14202:12;14195:19;;14000:220;;;:::o;14226:366::-;14368:3;14389:67;14453:2;14448:3;14389:67;:::i;:::-;14382:74;;14465:93;14554:3;14465:93;:::i;:::-;14583:2;14578:3;14574:12;14567:19;;14372:220;;;:::o;14598:366::-;14740:3;14761:67;14825:2;14820:3;14761:67;:::i;:::-;14754:74;;14837:93;14926:3;14837:93;:::i;:::-;14955:2;14950:3;14946:12;14939:19;;14744:220;;;:::o;14970:366::-;15112:3;15133:67;15197:2;15192:3;15133:67;:::i;:::-;15126:74;;15209:93;15298:3;15209:93;:::i;:::-;15327:2;15322:3;15318:12;15311:19;;15116:220;;;:::o;15342:366::-;15484:3;15505:67;15569:2;15564:3;15505:67;:::i;:::-;15498:74;;15581:93;15670:3;15581:93;:::i;:::-;15699:2;15694:3;15690:12;15683:19;;15488:220;;;:::o;15714:366::-;15856:3;15877:67;15941:2;15936:3;15877:67;:::i;:::-;15870:74;;15953:93;16042:3;15953:93;:::i;:::-;16071:2;16066:3;16062:12;16055:19;;15860:220;;;:::o;16086:366::-;16228:3;16249:67;16313:2;16308:3;16249:67;:::i;:::-;16242:74;;16325:93;16414:3;16325:93;:::i;:::-;16443:2;16438:3;16434:12;16427:19;;16232:220;;;:::o;16458:366::-;16600:3;16621:67;16685:2;16680:3;16621:67;:::i;:::-;16614:74;;16697:93;16786:3;16697:93;:::i;:::-;16815:2;16810:3;16806:12;16799:19;;16604:220;;;:::o;16830:366::-;16972:3;16993:67;17057:2;17052:3;16993:67;:::i;:::-;16986:74;;17069:93;17158:3;17069:93;:::i;:::-;17187:2;17182:3;17178:12;17171:19;;16976:220;;;:::o;17202:366::-;17344:3;17365:67;17429:2;17424:3;17365:67;:::i;:::-;17358:74;;17441:93;17530:3;17441:93;:::i;:::-;17559:2;17554:3;17550:12;17543:19;;17348:220;;;:::o;17574:366::-;17716:3;17737:67;17801:2;17796:3;17737:67;:::i;:::-;17730:74;;17813:93;17902:3;17813:93;:::i;:::-;17931:2;17926:3;17922:12;17915:19;;17720:220;;;:::o;17946:366::-;18088:3;18109:67;18173:2;18168:3;18109:67;:::i;:::-;18102:74;;18185:93;18274:3;18185:93;:::i;:::-;18303:2;18298:3;18294:12;18287:19;;18092:220;;;:::o;18318:366::-;18460:3;18481:67;18545:2;18540:3;18481:67;:::i;:::-;18474:74;;18557:93;18646:3;18557:93;:::i;:::-;18675:2;18670:3;18666:12;18659:19;;18464:220;;;:::o;18690:366::-;18832:3;18853:67;18917:2;18912:3;18853:67;:::i;:::-;18846:74;;18929:93;19018:3;18929:93;:::i;:::-;19047:2;19042:3;19038:12;19031:19;;18836:220;;;:::o;19062:366::-;19204:3;19225:67;19289:2;19284:3;19225:67;:::i;:::-;19218:74;;19301:93;19390:3;19301:93;:::i;:::-;19419:2;19414:3;19410:12;19403:19;;19208:220;;;:::o;19434:366::-;19576:3;19597:67;19661:2;19656:3;19597:67;:::i;:::-;19590:74;;19673:93;19762:3;19673:93;:::i;:::-;19791:2;19786:3;19782:12;19775:19;;19580:220;;;:::o;19806:366::-;19948:3;19969:67;20033:2;20028:3;19969:67;:::i;:::-;19962:74;;20045:93;20134:3;20045:93;:::i;:::-;20163:2;20158:3;20154:12;20147:19;;19952:220;;;:::o;20178:366::-;20320:3;20341:67;20405:2;20400:3;20341:67;:::i;:::-;20334:74;;20417:93;20506:3;20417:93;:::i;:::-;20535:2;20530:3;20526:12;20519:19;;20324:220;;;:::o;20550:366::-;20692:3;20713:67;20777:2;20772:3;20713:67;:::i;:::-;20706:74;;20789:93;20878:3;20789:93;:::i;:::-;20907:2;20902:3;20898:12;20891:19;;20696:220;;;:::o;20922:366::-;21064:3;21085:67;21149:2;21144:3;21085:67;:::i;:::-;21078:74;;21161:93;21250:3;21161:93;:::i;:::-;21279:2;21274:3;21270:12;21263:19;;21068:220;;;:::o;21294:398::-;21453:3;21474:83;21555:1;21550:3;21474:83;:::i;:::-;21467:90;;21566:93;21655:3;21566:93;:::i;:::-;21684:1;21679:3;21675:11;21668:18;;21457:235;;;:::o;21698:366::-;21840:3;21861:67;21925:2;21920:3;21861:67;:::i;:::-;21854:74;;21937:93;22026:3;21937:93;:::i;:::-;22055:2;22050:3;22046:12;22039:19;;21844:220;;;:::o;22070:366::-;22212:3;22233:67;22297:2;22292:3;22233:67;:::i;:::-;22226:74;;22309:93;22398:3;22309:93;:::i;:::-;22427:2;22422:3;22418:12;22411:19;;22216:220;;;:::o;22442:366::-;22584:3;22605:67;22669:2;22664:3;22605:67;:::i;:::-;22598:74;;22681:93;22770:3;22681:93;:::i;:::-;22799:2;22794:3;22790:12;22783:19;;22588:220;;;:::o;22814:366::-;22956:3;22977:67;23041:2;23036:3;22977:67;:::i;:::-;22970:74;;23053:93;23142:3;23053:93;:::i;:::-;23171:2;23166:3;23162:12;23155:19;;22960:220;;;:::o;23186:366::-;23328:3;23349:67;23413:2;23408:3;23349:67;:::i;:::-;23342:74;;23425:93;23514:3;23425:93;:::i;:::-;23543:2;23538:3;23534:12;23527:19;;23332:220;;;:::o;23558:366::-;23700:3;23721:67;23785:2;23780:3;23721:67;:::i;:::-;23714:74;;23797:93;23886:3;23797:93;:::i;:::-;23915:2;23910:3;23906:12;23899:19;;23704:220;;;:::o;23930:366::-;24072:3;24093:67;24157:2;24152:3;24093:67;:::i;:::-;24086:74;;24169:93;24258:3;24169:93;:::i;:::-;24287:2;24282:3;24278:12;24271:19;;24076:220;;;:::o;24302:366::-;24444:3;24465:67;24529:2;24524:3;24465:67;:::i;:::-;24458:74;;24541:93;24630:3;24541:93;:::i;:::-;24659:2;24654:3;24650:12;24643:19;;24448:220;;;:::o;24674:108::-;24751:24;24769:5;24751:24;:::i;:::-;24746:3;24739:37;24729:53;;:::o;24788:118::-;24875:24;24893:5;24875:24;:::i;:::-;24870:3;24863:37;24853:53;;:::o;24912:435::-;25092:3;25114:95;25205:3;25196:6;25114:95;:::i;:::-;25107:102;;25226:95;25317:3;25308:6;25226:95;:::i;:::-;25219:102;;25338:3;25331:10;;25096:251;;;;;:::o;25353:379::-;25537:3;25559:147;25702:3;25559:147;:::i;:::-;25552:154;;25723:3;25716:10;;25541:191;;;:::o;25738:222::-;25831:4;25869:2;25858:9;25854:18;25846:26;;25882:71;25950:1;25939:9;25935:17;25926:6;25882:71;:::i;:::-;25836:124;;;;:::o;25966:640::-;26161:4;26199:3;26188:9;26184:19;26176:27;;26213:71;26281:1;26270:9;26266:17;26257:6;26213:71;:::i;:::-;26294:72;26362:2;26351:9;26347:18;26338:6;26294:72;:::i;:::-;26376;26444:2;26433:9;26429:18;26420:6;26376:72;:::i;:::-;26495:9;26489:4;26485:20;26480:2;26469:9;26465:18;26458:48;26523:76;26594:4;26585:6;26523:76;:::i;:::-;26515:84;;26166:440;;;;;;;:::o;26612:373::-;26755:4;26793:2;26782:9;26778:18;26770:26;;26842:9;26836:4;26832:20;26828:1;26817:9;26813:17;26806:47;26870:108;26973:4;26964:6;26870:108;:::i;:::-;26862:116;;26760:225;;;;:::o;26991:210::-;27078:4;27116:2;27105:9;27101:18;27093:26;;27129:65;27191:1;27180:9;27176:17;27167:6;27129:65;:::i;:::-;27083:118;;;;:::o;27207:313::-;27320:4;27358:2;27347:9;27343:18;27335:26;;27407:9;27401:4;27397:20;27393:1;27382:9;27378:17;27371:47;27435:78;27508:4;27499:6;27435:78;:::i;:::-;27427:86;;27325:195;;;;:::o;27526:419::-;27692:4;27730:2;27719:9;27715:18;27707:26;;27779:9;27773:4;27769:20;27765:1;27754:9;27750:17;27743:47;27807:131;27933:4;27807:131;:::i;:::-;27799:139;;27697:248;;;:::o;27951:419::-;28117:4;28155:2;28144:9;28140:18;28132:26;;28204:9;28198:4;28194:20;28190:1;28179:9;28175:17;28168:47;28232:131;28358:4;28232:131;:::i;:::-;28224:139;;28122:248;;;:::o;28376:419::-;28542:4;28580:2;28569:9;28565:18;28557:26;;28629:9;28623:4;28619:20;28615:1;28604:9;28600:17;28593:47;28657:131;28783:4;28657:131;:::i;:::-;28649:139;;28547:248;;;:::o;28801:419::-;28967:4;29005:2;28994:9;28990:18;28982:26;;29054:9;29048:4;29044:20;29040:1;29029:9;29025:17;29018:47;29082:131;29208:4;29082:131;:::i;:::-;29074:139;;28972:248;;;:::o;29226:419::-;29392:4;29430:2;29419:9;29415:18;29407:26;;29479:9;29473:4;29469:20;29465:1;29454:9;29450:17;29443:47;29507:131;29633:4;29507:131;:::i;:::-;29499:139;;29397:248;;;:::o;29651:419::-;29817:4;29855:2;29844:9;29840:18;29832:26;;29904:9;29898:4;29894:20;29890:1;29879:9;29875:17;29868:47;29932:131;30058:4;29932:131;:::i;:::-;29924:139;;29822:248;;;:::o;30076:419::-;30242:4;30280:2;30269:9;30265:18;30257:26;;30329:9;30323:4;30319:20;30315:1;30304:9;30300:17;30293:47;30357:131;30483:4;30357:131;:::i;:::-;30349:139;;30247:248;;;:::o;30501:419::-;30667:4;30705:2;30694:9;30690:18;30682:26;;30754:9;30748:4;30744:20;30740:1;30729:9;30725:17;30718:47;30782:131;30908:4;30782:131;:::i;:::-;30774:139;;30672:248;;;:::o;30926:419::-;31092:4;31130:2;31119:9;31115:18;31107:26;;31179:9;31173:4;31169:20;31165:1;31154:9;31150:17;31143:47;31207:131;31333:4;31207:131;:::i;:::-;31199:139;;31097:248;;;:::o;31351:419::-;31517:4;31555:2;31544:9;31540:18;31532:26;;31604:9;31598:4;31594:20;31590:1;31579:9;31575:17;31568:47;31632:131;31758:4;31632:131;:::i;:::-;31624:139;;31522:248;;;:::o;31776:419::-;31942:4;31980:2;31969:9;31965:18;31957:26;;32029:9;32023:4;32019:20;32015:1;32004:9;32000:17;31993:47;32057:131;32183:4;32057:131;:::i;:::-;32049:139;;31947:248;;;:::o;32201:419::-;32367:4;32405:2;32394:9;32390:18;32382:26;;32454:9;32448:4;32444:20;32440:1;32429:9;32425:17;32418:47;32482:131;32608:4;32482:131;:::i;:::-;32474:139;;32372:248;;;:::o;32626:419::-;32792:4;32830:2;32819:9;32815:18;32807:26;;32879:9;32873:4;32869:20;32865:1;32854:9;32850:17;32843:47;32907:131;33033:4;32907:131;:::i;:::-;32899:139;;32797:248;;;:::o;33051:419::-;33217:4;33255:2;33244:9;33240:18;33232:26;;33304:9;33298:4;33294:20;33290:1;33279:9;33275:17;33268:47;33332:131;33458:4;33332:131;:::i;:::-;33324:139;;33222:248;;;:::o;33476:419::-;33642:4;33680:2;33669:9;33665:18;33657:26;;33729:9;33723:4;33719:20;33715:1;33704:9;33700:17;33693:47;33757:131;33883:4;33757:131;:::i;:::-;33749:139;;33647:248;;;:::o;33901:419::-;34067:4;34105:2;34094:9;34090:18;34082:26;;34154:9;34148:4;34144:20;34140:1;34129:9;34125:17;34118:47;34182:131;34308:4;34182:131;:::i;:::-;34174:139;;34072:248;;;:::o;34326:419::-;34492:4;34530:2;34519:9;34515:18;34507:26;;34579:9;34573:4;34569:20;34565:1;34554:9;34550:17;34543:47;34607:131;34733:4;34607:131;:::i;:::-;34599:139;;34497:248;;;:::o;34751:419::-;34917:4;34955:2;34944:9;34940:18;34932:26;;35004:9;34998:4;34994:20;34990:1;34979:9;34975:17;34968:47;35032:131;35158:4;35032:131;:::i;:::-;35024:139;;34922:248;;;:::o;35176:419::-;35342:4;35380:2;35369:9;35365:18;35357:26;;35429:9;35423:4;35419:20;35415:1;35404:9;35400:17;35393:47;35457:131;35583:4;35457:131;:::i;:::-;35449:139;;35347:248;;;:::o;35601:419::-;35767:4;35805:2;35794:9;35790:18;35782:26;;35854:9;35848:4;35844:20;35840:1;35829:9;35825:17;35818:47;35882:131;36008:4;35882:131;:::i;:::-;35874:139;;35772:248;;;:::o;36026:419::-;36192:4;36230:2;36219:9;36215:18;36207:26;;36279:9;36273:4;36269:20;36265:1;36254:9;36250:17;36243:47;36307:131;36433:4;36307:131;:::i;:::-;36299:139;;36197:248;;;:::o;36451:419::-;36617:4;36655:2;36644:9;36640:18;36632:26;;36704:9;36698:4;36694:20;36690:1;36679:9;36675:17;36668:47;36732:131;36858:4;36732:131;:::i;:::-;36724:139;;36622:248;;;:::o;36876:419::-;37042:4;37080:2;37069:9;37065:18;37057:26;;37129:9;37123:4;37119:20;37115:1;37104:9;37100:17;37093:47;37157:131;37283:4;37157:131;:::i;:::-;37149:139;;37047:248;;;:::o;37301:419::-;37467:4;37505:2;37494:9;37490:18;37482:26;;37554:9;37548:4;37544:20;37540:1;37529:9;37525:17;37518:47;37582:131;37708:4;37582:131;:::i;:::-;37574:139;;37472:248;;;:::o;37726:419::-;37892:4;37930:2;37919:9;37915:18;37907:26;;37979:9;37973:4;37969:20;37965:1;37954:9;37950:17;37943:47;38007:131;38133:4;38007:131;:::i;:::-;37999:139;;37897:248;;;:::o;38151:419::-;38317:4;38355:2;38344:9;38340:18;38332:26;;38404:9;38398:4;38394:20;38390:1;38379:9;38375:17;38368:47;38432:131;38558:4;38432:131;:::i;:::-;38424:139;;38322:248;;;:::o;38576:419::-;38742:4;38780:2;38769:9;38765:18;38757:26;;38829:9;38823:4;38819:20;38815:1;38804:9;38800:17;38793:47;38857:131;38983:4;38857:131;:::i;:::-;38849:139;;38747:248;;;:::o;39001:419::-;39167:4;39205:2;39194:9;39190:18;39182:26;;39254:9;39248:4;39244:20;39240:1;39229:9;39225:17;39218:47;39282:131;39408:4;39282:131;:::i;:::-;39274:139;;39172:248;;;:::o;39426:419::-;39592:4;39630:2;39619:9;39615:18;39607:26;;39679:9;39673:4;39669:20;39665:1;39654:9;39650:17;39643:47;39707:131;39833:4;39707:131;:::i;:::-;39699:139;;39597:248;;;:::o;39851:419::-;40017:4;40055:2;40044:9;40040:18;40032:26;;40104:9;40098:4;40094:20;40090:1;40079:9;40075:17;40068:47;40132:131;40258:4;40132:131;:::i;:::-;40124:139;;40022:248;;;:::o;40276:419::-;40442:4;40480:2;40469:9;40465:18;40457:26;;40529:9;40523:4;40519:20;40515:1;40504:9;40500:17;40493:47;40557:131;40683:4;40557:131;:::i;:::-;40549:139;;40447:248;;;:::o;40701:419::-;40867:4;40905:2;40894:9;40890:18;40882:26;;40954:9;40948:4;40944:20;40940:1;40929:9;40925:17;40918:47;40982:131;41108:4;40982:131;:::i;:::-;40974:139;;40872:248;;;:::o;41126:419::-;41292:4;41330:2;41319:9;41315:18;41307:26;;41379:9;41373:4;41369:20;41365:1;41354:9;41350:17;41343:47;41407:131;41533:4;41407:131;:::i;:::-;41399:139;;41297:248;;;:::o;41551:419::-;41717:4;41755:2;41744:9;41740:18;41732:26;;41804:9;41798:4;41794:20;41790:1;41779:9;41775:17;41768:47;41832:131;41958:4;41832:131;:::i;:::-;41824:139;;41722:248;;;:::o;41976:419::-;42142:4;42180:2;42169:9;42165:18;42157:26;;42229:9;42223:4;42219:20;42215:1;42204:9;42200:17;42193:47;42257:131;42383:4;42257:131;:::i;:::-;42249:139;;42147:248;;;:::o;42401:222::-;42494:4;42532:2;42521:9;42517:18;42509:26;;42545:71;42613:1;42602:9;42598:17;42589:6;42545:71;:::i;:::-;42499:124;;;;:::o;42629:129::-;42663:6;42690:20;;:::i;:::-;42680:30;;42719:33;42747:4;42739:6;42719:33;:::i;:::-;42670:88;;;:::o;42764:75::-;42797:6;42830:2;42824:9;42814:19;;42804:35;:::o;42845:307::-;42906:4;42996:18;42988:6;42985:30;42982:2;;;43018:18;;:::i;:::-;42982:2;43056:29;43078:6;43056:29;:::i;:::-;43048:37;;43140:4;43134;43130:15;43122:23;;42911:241;;;:::o;43158:308::-;43220:4;43310:18;43302:6;43299:30;43296:2;;;43332:18;;:::i;:::-;43296:2;43370:29;43392:6;43370:29;:::i;:::-;43362:37;;43454:4;43448;43444:15;43436:23;;43225:241;;;:::o;43472:132::-;43539:4;43562:3;43554:11;;43592:4;43587:3;43583:14;43575:22;;43544:60;;;:::o;43610:114::-;43677:6;43711:5;43705:12;43695:22;;43684:40;;;:::o;43730:98::-;43781:6;43815:5;43809:12;43799:22;;43788:40;;;:::o;43834:99::-;43886:6;43920:5;43914:12;43904:22;;43893:40;;;:::o;43939:113::-;44009:4;44041;44036:3;44032:14;44024:22;;44014:38;;;:::o;44058:184::-;44157:11;44191:6;44186:3;44179:19;44231:4;44226:3;44222:14;44207:29;;44169:73;;;;:::o;44248:168::-;44331:11;44365:6;44360:3;44353:19;44405:4;44400:3;44396:14;44381:29;;44343:73;;;;:::o;44422:147::-;44523:11;44560:3;44545:18;;44535:34;;;;:::o;44575:169::-;44659:11;44693:6;44688:3;44681:19;44733:4;44728:3;44724:14;44709:29;;44671:73;;;;:::o;44750:148::-;44852:11;44889:3;44874:18;;44864:34;;;;:::o;44904:305::-;44944:3;44963:20;44981:1;44963:20;:::i;:::-;44958:25;;44997:20;45015:1;44997:20;:::i;:::-;44992:25;;45151:1;45083:66;45079:74;45076:1;45073:81;45070:2;;;45157:18;;:::i;:::-;45070:2;45201:1;45198;45194:9;45187:16;;44948:261;;;;:::o;45215:185::-;45255:1;45272:20;45290:1;45272:20;:::i;:::-;45267:25;;45306:20;45324:1;45306:20;:::i;:::-;45301:25;;45345:1;45335:2;;45350:18;;:::i;:::-;45335:2;45392:1;45389;45385:9;45380:14;;45257:143;;;;:::o;45406:348::-;45446:7;45469:20;45487:1;45469:20;:::i;:::-;45464:25;;45503:20;45521:1;45503:20;:::i;:::-;45498:25;;45691:1;45623:66;45619:74;45616:1;45613:81;45608:1;45601:9;45594:17;45590:105;45587:2;;;45698:18;;:::i;:::-;45587:2;45746:1;45743;45739:9;45728:20;;45454:300;;;;:::o;45760:191::-;45800:4;45820:20;45838:1;45820:20;:::i;:::-;45815:25;;45854:20;45872:1;45854:20;:::i;:::-;45849:25;;45893:1;45890;45887:8;45884:2;;;45898:18;;:::i;:::-;45884:2;45943:1;45940;45936:9;45928:17;;45805:146;;;;:::o;45957:96::-;45994:7;46023:24;46041:5;46023:24;:::i;:::-;46012:35;;46002:51;;;:::o;46059:90::-;46093:7;46136:5;46129:13;46122:21;46111:32;;46101:48;;;:::o;46155:149::-;46191:7;46231:66;46224:5;46220:78;46209:89;;46199:105;;;:::o;46310:126::-;46347:7;46387:42;46380:5;46376:54;46365:65;;46355:81;;;:::o;46442:77::-;46479:7;46508:5;46497:16;;46487:32;;;:::o;46525:154::-;46609:6;46604:3;46599;46586:30;46671:1;46662:6;46657:3;46653:16;46646:27;46576:103;;;:::o;46685:307::-;46753:1;46763:113;46777:6;46774:1;46771:13;46763:113;;;46862:1;46857:3;46853:11;46847:18;46843:1;46838:3;46834:11;46827:39;46799:2;46796:1;46792:10;46787:15;;46763:113;;;46894:6;46891:1;46888:13;46885:2;;;46974:1;46965:6;46960:3;46956:16;46949:27;46885:2;46734:258;;;;:::o;46998:320::-;47042:6;47079:1;47073:4;47069:12;47059:22;;47126:1;47120:4;47116:12;47147:18;47137:2;;47203:4;47195:6;47191:17;47181:27;;47137:2;47265;47257:6;47254:14;47234:18;47231:38;47228:2;;;47284:18;;:::i;:::-;47228:2;47049:269;;;;:::o;47324:281::-;47407:27;47429:4;47407:27;:::i;:::-;47399:6;47395:40;47537:6;47525:10;47522:22;47501:18;47489:10;47486:34;47483:62;47480:2;;;47548:18;;:::i;:::-;47480:2;47588:10;47584:2;47577:22;47367:238;;;:::o;47611:233::-;47650:3;47673:24;47691:5;47673:24;:::i;:::-;47664:33;;47719:66;47712:5;47709:77;47706:2;;;47789:18;;:::i;:::-;47706:2;47836:1;47829:5;47825:13;47818:20;;47654:190;;;:::o;47850:176::-;47882:1;47899:20;47917:1;47899:20;:::i;:::-;47894:25;;47933:20;47951:1;47933:20;:::i;:::-;47928:25;;47972:1;47962:2;;47977:18;;:::i;:::-;47962:2;48018:1;48015;48011:9;48006:14;;47884:142;;;;:::o;48032:180::-;48080:77;48077:1;48070:88;48177:4;48174:1;48167:15;48201:4;48198:1;48191:15;48218:180;48266:77;48263:1;48256:88;48363:4;48360:1;48353:15;48387:4;48384:1;48377:15;48404:180;48452:77;48449:1;48442:88;48549:4;48546:1;48539:15;48573:4;48570:1;48563:15;48590:180;48638:77;48635:1;48628:88;48735:4;48732:1;48725:15;48759:4;48756:1;48749:15;48776:180;48824:77;48821:1;48814:88;48921:4;48918:1;48911:15;48945:4;48942:1;48935:15;48962:180;49010:77;49007:1;49000:88;49107:4;49104:1;49097:15;49131:4;49128:1;49121:15;49148:117;49257:1;49254;49247:12;49271:117;49380:1;49377;49370:12;49394:117;49503:1;49500;49493:12;49517:117;49626:1;49623;49616:12;49640:117;49749:1;49746;49739:12;49763:117;49872:1;49869;49862:12;49886:102;49927:6;49978:2;49974:7;49969:2;49962:5;49958:14;49954:28;49944:38;;49934:54;;;:::o;49994:179::-;50134:31;50130:1;50122:6;50118:14;50111:55;50100:73;:::o;50179:230::-;50319:34;50315:1;50307:6;50303:14;50296:58;50388:13;50383:2;50375:6;50371:15;50364:38;50285:124;:::o;50415:237::-;50555:34;50551:1;50543:6;50539:14;50532:58;50624:20;50619:2;50611:6;50607:15;50600:45;50521:131;:::o;50658:225::-;50798:34;50794:1;50786:6;50782:14;50775:58;50867:8;50862:2;50854:6;50850:15;50843:33;50764:119;:::o;50889:178::-;51029:30;51025:1;51017:6;51013:14;51006:54;50995:72;:::o;51073:177::-;51213:29;51209:1;51201:6;51197:14;51190:53;51179:71;:::o;51256:223::-;51396:34;51392:1;51384:6;51380:14;51373:58;51465:6;51460:2;51452:6;51448:15;51441:31;51362:117;:::o;51485:175::-;51625:27;51621:1;51613:6;51609:14;51602:51;51591:69;:::o;51666:172::-;51806:24;51802:1;51794:6;51790:14;51783:48;51772:66;:::o;51844:181::-;51984:33;51980:1;51972:6;51968:14;51961:57;51950:75;:::o;52031:178::-;52171:30;52167:1;52159:6;52155:14;52148:54;52137:72;:::o;52215:231::-;52355:34;52351:1;52343:6;52339:14;52332:58;52424:14;52419:2;52411:6;52407:15;52400:39;52321:125;:::o;52452:243::-;52592:34;52588:1;52580:6;52576:14;52569:58;52661:26;52656:2;52648:6;52644:15;52637:51;52558:137;:::o;52701:168::-;52841:20;52837:1;52829:6;52825:14;52818:44;52807:62;:::o;52875:229::-;53015:34;53011:1;53003:6;52999:14;52992:58;53084:12;53079:2;53071:6;53067:15;53060:37;52981:123;:::o;53110:228::-;53250:34;53246:1;53238:6;53234:14;53227:58;53319:11;53314:2;53306:6;53302:15;53295:36;53216:122;:::o;53344:182::-;53484:34;53480:1;53472:6;53468:14;53461:58;53450:76;:::o;53532:182::-;53672:34;53668:1;53660:6;53656:14;53649:58;53638:76;:::o;53720:172::-;53860:24;53856:1;53848:6;53844:14;53837:48;53826:66;:::o;53898:231::-;54038:34;54034:1;54026:6;54022:14;54015:58;54107:14;54102:2;54094:6;54090:15;54083:39;54004:125;:::o;54135:182::-;54275:34;54271:1;54263:6;54259:14;54252:58;54241:76;:::o;54323:176::-;54463:28;54459:1;54451:6;54447:14;54440:52;54429:70;:::o;54505:168::-;54645:20;54641:1;54633:6;54629:14;54622:44;54611:62;:::o;54679:228::-;54819:34;54815:1;54807:6;54803:14;54796:58;54888:11;54883:2;54875:6;54871:15;54864:36;54785:122;:::o;54913:234::-;55053:34;55049:1;55041:6;55037:14;55030:58;55122:17;55117:2;55109:6;55105:15;55098:42;55019:128;:::o;55153:173::-;55293:25;55289:1;55281:6;55277:14;55270:49;55259:67;:::o;55332:220::-;55472:34;55468:1;55460:6;55456:14;55449:58;55541:3;55536:2;55528:6;55524:15;55517:28;55438:114;:::o;55558:::-;55664:8;:::o;55678:166::-;55818:18;55814:1;55806:6;55802:14;55795:42;55784:60;:::o;55850:236::-;55990:34;55986:1;55978:6;55974:14;55967:58;56059:19;56054:2;56046:6;56042:15;56035:44;55956:130;:::o;56092:231::-;56232:34;56228:1;56220:6;56216:14;56209:58;56301:14;56296:2;56288:6;56284:15;56277:39;56198:125;:::o;56329:172::-;56469:24;56465:1;56457:6;56453:14;56446:48;56435:66;:::o;56507:178::-;56647:30;56643:1;56635:6;56631:14;56624:54;56613:72;:::o;56691:181::-;56831:33;56827:1;56819:6;56815:14;56808:57;56797:75;:::o;56878:177::-;57018:29;57014:1;57006:6;57002:14;56995:53;56984:71;:::o;57061:182::-;57201:34;57197:1;57189:6;57185:14;57178:58;57167:76;:::o;57249:122::-;57322:24;57340:5;57322:24;:::i;:::-;57315:5;57312:35;57302:2;;57361:1;57358;57351:12;57302:2;57292:79;:::o;57377:116::-;57447:21;57462:5;57447:21;:::i;:::-;57440:5;57437:32;57427:2;;57483:1;57480;57473:12;57427:2;57417:76;:::o;57499:120::-;57571:23;57588:5;57571:23;:::i;:::-;57564:5;57561:34;57551:2;;57609:1;57606;57599:12;57551:2;57541:78;:::o;57625:122::-;57698:24;57716:5;57698:24;:::i;:::-;57691:5;57688:35;57678:2;;57737:1;57734;57727:12;57678:2;57668:79;:::o

Swarm Source

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