ETH Price: $2,826.89 (-7.43%)
Gas: 10 Gwei

Token

Cats by RoboticoAi (CATAI)
 

Overview

Max Total Supply

5,611 CATAI

Holders

558

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
giminiserge.eth
Balance
3 CATAI
0x39340a2815802ce3f75c51de1014fc87927172ae
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:
Cats

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.0/contracts/utils/math/SafeMath.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.0/contracts/utils/Counters.sol


// OpenZeppelin Contracts v4.4.0 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


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

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // 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);
    }

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

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

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

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

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

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

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

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/cats1.sol


//For the Goblin Ai family.  I love you all. ~RoboticoAi 

pragma solidity ^0.8.9 < 0.9.0;





contract Cats is Ownable, ERC721{
    using SafeMath for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private _tokenSupply;


        uint256 public PPrice = 0.01 ether;
        uint256 public MAX_PRIVATE = 5333;
        uint256 public MAX_PURCHASE = 20;
        uint256 public MAX_TOKENS = 8888-totalSupply();
        uint256 public MAX_RESERVE = 300;
        


        bool public SaleIsActive =false ;
        bool public PreSaleIsActive =false;
        string private _baseTokenURI;
        address public GoblinAi = 0xc2189a47Ac4e3D4C34c848b96EEa704609Be2ece;



constructor(


  ) ERC721("Cats by RoboticoAi", "CATAI") {
      _baseTokenURI = "ipfs://QmSZoxMGBvMw53vUmNnwBzCyEmgZPABFYXVcZApAhaHZNa/";
    
}
// Reserve 300 Tokens
  function reserveTokens(address to,uint numberOfTokens) public onlyOwner { 
      uint256 ownerTokenCount = balanceOf(msg.sender);   
        uint supply = _tokenSupply.current();
        require(supply.add(numberOfTokens) <= MAX_TOKENS, "Reserve would exceed max supply of Tokens");
        require(numberOfTokens <= MAX_RESERVE, "Can only mint 300 tokens at a time");
        require(ownerTokenCount +numberOfTokens <=300, "Can only recieve a maximum of 300 tokens");
        for (uint i = 0; i < numberOfTokens; i++) {
            _safeMint(to, supply + i);
            _tokenSupply.increment();
        }
    }
// Private mint
function preSalemint(uint256 numberOfTokens) external payable {
        require(PreSaleIsActive, "Pre-Sale must be active to mint Tokens");
        require(hasMintPass(msg.sender), "Must have a mintpass");
        uint supply = _tokenSupply.current();
        uint256 ownerTokenCount = balanceOf(msg.sender);
        require(ownerTokenCount+numberOfTokens <=10);
        require(supply + numberOfTokens <= MAX_PRIVATE);

        internalPreMint(numberOfTokens);
    }
    

// regular mint
function mint(uint256 numberOfTokens) external payable {
        require(SaleIsActive, "Sale must be active to mint Tokens");
        internalMint(numberOfTokens);
    }

function hasMintPass(address sender) public view returns (bool){
        if(sender==address(0)){
            return false;
        } else if (IERC721(GoblinAi).balanceOf(sender)>0){
            return true;
        }
        
        return false;
    }

// internal mint for Private

function internalPreMint(uint256 numberOfTokens) private{
        require(numberOfTokens > 0, "numberOfNfts cannot be 0");
        require(numberOfTokens <=10, "Can only mint 10 token");
        uint256 supply = _tokenSupply.current();
        require(supply.add(numberOfTokens) <= MAX_PRIVATE, "Purchase would exceed max Pre supply of Tokens");
        require(msg.value ==0, "Ether value sent is not correct");  
        for(uint256 i; i < numberOfTokens; i++){
            _safeMint( msg.sender, supply + i );
            _tokenSupply.increment();
        }
}
function internalMint(uint256 numberOfTokens) private{
        uint256 ownerTokenCount = balanceOf(msg.sender);
        require(numberOfTokens > 0, "numberOfNfts cannot be 0");
        require(numberOfTokens <= MAX_PURCHASE, "Can only mint 20 tokens per wallet");
        require(ownerTokenCount + numberOfTokens<=20, "You can only mint 20 nfts per wallet");
        uint256 supply = _tokenSupply.current();
        require(supply.add(numberOfTokens) <= MAX_TOKENS, "Purchase would exceed max supply of Tokens");
        require(PPrice.mul(numberOfTokens) <= msg.value, "Ether value sent is not correct");  
        for(uint256 i; i < numberOfTokens; i++){
            _safeMint( msg.sender, supply + i );
            _tokenSupply.increment();
        }
    }

function totalSupply() public view returns (uint256) {
        return _tokenSupply.current();
    }
function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }
// make sale active if paused and vise-versa
function flipSaleState() public onlyOwner {
        SaleIsActive = !SaleIsActive;
    }

// make presale active if paused and vise-versa
function flipPreSaleState() public onlyOwner {
        PreSaleIsActive = !PreSaleIsActive;
    }


 function setGoblinAi(address newAddress) external onlyOwner {
         GoblinAi = newAddress;
    }

function setBaseTokenURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

function setMAX_PURCHASE(uint256 _newMAX_PURCHASE) public onlyOwner {
        MAX_PURCHASE = _newMAX_PURCHASE;
    }

    function setMAX_TOKENS(uint256 _newMAX_TOKENS) public onlyOwner {
        MAX_TOKENS = _newMAX_TOKENS;
    }

    function setMAX_RESERVE(uint256 _newMAX_RESERVE) public onlyOwner {
        MAX_RESERVE = _newMAX_RESERVE;
    }

function setPPrice(uint256 _newPPrice) public onlyOwner {
        PPrice = _newPPrice;
    }

  function withdraw() public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }

   function withdrawAny(uint256 _amount) public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{value: _amount}("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"GoblinAi","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PRIVATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_RESERVE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PreSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"sender","type":"address"}],"name":"hasMintPass","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"preSalemint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setGoblinAi","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMAX_PURCHASE","type":"uint256"}],"name":"setMAX_PURCHASE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMAX_RESERVE","type":"uint256"}],"name":"setMAX_RESERVE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMAX_TOKENS","type":"uint256"}],"name":"setMAX_TOKENS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPPrice","type":"uint256"}],"name":"setPPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawAny","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052662386f26fc100006008556114d56009556014600a556200002a620001be60201b60201c565b6122b8620000399190620002ef565b600b5561012c600c556000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff02191690831515021790555073c2189a47ac4e3d4c34c848b96eea704609be2ece600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000da57600080fd5b506040518060400160405280601281526020017f4361747320627920526f626f7469636f416900000000000000000000000000008152506040518060400160405280600581526020017f4341544149000000000000000000000000000000000000000000000000000000815250620001676200015b620001dc60201b60201c565b620001e460201b60201c565b81600190816200017891906200059a565b5080600290816200018a91906200059a565b5050506040518060600160405280603681526020016200493c60369139600e9081620001b791906200059a565b5062000681565b6000620001d76007620002a860201b620016461760201c565b905090565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620002fc82620002b6565b91506200030983620002b6565b9250828203905081811115620003245762000323620002c0565b5b92915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003ac57607f821691505b602082108103620003c257620003c162000364565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200042c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003ed565b620004388683620003ed565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200047b620004756200046f84620002b6565b62000450565b620002b6565b9050919050565b6000819050919050565b62000497836200045a565b620004af620004a68262000482565b848454620003fa565b825550505050565b600090565b620004c6620004b7565b620004d38184846200048c565b505050565b5b81811015620004fb57620004ef600082620004bc565b600181019050620004d9565b5050565b601f8211156200054a576200051481620003c8565b6200051f84620003dd565b810160208510156200052f578190505b620005476200053e85620003dd565b830182620004d8565b50505b505050565b600082821c905092915050565b60006200056f600019846008026200054f565b1980831691505092915050565b60006200058a83836200055c565b9150826002028217905092915050565b620005a5826200032a565b67ffffffffffffffff811115620005c157620005c062000335565b5b620005cd825462000393565b620005da828285620004ff565b600060209050601f831160018114620006125760008415620005fd578287015190505b6200060985826200057c565b86555062000679565b601f1984166200062286620003c8565b60005b828110156200064c5784890151825560018201915060208501945060208101905062000625565b868310156200066c578489015162000668601f8916826200055c565b8355505b6001600288020188555050505b505050505050565b6142ab80620006916000396000f3fe6080604052600436106102305760003560e01c806377ad99f01161012e578063b88d4fde116100ab578063eff31e9e1161006f578063eff31e9e146107dd578063f032554914610808578063f059443e1461081f578063f2fde38b14610848578063f47c84c51461087157610230565b8063b88d4fde146106e6578063bf20edc31461070f578063c87b56dd1461073a578063e464955214610777578063e985e9c5146107a057610230565b8063a0712d68116100f2578063a0712d6814610622578063a1a6cfec1461063e578063a22cb46514610669578063ad4efb4814610692578063ad68071e146106bb57610230565b806377ad99f01461055e57806378cf19e91461057a5780638da5cb5b146105a357806395d89b41146105ce578063964ad8c2146105f957610230565b806334918dfd116101bc5780636352211e116101805780636352211e146104795780636cae8d0d146104b657806370a08231146104df5780637146bd081461051c578063715018a61461054757610230565b806334918dfd146103d65780633ccfd60b146103ed5780633e343865146103f757806342842e0e146104135780634b2647d21461043c57610230565b806318160ddd1161020357806318160ddd146103035780631e386ed31461032e57806323b872dd1461035957806327d941821461038257806330176e13146103ad57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190612835565b61089c565b604051610269919061287d565b60405180910390f35b34801561027e57600080fd5b5061028761097e565b6040516102949190612928565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190612980565b610a10565b6040516102d191906129ee565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190612a35565b610a56565b005b34801561030f57600080fd5b50610318610b6d565b6040516103259190612a84565b60405180910390f35b34801561033a57600080fd5b50610343610b7e565b604051610350919061287d565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b9190612a9f565b610b91565b005b34801561038e57600080fd5b50610397610bf1565b6040516103a49190612a84565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf9190612c27565b610bf7565b005b3480156103e257600080fd5b506103eb610c12565b005b6103f5610c46565b005b610411600480360381019061040c9190612980565b610cc7565b005b34801561041f57600080fd5b5061043a60048036038101906104359190612a9f565b610dba565b005b34801561044857600080fd5b50610463600480360381019061045e9190612c70565b610dda565b604051610470919061287d565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b9190612980565b610ecf565b6040516104ad91906129ee565b60405180910390f35b3480156104c257600080fd5b506104dd60048036038101906104d89190612980565b610f80565b005b3480156104eb57600080fd5b5061050660048036038101906105019190612c70565b610f92565b6040516105139190612a84565b60405180910390f35b34801561052857600080fd5b50610531611049565b60405161053e9190612a84565b60405180910390f35b34801561055357600080fd5b5061055c61104f565b005b61057860048036038101906105739190612980565b611063565b005b34801561058657600080fd5b506105a1600480360381019061059c9190612a35565b6110e5565b005b3480156105af57600080fd5b506105b8611238565b6040516105c591906129ee565b60405180910390f35b3480156105da57600080fd5b506105e3611261565b6040516105f09190612928565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b9190612980565b6112f3565b005b61063c60048036038101906106379190612980565b611305565b005b34801561064a57600080fd5b50610653611360565b604051610660919061287d565b60405180910390f35b34801561067557600080fd5b50610690600480360381019061068b9190612cc9565b611373565b005b34801561069e57600080fd5b506106b960048036038101906106b49190612980565b611389565b005b3480156106c757600080fd5b506106d061139b565b6040516106dd9190612a84565b60405180910390f35b3480156106f257600080fd5b5061070d60048036038101906107089190612daa565b6113a1565b005b34801561071b57600080fd5b50610724611403565b60405161073191906129ee565b60405180910390f35b34801561074657600080fd5b50610761600480360381019061075c9190612980565b611429565b60405161076e9190612928565b60405180910390f35b34801561078357600080fd5b5061079e60048036038101906107999190612c70565b611491565b005b3480156107ac57600080fd5b506107c760048036038101906107c29190612e2d565b6114dd565b6040516107d4919061287d565b60405180910390f35b3480156107e957600080fd5b506107f2611571565b6040516107ff9190612a84565b60405180910390f35b34801561081457600080fd5b5061081d611577565b005b34801561082b57600080fd5b5061084660048036038101906108419190612980565b6115ab565b005b34801561085457600080fd5b5061086f600480360381019061086a9190612c70565b6115bd565b005b34801561087d57600080fd5b50610886611640565b6040516108939190612a84565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610977575061097682611654565b5b9050919050565b60606001805461098d90612e9c565b80601f01602080910402602001604051908101604052809291908181526020018280546109b990612e9c565b8015610a065780601f106109db57610100808354040283529160200191610a06565b820191906000526020600020905b8154815290600101906020018083116109e957829003601f168201915b5050505050905090565b6000610a1b826116be565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6182610ecf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac890612f3f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610af0611709565b73ffffffffffffffffffffffffffffffffffffffff161480610b1f5750610b1e81610b19611709565b6114dd565b5b610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5590612fd1565b60405180910390fd5b610b688383611711565b505050565b6000610b796007611646565b905090565b600d60009054906101000a900460ff1681565b610ba2610b9c611709565b826117ca565b610be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd890613063565b60405180910390fd5b610bec83838361185f565b505050565b60095481565b610bff611ac5565b80600e9081610c0e919061322f565b5050565b610c1a611ac5565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b610c4e611ac5565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610c7490613332565b60006040518083038185875af1925050503d8060008114610cb1576040519150601f19603f3d011682016040523d82523d6000602084013e610cb6565b606091505b5050905080610cc457600080fd5b50565b600d60019054906101000a900460ff16610d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0d906133b9565b60405180910390fd5b610d1f33610dda565b610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5590613425565b60405180910390fd5b6000610d6a6007611646565b90506000610d7733610f92565b9050600a8382610d879190613474565b1115610d9257600080fd5b6009548383610da19190613474565b1115610dac57600080fd5b610db583611b43565b505050565b610dd5838383604051806020016040528060008152506113a1565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e185760009050610eca565b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401610e7591906129ee565b602060405180830381865afa158015610e92573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb691906134bd565b1115610ec55760019050610eca565b600090505b919050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6e90613536565b60405180910390fd5b80915050919050565b610f88611ac5565b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff9906135c8565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600a5481565b611057611ac5565b6110616000611cb4565b565b61106b611ac5565b60003373ffffffffffffffffffffffffffffffffffffffff168260405161109190613332565b60006040518083038185875af1925050503d80600081146110ce576040519150601f19603f3d011682016040523d82523d6000602084013e6110d3565b606091505b50509050806110e157600080fd5b5050565b6110ed611ac5565b60006110f833610f92565b905060006111066007611646565b9050600b5461111e8483611d7890919063ffffffff16565b111561115f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111569061365a565b60405180910390fd5b600c548311156111a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119b906136ec565b60405180910390fd5b61012c83836111b39190613474565b11156111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb9061377e565b60405180910390fd5b60005b838110156112315761121485828461120f9190613474565b611d8e565b61121e6007611dac565b80806112299061379e565b9150506111f7565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461127090612e9c565b80601f016020809104026020016040519081016040528092919081815260200182805461129c90612e9c565b80156112e95780601f106112be576101008083540402835291602001916112e9565b820191906000526020600020905b8154815290600101906020018083116112cc57829003601f168201915b5050505050905090565b6112fb611ac5565b80600c8190555050565b600d60009054906101000a900460ff16611354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134b90613858565b60405180910390fd5b61135d81611dc2565b50565b600d60019054906101000a900460ff1681565b61138561137e611709565b8383611fa5565b5050565b611391611ac5565b80600a8190555050565b60085481565b6113b26113ac611709565b836117ca565b6113f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e890613063565b60405180910390fd5b6113fd84848484612111565b50505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060611434826116be565b600061143e61216d565b9050600081511161145e5760405180602001604052806000815250611489565b80611468846121ff565b6040516020016114799291906138b4565b6040516020818303038152906040525b915050919050565b611499611ac5565b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c5481565b61157f611ac5565b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b6115b3611ac5565b8060088190555050565b6115c5611ac5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162b9061394a565b60405180910390fd5b61163d81611cb4565b50565b600b5481565b600081600001549050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6116c78161235f565b611706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fd90613536565b60405180910390fd5b50565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661178483610ecf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806117d683610ecf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611818575061181781856114dd565b5b8061185657508373ffffffffffffffffffffffffffffffffffffffff1661183e84610a10565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661187f82610ecf565b73ffffffffffffffffffffffffffffffffffffffff16146118d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cc906139dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193b90613a6e565b60405180910390fd5b61194f8383836123cb565b61195a600082611711565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119aa9190613a8e565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a019190613474565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ac08383836123d0565b505050565b611acd611709565b73ffffffffffffffffffffffffffffffffffffffff16611aeb611238565b73ffffffffffffffffffffffffffffffffffffffff1614611b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3890613b0e565b60405180910390fd5b565b60008111611b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7d90613b7a565b60405180910390fd5b600a811115611bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc190613be6565b60405180910390fd5b6000611bd66007611646565b9050600954611bee8383611d7890919063ffffffff16565b1115611c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2690613c78565b60405180910390fd5b60003414611c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6990613ce4565b60405180910390fd5b60005b82811015611caf57611c92338284611c8d9190613474565b611d8e565b611c9c6007611dac565b8080611ca79061379e565b915050611c75565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611d869190613474565b905092915050565b611da88282604051806020016040528060008152506123d5565b5050565b6001816000016000828254019250508190555050565b6000611dcd33610f92565b905060008211611e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0990613b7a565b60405180910390fd5b600a54821115611e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4e90613d76565b60405180910390fd5b60148282611e659190613474565b1115611ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9d90613e08565b60405180910390fd5b6000611eb26007611646565b9050600b54611eca8483611d7890919063ffffffff16565b1115611f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0290613e9a565b60405180910390fd5b34611f218460085461243090919063ffffffff16565b1115611f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5990613ce4565b60405180910390fd5b60005b83811015611f9f57611f82338284611f7d9190613474565b611d8e565b611f8c6007611dac565b8080611f979061379e565b915050611f65565b50505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200a90613f06565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612104919061287d565b60405180910390a3505050565b61211c84848461185f565b61212884848484612446565b612167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215e90613f98565b60405180910390fd5b50505050565b6060600e805461217c90612e9c565b80601f01602080910402602001604051908101604052809291908181526020018280546121a890612e9c565b80156121f55780601f106121ca576101008083540402835291602001916121f5565b820191906000526020600020905b8154815290600101906020018083116121d857829003601f168201915b5050505050905090565b606060008203612246576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061235a565b600082905060005b600082146122785780806122619061379e565b915050600a826122719190613fe7565b915061224e565b60008167ffffffffffffffff81111561229457612293612afc565b5b6040519080825280601f01601f1916602001820160405280156122c65781602001600182028036833780820191505090505b5090505b60008514612353576001826122df9190613a8e565b9150600a856122ee9190614018565b60306122fa9190613474565b60f81b8183815181106123105761230f614049565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561234c9190613fe7565b94506122ca565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b6123df83836125cd565b6123ec6000848484612446565b61242b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242290613f98565b60405180910390fd5b505050565b6000818361243e9190614078565b905092915050565b60006124678473ffffffffffffffffffffffffffffffffffffffff166127a6565b156125c0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612490611709565b8786866040518563ffffffff1660e01b81526004016124b2949392919061410f565b6020604051808303816000875af19250505080156124ee57506040513d601f19601f820116820180604052508101906124eb9190614170565b60015b612570573d806000811461251e576040519150601f19603f3d011682016040523d82523d6000602084013e612523565b606091505b506000815103612568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255f90613f98565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125c5565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361263c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612633906141e9565b60405180910390fd5b6126458161235f565b15612685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267c90614255565b60405180910390fd5b612691600083836123cb565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126e19190613474565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127a2600083836123d0565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612812816127dd565b811461281d57600080fd5b50565b60008135905061282f81612809565b92915050565b60006020828403121561284b5761284a6127d3565b5b600061285984828501612820565b91505092915050565b60008115159050919050565b61287781612862565b82525050565b6000602082019050612892600083018461286e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128d25780820151818401526020810190506128b7565b60008484015250505050565b6000601f19601f8301169050919050565b60006128fa82612898565b61290481856128a3565b93506129148185602086016128b4565b61291d816128de565b840191505092915050565b6000602082019050818103600083015261294281846128ef565b905092915050565b6000819050919050565b61295d8161294a565b811461296857600080fd5b50565b60008135905061297a81612954565b92915050565b600060208284031215612996576129956127d3565b5b60006129a48482850161296b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129d8826129ad565b9050919050565b6129e8816129cd565b82525050565b6000602082019050612a0360008301846129df565b92915050565b612a12816129cd565b8114612a1d57600080fd5b50565b600081359050612a2f81612a09565b92915050565b60008060408385031215612a4c57612a4b6127d3565b5b6000612a5a85828601612a20565b9250506020612a6b8582860161296b565b9150509250929050565b612a7e8161294a565b82525050565b6000602082019050612a996000830184612a75565b92915050565b600080600060608486031215612ab857612ab76127d3565b5b6000612ac686828701612a20565b9350506020612ad786828701612a20565b9250506040612ae88682870161296b565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612b34826128de565b810181811067ffffffffffffffff82111715612b5357612b52612afc565b5b80604052505050565b6000612b666127c9565b9050612b728282612b2b565b919050565b600067ffffffffffffffff821115612b9257612b91612afc565b5b612b9b826128de565b9050602081019050919050565b82818337600083830152505050565b6000612bca612bc584612b77565b612b5c565b905082815260208101848484011115612be657612be5612af7565b5b612bf1848285612ba8565b509392505050565b600082601f830112612c0e57612c0d612af2565b5b8135612c1e848260208601612bb7565b91505092915050565b600060208284031215612c3d57612c3c6127d3565b5b600082013567ffffffffffffffff811115612c5b57612c5a6127d8565b5b612c6784828501612bf9565b91505092915050565b600060208284031215612c8657612c856127d3565b5b6000612c9484828501612a20565b91505092915050565b612ca681612862565b8114612cb157600080fd5b50565b600081359050612cc381612c9d565b92915050565b60008060408385031215612ce057612cdf6127d3565b5b6000612cee85828601612a20565b9250506020612cff85828601612cb4565b9150509250929050565b600067ffffffffffffffff821115612d2457612d23612afc565b5b612d2d826128de565b9050602081019050919050565b6000612d4d612d4884612d09565b612b5c565b905082815260208101848484011115612d6957612d68612af7565b5b612d74848285612ba8565b509392505050565b600082601f830112612d9157612d90612af2565b5b8135612da1848260208601612d3a565b91505092915050565b60008060008060808587031215612dc457612dc36127d3565b5b6000612dd287828801612a20565b9450506020612de387828801612a20565b9350506040612df48782880161296b565b925050606085013567ffffffffffffffff811115612e1557612e146127d8565b5b612e2187828801612d7c565b91505092959194509250565b60008060408385031215612e4457612e436127d3565b5b6000612e5285828601612a20565b9250506020612e6385828601612a20565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612eb457607f821691505b602082108103612ec757612ec6612e6d565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f296021836128a3565b9150612f3482612ecd565b604082019050919050565b60006020820190508181036000830152612f5881612f1c565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000612fbb603e836128a3565b9150612fc682612f5f565b604082019050919050565b60006020820190508181036000830152612fea81612fae565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b600061304d602e836128a3565b915061305882612ff1565b604082019050919050565b6000602082019050818103600083015261307c81613040565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026130e57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826130a8565b6130ef86836130a8565b95508019841693508086168417925050509392505050565b6000819050919050565b600061312c6131276131228461294a565b613107565b61294a565b9050919050565b6000819050919050565b61314683613111565b61315a61315282613133565b8484546130b5565b825550505050565b600090565b61316f613162565b61317a81848461313d565b505050565b5b8181101561319e57613193600082613167565b600181019050613180565b5050565b601f8211156131e3576131b481613083565b6131bd84613098565b810160208510156131cc578190505b6131e06131d885613098565b83018261317f565b50505b505050565b600082821c905092915050565b6000613206600019846008026131e8565b1980831691505092915050565b600061321f83836131f5565b9150826002028217905092915050565b61323882612898565b67ffffffffffffffff81111561325157613250612afc565b5b61325b8254612e9c565b6132668282856131a2565b600060209050601f8311600181146132995760008415613287578287015190505b6132918582613213565b8655506132f9565b601f1984166132a786613083565b60005b828110156132cf578489015182556001820191506020850194506020810190506132aa565b868310156132ec57848901516132e8601f8916826131f5565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b50565b600061331c600083613301565b91506133278261330c565b600082019050919050565b600061333d8261330f565b9150819050919050565b7f5072652d53616c65206d7573742062652061637469766520746f206d696e742060008201527f546f6b656e730000000000000000000000000000000000000000000000000000602082015250565b60006133a36026836128a3565b91506133ae82613347565b604082019050919050565b600060208201905081810360008301526133d281613396565b9050919050565b7f4d75737420686176652061206d696e7470617373000000000000000000000000600082015250565b600061340f6014836128a3565b915061341a826133d9565b602082019050919050565b6000602082019050818103600083015261343e81613402565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061347f8261294a565b915061348a8361294a565b92508282019050808211156134a2576134a1613445565b5b92915050565b6000815190506134b781612954565b92915050565b6000602082840312156134d3576134d26127d3565b5b60006134e1848285016134a8565b91505092915050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006135206018836128a3565b915061352b826134ea565b602082019050919050565b6000602082019050818103600083015261354f81613513565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006135b26029836128a3565b91506135bd82613556565b604082019050919050565b600060208201905081810360008301526135e1816135a5565b9050919050565b7f5265736572766520776f756c6420657863656564206d617820737570706c792060008201527f6f6620546f6b656e730000000000000000000000000000000000000000000000602082015250565b60006136446029836128a3565b915061364f826135e8565b604082019050919050565b6000602082019050818103600083015261367381613637565b9050919050565b7f43616e206f6e6c79206d696e742033303020746f6b656e73206174206120746960008201527f6d65000000000000000000000000000000000000000000000000000000000000602082015250565b60006136d66022836128a3565b91506136e18261367a565b604082019050919050565b60006020820190508181036000830152613705816136c9565b9050919050565b7f43616e206f6e6c7920726563696576652061206d6178696d756d206f6620333060008201527f3020746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006137686028836128a3565b91506137738261370c565b604082019050919050565b600060208201905081810360008301526137978161375b565b9050919050565b60006137a98261294a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036137db576137da613445565b5b600182019050919050565b7f53616c65206d7573742062652061637469766520746f206d696e7420546f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b60006138426022836128a3565b915061384d826137e6565b604082019050919050565b6000602082019050818103600083015261387181613835565b9050919050565b600081905092915050565b600061388e82612898565b6138988185613878565b93506138a88185602086016128b4565b80840191505092915050565b60006138c08285613883565b91506138cc8284613883565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006139346026836128a3565b915061393f826138d8565b604082019050919050565b6000602082019050818103600083015261396381613927565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006139c66025836128a3565b91506139d18261396a565b604082019050919050565b600060208201905081810360008301526139f5816139b9565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613a586024836128a3565b9150613a63826139fc565b604082019050919050565b60006020820190508181036000830152613a8781613a4b565b9050919050565b6000613a998261294a565b9150613aa48361294a565b9250828203905081811115613abc57613abb613445565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613af86020836128a3565b9150613b0382613ac2565b602082019050919050565b60006020820190508181036000830152613b2781613aeb565b9050919050565b7f6e756d6265724f664e6674732063616e6e6f7420626520300000000000000000600082015250565b6000613b646018836128a3565b9150613b6f82613b2e565b602082019050919050565b60006020820190508181036000830152613b9381613b57565b9050919050565b7f43616e206f6e6c79206d696e7420313020746f6b656e00000000000000000000600082015250565b6000613bd06016836128a3565b9150613bdb82613b9a565b602082019050919050565b60006020820190508181036000830152613bff81613bc3565b9050919050565b7f507572636861736520776f756c6420657863656564206d61782050726520737560008201527f70706c79206f6620546f6b656e73000000000000000000000000000000000000602082015250565b6000613c62602e836128a3565b9150613c6d82613c06565b604082019050919050565b60006020820190508181036000830152613c9181613c55565b9050919050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b6000613cce601f836128a3565b9150613cd982613c98565b602082019050919050565b60006020820190508181036000830152613cfd81613cc1565b9050919050565b7f43616e206f6e6c79206d696e7420323020746f6b656e73207065722077616c6c60008201527f6574000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d606022836128a3565b9150613d6b82613d04565b604082019050919050565b60006020820190508181036000830152613d8f81613d53565b9050919050565b7f596f752063616e206f6e6c79206d696e74203230206e6674732070657220776160008201527f6c6c657400000000000000000000000000000000000000000000000000000000602082015250565b6000613df26024836128a3565b9150613dfd82613d96565b604082019050919050565b60006020820190508181036000830152613e2181613de5565b9050919050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620546f6b656e7300000000000000000000000000000000000000000000602082015250565b6000613e84602a836128a3565b9150613e8f82613e28565b604082019050919050565b60006020820190508181036000830152613eb381613e77565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613ef06019836128a3565b9150613efb82613eba565b602082019050919050565b60006020820190508181036000830152613f1f81613ee3565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613f826032836128a3565b9150613f8d82613f26565b604082019050919050565b60006020820190508181036000830152613fb181613f75565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613ff28261294a565b9150613ffd8361294a565b92508261400d5761400c613fb8565b5b828204905092915050565b60006140238261294a565b915061402e8361294a565b92508261403e5761403d613fb8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006140838261294a565b915061408e8361294a565b925082820261409c8161294a565b915082820484148315176140b3576140b2613445565b5b5092915050565b600081519050919050565b600082825260208201905092915050565b60006140e1826140ba565b6140eb81856140c5565b93506140fb8185602086016128b4565b614104816128de565b840191505092915050565b600060808201905061412460008301876129df565b61413160208301866129df565b61413e6040830185612a75565b818103606083015261415081846140d6565b905095945050505050565b60008151905061416a81612809565b92915050565b600060208284031215614186576141856127d3565b5b60006141948482850161415b565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006141d36020836128a3565b91506141de8261419d565b602082019050919050565b60006020820190508181036000830152614202816141c6565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061423f601c836128a3565b915061424a82614209565b602082019050919050565b6000602082019050818103600083015261426e81614232565b905091905056fea26469706673582212201a22b5f03b507692bb7b919216f57a1a9b27994bb316a8f2f141e4a89f4a959e64736f6c63430008110033697066733a2f2f516d535a6f784d4742764d77353376556d4e6e77427a4379456d675a50414246595856635a4170416861485a4e612f

Deployed Bytecode

0x6080604052600436106102305760003560e01c806377ad99f01161012e578063b88d4fde116100ab578063eff31e9e1161006f578063eff31e9e146107dd578063f032554914610808578063f059443e1461081f578063f2fde38b14610848578063f47c84c51461087157610230565b8063b88d4fde146106e6578063bf20edc31461070f578063c87b56dd1461073a578063e464955214610777578063e985e9c5146107a057610230565b8063a0712d68116100f2578063a0712d6814610622578063a1a6cfec1461063e578063a22cb46514610669578063ad4efb4814610692578063ad68071e146106bb57610230565b806377ad99f01461055e57806378cf19e91461057a5780638da5cb5b146105a357806395d89b41146105ce578063964ad8c2146105f957610230565b806334918dfd116101bc5780636352211e116101805780636352211e146104795780636cae8d0d146104b657806370a08231146104df5780637146bd081461051c578063715018a61461054757610230565b806334918dfd146103d65780633ccfd60b146103ed5780633e343865146103f757806342842e0e146104135780634b2647d21461043c57610230565b806318160ddd1161020357806318160ddd146103035780631e386ed31461032e57806323b872dd1461035957806327d941821461038257806330176e13146103ad57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190612835565b61089c565b604051610269919061287d565b60405180910390f35b34801561027e57600080fd5b5061028761097e565b6040516102949190612928565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190612980565b610a10565b6040516102d191906129ee565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190612a35565b610a56565b005b34801561030f57600080fd5b50610318610b6d565b6040516103259190612a84565b60405180910390f35b34801561033a57600080fd5b50610343610b7e565b604051610350919061287d565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b9190612a9f565b610b91565b005b34801561038e57600080fd5b50610397610bf1565b6040516103a49190612a84565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf9190612c27565b610bf7565b005b3480156103e257600080fd5b506103eb610c12565b005b6103f5610c46565b005b610411600480360381019061040c9190612980565b610cc7565b005b34801561041f57600080fd5b5061043a60048036038101906104359190612a9f565b610dba565b005b34801561044857600080fd5b50610463600480360381019061045e9190612c70565b610dda565b604051610470919061287d565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b9190612980565b610ecf565b6040516104ad91906129ee565b60405180910390f35b3480156104c257600080fd5b506104dd60048036038101906104d89190612980565b610f80565b005b3480156104eb57600080fd5b5061050660048036038101906105019190612c70565b610f92565b6040516105139190612a84565b60405180910390f35b34801561052857600080fd5b50610531611049565b60405161053e9190612a84565b60405180910390f35b34801561055357600080fd5b5061055c61104f565b005b61057860048036038101906105739190612980565b611063565b005b34801561058657600080fd5b506105a1600480360381019061059c9190612a35565b6110e5565b005b3480156105af57600080fd5b506105b8611238565b6040516105c591906129ee565b60405180910390f35b3480156105da57600080fd5b506105e3611261565b6040516105f09190612928565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b9190612980565b6112f3565b005b61063c60048036038101906106379190612980565b611305565b005b34801561064a57600080fd5b50610653611360565b604051610660919061287d565b60405180910390f35b34801561067557600080fd5b50610690600480360381019061068b9190612cc9565b611373565b005b34801561069e57600080fd5b506106b960048036038101906106b49190612980565b611389565b005b3480156106c757600080fd5b506106d061139b565b6040516106dd9190612a84565b60405180910390f35b3480156106f257600080fd5b5061070d60048036038101906107089190612daa565b6113a1565b005b34801561071b57600080fd5b50610724611403565b60405161073191906129ee565b60405180910390f35b34801561074657600080fd5b50610761600480360381019061075c9190612980565b611429565b60405161076e9190612928565b60405180910390f35b34801561078357600080fd5b5061079e60048036038101906107999190612c70565b611491565b005b3480156107ac57600080fd5b506107c760048036038101906107c29190612e2d565b6114dd565b6040516107d4919061287d565b60405180910390f35b3480156107e957600080fd5b506107f2611571565b6040516107ff9190612a84565b60405180910390f35b34801561081457600080fd5b5061081d611577565b005b34801561082b57600080fd5b5061084660048036038101906108419190612980565b6115ab565b005b34801561085457600080fd5b5061086f600480360381019061086a9190612c70565b6115bd565b005b34801561087d57600080fd5b50610886611640565b6040516108939190612a84565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610977575061097682611654565b5b9050919050565b60606001805461098d90612e9c565b80601f01602080910402602001604051908101604052809291908181526020018280546109b990612e9c565b8015610a065780601f106109db57610100808354040283529160200191610a06565b820191906000526020600020905b8154815290600101906020018083116109e957829003601f168201915b5050505050905090565b6000610a1b826116be565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6182610ecf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac890612f3f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610af0611709565b73ffffffffffffffffffffffffffffffffffffffff161480610b1f5750610b1e81610b19611709565b6114dd565b5b610b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5590612fd1565b60405180910390fd5b610b688383611711565b505050565b6000610b796007611646565b905090565b600d60009054906101000a900460ff1681565b610ba2610b9c611709565b826117ca565b610be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd890613063565b60405180910390fd5b610bec83838361185f565b505050565b60095481565b610bff611ac5565b80600e9081610c0e919061322f565b5050565b610c1a611ac5565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b610c4e611ac5565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610c7490613332565b60006040518083038185875af1925050503d8060008114610cb1576040519150601f19603f3d011682016040523d82523d6000602084013e610cb6565b606091505b5050905080610cc457600080fd5b50565b600d60019054906101000a900460ff16610d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0d906133b9565b60405180910390fd5b610d1f33610dda565b610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5590613425565b60405180910390fd5b6000610d6a6007611646565b90506000610d7733610f92565b9050600a8382610d879190613474565b1115610d9257600080fd5b6009548383610da19190613474565b1115610dac57600080fd5b610db583611b43565b505050565b610dd5838383604051806020016040528060008152506113a1565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e185760009050610eca565b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401610e7591906129ee565b602060405180830381865afa158015610e92573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb691906134bd565b1115610ec55760019050610eca565b600090505b919050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6e90613536565b60405180910390fd5b80915050919050565b610f88611ac5565b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff9906135c8565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600a5481565b611057611ac5565b6110616000611cb4565b565b61106b611ac5565b60003373ffffffffffffffffffffffffffffffffffffffff168260405161109190613332565b60006040518083038185875af1925050503d80600081146110ce576040519150601f19603f3d011682016040523d82523d6000602084013e6110d3565b606091505b50509050806110e157600080fd5b5050565b6110ed611ac5565b60006110f833610f92565b905060006111066007611646565b9050600b5461111e8483611d7890919063ffffffff16565b111561115f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111569061365a565b60405180910390fd5b600c548311156111a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119b906136ec565b60405180910390fd5b61012c83836111b39190613474565b11156111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb9061377e565b60405180910390fd5b60005b838110156112315761121485828461120f9190613474565b611d8e565b61121e6007611dac565b80806112299061379e565b9150506111f7565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461127090612e9c565b80601f016020809104026020016040519081016040528092919081815260200182805461129c90612e9c565b80156112e95780601f106112be576101008083540402835291602001916112e9565b820191906000526020600020905b8154815290600101906020018083116112cc57829003601f168201915b5050505050905090565b6112fb611ac5565b80600c8190555050565b600d60009054906101000a900460ff16611354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134b90613858565b60405180910390fd5b61135d81611dc2565b50565b600d60019054906101000a900460ff1681565b61138561137e611709565b8383611fa5565b5050565b611391611ac5565b80600a8190555050565b60085481565b6113b26113ac611709565b836117ca565b6113f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e890613063565b60405180910390fd5b6113fd84848484612111565b50505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060611434826116be565b600061143e61216d565b9050600081511161145e5760405180602001604052806000815250611489565b80611468846121ff565b6040516020016114799291906138b4565b6040516020818303038152906040525b915050919050565b611499611ac5565b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c5481565b61157f611ac5565b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b6115b3611ac5565b8060088190555050565b6115c5611ac5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162b9061394a565b60405180910390fd5b61163d81611cb4565b50565b600b5481565b600081600001549050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6116c78161235f565b611706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fd90613536565b60405180910390fd5b50565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661178483610ecf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806117d683610ecf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611818575061181781856114dd565b5b8061185657508373ffffffffffffffffffffffffffffffffffffffff1661183e84610a10565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661187f82610ecf565b73ffffffffffffffffffffffffffffffffffffffff16146118d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cc906139dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193b90613a6e565b60405180910390fd5b61194f8383836123cb565b61195a600082611711565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119aa9190613a8e565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a019190613474565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ac08383836123d0565b505050565b611acd611709565b73ffffffffffffffffffffffffffffffffffffffff16611aeb611238565b73ffffffffffffffffffffffffffffffffffffffff1614611b41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3890613b0e565b60405180910390fd5b565b60008111611b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7d90613b7a565b60405180910390fd5b600a811115611bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc190613be6565b60405180910390fd5b6000611bd66007611646565b9050600954611bee8383611d7890919063ffffffff16565b1115611c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2690613c78565b60405180910390fd5b60003414611c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6990613ce4565b60405180910390fd5b60005b82811015611caf57611c92338284611c8d9190613474565b611d8e565b611c9c6007611dac565b8080611ca79061379e565b915050611c75565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611d869190613474565b905092915050565b611da88282604051806020016040528060008152506123d5565b5050565b6001816000016000828254019250508190555050565b6000611dcd33610f92565b905060008211611e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0990613b7a565b60405180910390fd5b600a54821115611e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4e90613d76565b60405180910390fd5b60148282611e659190613474565b1115611ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9d90613e08565b60405180910390fd5b6000611eb26007611646565b9050600b54611eca8483611d7890919063ffffffff16565b1115611f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0290613e9a565b60405180910390fd5b34611f218460085461243090919063ffffffff16565b1115611f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5990613ce4565b60405180910390fd5b60005b83811015611f9f57611f82338284611f7d9190613474565b611d8e565b611f8c6007611dac565b8080611f979061379e565b915050611f65565b50505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200a90613f06565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612104919061287d565b60405180910390a3505050565b61211c84848461185f565b61212884848484612446565b612167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215e90613f98565b60405180910390fd5b50505050565b6060600e805461217c90612e9c565b80601f01602080910402602001604051908101604052809291908181526020018280546121a890612e9c565b80156121f55780601f106121ca576101008083540402835291602001916121f5565b820191906000526020600020905b8154815290600101906020018083116121d857829003601f168201915b5050505050905090565b606060008203612246576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061235a565b600082905060005b600082146122785780806122619061379e565b915050600a826122719190613fe7565b915061224e565b60008167ffffffffffffffff81111561229457612293612afc565b5b6040519080825280601f01601f1916602001820160405280156122c65781602001600182028036833780820191505090505b5090505b60008514612353576001826122df9190613a8e565b9150600a856122ee9190614018565b60306122fa9190613474565b60f81b8183815181106123105761230f614049565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561234c9190613fe7565b94506122ca565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b6123df83836125cd565b6123ec6000848484612446565b61242b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242290613f98565b60405180910390fd5b505050565b6000818361243e9190614078565b905092915050565b60006124678473ffffffffffffffffffffffffffffffffffffffff166127a6565b156125c0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612490611709565b8786866040518563ffffffff1660e01b81526004016124b2949392919061410f565b6020604051808303816000875af19250505080156124ee57506040513d601f19601f820116820180604052508101906124eb9190614170565b60015b612570573d806000811461251e576040519150601f19603f3d011682016040523d82523d6000602084013e612523565b606091505b506000815103612568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255f90613f98565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125c5565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361263c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612633906141e9565b60405180910390fd5b6126458161235f565b15612685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267c90614255565b60405180910390fd5b612691600083836123cb565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126e19190613474565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127a2600083836123d0565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612812816127dd565b811461281d57600080fd5b50565b60008135905061282f81612809565b92915050565b60006020828403121561284b5761284a6127d3565b5b600061285984828501612820565b91505092915050565b60008115159050919050565b61287781612862565b82525050565b6000602082019050612892600083018461286e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128d25780820151818401526020810190506128b7565b60008484015250505050565b6000601f19601f8301169050919050565b60006128fa82612898565b61290481856128a3565b93506129148185602086016128b4565b61291d816128de565b840191505092915050565b6000602082019050818103600083015261294281846128ef565b905092915050565b6000819050919050565b61295d8161294a565b811461296857600080fd5b50565b60008135905061297a81612954565b92915050565b600060208284031215612996576129956127d3565b5b60006129a48482850161296b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129d8826129ad565b9050919050565b6129e8816129cd565b82525050565b6000602082019050612a0360008301846129df565b92915050565b612a12816129cd565b8114612a1d57600080fd5b50565b600081359050612a2f81612a09565b92915050565b60008060408385031215612a4c57612a4b6127d3565b5b6000612a5a85828601612a20565b9250506020612a6b8582860161296b565b9150509250929050565b612a7e8161294a565b82525050565b6000602082019050612a996000830184612a75565b92915050565b600080600060608486031215612ab857612ab76127d3565b5b6000612ac686828701612a20565b9350506020612ad786828701612a20565b9250506040612ae88682870161296b565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612b34826128de565b810181811067ffffffffffffffff82111715612b5357612b52612afc565b5b80604052505050565b6000612b666127c9565b9050612b728282612b2b565b919050565b600067ffffffffffffffff821115612b9257612b91612afc565b5b612b9b826128de565b9050602081019050919050565b82818337600083830152505050565b6000612bca612bc584612b77565b612b5c565b905082815260208101848484011115612be657612be5612af7565b5b612bf1848285612ba8565b509392505050565b600082601f830112612c0e57612c0d612af2565b5b8135612c1e848260208601612bb7565b91505092915050565b600060208284031215612c3d57612c3c6127d3565b5b600082013567ffffffffffffffff811115612c5b57612c5a6127d8565b5b612c6784828501612bf9565b91505092915050565b600060208284031215612c8657612c856127d3565b5b6000612c9484828501612a20565b91505092915050565b612ca681612862565b8114612cb157600080fd5b50565b600081359050612cc381612c9d565b92915050565b60008060408385031215612ce057612cdf6127d3565b5b6000612cee85828601612a20565b9250506020612cff85828601612cb4565b9150509250929050565b600067ffffffffffffffff821115612d2457612d23612afc565b5b612d2d826128de565b9050602081019050919050565b6000612d4d612d4884612d09565b612b5c565b905082815260208101848484011115612d6957612d68612af7565b5b612d74848285612ba8565b509392505050565b600082601f830112612d9157612d90612af2565b5b8135612da1848260208601612d3a565b91505092915050565b60008060008060808587031215612dc457612dc36127d3565b5b6000612dd287828801612a20565b9450506020612de387828801612a20565b9350506040612df48782880161296b565b925050606085013567ffffffffffffffff811115612e1557612e146127d8565b5b612e2187828801612d7c565b91505092959194509250565b60008060408385031215612e4457612e436127d3565b5b6000612e5285828601612a20565b9250506020612e6385828601612a20565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612eb457607f821691505b602082108103612ec757612ec6612e6d565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f296021836128a3565b9150612f3482612ecd565b604082019050919050565b60006020820190508181036000830152612f5881612f1c565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000612fbb603e836128a3565b9150612fc682612f5f565b604082019050919050565b60006020820190508181036000830152612fea81612fae565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b600061304d602e836128a3565b915061305882612ff1565b604082019050919050565b6000602082019050818103600083015261307c81613040565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026130e57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826130a8565b6130ef86836130a8565b95508019841693508086168417925050509392505050565b6000819050919050565b600061312c6131276131228461294a565b613107565b61294a565b9050919050565b6000819050919050565b61314683613111565b61315a61315282613133565b8484546130b5565b825550505050565b600090565b61316f613162565b61317a81848461313d565b505050565b5b8181101561319e57613193600082613167565b600181019050613180565b5050565b601f8211156131e3576131b481613083565b6131bd84613098565b810160208510156131cc578190505b6131e06131d885613098565b83018261317f565b50505b505050565b600082821c905092915050565b6000613206600019846008026131e8565b1980831691505092915050565b600061321f83836131f5565b9150826002028217905092915050565b61323882612898565b67ffffffffffffffff81111561325157613250612afc565b5b61325b8254612e9c565b6132668282856131a2565b600060209050601f8311600181146132995760008415613287578287015190505b6132918582613213565b8655506132f9565b601f1984166132a786613083565b60005b828110156132cf578489015182556001820191506020850194506020810190506132aa565b868310156132ec57848901516132e8601f8916826131f5565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b50565b600061331c600083613301565b91506133278261330c565b600082019050919050565b600061333d8261330f565b9150819050919050565b7f5072652d53616c65206d7573742062652061637469766520746f206d696e742060008201527f546f6b656e730000000000000000000000000000000000000000000000000000602082015250565b60006133a36026836128a3565b91506133ae82613347565b604082019050919050565b600060208201905081810360008301526133d281613396565b9050919050565b7f4d75737420686176652061206d696e7470617373000000000000000000000000600082015250565b600061340f6014836128a3565b915061341a826133d9565b602082019050919050565b6000602082019050818103600083015261343e81613402565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061347f8261294a565b915061348a8361294a565b92508282019050808211156134a2576134a1613445565b5b92915050565b6000815190506134b781612954565b92915050565b6000602082840312156134d3576134d26127d3565b5b60006134e1848285016134a8565b91505092915050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006135206018836128a3565b915061352b826134ea565b602082019050919050565b6000602082019050818103600083015261354f81613513565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006135b26029836128a3565b91506135bd82613556565b604082019050919050565b600060208201905081810360008301526135e1816135a5565b9050919050565b7f5265736572766520776f756c6420657863656564206d617820737570706c792060008201527f6f6620546f6b656e730000000000000000000000000000000000000000000000602082015250565b60006136446029836128a3565b915061364f826135e8565b604082019050919050565b6000602082019050818103600083015261367381613637565b9050919050565b7f43616e206f6e6c79206d696e742033303020746f6b656e73206174206120746960008201527f6d65000000000000000000000000000000000000000000000000000000000000602082015250565b60006136d66022836128a3565b91506136e18261367a565b604082019050919050565b60006020820190508181036000830152613705816136c9565b9050919050565b7f43616e206f6e6c7920726563696576652061206d6178696d756d206f6620333060008201527f3020746f6b656e73000000000000000000000000000000000000000000000000602082015250565b60006137686028836128a3565b91506137738261370c565b604082019050919050565b600060208201905081810360008301526137978161375b565b9050919050565b60006137a98261294a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036137db576137da613445565b5b600182019050919050565b7f53616c65206d7573742062652061637469766520746f206d696e7420546f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b60006138426022836128a3565b915061384d826137e6565b604082019050919050565b6000602082019050818103600083015261387181613835565b9050919050565b600081905092915050565b600061388e82612898565b6138988185613878565b93506138a88185602086016128b4565b80840191505092915050565b60006138c08285613883565b91506138cc8284613883565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006139346026836128a3565b915061393f826138d8565b604082019050919050565b6000602082019050818103600083015261396381613927565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006139c66025836128a3565b91506139d18261396a565b604082019050919050565b600060208201905081810360008301526139f5816139b9565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613a586024836128a3565b9150613a63826139fc565b604082019050919050565b60006020820190508181036000830152613a8781613a4b565b9050919050565b6000613a998261294a565b9150613aa48361294a565b9250828203905081811115613abc57613abb613445565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613af86020836128a3565b9150613b0382613ac2565b602082019050919050565b60006020820190508181036000830152613b2781613aeb565b9050919050565b7f6e756d6265724f664e6674732063616e6e6f7420626520300000000000000000600082015250565b6000613b646018836128a3565b9150613b6f82613b2e565b602082019050919050565b60006020820190508181036000830152613b9381613b57565b9050919050565b7f43616e206f6e6c79206d696e7420313020746f6b656e00000000000000000000600082015250565b6000613bd06016836128a3565b9150613bdb82613b9a565b602082019050919050565b60006020820190508181036000830152613bff81613bc3565b9050919050565b7f507572636861736520776f756c6420657863656564206d61782050726520737560008201527f70706c79206f6620546f6b656e73000000000000000000000000000000000000602082015250565b6000613c62602e836128a3565b9150613c6d82613c06565b604082019050919050565b60006020820190508181036000830152613c9181613c55565b9050919050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b6000613cce601f836128a3565b9150613cd982613c98565b602082019050919050565b60006020820190508181036000830152613cfd81613cc1565b9050919050565b7f43616e206f6e6c79206d696e7420323020746f6b656e73207065722077616c6c60008201527f6574000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d606022836128a3565b9150613d6b82613d04565b604082019050919050565b60006020820190508181036000830152613d8f81613d53565b9050919050565b7f596f752063616e206f6e6c79206d696e74203230206e6674732070657220776160008201527f6c6c657400000000000000000000000000000000000000000000000000000000602082015250565b6000613df26024836128a3565b9150613dfd82613d96565b604082019050919050565b60006020820190508181036000830152613e2181613de5565b9050919050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620546f6b656e7300000000000000000000000000000000000000000000602082015250565b6000613e84602a836128a3565b9150613e8f82613e28565b604082019050919050565b60006020820190508181036000830152613eb381613e77565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613ef06019836128a3565b9150613efb82613eba565b602082019050919050565b60006020820190508181036000830152613f1f81613ee3565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613f826032836128a3565b9150613f8d82613f26565b604082019050919050565b60006020820190508181036000830152613fb181613f75565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613ff28261294a565b9150613ffd8361294a565b92508261400d5761400c613fb8565b5b828204905092915050565b60006140238261294a565b915061402e8361294a565b92508261403e5761403d613fb8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006140838261294a565b915061408e8361294a565b925082820261409c8161294a565b915082820484148315176140b3576140b2613445565b5b5092915050565b600081519050919050565b600082825260208201905092915050565b60006140e1826140ba565b6140eb81856140c5565b93506140fb8185602086016128b4565b614104816128de565b840191505092915050565b600060808201905061412460008301876129df565b61413160208301866129df565b61413e6040830185612a75565b818103606083015261415081846140d6565b905095945050505050565b60008151905061416a81612809565b92915050565b600060208284031215614186576141856127d3565b5b60006141948482850161415b565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006141d36020836128a3565b91506141de8261419d565b602082019050919050565b60006020820190508181036000830152614202816141c6565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061423f601c836128a3565b915061424a82614209565b602082019050919050565b6000602082019050818103600083015261426e81614232565b905091905056fea26469706673582212201a22b5f03b507692bb7b919216f57a1a9b27994bb316a8f2f141e4a89f4a959e64736f6c63430008110033

Deployed Bytecode Sourcemap

54894:5327:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34415:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35342:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36855:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36372:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58657:101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55308:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37555:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55107:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59274:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58922:89;;;;;;;;;;;;;:::i;:::-;;59847:192;;;:::i;:::-;;56332:476;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37962:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57011:261;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35053:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59511:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34784:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55151:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13871:103;;;;;;;;;;;;;:::i;:::-;;60046:172;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55690:623;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13223:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35511:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59629:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56835:172;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55351:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37098:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59385:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55062:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38218:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55435:68;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35686:281;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59169:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37324:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55251:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59064:98;;;;;;;;;;;;;:::i;:::-;;59747:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14129:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55194:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34415:305;34517:4;34569:25;34554:40;;;:11;:40;;;;:105;;;;34626:33;34611:48;;;:11;:48;;;;34554:105;:158;;;;34676:36;34700:11;34676:23;:36::i;:::-;34554:158;34534:178;;34415:305;;;:::o;35342:100::-;35396:13;35429:5;35422:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35342:100;:::o;36855:171::-;36931:7;36951:23;36966:7;36951:14;:23::i;:::-;36994:15;:24;37010:7;36994:24;;;;;;;;;;;;;;;;;;;;;36987:31;;36855:171;;;:::o;36372:417::-;36453:13;36469:23;36484:7;36469:14;:23::i;:::-;36453:39;;36517:5;36511:11;;:2;:11;;;36503:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;36611:5;36595:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;36620:37;36637:5;36644:12;:10;:12::i;:::-;36620:16;:37::i;:::-;36595:62;36573:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;36760:21;36769:2;36773:7;36760:8;:21::i;:::-;36442:347;36372:417;;:::o;58657:101::-;58701:7;58728:22;:12;:20;:22::i;:::-;58721:29;;58657:101;:::o;55308:31::-;;;;;;;;;;;;;:::o;37555:336::-;37750:41;37769:12;:10;:12::i;:::-;37783:7;37750:18;:41::i;:::-;37742:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;37855:28;37865:4;37871:2;37875:7;37855:9;:28::i;:::-;37555:336;;;:::o;55107:33::-;;;;:::o;59274:107::-;13109:13;:11;:13::i;:::-;59366:7:::1;59350:13;:23;;;;;;:::i;:::-;;59274:107:::0;:::o;58922:89::-;13109:13;:11;:13::i;:::-;58991:12:::1;;;;;;;;;;;58990:13;58975:12;;:28;;;;;;;;;;;;;;;;;;58922:89::o:0;59847:192::-;13109:13;:11;:13::i;:::-;59904:12:::1;59930:10;59922:24;;59968:21;59922:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59903:101;;;60023:7;60015:16;;;::::0;::::1;;59892:147;59847:192::o:0;56332:476::-;56413:15;;;;;;;;;;;56405:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;56490:23;56502:10;56490:11;:23::i;:::-;56482:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;56549:11;56563:22;:12;:20;:22::i;:::-;56549:36;;56596:23;56622:21;56632:10;56622:9;:21::i;:::-;56596:47;;56695:2;56678:14;56662:15;:30;;;;:::i;:::-;:35;;56654:44;;;;;;56744:11;;56726:14;56717:6;:23;;;;:::i;:::-;:38;;56709:47;;;;;;56769:31;56785:14;56769:15;:31::i;:::-;56394:414;;56332:476;:::o;37962:185::-;38100:39;38117:4;38123:2;38127:7;38100:39;;;;;;;;;;;;:16;:39::i;:::-;37962:185;;;:::o;57011:261::-;57069:4;57104:1;57088:18;;:6;:18;;;57085:147;;57129:5;57122:12;;;;57085:147;57192:1;57164:8;;;;;;;;;;;57156:27;;;57184:6;57156:35;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:37;57152:80;;;57216:4;57209:11;;;;57152:80;57259:5;57252:12;;57011:261;;;;:::o;35053:222::-;35125:7;35145:13;35161:7;:16;35169:7;35161:16;;;;;;;;;;;;;;;;;;;;;35145:32;;35213:1;35196:19;;:5;:19;;;35188:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;35262:5;35255:12;;;35053:222;;;:::o;59511:110::-;13109:13;:11;:13::i;:::-;59599:14:::1;59586:10;:27;;;;59511:110:::0;:::o;34784:207::-;34856:7;34901:1;34884:19;;:5;:19;;;34876:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;34967:9;:16;34977:5;34967:16;;;;;;;;;;;;;;;;34960:23;;34784:207;;;:::o;55151:32::-;;;;:::o;13871:103::-;13109:13;:11;:13::i;:::-;13936:30:::1;13963:1;13936:18;:30::i;:::-;13871:103::o:0;60046:172::-;13109:13;:11;:13::i;:::-;60121:12:::1;60147:10;60139:24;;60171:7;60139:44;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60120:63;;;60202:7;60194:16;;;::::0;::::1;;60109:109;60046:172:::0;:::o;55690:623::-;13109:13;:11;:13::i;:::-;55772:23:::1;55798:21;55808:10;55798:9;:21::i;:::-;55772:47;;55833:11;55847:22;:12;:20;:22::i;:::-;55833:36;;55918:10;;55888:26;55899:14;55888:6;:10;;:26;;;;:::i;:::-;:40;;55880:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;56011:11;;55993:14;:29;;55985:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;56114:3;56097:14;56080:15;:31;;;;:::i;:::-;:37;;56072:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;56178:6;56173:133;56194:14;56190:1;:18;56173:133;;;56230:25;56240:2;56253:1;56244:6;:10;;;;:::i;:::-;56230:9;:25::i;:::-;56270:24;:12;:22;:24::i;:::-;56210:3;;;;;:::i;:::-;;;;56173:133;;;;55762:551;;55690:623:::0;;:::o;13223:87::-;13269:7;13296:6;;;;;;;;;;;13289:13;;13223:87;:::o;35511:104::-;35567:13;35600:7;35593:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35511:104;:::o;59629:114::-;13109:13;:11;:13::i;:::-;59720:15:::1;59706:11;:29;;;;59629:114:::0;:::o;56835:172::-;56909:12;;;;;;;;;;;56901:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;56971:28;56984:14;56971:12;:28::i;:::-;56835:172;:::o;55351:34::-;;;;;;;;;;;;;:::o;37098:155::-;37193:52;37212:12;:10;:12::i;:::-;37226:8;37236;37193:18;:52::i;:::-;37098:155;;:::o;59385:118::-;13109:13;:11;:13::i;:::-;59479:16:::1;59464:12;:31;;;;59385:118:::0;:::o;55062:34::-;;;;:::o;38218:323::-;38392:41;38411:12;:10;:12::i;:::-;38425:7;38392:18;:41::i;:::-;38384:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;38495:38;38509:4;38515:2;38519:7;38528:4;38495:13;:38::i;:::-;38218:323;;;;:::o;55435:68::-;;;;;;;;;;;;;:::o;35686:281::-;35759:13;35785:23;35800:7;35785:14;:23::i;:::-;35821:21;35845:10;:8;:10::i;:::-;35821:34;;35897:1;35879:7;35873:21;:25;:86;;;;;;;;;;;;;;;;;35925:7;35934:18;:7;:16;:18::i;:::-;35908:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35873:86;35866:93;;;35686:281;;;:::o;59169:101::-;13109:13;:11;:13::i;:::-;59252:10:::1;59241:8;;:21;;;;;;;;;;;;;;;;;;59169:101:::0;:::o;37324:164::-;37421:4;37445:18;:25;37464:5;37445:25;;;;;;;;;;;;;;;:35;37471:8;37445:35;;;;;;;;;;;;;;;;;;;;;;;;;37438:42;;37324:164;;;;:::o;55251:32::-;;;;:::o;59064:98::-;13109:13;:11;:13::i;:::-;59139:15:::1;;;;;;;;;;;59138:16;59120:15;;:34;;;;;;;;;;;;;;;;;;59064:98::o:0;59747:94::-;13109:13;:11;:13::i;:::-;59823:10:::1;59814:6;:19;;;;59747:94:::0;:::o;14129:201::-;13109:13;:11;:13::i;:::-;14238:1:::1;14218:22;;:8;:22;;::::0;14210:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;14294:28;14313:8;14294:18;:28::i;:::-;14129:201:::0;:::o;55194:46::-;;;;:::o;8005:114::-;8070:7;8097;:14;;;8090:21;;8005:114;;;:::o;26077:157::-;26162:4;26201:25;26186:40;;;:11;:40;;;;26179:47;;26077:157;;;:::o;44830:135::-;44912:16;44920:7;44912;:16::i;:::-;44904:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;44830:135;:::o;11774:98::-;11827:7;11854:10;11847:17;;11774:98;:::o;44109:174::-;44211:2;44184:15;:24;44200:7;44184:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44267:7;44263:2;44229:46;;44238:23;44253:7;44238:14;:23::i;:::-;44229:46;;;;;;;;;;;;44109:174;;:::o;40342:264::-;40435:4;40452:13;40468:23;40483:7;40468:14;:23::i;:::-;40452:39;;40521:5;40510:16;;:7;:16;;;:52;;;;40530:32;40547:5;40554:7;40530:16;:32::i;:::-;40510:52;:87;;;;40590:7;40566:31;;:20;40578:7;40566:11;:20::i;:::-;:31;;;40510:87;40502:96;;;40342:264;;;;:::o;43365:625::-;43524:4;43497:31;;:23;43512:7;43497:14;:23::i;:::-;:31;;;43489:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;43603:1;43589:16;;:2;:16;;;43581:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;43659:39;43680:4;43686:2;43690:7;43659:20;:39::i;:::-;43763:29;43780:1;43784:7;43763:8;:29::i;:::-;43824:1;43805:9;:15;43815:4;43805:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;43853:1;43836:9;:13;43846:2;43836:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;43884:2;43865:7;:16;43873:7;43865:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;43923:7;43919:2;43904:27;;43913:4;43904:27;;;;;;;;;;;;43944:38;43964:4;43970:2;43974:7;43944:19;:38::i;:::-;43365:625;;;:::o;13388:132::-;13463:12;:10;:12::i;:::-;13452:23;;:7;:5;:7::i;:::-;:23;;;13444:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13388:132::o;57308:572::-;57400:1;57383:14;:18;57375:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;57466:2;57449:14;:19;;57441:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;57506:14;57523:22;:12;:20;:22::i;:::-;57506:39;;57594:11;;57564:26;57575:14;57564:6;:10;;:26;;;;:::i;:::-;:41;;57556:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;57687:1;57675:9;:13;57667:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;57741:9;57737:140;57756:14;57752:1;:18;57737:140;;;57791:35;57802:10;57823:1;57814:6;:10;;;;:::i;:::-;57791:9;:35::i;:::-;57841:24;:12;:22;:24::i;:::-;57772:3;;;;;:::i;:::-;;;;57737:140;;;;57364:516;57308:572;:::o;14490:191::-;14564:16;14583:6;;;;;;;;;;;14564:25;;14609:8;14600:6;;:17;;;;;;;;;;;;;;;;;;14664:8;14633:40;;14654:8;14633:40;;;;;;;;;;;;14553:128;14490:191;:::o;2915:98::-;2973:7;3004:1;3000;:5;;;;:::i;:::-;2993:12;;2915:98;;;;:::o;40948:110::-;41024:26;41034:2;41038:7;41024:26;;;;;;;;;;;;:9;:26::i;:::-;40948:110;;:::o;8127:127::-;8234:1;8216:7;:14;;;:19;;;;;;;;;;;8127:127;:::o;57882:771::-;57946:23;57972:21;57982:10;57972:9;:21::i;:::-;57946:47;;58029:1;58012:14;:18;58004:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;58096:12;;58078:14;:30;;58070:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;58200:2;58184:14;58166:15;:32;;;;:::i;:::-;:36;;58158:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;58254:14;58271:22;:12;:20;:22::i;:::-;58254:39;;58342:10;;58312:26;58323:14;58312:6;:10;;:26;;;;:::i;:::-;:40;;58304:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;58448:9;58418:26;58429:14;58418:6;;:10;;:26;;;;:::i;:::-;:39;;58410:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;58510:9;58506:140;58525:14;58521:1;:18;58506:140;;;58560:35;58571:10;58592:1;58583:6;:10;;;;:::i;:::-;58560:9;:35::i;:::-;58610:24;:12;:22;:24::i;:::-;58541:3;;;;;:::i;:::-;;;;58506:140;;;;57935:718;;57882:771;:::o;44426:315::-;44581:8;44572:17;;:5;:17;;;44564:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;44668:8;44630:18;:25;44649:5;44630:25;;;;;;;;;;;;;;;:35;44656:8;44630:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;44714:8;44692:41;;44707:5;44692:41;;;44724:8;44692:41;;;;;;:::i;:::-;;;;;;;;44426:315;;;:::o;39422:313::-;39578:28;39588:4;39594:2;39598:7;39578:9;:28::i;:::-;39625:47;39648:4;39654:2;39658:7;39667:4;39625:22;:47::i;:::-;39617:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;39422:313;;;;:::o;58760:114::-;58820:13;58853;58846:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58760:114;:::o;9028:723::-;9084:13;9314:1;9305:5;:10;9301:53;;9332:10;;;;;;;;;;;;;;;;;;;;;9301:53;9364:12;9379:5;9364:20;;9395:14;9420:78;9435:1;9427:4;:9;9420:78;;9453:8;;;;;:::i;:::-;;;;9484:2;9476:10;;;;;:::i;:::-;;;9420:78;;;9508:19;9540:6;9530:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9508:39;;9558:154;9574:1;9565:5;:10;9558:154;;9602:1;9592:11;;;;;:::i;:::-;;;9669:2;9661:5;:10;;;;:::i;:::-;9648:2;:24;;;;:::i;:::-;9635:39;;9618:6;9625;9618:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;9698:2;9689:11;;;;;:::i;:::-;;;9558:154;;;9736:6;9722:21;;;;;9028:723;;;;:::o;40048:127::-;40113:4;40165:1;40137:30;;:7;:16;40145:7;40137:16;;;;;;;;;;;;;;;;;;;;;:30;;;;40130:37;;40048:127;;;:::o;46954:126::-;;;;:::o;47465:125::-;;;;:::o;41285:319::-;41414:18;41420:2;41424:7;41414:5;:18::i;:::-;41465:53;41496:1;41500:2;41504:7;41513:4;41465:22;:53::i;:::-;41443:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;41285:319;;;:::o;3653:98::-;3711:7;3742:1;3738;:5;;;;:::i;:::-;3731:12;;3653:98;;;;:::o;45529:853::-;45683:4;45704:15;:2;:13;;;:15::i;:::-;45700:675;;;45756:2;45740:36;;;45777:12;:10;:12::i;:::-;45791:4;45797:7;45806:4;45740:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45736:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45998:1;45981:6;:13;:18;45977:328;;46024:60;;;;;;;;;;:::i;:::-;;;;;;;;45977:328;46255:6;46249:13;46240:6;46236:2;46232:15;46225:38;45736:584;45872:41;;;45862:51;;;:6;:51;;;;45855:58;;;;;45700:675;46359:4;46352:11;;45529:853;;;;;;;:::o;41940:439::-;42034:1;42020:16;;:2;:16;;;42012:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;42093:16;42101:7;42093;:16::i;:::-;42092:17;42084:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;42155:45;42184:1;42188:2;42192:7;42155:20;:45::i;:::-;42230:1;42213:9;:13;42223:2;42213:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;42261:2;42242:7;:16;42250:7;42242:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;42306:7;42302:2;42281:33;;42298:1;42281:33;;;;;;;;;;;;42327:44;42355:1;42359:2;42363:7;42327:19;:44::i;:::-;41940:439;;:::o;15921:326::-;15981:4;16238:1;16216:7;:19;;;:23;16209:30;;15921:326;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:180;6161:77;6158:1;6151:88;6258:4;6255:1;6248:15;6282:4;6279:1;6272:15;6299:281;6382:27;6404:4;6382:27;:::i;:::-;6374:6;6370:40;6512:6;6500:10;6497:22;6476:18;6464:10;6461:34;6458:62;6455:88;;;6523:18;;:::i;:::-;6455:88;6563:10;6559:2;6552:22;6342:238;6299:281;;:::o;6586:129::-;6620:6;6647:20;;:::i;:::-;6637:30;;6676:33;6704:4;6696:6;6676:33;:::i;:::-;6586:129;;;:::o;6721:308::-;6783:4;6873:18;6865:6;6862:30;6859:56;;;6895:18;;:::i;:::-;6859:56;6933:29;6955:6;6933:29;:::i;:::-;6925:37;;7017:4;7011;7007:15;6999:23;;6721:308;;;:::o;7035:146::-;7132:6;7127:3;7122;7109:30;7173:1;7164:6;7159:3;7155:16;7148:27;7035:146;;;:::o;7187:425::-;7265:5;7290:66;7306:49;7348:6;7306:49;:::i;:::-;7290:66;:::i;:::-;7281:75;;7379:6;7372:5;7365:21;7417:4;7410:5;7406:16;7455:3;7446:6;7441:3;7437:16;7434:25;7431:112;;;7462:79;;:::i;:::-;7431:112;7552:54;7599:6;7594:3;7589;7552:54;:::i;:::-;7271:341;7187:425;;;;;:::o;7632:340::-;7688:5;7737:3;7730:4;7722:6;7718:17;7714:27;7704:122;;7745:79;;:::i;:::-;7704:122;7862:6;7849:20;7887:79;7962:3;7954:6;7947:4;7939:6;7935:17;7887:79;:::i;:::-;7878:88;;7694:278;7632:340;;;;:::o;7978:509::-;8047:6;8096:2;8084:9;8075:7;8071:23;8067:32;8064:119;;;8102:79;;:::i;:::-;8064:119;8250:1;8239:9;8235:17;8222:31;8280:18;8272:6;8269:30;8266:117;;;8302:79;;:::i;:::-;8266:117;8407:63;8462:7;8453:6;8442:9;8438:22;8407:63;:::i;:::-;8397:73;;8193:287;7978:509;;;;:::o;8493:329::-;8552:6;8601:2;8589:9;8580:7;8576:23;8572:32;8569:119;;;8607:79;;:::i;:::-;8569:119;8727:1;8752:53;8797:7;8788:6;8777:9;8773:22;8752:53;:::i;:::-;8742:63;;8698:117;8493:329;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:474::-;11679:6;11687;11736:2;11724:9;11715:7;11711:23;11707:32;11704:119;;;11742:79;;:::i;:::-;11704:119;11862:1;11887:53;11932:7;11923:6;11912:9;11908:22;11887:53;:::i;:::-;11877:63;;11833:117;11989:2;12015:53;12060:7;12051:6;12040:9;12036:22;12015:53;:::i;:::-;12005:63;;11960:118;11611:474;;;;;:::o;12091:180::-;12139:77;12136:1;12129:88;12236:4;12233:1;12226:15;12260:4;12257:1;12250:15;12277:320;12321:6;12358:1;12352:4;12348:12;12338:22;;12405:1;12399:4;12395:12;12426:18;12416:81;;12482:4;12474:6;12470:17;12460:27;;12416:81;12544:2;12536:6;12533:14;12513:18;12510:38;12507:84;;12563:18;;:::i;:::-;12507:84;12328:269;12277:320;;;:::o;12603:220::-;12743:34;12739:1;12731:6;12727:14;12720:58;12812:3;12807:2;12799:6;12795:15;12788:28;12603:220;:::o;12829:366::-;12971:3;12992:67;13056:2;13051:3;12992:67;:::i;:::-;12985:74;;13068:93;13157:3;13068:93;:::i;:::-;13186:2;13181:3;13177:12;13170:19;;12829:366;;;:::o;13201:419::-;13367:4;13405:2;13394:9;13390:18;13382:26;;13454:9;13448:4;13444:20;13440:1;13429:9;13425:17;13418:47;13482:131;13608:4;13482:131;:::i;:::-;13474:139;;13201:419;;;:::o;13626:249::-;13766:34;13762:1;13754:6;13750:14;13743:58;13835:32;13830:2;13822:6;13818:15;13811:57;13626:249;:::o;13881:366::-;14023:3;14044:67;14108:2;14103:3;14044:67;:::i;:::-;14037:74;;14120:93;14209:3;14120:93;:::i;:::-;14238:2;14233:3;14229:12;14222:19;;13881:366;;;:::o;14253:419::-;14419:4;14457:2;14446:9;14442:18;14434:26;;14506:9;14500:4;14496:20;14492:1;14481:9;14477:17;14470:47;14534:131;14660:4;14534:131;:::i;:::-;14526:139;;14253:419;;;:::o;14678:233::-;14818:34;14814:1;14806:6;14802:14;14795:58;14887:16;14882:2;14874:6;14870:15;14863:41;14678:233;:::o;14917:366::-;15059:3;15080:67;15144:2;15139:3;15080:67;:::i;:::-;15073:74;;15156:93;15245:3;15156:93;:::i;:::-;15274:2;15269:3;15265:12;15258:19;;14917:366;;;:::o;15289:419::-;15455:4;15493:2;15482:9;15478:18;15470:26;;15542:9;15536:4;15532:20;15528:1;15517:9;15513:17;15506:47;15570:131;15696:4;15570:131;:::i;:::-;15562:139;;15289:419;;;:::o;15714:141::-;15763:4;15786:3;15778:11;;15809:3;15806:1;15799:14;15843:4;15840:1;15830:18;15822:26;;15714:141;;;:::o;15861:93::-;15898:6;15945:2;15940;15933:5;15929:14;15925:23;15915:33;;15861:93;;;:::o;15960:107::-;16004:8;16054:5;16048:4;16044:16;16023:37;;15960:107;;;;:::o;16073:393::-;16142:6;16192:1;16180:10;16176:18;16215:97;16245:66;16234:9;16215:97;:::i;:::-;16333:39;16363:8;16352:9;16333:39;:::i;:::-;16321:51;;16405:4;16401:9;16394:5;16390:21;16381:30;;16454:4;16444:8;16440:19;16433:5;16430:30;16420:40;;16149:317;;16073:393;;;;;:::o;16472:60::-;16500:3;16521:5;16514:12;;16472:60;;;:::o;16538:142::-;16588:9;16621:53;16639:34;16648:24;16666:5;16648:24;:::i;:::-;16639:34;:::i;:::-;16621:53;:::i;:::-;16608:66;;16538:142;;;:::o;16686:75::-;16729:3;16750:5;16743:12;;16686:75;;;:::o;16767:269::-;16877:39;16908:7;16877:39;:::i;:::-;16938:91;16987:41;17011:16;16987:41;:::i;:::-;16979:6;16972:4;16966:11;16938:91;:::i;:::-;16932:4;16925:105;16843:193;16767:269;;;:::o;17042:73::-;17087:3;17042:73;:::o;17121:189::-;17198:32;;:::i;:::-;17239:65;17297:6;17289;17283:4;17239:65;:::i;:::-;17174:136;17121:189;;:::o;17316:186::-;17376:120;17393:3;17386:5;17383:14;17376:120;;;17447:39;17484:1;17477:5;17447:39;:::i;:::-;17420:1;17413:5;17409:13;17400:22;;17376:120;;;17316:186;;:::o;17508:543::-;17609:2;17604:3;17601:11;17598:446;;;17643:38;17675:5;17643:38;:::i;:::-;17727:29;17745:10;17727:29;:::i;:::-;17717:8;17713:44;17910:2;17898:10;17895:18;17892:49;;;17931:8;17916:23;;17892:49;17954:80;18010:22;18028:3;18010:22;:::i;:::-;18000:8;17996:37;17983:11;17954:80;:::i;:::-;17613:431;;17598:446;17508:543;;;:::o;18057:117::-;18111:8;18161:5;18155:4;18151:16;18130:37;;18057:117;;;;:::o;18180:169::-;18224:6;18257:51;18305:1;18301:6;18293:5;18290:1;18286:13;18257:51;:::i;:::-;18253:56;18338:4;18332;18328:15;18318:25;;18231:118;18180:169;;;;:::o;18354:295::-;18430:4;18576:29;18601:3;18595:4;18576:29;:::i;:::-;18568:37;;18638:3;18635:1;18631:11;18625:4;18622:21;18614:29;;18354:295;;;;:::o;18654:1395::-;18771:37;18804:3;18771:37;:::i;:::-;18873:18;18865:6;18862:30;18859:56;;;18895:18;;:::i;:::-;18859:56;18939:38;18971:4;18965:11;18939:38;:::i;:::-;19024:67;19084:6;19076;19070:4;19024:67;:::i;:::-;19118:1;19142:4;19129:17;;19174:2;19166:6;19163:14;19191:1;19186:618;;;;19848:1;19865:6;19862:77;;;19914:9;19909:3;19905:19;19899:26;19890:35;;19862:77;19965:67;20025:6;20018:5;19965:67;:::i;:::-;19959:4;19952:81;19821:222;19156:887;;19186:618;19238:4;19234:9;19226:6;19222:22;19272:37;19304:4;19272:37;:::i;:::-;19331:1;19345:208;19359:7;19356:1;19353:14;19345:208;;;19438:9;19433:3;19429:19;19423:26;19415:6;19408:42;19489:1;19481:6;19477:14;19467:24;;19536:2;19525:9;19521:18;19508:31;;19382:4;19379:1;19375:12;19370:17;;19345:208;;;19581:6;19572:7;19569:19;19566:179;;;19639:9;19634:3;19630:19;19624:26;19682:48;19724:4;19716:6;19712:17;19701:9;19682:48;:::i;:::-;19674:6;19667:64;19589:156;19566:179;19791:1;19787;19779:6;19775:14;19771:22;19765:4;19758:36;19193:611;;;19156:887;;18746:1303;;;18654:1395;;:::o;20055:147::-;20156:11;20193:3;20178:18;;20055:147;;;;:::o;20208:114::-;;:::o;20328:398::-;20487:3;20508:83;20589:1;20584:3;20508:83;:::i;:::-;20501:90;;20600:93;20689:3;20600:93;:::i;:::-;20718:1;20713:3;20709:11;20702:18;;20328:398;;;:::o;20732:379::-;20916:3;20938:147;21081:3;20938:147;:::i;:::-;20931:154;;21102:3;21095:10;;20732:379;;;:::o;21117:225::-;21257:34;21253:1;21245:6;21241:14;21234:58;21326:8;21321:2;21313:6;21309:15;21302:33;21117:225;:::o;21348:366::-;21490:3;21511:67;21575:2;21570:3;21511:67;:::i;:::-;21504:74;;21587:93;21676:3;21587:93;:::i;:::-;21705:2;21700:3;21696:12;21689:19;;21348:366;;;:::o;21720:419::-;21886:4;21924:2;21913:9;21909:18;21901:26;;21973:9;21967:4;21963:20;21959:1;21948:9;21944:17;21937:47;22001:131;22127:4;22001:131;:::i;:::-;21993:139;;21720:419;;;:::o;22145:170::-;22285:22;22281:1;22273:6;22269:14;22262:46;22145:170;:::o;22321:366::-;22463:3;22484:67;22548:2;22543:3;22484:67;:::i;:::-;22477:74;;22560:93;22649:3;22560:93;:::i;:::-;22678:2;22673:3;22669:12;22662:19;;22321:366;;;:::o;22693:419::-;22859:4;22897:2;22886:9;22882:18;22874:26;;22946:9;22940:4;22936:20;22932:1;22921:9;22917:17;22910:47;22974:131;23100:4;22974:131;:::i;:::-;22966:139;;22693:419;;;:::o;23118:180::-;23166:77;23163:1;23156:88;23263:4;23260:1;23253:15;23287:4;23284:1;23277:15;23304:191;23344:3;23363:20;23381:1;23363:20;:::i;:::-;23358:25;;23397:20;23415:1;23397:20;:::i;:::-;23392:25;;23440:1;23437;23433:9;23426:16;;23461:3;23458:1;23455:10;23452:36;;;23468:18;;:::i;:::-;23452:36;23304:191;;;;:::o;23501:143::-;23558:5;23589:6;23583:13;23574:22;;23605:33;23632:5;23605:33;:::i;:::-;23501:143;;;;:::o;23650:351::-;23720:6;23769:2;23757:9;23748:7;23744:23;23740:32;23737:119;;;23775:79;;:::i;:::-;23737:119;23895:1;23920:64;23976:7;23967:6;23956:9;23952:22;23920:64;:::i;:::-;23910:74;;23866:128;23650:351;;;;:::o;24007:174::-;24147:26;24143:1;24135:6;24131:14;24124:50;24007:174;:::o;24187:366::-;24329:3;24350:67;24414:2;24409:3;24350:67;:::i;:::-;24343:74;;24426:93;24515:3;24426:93;:::i;:::-;24544:2;24539:3;24535:12;24528:19;;24187:366;;;:::o;24559:419::-;24725:4;24763:2;24752:9;24748:18;24740:26;;24812:9;24806:4;24802:20;24798:1;24787:9;24783:17;24776:47;24840:131;24966:4;24840:131;:::i;:::-;24832:139;;24559:419;;;:::o;24984:228::-;25124:34;25120:1;25112:6;25108:14;25101:58;25193:11;25188:2;25180:6;25176:15;25169:36;24984:228;:::o;25218:366::-;25360:3;25381:67;25445:2;25440:3;25381:67;:::i;:::-;25374:74;;25457:93;25546:3;25457:93;:::i;:::-;25575:2;25570:3;25566:12;25559:19;;25218:366;;;:::o;25590:419::-;25756:4;25794:2;25783:9;25779:18;25771:26;;25843:9;25837:4;25833:20;25829:1;25818:9;25814:17;25807:47;25871:131;25997:4;25871:131;:::i;:::-;25863:139;;25590:419;;;:::o;26015:228::-;26155:34;26151:1;26143:6;26139:14;26132:58;26224:11;26219:2;26211:6;26207:15;26200:36;26015:228;:::o;26249:366::-;26391:3;26412:67;26476:2;26471:3;26412:67;:::i;:::-;26405:74;;26488:93;26577:3;26488:93;:::i;:::-;26606:2;26601:3;26597:12;26590:19;;26249:366;;;:::o;26621:419::-;26787:4;26825:2;26814:9;26810:18;26802:26;;26874:9;26868:4;26864:20;26860:1;26849:9;26845:17;26838:47;26902:131;27028:4;26902:131;:::i;:::-;26894:139;;26621:419;;;:::o;27046:221::-;27186:34;27182:1;27174:6;27170:14;27163:58;27255:4;27250:2;27242:6;27238:15;27231:29;27046:221;:::o;27273:366::-;27415:3;27436:67;27500:2;27495:3;27436:67;:::i;:::-;27429:74;;27512:93;27601:3;27512:93;:::i;:::-;27630:2;27625:3;27621:12;27614:19;;27273:366;;;:::o;27645:419::-;27811:4;27849:2;27838:9;27834:18;27826:26;;27898:9;27892:4;27888:20;27884:1;27873:9;27869:17;27862:47;27926:131;28052:4;27926:131;:::i;:::-;27918:139;;27645:419;;;:::o;28070:227::-;28210:34;28206:1;28198:6;28194:14;28187:58;28279:10;28274:2;28266:6;28262:15;28255:35;28070:227;:::o;28303:366::-;28445:3;28466:67;28530:2;28525:3;28466:67;:::i;:::-;28459:74;;28542:93;28631:3;28542:93;:::i;:::-;28660:2;28655:3;28651:12;28644:19;;28303:366;;;:::o;28675:419::-;28841:4;28879:2;28868:9;28864:18;28856:26;;28928:9;28922:4;28918:20;28914:1;28903:9;28899:17;28892:47;28956:131;29082:4;28956:131;:::i;:::-;28948:139;;28675:419;;;:::o;29100:233::-;29139:3;29162:24;29180:5;29162:24;:::i;:::-;29153:33;;29208:66;29201:5;29198:77;29195:103;;29278:18;;:::i;:::-;29195:103;29325:1;29318:5;29314:13;29307:20;;29100:233;;;:::o;29339:221::-;29479:34;29475:1;29467:6;29463:14;29456:58;29548:4;29543:2;29535:6;29531:15;29524:29;29339:221;:::o;29566:366::-;29708:3;29729:67;29793:2;29788:3;29729:67;:::i;:::-;29722:74;;29805:93;29894:3;29805:93;:::i;:::-;29923:2;29918:3;29914:12;29907:19;;29566:366;;;:::o;29938:419::-;30104:4;30142:2;30131:9;30127:18;30119:26;;30191:9;30185:4;30181:20;30177:1;30166:9;30162:17;30155:47;30219:131;30345:4;30219:131;:::i;:::-;30211:139;;29938:419;;;:::o;30363:148::-;30465:11;30502:3;30487:18;;30363:148;;;;:::o;30517:390::-;30623:3;30651:39;30684:5;30651:39;:::i;:::-;30706:89;30788:6;30783:3;30706:89;:::i;:::-;30699:96;;30804:65;30862:6;30857:3;30850:4;30843:5;30839:16;30804:65;:::i;:::-;30894:6;30889:3;30885:16;30878:23;;30627:280;30517:390;;;;:::o;30913:435::-;31093:3;31115:95;31206:3;31197:6;31115:95;:::i;:::-;31108:102;;31227:95;31318:3;31309:6;31227:95;:::i;:::-;31220:102;;31339:3;31332:10;;30913:435;;;;;:::o;31354:225::-;31494:34;31490:1;31482:6;31478:14;31471:58;31563:8;31558:2;31550:6;31546:15;31539:33;31354:225;:::o;31585:366::-;31727:3;31748:67;31812:2;31807:3;31748:67;:::i;:::-;31741:74;;31824:93;31913:3;31824:93;:::i;:::-;31942:2;31937:3;31933:12;31926:19;;31585:366;;;:::o;31957:419::-;32123:4;32161:2;32150:9;32146:18;32138:26;;32210:9;32204:4;32200:20;32196:1;32185:9;32181:17;32174:47;32238:131;32364:4;32238:131;:::i;:::-;32230:139;;31957:419;;;:::o;32382:224::-;32522:34;32518:1;32510:6;32506:14;32499:58;32591:7;32586:2;32578:6;32574:15;32567:32;32382:224;:::o;32612:366::-;32754:3;32775:67;32839:2;32834:3;32775:67;:::i;:::-;32768:74;;32851:93;32940:3;32851:93;:::i;:::-;32969:2;32964:3;32960:12;32953:19;;32612:366;;;:::o;32984:419::-;33150:4;33188:2;33177:9;33173:18;33165:26;;33237:9;33231:4;33227:20;33223:1;33212:9;33208:17;33201:47;33265:131;33391:4;33265:131;:::i;:::-;33257:139;;32984:419;;;:::o;33409:223::-;33549:34;33545:1;33537:6;33533:14;33526:58;33618:6;33613:2;33605:6;33601:15;33594:31;33409:223;:::o;33638:366::-;33780:3;33801:67;33865:2;33860:3;33801:67;:::i;:::-;33794:74;;33877:93;33966:3;33877:93;:::i;:::-;33995:2;33990:3;33986:12;33979:19;;33638:366;;;:::o;34010:419::-;34176:4;34214:2;34203:9;34199:18;34191:26;;34263:9;34257:4;34253:20;34249:1;34238:9;34234:17;34227:47;34291:131;34417:4;34291:131;:::i;:::-;34283:139;;34010:419;;;:::o;34435:194::-;34475:4;34495:20;34513:1;34495:20;:::i;:::-;34490:25;;34529:20;34547:1;34529:20;:::i;:::-;34524:25;;34573:1;34570;34566:9;34558:17;;34597:1;34591:4;34588:11;34585:37;;;34602:18;;:::i;:::-;34585:37;34435:194;;;;:::o;34635:182::-;34775:34;34771:1;34763:6;34759:14;34752:58;34635:182;:::o;34823:366::-;34965:3;34986:67;35050:2;35045:3;34986:67;:::i;:::-;34979:74;;35062:93;35151:3;35062:93;:::i;:::-;35180:2;35175:3;35171:12;35164:19;;34823:366;;;:::o;35195:419::-;35361:4;35399:2;35388:9;35384:18;35376:26;;35448:9;35442:4;35438:20;35434:1;35423:9;35419:17;35412:47;35476:131;35602:4;35476:131;:::i;:::-;35468:139;;35195:419;;;:::o;35620:174::-;35760:26;35756:1;35748:6;35744:14;35737:50;35620:174;:::o;35800:366::-;35942:3;35963:67;36027:2;36022:3;35963:67;:::i;:::-;35956:74;;36039:93;36128:3;36039:93;:::i;:::-;36157:2;36152:3;36148:12;36141:19;;35800:366;;;:::o;36172:419::-;36338:4;36376:2;36365:9;36361:18;36353:26;;36425:9;36419:4;36415:20;36411:1;36400:9;36396:17;36389:47;36453:131;36579:4;36453:131;:::i;:::-;36445:139;;36172:419;;;:::o;36597:172::-;36737:24;36733:1;36725:6;36721:14;36714:48;36597:172;:::o;36775:366::-;36917:3;36938:67;37002:2;36997:3;36938:67;:::i;:::-;36931:74;;37014:93;37103:3;37014:93;:::i;:::-;37132:2;37127:3;37123:12;37116:19;;36775:366;;;:::o;37147:419::-;37313:4;37351:2;37340:9;37336:18;37328:26;;37400:9;37394:4;37390:20;37386:1;37375:9;37371:17;37364:47;37428:131;37554:4;37428:131;:::i;:::-;37420:139;;37147:419;;;:::o;37572:233::-;37712:34;37708:1;37700:6;37696:14;37689:58;37781:16;37776:2;37768:6;37764:15;37757:41;37572:233;:::o;37811:366::-;37953:3;37974:67;38038:2;38033:3;37974:67;:::i;:::-;37967:74;;38050:93;38139:3;38050:93;:::i;:::-;38168:2;38163:3;38159:12;38152:19;;37811:366;;;:::o;38183:419::-;38349:4;38387:2;38376:9;38372:18;38364:26;;38436:9;38430:4;38426:20;38422:1;38411:9;38407:17;38400:47;38464:131;38590:4;38464:131;:::i;:::-;38456:139;;38183:419;;;:::o;38608:181::-;38748:33;38744:1;38736:6;38732:14;38725:57;38608:181;:::o;38795:366::-;38937:3;38958:67;39022:2;39017:3;38958:67;:::i;:::-;38951:74;;39034:93;39123:3;39034:93;:::i;:::-;39152:2;39147:3;39143:12;39136:19;;38795:366;;;:::o;39167:419::-;39333:4;39371:2;39360:9;39356:18;39348:26;;39420:9;39414:4;39410:20;39406:1;39395:9;39391:17;39384:47;39448:131;39574:4;39448:131;:::i;:::-;39440:139;;39167:419;;;:::o;39592:221::-;39732:34;39728:1;39720:6;39716:14;39709:58;39801:4;39796:2;39788:6;39784:15;39777:29;39592:221;:::o;39819:366::-;39961:3;39982:67;40046:2;40041:3;39982:67;:::i;:::-;39975:74;;40058:93;40147:3;40058:93;:::i;:::-;40176:2;40171:3;40167:12;40160:19;;39819:366;;;:::o;40191:419::-;40357:4;40395:2;40384:9;40380:18;40372:26;;40444:9;40438:4;40434:20;40430:1;40419:9;40415:17;40408:47;40472:131;40598:4;40472:131;:::i;:::-;40464:139;;40191:419;;;:::o;40616:223::-;40756:34;40752:1;40744:6;40740:14;40733:58;40825:6;40820:2;40812:6;40808:15;40801:31;40616:223;:::o;40845:366::-;40987:3;41008:67;41072:2;41067:3;41008:67;:::i;:::-;41001:74;;41084:93;41173:3;41084:93;:::i;:::-;41202:2;41197:3;41193:12;41186:19;;40845:366;;;:::o;41217:419::-;41383:4;41421:2;41410:9;41406:18;41398:26;;41470:9;41464:4;41460:20;41456:1;41445:9;41441:17;41434:47;41498:131;41624:4;41498:131;:::i;:::-;41490:139;;41217:419;;;:::o;41642:229::-;41782:34;41778:1;41770:6;41766:14;41759:58;41851:12;41846:2;41838:6;41834:15;41827:37;41642:229;:::o;41877:366::-;42019:3;42040:67;42104:2;42099:3;42040:67;:::i;:::-;42033:74;;42116:93;42205:3;42116:93;:::i;:::-;42234:2;42229:3;42225:12;42218:19;;41877:366;;;:::o;42249:419::-;42415:4;42453:2;42442:9;42438:18;42430:26;;42502:9;42496:4;42492:20;42488:1;42477:9;42473:17;42466:47;42530:131;42656:4;42530:131;:::i;:::-;42522:139;;42249:419;;;:::o;42674:175::-;42814:27;42810:1;42802:6;42798:14;42791:51;42674:175;:::o;42855:366::-;42997:3;43018:67;43082:2;43077:3;43018:67;:::i;:::-;43011:74;;43094:93;43183:3;43094:93;:::i;:::-;43212:2;43207:3;43203:12;43196:19;;42855:366;;;:::o;43227:419::-;43393:4;43431:2;43420:9;43416:18;43408:26;;43480:9;43474:4;43470:20;43466:1;43455:9;43451:17;43444:47;43508:131;43634:4;43508:131;:::i;:::-;43500:139;;43227:419;;;:::o;43652:237::-;43792:34;43788:1;43780:6;43776:14;43769:58;43861:20;43856:2;43848:6;43844:15;43837:45;43652:237;:::o;43895:366::-;44037:3;44058:67;44122:2;44117:3;44058:67;:::i;:::-;44051:74;;44134:93;44223:3;44134:93;:::i;:::-;44252:2;44247:3;44243:12;44236:19;;43895:366;;;:::o;44267:419::-;44433:4;44471:2;44460:9;44456:18;44448:26;;44520:9;44514:4;44510:20;44506:1;44495:9;44491:17;44484:47;44548:131;44674:4;44548:131;:::i;:::-;44540:139;;44267:419;;;:::o;44692:180::-;44740:77;44737:1;44730:88;44837:4;44834:1;44827:15;44861:4;44858:1;44851:15;44878:185;44918:1;44935:20;44953:1;44935:20;:::i;:::-;44930:25;;44969:20;44987:1;44969:20;:::i;:::-;44964:25;;45008:1;44998:35;;45013:18;;:::i;:::-;44998:35;45055:1;45052;45048:9;45043:14;;44878:185;;;;:::o;45069:176::-;45101:1;45118:20;45136:1;45118:20;:::i;:::-;45113:25;;45152:20;45170:1;45152:20;:::i;:::-;45147:25;;45191:1;45181:35;;45196:18;;:::i;:::-;45181:35;45237:1;45234;45230:9;45225:14;;45069:176;;;;:::o;45251:180::-;45299:77;45296:1;45289:88;45396:4;45393:1;45386:15;45420:4;45417:1;45410:15;45437:410;45477:7;45500:20;45518:1;45500:20;:::i;:::-;45495:25;;45534:20;45552:1;45534:20;:::i;:::-;45529:25;;45589:1;45586;45582:9;45611:30;45629:11;45611:30;:::i;:::-;45600:41;;45790:1;45781:7;45777:15;45774:1;45771:22;45751:1;45744:9;45724:83;45701:139;;45820:18;;:::i;:::-;45701:139;45485:362;45437:410;;;;:::o;45853:98::-;45904:6;45938:5;45932:12;45922:22;;45853:98;;;:::o;45957:168::-;46040:11;46074:6;46069:3;46062:19;46114:4;46109:3;46105:14;46090:29;;45957:168;;;;:::o;46131:373::-;46217:3;46245:38;46277:5;46245:38;:::i;:::-;46299:70;46362:6;46357:3;46299:70;:::i;:::-;46292:77;;46378:65;46436:6;46431:3;46424:4;46417:5;46413:16;46378:65;:::i;:::-;46468:29;46490:6;46468:29;:::i;:::-;46463:3;46459:39;46452:46;;46221:283;46131:373;;;;:::o;46510:640::-;46705:4;46743:3;46732:9;46728:19;46720:27;;46757:71;46825:1;46814:9;46810:17;46801:6;46757:71;:::i;:::-;46838:72;46906:2;46895:9;46891:18;46882:6;46838:72;:::i;:::-;46920;46988:2;46977:9;46973:18;46964:6;46920:72;:::i;:::-;47039:9;47033:4;47029:20;47024:2;47013:9;47009:18;47002:48;47067:76;47138:4;47129:6;47067:76;:::i;:::-;47059:84;;46510:640;;;;;;;:::o;47156:141::-;47212:5;47243:6;47237:13;47228:22;;47259:32;47285:5;47259:32;:::i;:::-;47156:141;;;;:::o;47303:349::-;47372:6;47421:2;47409:9;47400:7;47396:23;47392:32;47389:119;;;47427:79;;:::i;:::-;47389:119;47547:1;47572:63;47627:7;47618:6;47607:9;47603:22;47572:63;:::i;:::-;47562:73;;47518:127;47303:349;;;;:::o;47658:182::-;47798:34;47794:1;47786:6;47782:14;47775:58;47658:182;:::o;47846:366::-;47988:3;48009:67;48073:2;48068:3;48009:67;:::i;:::-;48002:74;;48085:93;48174:3;48085:93;:::i;:::-;48203:2;48198:3;48194:12;48187:19;;47846:366;;;:::o;48218:419::-;48384:4;48422:2;48411:9;48407:18;48399:26;;48471:9;48465:4;48461:20;48457:1;48446:9;48442:17;48435:47;48499:131;48625:4;48499:131;:::i;:::-;48491:139;;48218:419;;;:::o;48643:178::-;48783:30;48779:1;48771:6;48767:14;48760:54;48643:178;:::o;48827:366::-;48969:3;48990:67;49054:2;49049:3;48990:67;:::i;:::-;48983:74;;49066:93;49155:3;49066:93;:::i;:::-;49184:2;49179:3;49175:12;49168:19;;48827:366;;;:::o;49199:419::-;49365:4;49403:2;49392:9;49388:18;49380:26;;49452:9;49446:4;49442:20;49438:1;49427:9;49423:17;49416:47;49480:131;49606:4;49480:131;:::i;:::-;49472:139;;49199:419;;;:::o

Swarm Source

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