ETH Price: $3,501.01 (+3.85%)
Gas: 4 Gwei

Token

Fish Tank NFT (FISHTANK)
 

Overview

Max Total Supply

1,184 FISHTANK

Holders

1,079

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
hereliesmyhopesanddreams.eth
Balance
1 FISHTANK
0xba7933402348a902064499ed883c49843eeb7019
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:
FishTank

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/Strings.sol
// SPDX-License-Identifier: None


pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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



pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

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

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/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 no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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/token/ERC721/ERC721.sol



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/fishtank.sol



pragma solidity ^0.8.4;




contract FishTank is Ownable, ERC721Enumerable {
    using SafeMath for uint256;

    uint256 public constant mintPrice = 0.05555 ether;
    uint256 public constant mintLimit = 1;
    uint256 public supplyLimit = 5555;
    string public baseURI;
    bool public mintOpen = false;
    bool public mintPublic = false;

    address private creatorAddress = 0x96feA1d069f99c93A0A2726c06d4B99c2540a1CF;
    
    mapping(address => uint) public tokenBalance;
    mapping(uint => uint) public staked;
    string str = "TheFishTankNFT";
    address signer = 0x17488eBd429854b52669B956A555030f4b16DA41;

    constructor(string memory inputBaseUri) ERC721("Fish Tank NFT", "FISHTANK") {
        baseURI = inputBaseUri;
    }
    
    modifier onlyValidAccess(uint8 _v, bytes32 _r, bytes32 _s) {
        if (!mintPublic) require(isValidAccessMessage(msg.sender, _v, _r, _s), "No access");
        _;
    }
 
    function isValidAccessMessage(address _add, uint8 _v, bytes32 _r, bytes32 _s) view public returns (bool) {
        bytes32 hash = keccak256(abi.encode(_add));
        bytes memory prefix = "\x19Ethereum Signed Message:\n32";
        bytes32 prefixedProof = keccak256(abi.encodePacked(prefix, hash));
        address recovered = ecrecover(prefixedProof, _v, _r, _s);
        return recovered == signer;
    }

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

    function setBaseURI(string calldata newBaseUri) external onlyOwner {
        baseURI = newBaseUri;
    }
    
    function setMintOpen(bool _open) public onlyOwner {
        mintOpen = _open;
    }
    
    function setMintPublic(bool _open) public onlyOwner {
        mintPublic = _open;
    }
    
    function buy(uint numberOfTokens, uint8 _v, bytes32 _r, bytes32 _s) onlyValidAccess(_v, _r, _s) external payable {
        require(mintOpen, "Mint is not open");
        require(tokensOwnedBy(msg.sender).length + numberOfTokens <= mintLimit, "Too many tokens for one address");
        require(msg.value >= mintPrice.mul(numberOfTokens), "Insufficient payment");

        _mint(numberOfTokens);
    }

    function _mint(uint numberOfTokens) private {
        require(totalSupply().add(numberOfTokens) <= supplyLimit, "Not enough tokens left");

        uint256 newId = totalSupply();
        for(uint i = 0; i < numberOfTokens; i++) {
            newId += 1;
            _safeMint(msg.sender, newId);
        }
    }

    function withdraw() external onlyOwner {
        require(address(this).balance > 0, "No balance to withdraw");

        (bool success, ) = creatorAddress.call{value: address(this).balance}("");
        require(success, "Withdrawal failed");
    }

    function tokensOwnedBy(address wallet) public view returns(uint256[] memory) {
        uint tokenCount = balanceOf(wallet);

        uint256[] memory ownedTokenIds = new uint256[](tokenCount);
        for(uint i = 0; i < tokenCount; i++){
            ownedTokenIds[i] = tokenOfOwnerByIndex(wallet, i);
        }

        return ownedTokenIds;
    }
    
    function stake(uint tokenId) public {
        require(ownerOf(tokenId) == msg.sender, "Not your token");
        require(staked[tokenId] == 0, "Token already staked");
        staked[tokenId] = block.number;
    }
    
    function unstake(uint tokenId) public {
        require(ownerOf(tokenId) == msg.sender, "Not your token");
        require(staked[tokenId] > 0, "Token not staked");
        uint dif = block.number-staked[tokenId];
        uint tokensEarned = dif.div(100);
        staked[tokenId] = 0;
        tokenBalance[msg.sender] += tokensEarned;
    }
    
    function collectTokens(uint tokenId) public {
        require(ownerOf(tokenId) == msg.sender, "Not your token");
        require(staked[tokenId] > 0, "Token not staked");
        uint dif = block.number-staked[tokenId];
        uint tokensEarned = dif.div(100);
        staked[tokenId] = block.number;
        tokenBalance[msg.sender] += tokensEarned;
    }
    
    function _transfer(address from, address to, uint256 tokenId) internal override {
        require(staked[tokenId] == 0, "Token being staked");
        require(mintPublic, "No transfers until public mint");
        super._transfer(from, to, tokenId);
    }
    
    function transferToken(address to, uint amount) public {
        require(tokenBalance[msg.sender] >= amount, "NSF");
        tokenBalance[msg.sender] = tokenBalance[msg.sender].sub(amount);
        tokenBalance[to] = tokenBalance[to].add(amount);
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"inputBaseUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"collectTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_add","type":"address"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"isValidAccessMessage","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPublic","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_open","type":"bool"}],"name":"setMintOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_open","type":"bool"}],"name":"setMintPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"staked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"address","name":"","type":"address"}],"name":"tokenBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"tokensOwnedBy","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"unstake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526115b3600b556000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055507396fea1d069f99c93a0a2726c06d4b99c2540a1cf600d60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060400160405280600e81526020017f5468654669736854616e6b4e465400000000000000000000000000000000000081525060109080519060200190620000e292919062000317565b507317488ebd429854b52669b956a555030f4b16da41601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200014557600080fd5b50604051620057e7380380620057e783398181016040528101906200016b919062000445565b6040518060400160405280600d81526020017f466973682054616e6b204e4654000000000000000000000000000000000000008152506040518060400160405280600881526020017f4649534854414e4b000000000000000000000000000000000000000000000000815250620001f7620001eb6200024b60201b60201c565b6200025360201b60201c565b81600190805190602001906200020f92919062000317565b5080600290805190602001906200022892919062000317565b50505080600c90805190602001906200024392919062000317565b50506200061a565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000325906200052b565b90600052602060002090601f01602090048101928262000349576000855562000395565b82601f106200036457805160ff191683800117855562000395565b8280016001018555821562000395579182015b828111156200039457825182559160200191906001019062000377565b5b509050620003a49190620003a8565b5090565b5b80821115620003c3576000816000905550600101620003a9565b5090565b6000620003de620003d884620004bf565b62000496565b905082815260208101848484011115620003fd57620003fc620005fa565b5b6200040a848285620004f5565b509392505050565b600082601f8301126200042a5762000429620005f5565b5b81516200043c848260208601620003c7565b91505092915050565b6000602082840312156200045e576200045d62000604565b5b600082015167ffffffffffffffff8111156200047f576200047e620005ff565b5b6200048d8482850162000412565b91505092915050565b6000620004a2620004b5565b9050620004b0828262000561565b919050565b6000604051905090565b600067ffffffffffffffff821115620004dd57620004dc620005c6565b5b620004e88262000609565b9050602081019050919050565b60005b8381101562000515578082015181840152602081019050620004f8565b8381111562000525576000848401525b50505050565b600060028204905060018216806200054457607f821691505b602082108114156200055b576200055a62000597565b5b50919050565b6200056c8262000609565b810181811067ffffffffffffffff821117156200058e576200058d620005c6565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6151bd806200062a6000396000f3fe6080604052600436106102255760003560e01c80636817c76c11610123578063a694fc3a116100ab578063e985e9c51161006f578063e985e9c51461080a578063ea66aeb314610847578063eedc966a14610884578063f2fde38b146108c1578063f8004d31146108ea57610225565b8063a694fc3a14610736578063b4d80ec71461075f578063b88d4fde14610788578063c87b56dd146107b1578063db0e6f67146107ee57610225565b80638c874ebd116100f25780638c874ebd146106615780638da5cb5b1461068c57806395d89b41146106b7578063996517cf146106e2578063a22cb4651461070d57610225565b80636817c76c146105b75780636c0360eb146105e257806370a082311461060d578063715018a61461064a57610225565b806324bbd049116101b157806342842e0e1161017557806342842e0e146104ae5780634f6ccce7146104d757806355f804b3146105145780635e1bef321461053d5780636352211e1461057a57610225565b806324bbd049146103c95780632e17de78146103f45780632f745c591461041d578063326241141461045a5780633ccfd60b1461049757610225565b80631072cbea116101f85780631072cbea146102f857806318160ddd14610321578063192322cf1461034c57806319d1997a1461037557806323b872dd146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613843565b610913565b60405161025e9190614083565b60405180910390f35b34801561027357600080fd5b5061027c61098d565b60405161028991906140e3565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906138ea565b610a1f565b6040516102c69190613ffa565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f1919061376f565b610aa4565b005b34801561030457600080fd5b5061031f600480360381019061031a919061376f565b610bbc565b005b34801561032d57600080fd5b50610336610d6c565b60405161034391906144e5565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e91906138ea565b610d79565b005b34801561038157600080fd5b5061038a610ef3565b60405161039791906144e5565b60405180910390f35b3480156103ac57600080fd5b506103c760048036038101906103c29190613659565b610ef9565b005b3480156103d557600080fd5b506103de610f59565b6040516103eb9190614083565b60405180910390f35b34801561040057600080fd5b5061041b600480360381019061041691906138ea565b610f6c565b005b34801561042957600080fd5b50610444600480360381019061043f919061376f565b6110e7565b60405161045191906144e5565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c91906137af565b61118c565b60405161048e9190614083565b60405180910390f35b3480156104a357600080fd5b506104ac6112d1565b005b3480156104ba57600080fd5b506104d560048036038101906104d09190613659565b611461565b005b3480156104e357600080fd5b506104fe60048036038101906104f991906138ea565b611481565b60405161050b91906144e5565b60405180910390f35b34801561052057600080fd5b5061053b6004803603810190610536919061389d565b6114f2565b005b34801561054957600080fd5b50610564600480360381019061055f91906138ea565b611584565b60405161057191906144e5565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c91906138ea565b61159c565b6040516105ae9190613ffa565b60405180910390f35b3480156105c357600080fd5b506105cc61164e565b6040516105d991906144e5565b60405180910390f35b3480156105ee57600080fd5b506105f7611659565b60405161060491906140e3565b60405180910390f35b34801561061957600080fd5b50610634600480360381019061062f91906135ec565b6116e7565b60405161064191906144e5565b60405180910390f35b34801561065657600080fd5b5061065f61179f565b005b34801561066d57600080fd5b50610676611827565b6040516106839190614083565b60405180910390f35b34801561069857600080fd5b506106a161183a565b6040516106ae9190613ffa565b60405180910390f35b3480156106c357600080fd5b506106cc611863565b6040516106d991906140e3565b60405180910390f35b3480156106ee57600080fd5b506106f76118f5565b60405161070491906144e5565b60405180910390f35b34801561071957600080fd5b50610734600480360381019061072f919061372f565b6118fa565b005b34801561074257600080fd5b5061075d600480360381019061075891906138ea565b611a7b565b005b34801561076b57600080fd5b5061078660048036038101906107819190613816565b611b62565b005b34801561079457600080fd5b506107af60048036038101906107aa91906136ac565b611bfb565b005b3480156107bd57600080fd5b506107d860048036038101906107d391906138ea565b611c5d565b6040516107e591906140e3565b60405180910390f35b61080860048036038101906108039190613917565b611d04565b005b34801561081657600080fd5b50610831600480360381019061082c9190613619565b611e7c565b60405161083e9190614083565b60405180910390f35b34801561085357600080fd5b5061086e600480360381019061086991906135ec565b611f10565b60405161087b9190614061565b60405180910390f35b34801561089057600080fd5b506108ab60048036038101906108a691906135ec565b611fbe565b6040516108b891906144e5565b60405180910390f35b3480156108cd57600080fd5b506108e860048036038101906108e391906135ec565b611fd6565b005b3480156108f657600080fd5b50610911600480360381019061090c9190613816565b6120ce565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610986575061098582612167565b5b9050919050565b60606001805461099c906147bf565b80601f01602080910402602001604051908101604052809291908181526020018280546109c8906147bf565b8015610a155780601f106109ea57610100808354040283529160200191610a15565b820191906000526020600020905b8154815290600101906020018083116109f857829003601f168201915b5050505050905090565b6000610a2a82612249565b610a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6090614345565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aaf8261159c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1790614425565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b3f6122b5565b73ffffffffffffffffffffffffffffffffffffffff161480610b6e5750610b6d81610b686122b5565b611e7c565b5b610bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba490614225565b60405180910390fd5b610bb783836122bd565b505050565b80600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3590614245565b60405180910390fd5b610c9081600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461237690919063ffffffff16565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610d2581600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461238c90919063ffffffff16565b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000600980549050905090565b3373ffffffffffffffffffffffffffffffffffffffff16610d998261159c565b73ffffffffffffffffffffffffffffffffffffffff1614610def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de690614325565b60405180910390fd5b6000600f60008381526020019081526020016000205411610e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3c906144c5565b60405180910390fd5b6000600f60008381526020019081526020016000205443610e6691906146be565b90506000610e7e6064836123a290919063ffffffff16565b905043600f60008581526020019081526020016000208190555080600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ee791906145dd565b92505081905550505050565b600b5481565b610f0a610f046122b5565b826123b8565b610f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4090614445565b60405180910390fd5b610f54838383612496565b505050565b600d60009054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff16610f8c8261159c565b73ffffffffffffffffffffffffffffffffffffffff1614610fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd990614325565b60405180910390fd5b6000600f60008381526020019081526020016000205411611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f906144c5565b60405180910390fd5b6000600f6000838152602001908152602001600020544361105991906146be565b905060006110716064836123a290919063ffffffff16565b90506000600f60008581526020019081526020016000208190555080600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110db91906145dd565b92505081905550505050565b60006110f2836116e7565b8210611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a90614145565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080856040516020016111a09190613ffa565b60405160208183030381529060405280519060200120905060006040518060400160405280601c81526020017f19457468657265756d205369676e6564204d6573736167653a0a333200000000815250905060008183604051602001611207929190613f99565b604051602081830303815290604052805190602001209050600060018289898960405160008152602001604052604051611244949392919061409e565b6020604051602081039080840390855afa158015611266573d6000803e3d6000fd5b505050602060405103519050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614945050505050949350505050565b6112d96122b5565b73ffffffffffffffffffffffffffffffffffffffff166112f761183a565b73ffffffffffffffffffffffffffffffffffffffff161461134d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134490614365565b60405180910390fd5b60004711611390576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138790614405565b60405180910390fd5b6000600d60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516113d890613fe5565b60006040518083038185875af1925050503d8060008114611415576040519150601f19603f3d011682016040523d82523d6000602084013e61141a565b606091505b505090508061145e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145590614485565b60405180910390fd5b50565b61147c83838360405180602001604052806000815250611bfb565b505050565b600061148b610d6c565b82106114cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c390614465565b60405180910390fd5b600982815481106114e0576114df614962565b5b90600052602060002001549050919050565b6114fa6122b5565b73ffffffffffffffffffffffffffffffffffffffff1661151861183a565b73ffffffffffffffffffffffffffffffffffffffff161461156e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156590614365565b60405180910390fd5b8181600c919061157f9291906133f0565b505050565b600f6020528060005260406000206000915090505481565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163c90614285565b60405180910390fd5b80915050919050565b66c55a6e4145e00081565b600c8054611666906147bf565b80601f0160208091040260200160405190810160405280929190818152602001828054611692906147bf565b80156116df5780601f106116b4576101008083540402835291602001916116df565b820191906000526020600020905b8154815290600101906020018083116116c257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174f90614265565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117a76122b5565b73ffffffffffffffffffffffffffffffffffffffff166117c561183a565b73ffffffffffffffffffffffffffffffffffffffff161461181b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181290614365565b60405180910390fd5b611825600061254b565b565b600d60019054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611872906147bf565b80601f016020809104026020016040519081016040528092919081815260200182805461189e906147bf565b80156118eb5780601f106118c0576101008083540402835291602001916118eb565b820191906000526020600020905b8154815290600101906020018083116118ce57829003601f168201915b5050505050905090565b600181565b6119026122b5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611970576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611967906141e5565b60405180910390fd5b806006600061197d6122b5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a2a6122b5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a6f9190614083565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff16611a9b8261159c565b73ffffffffffffffffffffffffffffffffffffffff1614611af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae890614325565b60405180910390fd5b6000600f60008381526020019081526020016000205414611b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3e906143e5565b60405180910390fd5b43600f60008381526020019081526020016000208190555050565b611b6a6122b5565b73ffffffffffffffffffffffffffffffffffffffff16611b8861183a565b73ffffffffffffffffffffffffffffffffffffffff1614611bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd590614365565b60405180910390fd5b80600d60016101000a81548160ff02191690831515021790555050565b611c0c611c066122b5565b836123b8565b611c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4290614445565b60405180910390fd5b611c578484848461260f565b50505050565b6060611c6882612249565b611ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9e906143a5565b60405180910390fd5b6000611cb161266b565b90506000815111611cd15760405180602001604052806000815250611cfc565b80611cdb846126fd565b604051602001611cec929190613fc1565b6040516020818303038152906040525b915050919050565b828282600d60019054906101000a900460ff16611d6757611d273384848461118c565b611d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5d906142c5565b60405180910390fd5b5b600d60009054906101000a900460ff16611db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dad90614125565b60405180910390fd5b600187611dc233611f10565b51611dcd91906145dd565b1115611e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0590614105565b60405180910390fd5b611e288766c55a6e4145e00061285e90919063ffffffff16565b341015611e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6190614305565b60405180910390fd5b611e7387612874565b50505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606000611f1d836116e7565b905060008167ffffffffffffffff811115611f3b57611f3a614991565b5b604051908082528060200260200182016040528015611f695781602001602082028036833780820191505090505b50905060005b82811015611fb357611f8185826110e7565b828281518110611f9457611f93614962565b5b6020026020010181815250508080611fab90614822565b915050611f6f565b508092505050919050565b600e6020528060005260406000206000915090505481565b611fde6122b5565b73ffffffffffffffffffffffffffffffffffffffff16611ffc61183a565b73ffffffffffffffffffffffffffffffffffffffff1614612052576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204990614365565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b990614185565b60405180910390fd5b6120cb8161254b565b50565b6120d66122b5565b73ffffffffffffffffffffffffffffffffffffffff166120f461183a565b73ffffffffffffffffffffffffffffffffffffffff161461214a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214190614365565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061223257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061224257506122418261291a565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166123308361159c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818361238491906146be565b905092915050565b6000818361239a91906145dd565b905092915050565b600081836123b09190614633565b905092915050565b60006123c382612249565b612402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f990614205565b60405180910390fd5b600061240d8361159c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061247c57508373ffffffffffffffffffffffffffffffffffffffff1661246484610a1f565b73ffffffffffffffffffffffffffffffffffffffff16145b8061248d575061248c8185611e7c565b5b91505092915050565b6000600f600083815260200190815260200160002054146124ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e3906143c5565b60405180910390fd5b600d60019054906101000a900460ff1661253b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612532906144a5565b60405180910390fd5b612546838383612984565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61261a848484612496565b61262684848484612be0565b612665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265c90614165565b60405180910390fd5b50505050565b6060600c805461267a906147bf565b80601f01602080910402602001604051908101604052809291908181526020018280546126a6906147bf565b80156126f35780601f106126c8576101008083540402835291602001916126f3565b820191906000526020600020905b8154815290600101906020018083116126d657829003601f168201915b5050505050905090565b60606000821415612745576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612859565b600082905060005b6000821461277757808061276090614822565b915050600a826127709190614633565b915061274d565b60008167ffffffffffffffff81111561279357612792614991565b5b6040519080825280601f01601f1916602001820160405280156127c55781602001600182028036833780820191505090505b5090505b60008514612852576001826127de91906146be565b9150600a856127ed9190614875565b60306127f991906145dd565b60f81b81838151811061280f5761280e614962565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561284b9190614633565b94506127c9565b8093505050505b919050565b6000818361286c9190614664565b905092915050565b600b5461289182612883610d6c565b61238c90919063ffffffff16565b11156128d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c9906142a5565b60405180910390fd5b60006128dc610d6c565b905060005b82811015612915576001826128f691906145dd565b91506129023383612d77565b808061290d90614822565b9150506128e1565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b8273ffffffffffffffffffffffffffffffffffffffff166129a48261159c565b73ffffffffffffffffffffffffffffffffffffffff16146129fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f190614385565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a61906141c5565b60405180910390fd5b612a75838383612d95565b612a806000826122bd565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ad091906146be565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b2791906145dd565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612c018473ffffffffffffffffffffffffffffffffffffffff16612ea9565b15612d6a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c2a6122b5565b8786866040518563ffffffff1660e01b8152600401612c4c9493929190614015565b602060405180830381600087803b158015612c6657600080fd5b505af1925050508015612c9757506040513d601f19601f82011682018060405250810190612c949190613870565b60015b612d1a573d8060008114612cc7576040519150601f19603f3d011682016040523d82523d6000602084013e612ccc565b606091505b50600081511415612d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0990614165565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d6f565b600190505b949350505050565b612d91828260405180602001604052806000815250612ebc565b5050565b612da0838383612f17565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612de357612dde81612f1c565b612e22565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612e2157612e208382612f65565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e6557612e60816130d2565b612ea4565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ea357612ea282826131a3565b5b5b505050565b600080823b905060008111915050919050565b612ec68383613222565b612ed36000848484612be0565b612f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0990614165565b60405180910390fd5b505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612f72846116e7565b612f7c91906146be565b9050600060086000848152602001908152602001600020549050818114613061576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506130e691906146be565b90506000600a600084815260200190815260200160002054905060006009838154811061311657613115614962565b5b90600052602060002001549050806009838154811061313857613137614962565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a600085815260200190815260200160002060009055600980548061318757613186614933565b5b6001900381819060005260206000200160009055905550505050565b60006131ae836116e7565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613292576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613289906142e5565b60405180910390fd5b61329b81612249565b156132db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132d2906141a5565b60405180910390fd5b6132e760008383612d95565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461333791906145dd565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546133fc906147bf565b90600052602060002090601f01602090048101928261341e5760008555613465565b82601f1061343757803560ff1916838001178555613465565b82800160010185558215613465579182015b82811115613464578235825591602001919060010190613449565b5b5090506134729190613476565b5090565b5b8082111561348f576000816000905550600101613477565b5090565b60006134a66134a184614525565b614500565b9050828152602081018484840111156134c2576134c16149cf565b5b6134cd84828561477d565b509392505050565b6000813590506134e4816150fd565b92915050565b6000813590506134f981615114565b92915050565b60008135905061350e8161512b565b92915050565b60008135905061352381615142565b92915050565b60008151905061353881615142565b92915050565b600082601f830112613553576135526149c5565b5b8135613563848260208601613493565b91505092915050565b60008083601f840112613582576135816149c5565b5b8235905067ffffffffffffffff81111561359f5761359e6149c0565b5b6020830191508360018202830111156135bb576135ba6149ca565b5b9250929050565b6000813590506135d181615159565b92915050565b6000813590506135e681615170565b92915050565b600060208284031215613602576136016149d9565b5b6000613610848285016134d5565b91505092915050565b600080604083850312156136305761362f6149d9565b5b600061363e858286016134d5565b925050602061364f858286016134d5565b9150509250929050565b600080600060608486031215613672576136716149d9565b5b6000613680868287016134d5565b9350506020613691868287016134d5565b92505060406136a2868287016135c2565b9150509250925092565b600080600080608085870312156136c6576136c56149d9565b5b60006136d4878288016134d5565b94505060206136e5878288016134d5565b93505060406136f6878288016135c2565b925050606085013567ffffffffffffffff811115613717576137166149d4565b5b6137238782880161353e565b91505092959194509250565b60008060408385031215613746576137456149d9565b5b6000613754858286016134d5565b9250506020613765858286016134ea565b9150509250929050565b60008060408385031215613786576137856149d9565b5b6000613794858286016134d5565b92505060206137a5858286016135c2565b9150509250929050565b600080600080608085870312156137c9576137c86149d9565b5b60006137d7878288016134d5565b94505060206137e8878288016135d7565b93505060406137f9878288016134ff565b925050606061380a878288016134ff565b91505092959194509250565b60006020828403121561382c5761382b6149d9565b5b600061383a848285016134ea565b91505092915050565b600060208284031215613859576138586149d9565b5b600061386784828501613514565b91505092915050565b600060208284031215613886576138856149d9565b5b600061389484828501613529565b91505092915050565b600080602083850312156138b4576138b36149d9565b5b600083013567ffffffffffffffff8111156138d2576138d16149d4565b5b6138de8582860161356c565b92509250509250929050565b600060208284031215613900576138ff6149d9565b5b600061390e848285016135c2565b91505092915050565b60008060008060808587031215613931576139306149d9565b5b600061393f878288016135c2565b9450506020613950878288016135d7565b9350506040613961878288016134ff565b9250506060613972878288016134ff565b91505092959194509250565b600061398a8383613f6c565b60208301905092915050565b61399f816146f2565b82525050565b60006139b082614566565b6139ba8185614594565b93506139c583614556565b8060005b838110156139f65781516139dd888261397e565b97506139e883614587565b9250506001810190506139c9565b5085935050505092915050565b613a0c81614704565b82525050565b613a1b81614710565b82525050565b613a32613a2d82614710565b61486b565b82525050565b6000613a4382614571565b613a4d81856145a5565b9350613a5d81856020860161478c565b613a66816149de565b840191505092915050565b6000613a7c82614571565b613a8681856145b6565b9350613a9681856020860161478c565b80840191505092915050565b6000613aad8261457c565b613ab781856145c1565b9350613ac781856020860161478c565b613ad0816149de565b840191505092915050565b6000613ae68261457c565b613af081856145d2565b9350613b0081856020860161478c565b80840191505092915050565b6000613b19601f836145c1565b9150613b24826149ef565b602082019050919050565b6000613b3c6010836145c1565b9150613b4782614a18565b602082019050919050565b6000613b5f602b836145c1565b9150613b6a82614a41565b604082019050919050565b6000613b826032836145c1565b9150613b8d82614a90565b604082019050919050565b6000613ba56026836145c1565b9150613bb082614adf565b604082019050919050565b6000613bc8601c836145c1565b9150613bd382614b2e565b602082019050919050565b6000613beb6024836145c1565b9150613bf682614b57565b604082019050919050565b6000613c0e6019836145c1565b9150613c1982614ba6565b602082019050919050565b6000613c31602c836145c1565b9150613c3c82614bcf565b604082019050919050565b6000613c546038836145c1565b9150613c5f82614c1e565b604082019050919050565b6000613c776003836145c1565b9150613c8282614c6d565b602082019050919050565b6000613c9a602a836145c1565b9150613ca582614c96565b604082019050919050565b6000613cbd6029836145c1565b9150613cc882614ce5565b604082019050919050565b6000613ce06016836145c1565b9150613ceb82614d34565b602082019050919050565b6000613d036009836145c1565b9150613d0e82614d5d565b602082019050919050565b6000613d266020836145c1565b9150613d3182614d86565b602082019050919050565b6000613d496014836145c1565b9150613d5482614daf565b602082019050919050565b6000613d6c600e836145c1565b9150613d7782614dd8565b602082019050919050565b6000613d8f602c836145c1565b9150613d9a82614e01565b604082019050919050565b6000613db26020836145c1565b9150613dbd82614e50565b602082019050919050565b6000613dd56029836145c1565b9150613de082614e79565b604082019050919050565b6000613df8602f836145c1565b9150613e0382614ec8565b604082019050919050565b6000613e1b6012836145c1565b9150613e2682614f17565b602082019050919050565b6000613e3e6014836145c1565b9150613e4982614f40565b602082019050919050565b6000613e616016836145c1565b9150613e6c82614f69565b602082019050919050565b6000613e846021836145c1565b9150613e8f82614f92565b604082019050919050565b6000613ea76000836145b6565b9150613eb282614fe1565b600082019050919050565b6000613eca6031836145c1565b9150613ed582614fe4565b604082019050919050565b6000613eed602c836145c1565b9150613ef882615033565b604082019050919050565b6000613f106011836145c1565b9150613f1b82615082565b602082019050919050565b6000613f33601e836145c1565b9150613f3e826150ab565b602082019050919050565b6000613f566010836145c1565b9150613f61826150d4565b602082019050919050565b613f7581614766565b82525050565b613f8481614766565b82525050565b613f9381614770565b82525050565b6000613fa58285613a71565b9150613fb18284613a21565b6020820191508190509392505050565b6000613fcd8285613adb565b9150613fd98284613adb565b91508190509392505050565b6000613ff082613e9a565b9150819050919050565b600060208201905061400f6000830184613996565b92915050565b600060808201905061402a6000830187613996565b6140376020830186613996565b6140446040830185613f7b565b81810360608301526140568184613a38565b905095945050505050565b6000602082019050818103600083015261407b81846139a5565b905092915050565b60006020820190506140986000830184613a03565b92915050565b60006080820190506140b36000830187613a12565b6140c06020830186613f8a565b6140cd6040830185613a12565b6140da6060830184613a12565b95945050505050565b600060208201905081810360008301526140fd8184613aa2565b905092915050565b6000602082019050818103600083015261411e81613b0c565b9050919050565b6000602082019050818103600083015261413e81613b2f565b9050919050565b6000602082019050818103600083015261415e81613b52565b9050919050565b6000602082019050818103600083015261417e81613b75565b9050919050565b6000602082019050818103600083015261419e81613b98565b9050919050565b600060208201905081810360008301526141be81613bbb565b9050919050565b600060208201905081810360008301526141de81613bde565b9050919050565b600060208201905081810360008301526141fe81613c01565b9050919050565b6000602082019050818103600083015261421e81613c24565b9050919050565b6000602082019050818103600083015261423e81613c47565b9050919050565b6000602082019050818103600083015261425e81613c6a565b9050919050565b6000602082019050818103600083015261427e81613c8d565b9050919050565b6000602082019050818103600083015261429e81613cb0565b9050919050565b600060208201905081810360008301526142be81613cd3565b9050919050565b600060208201905081810360008301526142de81613cf6565b9050919050565b600060208201905081810360008301526142fe81613d19565b9050919050565b6000602082019050818103600083015261431e81613d3c565b9050919050565b6000602082019050818103600083015261433e81613d5f565b9050919050565b6000602082019050818103600083015261435e81613d82565b9050919050565b6000602082019050818103600083015261437e81613da5565b9050919050565b6000602082019050818103600083015261439e81613dc8565b9050919050565b600060208201905081810360008301526143be81613deb565b9050919050565b600060208201905081810360008301526143de81613e0e565b9050919050565b600060208201905081810360008301526143fe81613e31565b9050919050565b6000602082019050818103600083015261441e81613e54565b9050919050565b6000602082019050818103600083015261443e81613e77565b9050919050565b6000602082019050818103600083015261445e81613ebd565b9050919050565b6000602082019050818103600083015261447e81613ee0565b9050919050565b6000602082019050818103600083015261449e81613f03565b9050919050565b600060208201905081810360008301526144be81613f26565b9050919050565b600060208201905081810360008301526144de81613f49565b9050919050565b60006020820190506144fa6000830184613f7b565b92915050565b600061450a61451b565b905061451682826147f1565b919050565b6000604051905090565b600067ffffffffffffffff8211156145405761453f614991565b5b614549826149de565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006145e882614766565b91506145f383614766565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614628576146276148a6565b5b828201905092915050565b600061463e82614766565b915061464983614766565b925082614659576146586148d5565b5b828204905092915050565b600061466f82614766565b915061467a83614766565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146b3576146b26148a6565b5b828202905092915050565b60006146c982614766565b91506146d483614766565b9250828210156146e7576146e66148a6565b5b828203905092915050565b60006146fd82614746565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156147aa57808201518184015260208101905061478f565b838111156147b9576000848401525b50505050565b600060028204905060018216806147d757607f821691505b602082108114156147eb576147ea614904565b5b50919050565b6147fa826149de565b810181811067ffffffffffffffff8211171561481957614818614991565b5b80604052505050565b600061482d82614766565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148605761485f6148a6565b5b600182019050919050565b6000819050919050565b600061488082614766565b915061488b83614766565b92508261489b5761489a6148d5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f546f6f206d616e7920746f6b656e7320666f72206f6e65206164647265737300600082015250565b7f4d696e74206973206e6f74206f70656e00000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4e53460000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4e6f206163636573730000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f496e73756666696369656e74207061796d656e74000000000000000000000000600082015250565b7f4e6f7420796f757220746f6b656e000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f546f6b656e206265696e67207374616b65640000000000000000000000000000600082015250565b7f546f6b656e20616c7265616479207374616b6564000000000000000000000000600082015250565b7f4e6f2062616c616e636520746f20776974686472617700000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5769746864726177616c206661696c6564000000000000000000000000000000600082015250565b7f4e6f207472616e736665727320756e74696c207075626c6963206d696e740000600082015250565b7f546f6b656e206e6f74207374616b656400000000000000000000000000000000600082015250565b615106816146f2565b811461511157600080fd5b50565b61511d81614704565b811461512857600080fd5b50565b61513481614710565b811461513f57600080fd5b50565b61514b8161471a565b811461515657600080fd5b50565b61516281614766565b811461516d57600080fd5b50565b61517981614770565b811461518457600080fd5b5056fea26469706673582212201ab73f05c3b039d3c65e6593116fc06dd3309a2efc20d0859a0cf3373bb0cb1564736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002d68747470733a2f2f7468656669736874616e6b6e66742e73332e616d617a6f6e6177732e636f6d2f6d6574612f00000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c80636817c76c11610123578063a694fc3a116100ab578063e985e9c51161006f578063e985e9c51461080a578063ea66aeb314610847578063eedc966a14610884578063f2fde38b146108c1578063f8004d31146108ea57610225565b8063a694fc3a14610736578063b4d80ec71461075f578063b88d4fde14610788578063c87b56dd146107b1578063db0e6f67146107ee57610225565b80638c874ebd116100f25780638c874ebd146106615780638da5cb5b1461068c57806395d89b41146106b7578063996517cf146106e2578063a22cb4651461070d57610225565b80636817c76c146105b75780636c0360eb146105e257806370a082311461060d578063715018a61461064a57610225565b806324bbd049116101b157806342842e0e1161017557806342842e0e146104ae5780634f6ccce7146104d757806355f804b3146105145780635e1bef321461053d5780636352211e1461057a57610225565b806324bbd049146103c95780632e17de78146103f45780632f745c591461041d578063326241141461045a5780633ccfd60b1461049757610225565b80631072cbea116101f85780631072cbea146102f857806318160ddd14610321578063192322cf1461034c57806319d1997a1461037557806323b872dd146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613843565b610913565b60405161025e9190614083565b60405180910390f35b34801561027357600080fd5b5061027c61098d565b60405161028991906140e3565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906138ea565b610a1f565b6040516102c69190613ffa565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f1919061376f565b610aa4565b005b34801561030457600080fd5b5061031f600480360381019061031a919061376f565b610bbc565b005b34801561032d57600080fd5b50610336610d6c565b60405161034391906144e5565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e91906138ea565b610d79565b005b34801561038157600080fd5b5061038a610ef3565b60405161039791906144e5565b60405180910390f35b3480156103ac57600080fd5b506103c760048036038101906103c29190613659565b610ef9565b005b3480156103d557600080fd5b506103de610f59565b6040516103eb9190614083565b60405180910390f35b34801561040057600080fd5b5061041b600480360381019061041691906138ea565b610f6c565b005b34801561042957600080fd5b50610444600480360381019061043f919061376f565b6110e7565b60405161045191906144e5565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c91906137af565b61118c565b60405161048e9190614083565b60405180910390f35b3480156104a357600080fd5b506104ac6112d1565b005b3480156104ba57600080fd5b506104d560048036038101906104d09190613659565b611461565b005b3480156104e357600080fd5b506104fe60048036038101906104f991906138ea565b611481565b60405161050b91906144e5565b60405180910390f35b34801561052057600080fd5b5061053b6004803603810190610536919061389d565b6114f2565b005b34801561054957600080fd5b50610564600480360381019061055f91906138ea565b611584565b60405161057191906144e5565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c91906138ea565b61159c565b6040516105ae9190613ffa565b60405180910390f35b3480156105c357600080fd5b506105cc61164e565b6040516105d991906144e5565b60405180910390f35b3480156105ee57600080fd5b506105f7611659565b60405161060491906140e3565b60405180910390f35b34801561061957600080fd5b50610634600480360381019061062f91906135ec565b6116e7565b60405161064191906144e5565b60405180910390f35b34801561065657600080fd5b5061065f61179f565b005b34801561066d57600080fd5b50610676611827565b6040516106839190614083565b60405180910390f35b34801561069857600080fd5b506106a161183a565b6040516106ae9190613ffa565b60405180910390f35b3480156106c357600080fd5b506106cc611863565b6040516106d991906140e3565b60405180910390f35b3480156106ee57600080fd5b506106f76118f5565b60405161070491906144e5565b60405180910390f35b34801561071957600080fd5b50610734600480360381019061072f919061372f565b6118fa565b005b34801561074257600080fd5b5061075d600480360381019061075891906138ea565b611a7b565b005b34801561076b57600080fd5b5061078660048036038101906107819190613816565b611b62565b005b34801561079457600080fd5b506107af60048036038101906107aa91906136ac565b611bfb565b005b3480156107bd57600080fd5b506107d860048036038101906107d391906138ea565b611c5d565b6040516107e591906140e3565b60405180910390f35b61080860048036038101906108039190613917565b611d04565b005b34801561081657600080fd5b50610831600480360381019061082c9190613619565b611e7c565b60405161083e9190614083565b60405180910390f35b34801561085357600080fd5b5061086e600480360381019061086991906135ec565b611f10565b60405161087b9190614061565b60405180910390f35b34801561089057600080fd5b506108ab60048036038101906108a691906135ec565b611fbe565b6040516108b891906144e5565b60405180910390f35b3480156108cd57600080fd5b506108e860048036038101906108e391906135ec565b611fd6565b005b3480156108f657600080fd5b50610911600480360381019061090c9190613816565b6120ce565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610986575061098582612167565b5b9050919050565b60606001805461099c906147bf565b80601f01602080910402602001604051908101604052809291908181526020018280546109c8906147bf565b8015610a155780601f106109ea57610100808354040283529160200191610a15565b820191906000526020600020905b8154815290600101906020018083116109f857829003601f168201915b5050505050905090565b6000610a2a82612249565b610a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6090614345565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aaf8261159c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1790614425565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b3f6122b5565b73ffffffffffffffffffffffffffffffffffffffff161480610b6e5750610b6d81610b686122b5565b611e7c565b5b610bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba490614225565b60405180910390fd5b610bb783836122bd565b505050565b80600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3590614245565b60405180910390fd5b610c9081600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461237690919063ffffffff16565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610d2581600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461238c90919063ffffffff16565b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000600980549050905090565b3373ffffffffffffffffffffffffffffffffffffffff16610d998261159c565b73ffffffffffffffffffffffffffffffffffffffff1614610def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de690614325565b60405180910390fd5b6000600f60008381526020019081526020016000205411610e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3c906144c5565b60405180910390fd5b6000600f60008381526020019081526020016000205443610e6691906146be565b90506000610e7e6064836123a290919063ffffffff16565b905043600f60008581526020019081526020016000208190555080600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ee791906145dd565b92505081905550505050565b600b5481565b610f0a610f046122b5565b826123b8565b610f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4090614445565b60405180910390fd5b610f54838383612496565b505050565b600d60009054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff16610f8c8261159c565b73ffffffffffffffffffffffffffffffffffffffff1614610fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd990614325565b60405180910390fd5b6000600f60008381526020019081526020016000205411611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f906144c5565b60405180910390fd5b6000600f6000838152602001908152602001600020544361105991906146be565b905060006110716064836123a290919063ffffffff16565b90506000600f60008581526020019081526020016000208190555080600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110db91906145dd565b92505081905550505050565b60006110f2836116e7565b8210611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a90614145565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080856040516020016111a09190613ffa565b60405160208183030381529060405280519060200120905060006040518060400160405280601c81526020017f19457468657265756d205369676e6564204d6573736167653a0a333200000000815250905060008183604051602001611207929190613f99565b604051602081830303815290604052805190602001209050600060018289898960405160008152602001604052604051611244949392919061409e565b6020604051602081039080840390855afa158015611266573d6000803e3d6000fd5b505050602060405103519050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614945050505050949350505050565b6112d96122b5565b73ffffffffffffffffffffffffffffffffffffffff166112f761183a565b73ffffffffffffffffffffffffffffffffffffffff161461134d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134490614365565b60405180910390fd5b60004711611390576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138790614405565b60405180910390fd5b6000600d60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516113d890613fe5565b60006040518083038185875af1925050503d8060008114611415576040519150601f19603f3d011682016040523d82523d6000602084013e61141a565b606091505b505090508061145e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145590614485565b60405180910390fd5b50565b61147c83838360405180602001604052806000815250611bfb565b505050565b600061148b610d6c565b82106114cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c390614465565b60405180910390fd5b600982815481106114e0576114df614962565b5b90600052602060002001549050919050565b6114fa6122b5565b73ffffffffffffffffffffffffffffffffffffffff1661151861183a565b73ffffffffffffffffffffffffffffffffffffffff161461156e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156590614365565b60405180910390fd5b8181600c919061157f9291906133f0565b505050565b600f6020528060005260406000206000915090505481565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163c90614285565b60405180910390fd5b80915050919050565b66c55a6e4145e00081565b600c8054611666906147bf565b80601f0160208091040260200160405190810160405280929190818152602001828054611692906147bf565b80156116df5780601f106116b4576101008083540402835291602001916116df565b820191906000526020600020905b8154815290600101906020018083116116c257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174f90614265565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117a76122b5565b73ffffffffffffffffffffffffffffffffffffffff166117c561183a565b73ffffffffffffffffffffffffffffffffffffffff161461181b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181290614365565b60405180910390fd5b611825600061254b565b565b600d60019054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611872906147bf565b80601f016020809104026020016040519081016040528092919081815260200182805461189e906147bf565b80156118eb5780601f106118c0576101008083540402835291602001916118eb565b820191906000526020600020905b8154815290600101906020018083116118ce57829003601f168201915b5050505050905090565b600181565b6119026122b5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611970576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611967906141e5565b60405180910390fd5b806006600061197d6122b5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a2a6122b5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a6f9190614083565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff16611a9b8261159c565b73ffffffffffffffffffffffffffffffffffffffff1614611af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae890614325565b60405180910390fd5b6000600f60008381526020019081526020016000205414611b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3e906143e5565b60405180910390fd5b43600f60008381526020019081526020016000208190555050565b611b6a6122b5565b73ffffffffffffffffffffffffffffffffffffffff16611b8861183a565b73ffffffffffffffffffffffffffffffffffffffff1614611bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd590614365565b60405180910390fd5b80600d60016101000a81548160ff02191690831515021790555050565b611c0c611c066122b5565b836123b8565b611c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4290614445565b60405180910390fd5b611c578484848461260f565b50505050565b6060611c6882612249565b611ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9e906143a5565b60405180910390fd5b6000611cb161266b565b90506000815111611cd15760405180602001604052806000815250611cfc565b80611cdb846126fd565b604051602001611cec929190613fc1565b6040516020818303038152906040525b915050919050565b828282600d60019054906101000a900460ff16611d6757611d273384848461118c565b611d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5d906142c5565b60405180910390fd5b5b600d60009054906101000a900460ff16611db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dad90614125565b60405180910390fd5b600187611dc233611f10565b51611dcd91906145dd565b1115611e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0590614105565b60405180910390fd5b611e288766c55a6e4145e00061285e90919063ffffffff16565b341015611e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6190614305565b60405180910390fd5b611e7387612874565b50505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606000611f1d836116e7565b905060008167ffffffffffffffff811115611f3b57611f3a614991565b5b604051908082528060200260200182016040528015611f695781602001602082028036833780820191505090505b50905060005b82811015611fb357611f8185826110e7565b828281518110611f9457611f93614962565b5b6020026020010181815250508080611fab90614822565b915050611f6f565b508092505050919050565b600e6020528060005260406000206000915090505481565b611fde6122b5565b73ffffffffffffffffffffffffffffffffffffffff16611ffc61183a565b73ffffffffffffffffffffffffffffffffffffffff1614612052576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204990614365565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b990614185565b60405180910390fd5b6120cb8161254b565b50565b6120d66122b5565b73ffffffffffffffffffffffffffffffffffffffff166120f461183a565b73ffffffffffffffffffffffffffffffffffffffff161461214a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214190614365565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061223257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061224257506122418261291a565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166123308361159c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818361238491906146be565b905092915050565b6000818361239a91906145dd565b905092915050565b600081836123b09190614633565b905092915050565b60006123c382612249565b612402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f990614205565b60405180910390fd5b600061240d8361159c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061247c57508373ffffffffffffffffffffffffffffffffffffffff1661246484610a1f565b73ffffffffffffffffffffffffffffffffffffffff16145b8061248d575061248c8185611e7c565b5b91505092915050565b6000600f600083815260200190815260200160002054146124ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e3906143c5565b60405180910390fd5b600d60019054906101000a900460ff1661253b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612532906144a5565b60405180910390fd5b612546838383612984565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61261a848484612496565b61262684848484612be0565b612665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265c90614165565b60405180910390fd5b50505050565b6060600c805461267a906147bf565b80601f01602080910402602001604051908101604052809291908181526020018280546126a6906147bf565b80156126f35780601f106126c8576101008083540402835291602001916126f3565b820191906000526020600020905b8154815290600101906020018083116126d657829003601f168201915b5050505050905090565b60606000821415612745576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612859565b600082905060005b6000821461277757808061276090614822565b915050600a826127709190614633565b915061274d565b60008167ffffffffffffffff81111561279357612792614991565b5b6040519080825280601f01601f1916602001820160405280156127c55781602001600182028036833780820191505090505b5090505b60008514612852576001826127de91906146be565b9150600a856127ed9190614875565b60306127f991906145dd565b60f81b81838151811061280f5761280e614962565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561284b9190614633565b94506127c9565b8093505050505b919050565b6000818361286c9190614664565b905092915050565b600b5461289182612883610d6c565b61238c90919063ffffffff16565b11156128d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c9906142a5565b60405180910390fd5b60006128dc610d6c565b905060005b82811015612915576001826128f691906145dd565b91506129023383612d77565b808061290d90614822565b9150506128e1565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b8273ffffffffffffffffffffffffffffffffffffffff166129a48261159c565b73ffffffffffffffffffffffffffffffffffffffff16146129fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f190614385565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a61906141c5565b60405180910390fd5b612a75838383612d95565b612a806000826122bd565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ad091906146be565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b2791906145dd565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612c018473ffffffffffffffffffffffffffffffffffffffff16612ea9565b15612d6a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c2a6122b5565b8786866040518563ffffffff1660e01b8152600401612c4c9493929190614015565b602060405180830381600087803b158015612c6657600080fd5b505af1925050508015612c9757506040513d601f19601f82011682018060405250810190612c949190613870565b60015b612d1a573d8060008114612cc7576040519150601f19603f3d011682016040523d82523d6000602084013e612ccc565b606091505b50600081511415612d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0990614165565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d6f565b600190505b949350505050565b612d91828260405180602001604052806000815250612ebc565b5050565b612da0838383612f17565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612de357612dde81612f1c565b612e22565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612e2157612e208382612f65565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e6557612e60816130d2565b612ea4565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ea357612ea282826131a3565b5b5b505050565b600080823b905060008111915050919050565b612ec68383613222565b612ed36000848484612be0565b612f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0990614165565b60405180910390fd5b505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612f72846116e7565b612f7c91906146be565b9050600060086000848152602001908152602001600020549050818114613061576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506130e691906146be565b90506000600a600084815260200190815260200160002054905060006009838154811061311657613115614962565b5b90600052602060002001549050806009838154811061313857613137614962565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a600085815260200190815260200160002060009055600980548061318757613186614933565b5b6001900381819060005260206000200160009055905550505050565b60006131ae836116e7565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613292576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613289906142e5565b60405180910390fd5b61329b81612249565b156132db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132d2906141a5565b60405180910390fd5b6132e760008383612d95565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461333791906145dd565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546133fc906147bf565b90600052602060002090601f01602090048101928261341e5760008555613465565b82601f1061343757803560ff1916838001178555613465565b82800160010185558215613465579182015b82811115613464578235825591602001919060010190613449565b5b5090506134729190613476565b5090565b5b8082111561348f576000816000905550600101613477565b5090565b60006134a66134a184614525565b614500565b9050828152602081018484840111156134c2576134c16149cf565b5b6134cd84828561477d565b509392505050565b6000813590506134e4816150fd565b92915050565b6000813590506134f981615114565b92915050565b60008135905061350e8161512b565b92915050565b60008135905061352381615142565b92915050565b60008151905061353881615142565b92915050565b600082601f830112613553576135526149c5565b5b8135613563848260208601613493565b91505092915050565b60008083601f840112613582576135816149c5565b5b8235905067ffffffffffffffff81111561359f5761359e6149c0565b5b6020830191508360018202830111156135bb576135ba6149ca565b5b9250929050565b6000813590506135d181615159565b92915050565b6000813590506135e681615170565b92915050565b600060208284031215613602576136016149d9565b5b6000613610848285016134d5565b91505092915050565b600080604083850312156136305761362f6149d9565b5b600061363e858286016134d5565b925050602061364f858286016134d5565b9150509250929050565b600080600060608486031215613672576136716149d9565b5b6000613680868287016134d5565b9350506020613691868287016134d5565b92505060406136a2868287016135c2565b9150509250925092565b600080600080608085870312156136c6576136c56149d9565b5b60006136d4878288016134d5565b94505060206136e5878288016134d5565b93505060406136f6878288016135c2565b925050606085013567ffffffffffffffff811115613717576137166149d4565b5b6137238782880161353e565b91505092959194509250565b60008060408385031215613746576137456149d9565b5b6000613754858286016134d5565b9250506020613765858286016134ea565b9150509250929050565b60008060408385031215613786576137856149d9565b5b6000613794858286016134d5565b92505060206137a5858286016135c2565b9150509250929050565b600080600080608085870312156137c9576137c86149d9565b5b60006137d7878288016134d5565b94505060206137e8878288016135d7565b93505060406137f9878288016134ff565b925050606061380a878288016134ff565b91505092959194509250565b60006020828403121561382c5761382b6149d9565b5b600061383a848285016134ea565b91505092915050565b600060208284031215613859576138586149d9565b5b600061386784828501613514565b91505092915050565b600060208284031215613886576138856149d9565b5b600061389484828501613529565b91505092915050565b600080602083850312156138b4576138b36149d9565b5b600083013567ffffffffffffffff8111156138d2576138d16149d4565b5b6138de8582860161356c565b92509250509250929050565b600060208284031215613900576138ff6149d9565b5b600061390e848285016135c2565b91505092915050565b60008060008060808587031215613931576139306149d9565b5b600061393f878288016135c2565b9450506020613950878288016135d7565b9350506040613961878288016134ff565b9250506060613972878288016134ff565b91505092959194509250565b600061398a8383613f6c565b60208301905092915050565b61399f816146f2565b82525050565b60006139b082614566565b6139ba8185614594565b93506139c583614556565b8060005b838110156139f65781516139dd888261397e565b97506139e883614587565b9250506001810190506139c9565b5085935050505092915050565b613a0c81614704565b82525050565b613a1b81614710565b82525050565b613a32613a2d82614710565b61486b565b82525050565b6000613a4382614571565b613a4d81856145a5565b9350613a5d81856020860161478c565b613a66816149de565b840191505092915050565b6000613a7c82614571565b613a8681856145b6565b9350613a9681856020860161478c565b80840191505092915050565b6000613aad8261457c565b613ab781856145c1565b9350613ac781856020860161478c565b613ad0816149de565b840191505092915050565b6000613ae68261457c565b613af081856145d2565b9350613b0081856020860161478c565b80840191505092915050565b6000613b19601f836145c1565b9150613b24826149ef565b602082019050919050565b6000613b3c6010836145c1565b9150613b4782614a18565b602082019050919050565b6000613b5f602b836145c1565b9150613b6a82614a41565b604082019050919050565b6000613b826032836145c1565b9150613b8d82614a90565b604082019050919050565b6000613ba56026836145c1565b9150613bb082614adf565b604082019050919050565b6000613bc8601c836145c1565b9150613bd382614b2e565b602082019050919050565b6000613beb6024836145c1565b9150613bf682614b57565b604082019050919050565b6000613c0e6019836145c1565b9150613c1982614ba6565b602082019050919050565b6000613c31602c836145c1565b9150613c3c82614bcf565b604082019050919050565b6000613c546038836145c1565b9150613c5f82614c1e565b604082019050919050565b6000613c776003836145c1565b9150613c8282614c6d565b602082019050919050565b6000613c9a602a836145c1565b9150613ca582614c96565b604082019050919050565b6000613cbd6029836145c1565b9150613cc882614ce5565b604082019050919050565b6000613ce06016836145c1565b9150613ceb82614d34565b602082019050919050565b6000613d036009836145c1565b9150613d0e82614d5d565b602082019050919050565b6000613d266020836145c1565b9150613d3182614d86565b602082019050919050565b6000613d496014836145c1565b9150613d5482614daf565b602082019050919050565b6000613d6c600e836145c1565b9150613d7782614dd8565b602082019050919050565b6000613d8f602c836145c1565b9150613d9a82614e01565b604082019050919050565b6000613db26020836145c1565b9150613dbd82614e50565b602082019050919050565b6000613dd56029836145c1565b9150613de082614e79565b604082019050919050565b6000613df8602f836145c1565b9150613e0382614ec8565b604082019050919050565b6000613e1b6012836145c1565b9150613e2682614f17565b602082019050919050565b6000613e3e6014836145c1565b9150613e4982614f40565b602082019050919050565b6000613e616016836145c1565b9150613e6c82614f69565b602082019050919050565b6000613e846021836145c1565b9150613e8f82614f92565b604082019050919050565b6000613ea76000836145b6565b9150613eb282614fe1565b600082019050919050565b6000613eca6031836145c1565b9150613ed582614fe4565b604082019050919050565b6000613eed602c836145c1565b9150613ef882615033565b604082019050919050565b6000613f106011836145c1565b9150613f1b82615082565b602082019050919050565b6000613f33601e836145c1565b9150613f3e826150ab565b602082019050919050565b6000613f566010836145c1565b9150613f61826150d4565b602082019050919050565b613f7581614766565b82525050565b613f8481614766565b82525050565b613f9381614770565b82525050565b6000613fa58285613a71565b9150613fb18284613a21565b6020820191508190509392505050565b6000613fcd8285613adb565b9150613fd98284613adb565b91508190509392505050565b6000613ff082613e9a565b9150819050919050565b600060208201905061400f6000830184613996565b92915050565b600060808201905061402a6000830187613996565b6140376020830186613996565b6140446040830185613f7b565b81810360608301526140568184613a38565b905095945050505050565b6000602082019050818103600083015261407b81846139a5565b905092915050565b60006020820190506140986000830184613a03565b92915050565b60006080820190506140b36000830187613a12565b6140c06020830186613f8a565b6140cd6040830185613a12565b6140da6060830184613a12565b95945050505050565b600060208201905081810360008301526140fd8184613aa2565b905092915050565b6000602082019050818103600083015261411e81613b0c565b9050919050565b6000602082019050818103600083015261413e81613b2f565b9050919050565b6000602082019050818103600083015261415e81613b52565b9050919050565b6000602082019050818103600083015261417e81613b75565b9050919050565b6000602082019050818103600083015261419e81613b98565b9050919050565b600060208201905081810360008301526141be81613bbb565b9050919050565b600060208201905081810360008301526141de81613bde565b9050919050565b600060208201905081810360008301526141fe81613c01565b9050919050565b6000602082019050818103600083015261421e81613c24565b9050919050565b6000602082019050818103600083015261423e81613c47565b9050919050565b6000602082019050818103600083015261425e81613c6a565b9050919050565b6000602082019050818103600083015261427e81613c8d565b9050919050565b6000602082019050818103600083015261429e81613cb0565b9050919050565b600060208201905081810360008301526142be81613cd3565b9050919050565b600060208201905081810360008301526142de81613cf6565b9050919050565b600060208201905081810360008301526142fe81613d19565b9050919050565b6000602082019050818103600083015261431e81613d3c565b9050919050565b6000602082019050818103600083015261433e81613d5f565b9050919050565b6000602082019050818103600083015261435e81613d82565b9050919050565b6000602082019050818103600083015261437e81613da5565b9050919050565b6000602082019050818103600083015261439e81613dc8565b9050919050565b600060208201905081810360008301526143be81613deb565b9050919050565b600060208201905081810360008301526143de81613e0e565b9050919050565b600060208201905081810360008301526143fe81613e31565b9050919050565b6000602082019050818103600083015261441e81613e54565b9050919050565b6000602082019050818103600083015261443e81613e77565b9050919050565b6000602082019050818103600083015261445e81613ebd565b9050919050565b6000602082019050818103600083015261447e81613ee0565b9050919050565b6000602082019050818103600083015261449e81613f03565b9050919050565b600060208201905081810360008301526144be81613f26565b9050919050565b600060208201905081810360008301526144de81613f49565b9050919050565b60006020820190506144fa6000830184613f7b565b92915050565b600061450a61451b565b905061451682826147f1565b919050565b6000604051905090565b600067ffffffffffffffff8211156145405761453f614991565b5b614549826149de565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006145e882614766565b91506145f383614766565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614628576146276148a6565b5b828201905092915050565b600061463e82614766565b915061464983614766565b925082614659576146586148d5565b5b828204905092915050565b600061466f82614766565b915061467a83614766565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146b3576146b26148a6565b5b828202905092915050565b60006146c982614766565b91506146d483614766565b9250828210156146e7576146e66148a6565b5b828203905092915050565b60006146fd82614746565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156147aa57808201518184015260208101905061478f565b838111156147b9576000848401525b50505050565b600060028204905060018216806147d757607f821691505b602082108114156147eb576147ea614904565b5b50919050565b6147fa826149de565b810181811067ffffffffffffffff8211171561481957614818614991565b5b80604052505050565b600061482d82614766565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148605761485f6148a6565b5b600182019050919050565b6000819050919050565b600061488082614766565b915061488b83614766565b92508261489b5761489a6148d5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f546f6f206d616e7920746f6b656e7320666f72206f6e65206164647265737300600082015250565b7f4d696e74206973206e6f74206f70656e00000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4e53460000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4e6f206163636573730000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f496e73756666696369656e74207061796d656e74000000000000000000000000600082015250565b7f4e6f7420796f757220746f6b656e000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f546f6b656e206265696e67207374616b65640000000000000000000000000000600082015250565b7f546f6b656e20616c7265616479207374616b6564000000000000000000000000600082015250565b7f4e6f2062616c616e636520746f20776974686472617700000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5769746864726177616c206661696c6564000000000000000000000000000000600082015250565b7f4e6f207472616e736665727320756e74696c207075626c6963206d696e740000600082015250565b7f546f6b656e206e6f74207374616b656400000000000000000000000000000000600082015250565b615106816146f2565b811461511157600080fd5b50565b61511d81614704565b811461512857600080fd5b50565b61513481614710565b811461513f57600080fd5b50565b61514b8161471a565b811461515657600080fd5b50565b61516281614766565b811461516d57600080fd5b50565b61517981614770565b811461518457600080fd5b5056fea26469706673582212201ab73f05c3b039d3c65e6593116fc06dd3309a2efc20d0859a0cf3373bb0cb1564736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002d68747470733a2f2f7468656669736874616e6b6e66742e73332e616d617a6f6e6177732e636f6d2f6d6574612f00000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : inputBaseUri (string): https://thefishtanknft.s3.amazonaws.com/meta/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000002d
Arg [2] : 68747470733a2f2f7468656669736874616e6b6e66742e73332e616d617a6f6e
Arg [3] : 6177732e636f6d2f6d6574612f00000000000000000000000000000000000000


Deployed Bytecode Sourcemap

50176:4641:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41678:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29570:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31129:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30652:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54552:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42318:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53905:364;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50365:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32019:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50433:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53546:347;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41986:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51103:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52689:251;;;;;;;;;;;;;:::i;:::-;;32429:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42508:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51632:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50646:35;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29264:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50265:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50405:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28994:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49475:94;;;;;;;;;;;;;:::i;:::-;;50468:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48824:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29739:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50321:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31422:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53317:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51847:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32685:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29914:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51948:406;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31788:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52948:357;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50595:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49724:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51750:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41678:224;41780:4;41819:35;41804:50;;;:11;:50;;;;:90;;;;41858:36;41882:11;41858:23;:36::i;:::-;41804:90;41797:97;;41678:224;;;:::o;29570:100::-;29624:13;29657:5;29650:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29570:100;:::o;31129:221::-;31205:7;31233:16;31241:7;31233;:16::i;:::-;31225:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31318:15;:24;31334:7;31318:24;;;;;;;;;;;;;;;;;;;;;31311:31;;31129:221;;;:::o;30652:411::-;30733:13;30749:23;30764:7;30749:14;:23::i;:::-;30733:39;;30797:5;30791:11;;:2;:11;;;;30783:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;30891:5;30875:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;30900:37;30917:5;30924:12;:10;:12::i;:::-;30900:16;:37::i;:::-;30875:62;30853:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;31034:21;31043:2;31047:7;31034:8;:21::i;:::-;30722:341;30652:411;;:::o;54552:256::-;54654:6;54626:12;:24;54639:10;54626:24;;;;;;;;;;;;;;;;:34;;54618:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;54706:36;54735:6;54706:12;:24;54719:10;54706:24;;;;;;;;;;;;;;;;:28;;:36;;;;:::i;:::-;54679:12;:24;54692:10;54679:24;;;;;;;;;;;;;;;:63;;;;54772:28;54793:6;54772:12;:16;54785:2;54772:16;;;;;;;;;;;;;;;;:20;;:28;;;;:::i;:::-;54753:12;:16;54766:2;54753:16;;;;;;;;;;;;;;;:47;;;;54552:256;;:::o;42318:113::-;42379:7;42406:10;:17;;;;42399:24;;42318:113;:::o;53905:364::-;53988:10;53968:30;;:16;53976:7;53968;:16::i;:::-;:30;;;53960:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;54054:1;54036:6;:15;54043:7;54036:15;;;;;;;;;;;;:19;54028:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;54087:8;54111:6;:15;54118:7;54111:15;;;;;;;;;;;;54098:12;:28;;;;:::i;:::-;54087:39;;54137:17;54157:12;54165:3;54157;:7;;:12;;;;:::i;:::-;54137:32;;54198:12;54180:6;:15;54187:7;54180:15;;;;;;;;;;;:30;;;;54249:12;54221;:24;54234:10;54221:24;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;53949:320;;53905:364;:::o;50365:33::-;;;;:::o;32019:339::-;32214:41;32233:12;:10;:12::i;:::-;32247:7;32214:18;:41::i;:::-;32206:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;32322:28;32332:4;32338:2;32342:7;32322:9;:28::i;:::-;32019:339;;;:::o;50433:28::-;;;;;;;;;;;;;:::o;53546:347::-;53623:10;53603:30;;:16;53611:7;53603;:16::i;:::-;:30;;;53595:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;53689:1;53671:6;:15;53678:7;53671:15;;;;;;;;;;;;:19;53663:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;53722:8;53746:6;:15;53753:7;53746:15;;;;;;;;;;;;53733:12;:28;;;;:::i;:::-;53722:39;;53772:17;53792:12;53800:3;53792;:7;;:12;;;;:::i;:::-;53772:32;;53833:1;53815:6;:15;53822:7;53815:15;;;;;;;;;;;:19;;;;53873:12;53845;:24;53858:10;53845:24;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;53584:309;;53546:347;:::o;41986:256::-;42083:7;42119:23;42136:5;42119:16;:23::i;:::-;42111:5;:31;42103:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;42208:12;:19;42221:5;42208:19;;;;;;;;;;;;;;;:26;42228:5;42208:26;;;;;;;;;;;;42201:33;;41986:256;;;;:::o;51103:413::-;51202:4;51219:12;51255:4;51244:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;51234:27;;;;;;51219:42;;51272:19;:56;;;;;;;;;;;;;;;;;;;51339:21;51390:6;51398:4;51373:30;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51363:41;;;;;;51339:65;;51415:17;51435:36;51445:13;51460:2;51464;51468;51435:36;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51415:56;;51502:6;;;;;;;;;;;51489:19;;:9;:19;;;51482:26;;;;;;51103:413;;;;;;:::o;52689:251::-;49055:12;:10;:12::i;:::-;49044:23;;:7;:5;:7::i;:::-;:23;;;49036:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52771:1:::1;52747:21;:25;52739:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;52813:12;52831:14;;;;;;;;;;;:19;;52858:21;52831:53;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52812:72;;;52903:7;52895:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;52728:212;52689:251::o:0;32429:185::-;32567:39;32584:4;32590:2;32594:7;32567:39;;;;;;;;;;;;:16;:39::i;:::-;32429:185;;;:::o;42508:233::-;42583:7;42619:30;:28;:30::i;:::-;42611:5;:38;42603:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;42716:10;42727:5;42716:17;;;;;;;;:::i;:::-;;;;;;;;;;42709:24;;42508:233;;;:::o;51632:106::-;49055:12;:10;:12::i;:::-;49044:23;;:7;:5;:7::i;:::-;:23;;;49036:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51720:10:::1;;51710:7;:20;;;;;;;:::i;:::-;;51632:106:::0;;:::o;50646:35::-;;;;;;;;;;;;;;;;;:::o;29264:239::-;29336:7;29356:13;29372:7;:16;29380:7;29372:16;;;;;;;;;;;;;;;;;;;;;29356:32;;29424:1;29407:19;;:5;:19;;;;29399:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29490:5;29483:12;;;29264:239;;;:::o;50265:49::-;50301:13;50265:49;:::o;50405:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28994:208::-;29066:7;29111:1;29094:19;;:5;:19;;;;29086:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;29178:9;:16;29188:5;29178:16;;;;;;;;;;;;;;;;29171:23;;28994:208;;;:::o;49475:94::-;49055:12;:10;:12::i;:::-;49044:23;;:7;:5;:7::i;:::-;:23;;;49036:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49540:21:::1;49558:1;49540:9;:21::i;:::-;49475:94::o:0;50468:30::-;;;;;;;;;;;;;:::o;48824:87::-;48870:7;48897:6;;;;;;;;;;;48890:13;;48824:87;:::o;29739:104::-;29795:13;29828:7;29821:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29739:104;:::o;50321:37::-;50357:1;50321:37;:::o;31422:295::-;31537:12;:10;:12::i;:::-;31525:24;;:8;:24;;;;31517:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;31637:8;31592:18;:32;31611:12;:10;:12::i;:::-;31592:32;;;;;;;;;;;;;;;:42;31625:8;31592:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31690:8;31661:48;;31676:12;:10;:12::i;:::-;31661:48;;;31700:8;31661:48;;;;;;:::i;:::-;;;;;;;;31422:295;;:::o;53317:217::-;53392:10;53372:30;;:16;53380:7;53372;:16::i;:::-;:30;;;53364:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;53459:1;53440:6;:15;53447:7;53440:15;;;;;;;;;;;;:20;53432:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;53514:12;53496:6;:15;53503:7;53496:15;;;;;;;;;;;:30;;;;53317:217;:::o;51847:89::-;49055:12;:10;:12::i;:::-;49044:23;;:7;:5;:7::i;:::-;:23;;;49036:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51923:5:::1;51910:10;;:18;;;;;;;;;;;;;;;;;;51847:89:::0;:::o;32685:328::-;32860:41;32879:12;:10;:12::i;:::-;32893:7;32860:18;:41::i;:::-;32852:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;32966:39;32980:4;32986:2;32990:7;32999:5;32966:13;:39::i;:::-;32685:328;;;;:::o;29914:334::-;29987:13;30021:16;30029:7;30021;:16::i;:::-;30013:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;30102:21;30126:10;:8;:10::i;:::-;30102:34;;30178:1;30160:7;30154:21;:25;:86;;;;;;;;;;;;;;;;;30206:7;30215:18;:7;:16;:18::i;:::-;30189:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30154:86;30147:93;;;29914:334;;;:::o;51948:406::-;52032:2;52036;52040;50996:10;;;;;;;;;;;50991:83;;51016:44;51037:10;51049:2;51053;51057;51016:20;:44::i;:::-;51008:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50991:83;52080:8:::1;;;;;;;;;;;52072:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;50357:1;52163:14;52128:25;52142:10;52128:13;:25::i;:::-;:32;:49;;;;:::i;:::-;:62;;52120:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;52258:29;52272:14;50301:13;52258;;:29;;;;:::i;:::-;52245:9;:42;;52237:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;52325:21;52331:14;52325:5;:21::i;:::-;51948:406:::0;;;;;;;:::o;31788:164::-;31885:4;31909:18;:25;31928:5;31909:25;;;;;;;;;;;;;;;:35;31935:8;31909:35;;;;;;;;;;;;;;;;;;;;;;;;;31902:42;;31788:164;;;;:::o;52948:357::-;53007:16;53036:15;53054:17;53064:6;53054:9;:17::i;:::-;53036:35;;53084:30;53131:10;53117:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53084:58;;53157:6;53153:112;53173:10;53169:1;:14;53153:112;;;53223:30;53243:6;53251:1;53223:19;:30::i;:::-;53204:13;53218:1;53204:16;;;;;;;;:::i;:::-;;;;;;;:49;;;;;53185:3;;;;;:::i;:::-;;;;53153:112;;;;53284:13;53277:20;;;;52948:357;;;:::o;50595:44::-;;;;;;;;;;;;;;;;;:::o;49724:192::-;49055:12;:10;:12::i;:::-;49044:23;;:7;:5;:7::i;:::-;:23;;;49036:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49833:1:::1;49813:22;;:8;:22;;;;49805:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;49889:19;49899:8;49889:9;:19::i;:::-;49724:192:::0;:::o;51750:85::-;49055:12;:10;:12::i;:::-;49044:23;;:7;:5;:7::i;:::-;:23;;;49036:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51822:5:::1;51811:8;;:16;;;;;;;;;;;;;;;;;;51750:85:::0;:::o;28625:305::-;28727:4;28779:25;28764:40;;;:11;:40;;;;:105;;;;28836:33;28821:48;;;:11;:48;;;;28764:105;:158;;;;28886:36;28910:11;28886:23;:36::i;:::-;28764:158;28744:178;;28625:305;;;:::o;34523:127::-;34588:4;34640:1;34612:30;;:7;:16;34620:7;34612:16;;;;;;;;;;;;;;;;;;;;;:30;;;;34605:37;;34523:127;;;:::o;27079:98::-;27132:7;27159:10;27152:17;;27079:98;:::o;38505:174::-;38607:2;38580:15;:24;38596:7;38580:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;38663:7;38659:2;38625:46;;38634:23;38649:7;38634:14;:23::i;:::-;38625:46;;;;;;;;;;;;38505:174;;:::o;22670:98::-;22728:7;22759:1;22755;:5;;;;:::i;:::-;22748:12;;22670:98;;;;:::o;22289:::-;22347:7;22378:1;22374;:5;;;;:::i;:::-;22367:12;;22289:98;;;;:::o;23426:::-;23484:7;23515:1;23511;:5;;;;:::i;:::-;23504:12;;23426:98;;;;:::o;34817:348::-;34910:4;34935:16;34943:7;34935;:16::i;:::-;34927:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;35011:13;35027:23;35042:7;35027:14;:23::i;:::-;35011:39;;35080:5;35069:16;;:7;:16;;;:51;;;;35113:7;35089:31;;:20;35101:7;35089:11;:20::i;:::-;:31;;;35069:51;:87;;;;35124:32;35141:5;35148:7;35124:16;:32::i;:::-;35069:87;35061:96;;;34817:348;;;;:::o;54281:259::-;54399:1;54380:6;:15;54387:7;54380:15;;;;;;;;;;;;:20;54372:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;54442:10;;;;;;;;;;;54434:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;54498:34;54514:4;54520:2;54524:7;54498:15;:34::i;:::-;54281:259;;;:::o;49924:173::-;49980:16;49999:6;;;;;;;;;;;49980:25;;50025:8;50016:6;;:17;;;;;;;;;;;;;;;;;;50080:8;50049:40;;50070:8;50049:40;;;;;;;;;;;;49969:128;49924:173;:::o;33895:315::-;34052:28;34062:4;34068:2;34072:7;34052:9;:28::i;:::-;34099:48;34122:4;34128:2;34132:7;34141:5;34099:22;:48::i;:::-;34091:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;33895:315;;;;:::o;51524:100::-;51576:13;51609:7;51602:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51524:100;:::o;343:723::-;399:13;629:1;620:5;:10;616:53;;;647:10;;;;;;;;;;;;;;;;;;;;;616:53;679:12;694:5;679:20;;710:14;735:78;750:1;742:4;:9;735:78;;768:8;;;;;:::i;:::-;;;;799:2;791:10;;;;;:::i;:::-;;;735:78;;;823:19;855:6;845:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;823:39;;873:154;889:1;880:5;:10;873:154;;917:1;907:11;;;;;:::i;:::-;;;984:2;976:5;:10;;;;:::i;:::-;963:2;:24;;;;:::i;:::-;950:39;;933:6;940;933:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1013:2;1004:11;;;;;:::i;:::-;;;873:154;;;1051:6;1037:21;;;;;343:723;;;;:::o;23027:98::-;23085:7;23116:1;23112;:5;;;;:::i;:::-;23105:12;;23027:98;;;;:::o;52362:319::-;52462:11;;52425:33;52443:14;52425:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:48;;52417:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;52513:13;52529;:11;:13::i;:::-;52513:29;;52557:6;52553:121;52573:14;52569:1;:18;52553:121;;;52618:1;52609:10;;;;;:::i;:::-;;;52634:28;52644:10;52656:5;52634:9;:28::i;:::-;52589:3;;;;;:::i;:::-;;;;52553:121;;;;52406:275;52362:319;:::o;12808:157::-;12893:4;12932:25;12917:40;;;:11;:40;;;;12910:47;;12808:157;;;:::o;37809:578::-;37968:4;37941:31;;:23;37956:7;37941:14;:23::i;:::-;:31;;;37933:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;38051:1;38037:16;;:2;:16;;;;38029:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;38107:39;38128:4;38134:2;38138:7;38107:20;:39::i;:::-;38211:29;38228:1;38232:7;38211:8;:29::i;:::-;38272:1;38253:9;:15;38263:4;38253:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;38301:1;38284:9;:13;38294:2;38284:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;38332:2;38313:7;:16;38321:7;38313:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;38371:7;38367:2;38352:27;;38361:4;38352:27;;;;;;;;;;;;37809:578;;;:::o;39244:799::-;39399:4;39420:15;:2;:13;;;:15::i;:::-;39416:620;;;39472:2;39456:36;;;39493:12;:10;:12::i;:::-;39507:4;39513:7;39522:5;39456:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39452:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39715:1;39698:6;:13;:18;39694:272;;;39741:60;;;;;;;;;;:::i;:::-;;;;;;;;39694:272;39916:6;39910:13;39901:6;39897:2;39893:15;39886:38;39452:529;39589:41;;;39579:51;;;:6;:51;;;;39572:58;;;;;39416:620;40020:4;40013:11;;39244:799;;;;;;;:::o;35507:110::-;35583:26;35593:2;35597:7;35583:26;;;;;;;;;;;;:9;:26::i;:::-;35507:110;;:::o;43354:589::-;43498:45;43525:4;43531:2;43535:7;43498:26;:45::i;:::-;43576:1;43560:18;;:4;:18;;;43556:187;;;43595:40;43627:7;43595:31;:40::i;:::-;43556:187;;;43665:2;43657:10;;:4;:10;;;43653:90;;43684:47;43717:4;43723:7;43684:32;:47::i;:::-;43653:90;43556:187;43771:1;43757:16;;:2;:16;;;43753:183;;;43790:45;43827:7;43790:36;:45::i;:::-;43753:183;;;43863:4;43857:10;;:2;:10;;;43853:83;;43884:40;43912:2;43916:7;43884:27;:40::i;:::-;43853:83;43753:183;43354:589;;;:::o;2868:387::-;2928:4;3136:12;3203:7;3191:20;3183:28;;3246:1;3239:4;:8;3232:15;;;2868:387;;;:::o;35844:321::-;35974:18;35980:2;35984:7;35974:5;:18::i;:::-;36025:54;36056:1;36060:2;36064:7;36073:5;36025:22;:54::i;:::-;36003:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;35844:321;;;:::o;40615:126::-;;;;:::o;44666:164::-;44770:10;:17;;;;44743:15;:24;44759:7;44743:24;;;;;;;;;;;:44;;;;44798:10;44814:7;44798:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44666:164;:::o;45457:988::-;45723:22;45773:1;45748:22;45765:4;45748:16;:22::i;:::-;:26;;;;:::i;:::-;45723:51;;45785:18;45806:17;:26;45824:7;45806:26;;;;;;;;;;;;45785:47;;45953:14;45939:10;:28;45935:328;;45984:19;46006:12;:18;46019:4;46006:18;;;;;;;;;;;;;;;:34;46025:14;46006:34;;;;;;;;;;;;45984:56;;46090:11;46057:12;:18;46070:4;46057:18;;;;;;;;;;;;;;;:30;46076:10;46057:30;;;;;;;;;;;:44;;;;46207:10;46174:17;:30;46192:11;46174:30;;;;;;;;;;;:43;;;;45969:294;45935:328;46359:17;:26;46377:7;46359:26;;;;;;;;;;;46352:33;;;46403:12;:18;46416:4;46403:18;;;;;;;;;;;;;;;:34;46422:14;46403:34;;;;;;;;;;;46396:41;;;45538:907;;45457:988;;:::o;46740:1079::-;46993:22;47038:1;47018:10;:17;;;;:21;;;;:::i;:::-;46993:46;;47050:18;47071:15;:24;47087:7;47071:24;;;;;;;;;;;;47050:45;;47422:19;47444:10;47455:14;47444:26;;;;;;;;:::i;:::-;;;;;;;;;;47422:48;;47508:11;47483:10;47494;47483:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;47619:10;47588:15;:28;47604:11;47588:28;;;;;;;;;;;:41;;;;47760:15;:24;47776:7;47760:24;;;;;;;;;;;47753:31;;;47795:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;46811:1008;;;46740:1079;:::o;44244:221::-;44329:14;44346:20;44363:2;44346:16;:20::i;:::-;44329:37;;44404:7;44377:12;:16;44390:2;44377:16;;;;;;;;;;;;;;;:24;44394:6;44377:24;;;;;;;;;;;:34;;;;44451:6;44422:17;:26;44440:7;44422:26;;;;;;;;;;;:35;;;;44318:147;44244:221;;:::o;36501:382::-;36595:1;36581:16;;:2;:16;;;;36573:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;36654:16;36662:7;36654;:16::i;:::-;36653:17;36645:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;36716:45;36745:1;36749:2;36753:7;36716:20;:45::i;:::-;36791:1;36774:9;:13;36784:2;36774:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36822:2;36803:7;:16;36811:7;36803:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36867:7;36863:2;36842:33;;36859:1;36842:33;;;;;;;;;;;;36501:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;707:139;;;;:::o;852:137::-;897:5;935:6;922:20;913:29;;951:32;977:5;951:32;:::i;:::-;852:137;;;;:::o;995:141::-;1051:5;1082:6;1076:13;1067:22;;1098:32;1124:5;1098:32;:::i;:::-;995:141;;;;:::o;1155:338::-;1210:5;1259:3;1252:4;1244:6;1240:17;1236:27;1226:122;;1267:79;;:::i;:::-;1226:122;1384:6;1371:20;1409:78;1483:3;1475:6;1468:4;1460:6;1456:17;1409:78;:::i;:::-;1400:87;;1216:277;1155:338;;;;:::o;1513:553::-;1571:8;1581:6;1631:3;1624:4;1616:6;1612:17;1608:27;1598:122;;1639:79;;:::i;:::-;1598:122;1752:6;1739:20;1729:30;;1782:18;1774:6;1771:30;1768:117;;;1804:79;;:::i;:::-;1768:117;1918:4;1910:6;1906:17;1894:29;;1972:3;1964:4;1956:6;1952:17;1942:8;1938:32;1935:41;1932:128;;;1979:79;;:::i;:::-;1932:128;1513:553;;;;;:::o;2072:139::-;2118:5;2156:6;2143:20;2134:29;;2172:33;2199:5;2172:33;:::i;:::-;2072:139;;;;:::o;2217:135::-;2261:5;2299:6;2286:20;2277:29;;2315:31;2340:5;2315:31;:::i;:::-;2217:135;;;;:::o;2358:329::-;2417:6;2466:2;2454:9;2445:7;2441:23;2437:32;2434:119;;;2472:79;;:::i;:::-;2434:119;2592:1;2617:53;2662:7;2653:6;2642:9;2638:22;2617:53;:::i;:::-;2607:63;;2563:117;2358:329;;;;:::o;2693:474::-;2761:6;2769;2818:2;2806:9;2797:7;2793:23;2789:32;2786:119;;;2824:79;;:::i;:::-;2786:119;2944:1;2969:53;3014:7;3005:6;2994:9;2990:22;2969:53;:::i;:::-;2959:63;;2915:117;3071:2;3097:53;3142:7;3133:6;3122:9;3118:22;3097:53;:::i;:::-;3087:63;;3042:118;2693:474;;;;;:::o;3173:619::-;3250:6;3258;3266;3315:2;3303:9;3294:7;3290:23;3286:32;3283:119;;;3321:79;;:::i;:::-;3283:119;3441:1;3466:53;3511:7;3502:6;3491:9;3487:22;3466:53;:::i;:::-;3456:63;;3412:117;3568:2;3594:53;3639:7;3630:6;3619:9;3615:22;3594:53;:::i;:::-;3584:63;;3539:118;3696:2;3722:53;3767:7;3758:6;3747:9;3743:22;3722:53;:::i;:::-;3712:63;;3667:118;3173:619;;;;;:::o;3798:943::-;3893:6;3901;3909;3917;3966:3;3954:9;3945:7;3941:23;3937:33;3934:120;;;3973:79;;:::i;:::-;3934:120;4093:1;4118:53;4163:7;4154:6;4143:9;4139:22;4118:53;:::i;:::-;4108:63;;4064:117;4220:2;4246:53;4291:7;4282:6;4271:9;4267:22;4246:53;:::i;:::-;4236:63;;4191:118;4348:2;4374:53;4419:7;4410:6;4399:9;4395:22;4374:53;:::i;:::-;4364:63;;4319:118;4504:2;4493:9;4489:18;4476:32;4535:18;4527:6;4524:30;4521:117;;;4557:79;;:::i;:::-;4521:117;4662:62;4716:7;4707:6;4696:9;4692:22;4662:62;:::i;:::-;4652:72;;4447:287;3798:943;;;;;;;:::o;4747:468::-;4812:6;4820;4869:2;4857:9;4848:7;4844:23;4840:32;4837:119;;;4875:79;;:::i;:::-;4837:119;4995:1;5020:53;5065:7;5056:6;5045:9;5041:22;5020:53;:::i;:::-;5010:63;;4966:117;5122:2;5148:50;5190:7;5181:6;5170:9;5166:22;5148:50;:::i;:::-;5138:60;;5093:115;4747:468;;;;;:::o;5221:474::-;5289:6;5297;5346:2;5334:9;5325:7;5321:23;5317:32;5314:119;;;5352:79;;:::i;:::-;5314:119;5472:1;5497:53;5542:7;5533:6;5522:9;5518:22;5497:53;:::i;:::-;5487:63;;5443:117;5599:2;5625:53;5670:7;5661:6;5650:9;5646:22;5625:53;:::i;:::-;5615:63;;5570:118;5221:474;;;;;:::o;5701:761::-;5785:6;5793;5801;5809;5858:3;5846:9;5837:7;5833:23;5829:33;5826:120;;;5865:79;;:::i;:::-;5826:120;5985:1;6010:53;6055:7;6046:6;6035:9;6031:22;6010:53;:::i;:::-;6000:63;;5956:117;6112:2;6138:51;6181:7;6172:6;6161:9;6157:22;6138:51;:::i;:::-;6128:61;;6083:116;6238:2;6264:53;6309:7;6300:6;6289:9;6285:22;6264:53;:::i;:::-;6254:63;;6209:118;6366:2;6392:53;6437:7;6428:6;6417:9;6413:22;6392:53;:::i;:::-;6382:63;;6337:118;5701:761;;;;;;;:::o;6468:323::-;6524:6;6573:2;6561:9;6552:7;6548:23;6544:32;6541:119;;;6579:79;;:::i;:::-;6541:119;6699:1;6724:50;6766:7;6757:6;6746:9;6742:22;6724:50;:::i;:::-;6714:60;;6670:114;6468:323;;;;:::o;6797:327::-;6855:6;6904:2;6892:9;6883:7;6879:23;6875:32;6872:119;;;6910:79;;:::i;:::-;6872:119;7030:1;7055:52;7099:7;7090:6;7079:9;7075:22;7055:52;:::i;:::-;7045:62;;7001:116;6797:327;;;;:::o;7130:349::-;7199:6;7248:2;7236:9;7227:7;7223:23;7219:32;7216:119;;;7254:79;;:::i;:::-;7216:119;7374:1;7399:63;7454:7;7445:6;7434:9;7430:22;7399:63;:::i;:::-;7389:73;;7345:127;7130:349;;;;:::o;7485:529::-;7556:6;7564;7613:2;7601:9;7592:7;7588:23;7584:32;7581:119;;;7619:79;;:::i;:::-;7581:119;7767:1;7756:9;7752:17;7739:31;7797:18;7789:6;7786:30;7783:117;;;7819:79;;:::i;:::-;7783:117;7932:65;7989:7;7980:6;7969:9;7965:22;7932:65;:::i;:::-;7914:83;;;;7710:297;7485:529;;;;;:::o;8020:329::-;8079:6;8128:2;8116:9;8107:7;8103:23;8099:32;8096:119;;;8134:79;;:::i;:::-;8096:119;8254:1;8279:53;8324:7;8315:6;8304:9;8300:22;8279:53;:::i;:::-;8269:63;;8225:117;8020:329;;;;:::o;8355:761::-;8439:6;8447;8455;8463;8512:3;8500:9;8491:7;8487:23;8483:33;8480:120;;;8519:79;;:::i;:::-;8480:120;8639:1;8664:53;8709:7;8700:6;8689:9;8685:22;8664:53;:::i;:::-;8654:63;;8610:117;8766:2;8792:51;8835:7;8826:6;8815:9;8811:22;8792:51;:::i;:::-;8782:61;;8737:116;8892:2;8918:53;8963:7;8954:6;8943:9;8939:22;8918:53;:::i;:::-;8908:63;;8863:118;9020:2;9046:53;9091:7;9082:6;9071:9;9067:22;9046:53;:::i;:::-;9036:63;;8991:118;8355:761;;;;;;;:::o;9122:179::-;9191:10;9212:46;9254:3;9246:6;9212:46;:::i;:::-;9290:4;9285:3;9281:14;9267:28;;9122:179;;;;:::o;9307:118::-;9394:24;9412:5;9394:24;:::i;:::-;9389:3;9382:37;9307:118;;:::o;9461:732::-;9580:3;9609:54;9657:5;9609:54;:::i;:::-;9679:86;9758:6;9753:3;9679:86;:::i;:::-;9672:93;;9789:56;9839:5;9789:56;:::i;:::-;9868:7;9899:1;9884:284;9909:6;9906:1;9903:13;9884:284;;;9985:6;9979:13;10012:63;10071:3;10056:13;10012:63;:::i;:::-;10005:70;;10098:60;10151:6;10098:60;:::i;:::-;10088:70;;9944:224;9931:1;9928;9924:9;9919:14;;9884:284;;;9888:14;10184:3;10177:10;;9585:608;;;9461:732;;;;:::o;10199:109::-;10280:21;10295:5;10280:21;:::i;:::-;10275:3;10268:34;10199:109;;:::o;10314:118::-;10401:24;10419:5;10401:24;:::i;:::-;10396:3;10389:37;10314:118;;:::o;10438:157::-;10543:45;10563:24;10581:5;10563:24;:::i;:::-;10543:45;:::i;:::-;10538:3;10531:58;10438:157;;:::o;10601:360::-;10687:3;10715:38;10747:5;10715:38;:::i;:::-;10769:70;10832:6;10827:3;10769:70;:::i;:::-;10762:77;;10848:52;10893:6;10888:3;10881:4;10874:5;10870:16;10848:52;:::i;:::-;10925:29;10947:6;10925:29;:::i;:::-;10920:3;10916:39;10909:46;;10691:270;10601:360;;;;:::o;10967:373::-;11071:3;11099:38;11131:5;11099:38;:::i;:::-;11153:88;11234:6;11229:3;11153:88;:::i;:::-;11146:95;;11250:52;11295:6;11290:3;11283:4;11276:5;11272:16;11250:52;:::i;:::-;11327:6;11322:3;11318:16;11311:23;;11075:265;10967:373;;;;:::o;11346:364::-;11434:3;11462:39;11495:5;11462:39;:::i;:::-;11517:71;11581:6;11576:3;11517:71;:::i;:::-;11510:78;;11597:52;11642:6;11637:3;11630:4;11623:5;11619:16;11597:52;:::i;:::-;11674:29;11696:6;11674:29;:::i;:::-;11669:3;11665:39;11658:46;;11438:272;11346:364;;;;:::o;11716:377::-;11822:3;11850:39;11883:5;11850:39;:::i;:::-;11905:89;11987:6;11982:3;11905:89;:::i;:::-;11898:96;;12003:52;12048:6;12043:3;12036:4;12029:5;12025:16;12003:52;:::i;:::-;12080:6;12075:3;12071:16;12064:23;;11826:267;11716:377;;;;:::o;12099:366::-;12241:3;12262:67;12326:2;12321:3;12262:67;:::i;:::-;12255:74;;12338:93;12427:3;12338:93;:::i;:::-;12456:2;12451:3;12447:12;12440:19;;12099:366;;;:::o;12471:::-;12613:3;12634:67;12698:2;12693:3;12634:67;:::i;:::-;12627:74;;12710:93;12799:3;12710:93;:::i;:::-;12828:2;12823:3;12819:12;12812:19;;12471:366;;;:::o;12843:::-;12985:3;13006:67;13070:2;13065:3;13006:67;:::i;:::-;12999:74;;13082:93;13171:3;13082:93;:::i;:::-;13200:2;13195:3;13191:12;13184:19;;12843:366;;;:::o;13215:::-;13357:3;13378:67;13442:2;13437:3;13378:67;:::i;:::-;13371:74;;13454:93;13543:3;13454:93;:::i;:::-;13572:2;13567:3;13563:12;13556:19;;13215:366;;;:::o;13587:::-;13729:3;13750:67;13814:2;13809:3;13750:67;:::i;:::-;13743:74;;13826:93;13915:3;13826:93;:::i;:::-;13944:2;13939:3;13935:12;13928:19;;13587:366;;;:::o;13959:::-;14101:3;14122:67;14186:2;14181:3;14122:67;:::i;:::-;14115:74;;14198:93;14287:3;14198:93;:::i;:::-;14316:2;14311:3;14307:12;14300:19;;13959:366;;;:::o;14331:::-;14473:3;14494:67;14558:2;14553:3;14494:67;:::i;:::-;14487:74;;14570:93;14659:3;14570:93;:::i;:::-;14688:2;14683:3;14679:12;14672:19;;14331:366;;;:::o;14703:::-;14845:3;14866:67;14930:2;14925:3;14866:67;:::i;:::-;14859:74;;14942:93;15031:3;14942:93;:::i;:::-;15060:2;15055:3;15051:12;15044:19;;14703:366;;;:::o;15075:::-;15217:3;15238:67;15302:2;15297:3;15238:67;:::i;:::-;15231:74;;15314:93;15403:3;15314:93;:::i;:::-;15432:2;15427:3;15423:12;15416:19;;15075:366;;;:::o;15447:::-;15589:3;15610:67;15674:2;15669:3;15610:67;:::i;:::-;15603:74;;15686:93;15775:3;15686:93;:::i;:::-;15804:2;15799:3;15795:12;15788:19;;15447:366;;;:::o;15819:365::-;15961:3;15982:66;16046:1;16041:3;15982:66;:::i;:::-;15975:73;;16057:93;16146:3;16057:93;:::i;:::-;16175:2;16170:3;16166:12;16159:19;;15819:365;;;:::o;16190:366::-;16332:3;16353:67;16417:2;16412:3;16353:67;:::i;:::-;16346:74;;16429:93;16518:3;16429:93;:::i;:::-;16547:2;16542:3;16538:12;16531:19;;16190:366;;;:::o;16562:::-;16704:3;16725:67;16789:2;16784:3;16725:67;:::i;:::-;16718:74;;16801:93;16890:3;16801:93;:::i;:::-;16919:2;16914:3;16910:12;16903:19;;16562:366;;;:::o;16934:::-;17076:3;17097:67;17161:2;17156:3;17097:67;:::i;:::-;17090:74;;17173:93;17262:3;17173:93;:::i;:::-;17291:2;17286:3;17282:12;17275:19;;16934:366;;;:::o;17306:365::-;17448:3;17469:66;17533:1;17528:3;17469:66;:::i;:::-;17462:73;;17544:93;17633:3;17544:93;:::i;:::-;17662:2;17657:3;17653:12;17646:19;;17306:365;;;:::o;17677:366::-;17819:3;17840:67;17904:2;17899:3;17840:67;:::i;:::-;17833:74;;17916:93;18005:3;17916:93;:::i;:::-;18034:2;18029:3;18025:12;18018:19;;17677:366;;;:::o;18049:::-;18191:3;18212:67;18276:2;18271:3;18212:67;:::i;:::-;18205:74;;18288:93;18377:3;18288:93;:::i;:::-;18406:2;18401:3;18397:12;18390:19;;18049:366;;;:::o;18421:::-;18563:3;18584:67;18648:2;18643:3;18584:67;:::i;:::-;18577:74;;18660:93;18749:3;18660:93;:::i;:::-;18778:2;18773:3;18769:12;18762:19;;18421:366;;;:::o;18793:::-;18935:3;18956:67;19020:2;19015:3;18956:67;:::i;:::-;18949:74;;19032:93;19121:3;19032:93;:::i;:::-;19150:2;19145:3;19141:12;19134:19;;18793:366;;;:::o;19165:::-;19307:3;19328:67;19392:2;19387:3;19328:67;:::i;:::-;19321:74;;19404:93;19493:3;19404:93;:::i;:::-;19522:2;19517:3;19513:12;19506:19;;19165:366;;;:::o;19537:::-;19679:3;19700:67;19764:2;19759:3;19700:67;:::i;:::-;19693:74;;19776:93;19865:3;19776:93;:::i;:::-;19894:2;19889:3;19885:12;19878:19;;19537:366;;;:::o;19909:::-;20051:3;20072:67;20136:2;20131:3;20072:67;:::i;:::-;20065:74;;20148:93;20237:3;20148:93;:::i;:::-;20266:2;20261:3;20257:12;20250:19;;19909:366;;;:::o;20281:::-;20423:3;20444:67;20508:2;20503:3;20444:67;:::i;:::-;20437:74;;20520:93;20609:3;20520:93;:::i;:::-;20638:2;20633:3;20629:12;20622:19;;20281:366;;;:::o;20653:::-;20795:3;20816:67;20880:2;20875:3;20816:67;:::i;:::-;20809:74;;20892:93;20981:3;20892:93;:::i;:::-;21010:2;21005:3;21001:12;20994:19;;20653:366;;;:::o;21025:::-;21167:3;21188:67;21252:2;21247:3;21188:67;:::i;:::-;21181:74;;21264:93;21353:3;21264:93;:::i;:::-;21382:2;21377:3;21373:12;21366:19;;21025:366;;;:::o;21397:::-;21539:3;21560:67;21624:2;21619:3;21560:67;:::i;:::-;21553:74;;21636:93;21725:3;21636:93;:::i;:::-;21754:2;21749:3;21745:12;21738:19;;21397:366;;;:::o;21769:398::-;21928:3;21949:83;22030:1;22025:3;21949:83;:::i;:::-;21942:90;;22041:93;22130:3;22041:93;:::i;:::-;22159:1;22154:3;22150:11;22143:18;;21769:398;;;:::o;22173:366::-;22315:3;22336:67;22400:2;22395:3;22336:67;:::i;:::-;22329:74;;22412:93;22501:3;22412:93;:::i;:::-;22530:2;22525:3;22521:12;22514:19;;22173:366;;;:::o;22545:::-;22687:3;22708:67;22772:2;22767:3;22708:67;:::i;:::-;22701:74;;22784:93;22873:3;22784:93;:::i;:::-;22902:2;22897:3;22893:12;22886:19;;22545:366;;;:::o;22917:::-;23059:3;23080:67;23144:2;23139:3;23080:67;:::i;:::-;23073:74;;23156:93;23245:3;23156:93;:::i;:::-;23274:2;23269:3;23265:12;23258:19;;22917:366;;;:::o;23289:::-;23431:3;23452:67;23516:2;23511:3;23452:67;:::i;:::-;23445:74;;23528:93;23617:3;23528:93;:::i;:::-;23646:2;23641:3;23637:12;23630:19;;23289:366;;;:::o;23661:::-;23803:3;23824:67;23888:2;23883:3;23824:67;:::i;:::-;23817:74;;23900:93;23989:3;23900:93;:::i;:::-;24018:2;24013:3;24009:12;24002:19;;23661:366;;;:::o;24033:108::-;24110:24;24128:5;24110:24;:::i;:::-;24105:3;24098:37;24033:108;;:::o;24147:118::-;24234:24;24252:5;24234:24;:::i;:::-;24229:3;24222:37;24147:118;;:::o;24271:112::-;24354:22;24370:5;24354:22;:::i;:::-;24349:3;24342:35;24271:112;;:::o;24389:412::-;24547:3;24569:93;24658:3;24649:6;24569:93;:::i;:::-;24562:100;;24672:75;24743:3;24734:6;24672:75;:::i;:::-;24772:2;24767:3;24763:12;24756:19;;24792:3;24785:10;;24389:412;;;;;:::o;24807:435::-;24987:3;25009:95;25100:3;25091:6;25009:95;:::i;:::-;25002:102;;25121:95;25212:3;25203:6;25121:95;:::i;:::-;25114:102;;25233:3;25226:10;;24807:435;;;;;:::o;25248:379::-;25432:3;25454:147;25597:3;25454:147;:::i;:::-;25447:154;;25618:3;25611:10;;25248:379;;;:::o;25633:222::-;25726:4;25764:2;25753:9;25749:18;25741:26;;25777:71;25845:1;25834:9;25830:17;25821:6;25777:71;:::i;:::-;25633:222;;;;:::o;25861:640::-;26056:4;26094:3;26083:9;26079:19;26071:27;;26108:71;26176:1;26165:9;26161:17;26152:6;26108:71;:::i;:::-;26189:72;26257:2;26246:9;26242:18;26233:6;26189:72;:::i;:::-;26271;26339:2;26328:9;26324:18;26315:6;26271:72;:::i;:::-;26390:9;26384:4;26380:20;26375:2;26364:9;26360:18;26353:48;26418:76;26489:4;26480:6;26418:76;:::i;:::-;26410:84;;25861:640;;;;;;;:::o;26507:373::-;26650:4;26688:2;26677:9;26673:18;26665:26;;26737:9;26731:4;26727:20;26723:1;26712:9;26708:17;26701:47;26765:108;26868:4;26859:6;26765:108;:::i;:::-;26757:116;;26507:373;;;;:::o;26886:210::-;26973:4;27011:2;27000:9;26996:18;26988:26;;27024:65;27086:1;27075:9;27071:17;27062:6;27024:65;:::i;:::-;26886:210;;;;:::o;27102:545::-;27275:4;27313:3;27302:9;27298:19;27290:27;;27327:71;27395:1;27384:9;27380:17;27371:6;27327:71;:::i;:::-;27408:68;27472:2;27461:9;27457:18;27448:6;27408:68;:::i;:::-;27486:72;27554:2;27543:9;27539:18;27530:6;27486:72;:::i;:::-;27568;27636:2;27625:9;27621:18;27612:6;27568:72;:::i;:::-;27102:545;;;;;;;:::o;27653:313::-;27766:4;27804:2;27793:9;27789:18;27781:26;;27853:9;27847:4;27843:20;27839:1;27828:9;27824:17;27817:47;27881:78;27954:4;27945:6;27881:78;:::i;:::-;27873:86;;27653:313;;;;:::o;27972:419::-;28138:4;28176:2;28165:9;28161:18;28153:26;;28225:9;28219:4;28215:20;28211:1;28200:9;28196:17;28189:47;28253:131;28379:4;28253:131;:::i;:::-;28245:139;;27972:419;;;:::o;28397:::-;28563:4;28601:2;28590:9;28586:18;28578:26;;28650:9;28644:4;28640:20;28636:1;28625:9;28621:17;28614:47;28678:131;28804:4;28678:131;:::i;:::-;28670:139;;28397:419;;;:::o;28822:::-;28988:4;29026:2;29015:9;29011:18;29003:26;;29075:9;29069:4;29065:20;29061:1;29050:9;29046:17;29039:47;29103:131;29229:4;29103:131;:::i;:::-;29095:139;;28822:419;;;:::o;29247:::-;29413:4;29451:2;29440:9;29436:18;29428:26;;29500:9;29494:4;29490:20;29486:1;29475:9;29471:17;29464:47;29528:131;29654:4;29528:131;:::i;:::-;29520:139;;29247:419;;;:::o;29672:::-;29838:4;29876:2;29865:9;29861:18;29853:26;;29925:9;29919:4;29915:20;29911:1;29900:9;29896:17;29889:47;29953:131;30079:4;29953:131;:::i;:::-;29945:139;;29672:419;;;:::o;30097:::-;30263:4;30301:2;30290:9;30286:18;30278:26;;30350:9;30344:4;30340:20;30336:1;30325:9;30321:17;30314:47;30378:131;30504:4;30378:131;:::i;:::-;30370:139;;30097:419;;;:::o;30522:::-;30688:4;30726:2;30715:9;30711:18;30703:26;;30775:9;30769:4;30765:20;30761:1;30750:9;30746:17;30739:47;30803:131;30929:4;30803:131;:::i;:::-;30795:139;;30522:419;;;:::o;30947:::-;31113:4;31151:2;31140:9;31136:18;31128:26;;31200:9;31194:4;31190:20;31186:1;31175:9;31171:17;31164:47;31228:131;31354:4;31228:131;:::i;:::-;31220:139;;30947:419;;;:::o;31372:::-;31538:4;31576:2;31565:9;31561:18;31553:26;;31625:9;31619:4;31615:20;31611:1;31600:9;31596:17;31589:47;31653:131;31779:4;31653:131;:::i;:::-;31645:139;;31372:419;;;:::o;31797:::-;31963:4;32001:2;31990:9;31986:18;31978:26;;32050:9;32044:4;32040:20;32036:1;32025:9;32021:17;32014:47;32078:131;32204:4;32078:131;:::i;:::-;32070:139;;31797:419;;;:::o;32222:::-;32388:4;32426:2;32415:9;32411:18;32403:26;;32475:9;32469:4;32465:20;32461:1;32450:9;32446:17;32439:47;32503:131;32629:4;32503:131;:::i;:::-;32495:139;;32222:419;;;:::o;32647:::-;32813:4;32851:2;32840:9;32836:18;32828:26;;32900:9;32894:4;32890:20;32886:1;32875:9;32871:17;32864:47;32928:131;33054:4;32928:131;:::i;:::-;32920:139;;32647:419;;;:::o;33072:::-;33238:4;33276:2;33265:9;33261:18;33253:26;;33325:9;33319:4;33315:20;33311:1;33300:9;33296:17;33289:47;33353:131;33479:4;33353:131;:::i;:::-;33345:139;;33072:419;;;:::o;33497:::-;33663:4;33701:2;33690:9;33686:18;33678:26;;33750:9;33744:4;33740:20;33736:1;33725:9;33721:17;33714:47;33778:131;33904:4;33778:131;:::i;:::-;33770:139;;33497:419;;;:::o;33922:::-;34088:4;34126:2;34115:9;34111:18;34103:26;;34175:9;34169:4;34165:20;34161:1;34150:9;34146:17;34139:47;34203:131;34329:4;34203:131;:::i;:::-;34195:139;;33922:419;;;:::o;34347:::-;34513:4;34551:2;34540:9;34536:18;34528:26;;34600:9;34594:4;34590:20;34586:1;34575:9;34571:17;34564:47;34628:131;34754:4;34628:131;:::i;:::-;34620:139;;34347:419;;;:::o;34772:::-;34938:4;34976:2;34965:9;34961:18;34953:26;;35025:9;35019:4;35015:20;35011:1;35000:9;34996:17;34989:47;35053:131;35179:4;35053:131;:::i;:::-;35045:139;;34772:419;;;:::o;35197:::-;35363:4;35401:2;35390:9;35386:18;35378:26;;35450:9;35444:4;35440:20;35436:1;35425:9;35421:17;35414:47;35478:131;35604:4;35478:131;:::i;:::-;35470:139;;35197:419;;;:::o;35622:::-;35788:4;35826:2;35815:9;35811:18;35803:26;;35875:9;35869:4;35865:20;35861:1;35850:9;35846:17;35839:47;35903:131;36029:4;35903:131;:::i;:::-;35895:139;;35622:419;;;:::o;36047:::-;36213:4;36251:2;36240:9;36236:18;36228:26;;36300:9;36294:4;36290:20;36286:1;36275:9;36271:17;36264:47;36328:131;36454:4;36328:131;:::i;:::-;36320:139;;36047:419;;;:::o;36472:::-;36638:4;36676:2;36665:9;36661:18;36653:26;;36725:9;36719:4;36715:20;36711:1;36700:9;36696:17;36689:47;36753:131;36879:4;36753:131;:::i;:::-;36745:139;;36472:419;;;:::o;36897:::-;37063:4;37101:2;37090:9;37086:18;37078:26;;37150:9;37144:4;37140:20;37136:1;37125:9;37121:17;37114:47;37178:131;37304:4;37178:131;:::i;:::-;37170:139;;36897:419;;;:::o;37322:::-;37488:4;37526:2;37515:9;37511:18;37503:26;;37575:9;37569:4;37565:20;37561:1;37550:9;37546:17;37539:47;37603:131;37729:4;37603:131;:::i;:::-;37595:139;;37322:419;;;:::o;37747:::-;37913:4;37951:2;37940:9;37936:18;37928:26;;38000:9;37994:4;37990:20;37986:1;37975:9;37971:17;37964:47;38028:131;38154:4;38028:131;:::i;:::-;38020:139;;37747:419;;;:::o;38172:::-;38338:4;38376:2;38365:9;38361:18;38353:26;;38425:9;38419:4;38415:20;38411:1;38400:9;38396:17;38389:47;38453:131;38579:4;38453:131;:::i;:::-;38445:139;;38172:419;;;:::o;38597:::-;38763:4;38801:2;38790:9;38786:18;38778:26;;38850:9;38844:4;38840:20;38836:1;38825:9;38821:17;38814:47;38878:131;39004:4;38878:131;:::i;:::-;38870:139;;38597:419;;;:::o;39022:::-;39188:4;39226:2;39215:9;39211:18;39203:26;;39275:9;39269:4;39265:20;39261:1;39250:9;39246:17;39239:47;39303:131;39429:4;39303:131;:::i;:::-;39295:139;;39022:419;;;:::o;39447:::-;39613:4;39651:2;39640:9;39636:18;39628:26;;39700:9;39694:4;39690:20;39686:1;39675:9;39671:17;39664:47;39728:131;39854:4;39728:131;:::i;:::-;39720:139;;39447:419;;;:::o;39872:::-;40038:4;40076:2;40065:9;40061:18;40053:26;;40125:9;40119:4;40115:20;40111:1;40100:9;40096:17;40089:47;40153:131;40279:4;40153:131;:::i;:::-;40145:139;;39872:419;;;:::o;40297:::-;40463:4;40501:2;40490:9;40486:18;40478:26;;40550:9;40544:4;40540:20;40536:1;40525:9;40521:17;40514:47;40578:131;40704:4;40578:131;:::i;:::-;40570:139;;40297:419;;;:::o;40722:::-;40888:4;40926:2;40915:9;40911:18;40903:26;;40975:9;40969:4;40965:20;40961:1;40950:9;40946:17;40939:47;41003:131;41129:4;41003:131;:::i;:::-;40995:139;;40722:419;;;:::o;41147:222::-;41240:4;41278:2;41267:9;41263:18;41255:26;;41291:71;41359:1;41348:9;41344:17;41335:6;41291:71;:::i;:::-;41147:222;;;;:::o;41375:129::-;41409:6;41436:20;;:::i;:::-;41426:30;;41465:33;41493:4;41485:6;41465:33;:::i;:::-;41375:129;;;:::o;41510:75::-;41543:6;41576:2;41570:9;41560:19;;41510:75;:::o;41591:307::-;41652:4;41742:18;41734:6;41731:30;41728:56;;;41764:18;;:::i;:::-;41728:56;41802:29;41824:6;41802:29;:::i;:::-;41794:37;;41886:4;41880;41876:15;41868:23;;41591:307;;;:::o;41904:132::-;41971:4;41994:3;41986:11;;42024:4;42019:3;42015:14;42007:22;;41904:132;;;:::o;42042:114::-;42109:6;42143:5;42137:12;42127:22;;42042:114;;;:::o;42162:98::-;42213:6;42247:5;42241:12;42231:22;;42162:98;;;:::o;42266:99::-;42318:6;42352:5;42346:12;42336:22;;42266:99;;;:::o;42371:113::-;42441:4;42473;42468:3;42464:14;42456:22;;42371:113;;;:::o;42490:184::-;42589:11;42623:6;42618:3;42611:19;42663:4;42658:3;42654:14;42639:29;;42490:184;;;;:::o;42680:168::-;42763:11;42797:6;42792:3;42785:19;42837:4;42832:3;42828:14;42813:29;;42680:168;;;;:::o;42854:147::-;42955:11;42992:3;42977:18;;42854:147;;;;:::o;43007:169::-;43091:11;43125:6;43120:3;43113:19;43165:4;43160:3;43156:14;43141:29;;43007:169;;;;:::o;43182:148::-;43284:11;43321:3;43306:18;;43182:148;;;;:::o;43336:305::-;43376:3;43395:20;43413:1;43395:20;:::i;:::-;43390:25;;43429:20;43447:1;43429:20;:::i;:::-;43424:25;;43583:1;43515:66;43511:74;43508:1;43505:81;43502:107;;;43589:18;;:::i;:::-;43502:107;43633:1;43630;43626:9;43619:16;;43336:305;;;;:::o;43647:185::-;43687:1;43704:20;43722:1;43704:20;:::i;:::-;43699:25;;43738:20;43756:1;43738:20;:::i;:::-;43733:25;;43777:1;43767:35;;43782:18;;:::i;:::-;43767:35;43824:1;43821;43817:9;43812:14;;43647:185;;;;:::o;43838:348::-;43878:7;43901:20;43919:1;43901:20;:::i;:::-;43896:25;;43935:20;43953:1;43935:20;:::i;:::-;43930:25;;44123:1;44055:66;44051:74;44048:1;44045:81;44040:1;44033:9;44026:17;44022:105;44019:131;;;44130:18;;:::i;:::-;44019:131;44178:1;44175;44171:9;44160:20;;43838:348;;;;:::o;44192:191::-;44232:4;44252:20;44270:1;44252:20;:::i;:::-;44247:25;;44286:20;44304:1;44286:20;:::i;:::-;44281:25;;44325:1;44322;44319:8;44316:34;;;44330:18;;:::i;:::-;44316:34;44375:1;44372;44368:9;44360:17;;44192:191;;;;:::o;44389:96::-;44426:7;44455:24;44473:5;44455:24;:::i;:::-;44444:35;;44389:96;;;:::o;44491:90::-;44525:7;44568:5;44561:13;44554:21;44543:32;;44491:90;;;:::o;44587:77::-;44624:7;44653:5;44642:16;;44587:77;;;:::o;44670:149::-;44706:7;44746:66;44739:5;44735:78;44724:89;;44670:149;;;:::o;44825:126::-;44862:7;44902:42;44895:5;44891:54;44880:65;;44825:126;;;:::o;44957:77::-;44994:7;45023:5;45012:16;;44957:77;;;:::o;45040:86::-;45075:7;45115:4;45108:5;45104:16;45093:27;;45040:86;;;:::o;45132:154::-;45216:6;45211:3;45206;45193:30;45278:1;45269:6;45264:3;45260:16;45253:27;45132:154;;;:::o;45292:307::-;45360:1;45370:113;45384:6;45381:1;45378:13;45370:113;;;45469:1;45464:3;45460:11;45454:18;45450:1;45445:3;45441:11;45434:39;45406:2;45403:1;45399:10;45394:15;;45370:113;;;45501:6;45498:1;45495:13;45492:101;;;45581:1;45572:6;45567:3;45563:16;45556:27;45492:101;45341:258;45292:307;;;:::o;45605:320::-;45649:6;45686:1;45680:4;45676:12;45666:22;;45733:1;45727:4;45723:12;45754:18;45744:81;;45810:4;45802:6;45798:17;45788:27;;45744:81;45872:2;45864:6;45861:14;45841:18;45838:38;45835:84;;;45891:18;;:::i;:::-;45835:84;45656:269;45605:320;;;:::o;45931:281::-;46014:27;46036:4;46014:27;:::i;:::-;46006:6;46002:40;46144:6;46132:10;46129:22;46108:18;46096:10;46093:34;46090:62;46087:88;;;46155:18;;:::i;:::-;46087:88;46195:10;46191:2;46184:22;45974:238;45931:281;;:::o;46218:233::-;46257:3;46280:24;46298:5;46280:24;:::i;:::-;46271:33;;46326:66;46319:5;46316:77;46313:103;;;46396:18;;:::i;:::-;46313:103;46443:1;46436:5;46432:13;46425:20;;46218:233;;;:::o;46457:79::-;46496:7;46525:5;46514:16;;46457:79;;;:::o;46542:176::-;46574:1;46591:20;46609:1;46591:20;:::i;:::-;46586:25;;46625:20;46643:1;46625:20;:::i;:::-;46620:25;;46664:1;46654:35;;46669:18;;:::i;:::-;46654:35;46710:1;46707;46703:9;46698:14;;46542:176;;;;:::o;46724:180::-;46772:77;46769:1;46762:88;46869:4;46866:1;46859:15;46893:4;46890:1;46883:15;46910:180;46958:77;46955:1;46948:88;47055:4;47052:1;47045:15;47079:4;47076:1;47069:15;47096:180;47144:77;47141:1;47134:88;47241:4;47238:1;47231:15;47265:4;47262:1;47255:15;47282:180;47330:77;47327:1;47320:88;47427:4;47424:1;47417:15;47451:4;47448:1;47441:15;47468:180;47516:77;47513:1;47506:88;47613:4;47610:1;47603:15;47637:4;47634:1;47627:15;47654:180;47702:77;47699:1;47692:88;47799:4;47796:1;47789:15;47823:4;47820:1;47813:15;47840:117;47949:1;47946;47939:12;47963:117;48072:1;48069;48062:12;48086:117;48195:1;48192;48185:12;48209:117;48318:1;48315;48308:12;48332:117;48441:1;48438;48431:12;48455:117;48564:1;48561;48554:12;48578:102;48619:6;48670:2;48666:7;48661:2;48654:5;48650:14;48646:28;48636:38;;48578:102;;;:::o;48686:181::-;48826:33;48822:1;48814:6;48810:14;48803:57;48686:181;:::o;48873:166::-;49013:18;49009:1;49001:6;48997:14;48990:42;48873:166;:::o;49045:230::-;49185:34;49181:1;49173:6;49169:14;49162:58;49254:13;49249:2;49241:6;49237:15;49230:38;49045:230;:::o;49281:237::-;49421:34;49417:1;49409:6;49405:14;49398:58;49490:20;49485:2;49477:6;49473:15;49466:45;49281:237;:::o;49524:225::-;49664:34;49660:1;49652:6;49648:14;49641:58;49733:8;49728:2;49720:6;49716:15;49709:33;49524:225;:::o;49755:178::-;49895:30;49891:1;49883:6;49879:14;49872:54;49755:178;:::o;49939:223::-;50079:34;50075:1;50067:6;50063:14;50056:58;50148:6;50143:2;50135:6;50131:15;50124:31;49939:223;:::o;50168:175::-;50308:27;50304:1;50296:6;50292:14;50285:51;50168:175;:::o;50349:231::-;50489:34;50485:1;50477:6;50473:14;50466:58;50558:14;50553:2;50545:6;50541:15;50534:39;50349:231;:::o;50586:243::-;50726:34;50722:1;50714:6;50710:14;50703:58;50795:26;50790:2;50782:6;50778:15;50771:51;50586:243;:::o;50835:153::-;50975:5;50971:1;50963:6;50959:14;50952:29;50835:153;:::o;50994:229::-;51134:34;51130:1;51122:6;51118:14;51111:58;51203:12;51198:2;51190:6;51186:15;51179:37;50994:229;:::o;51229:228::-;51369:34;51365:1;51357:6;51353:14;51346:58;51438:11;51433:2;51425:6;51421:15;51414:36;51229:228;:::o;51463:172::-;51603:24;51599:1;51591:6;51587:14;51580:48;51463:172;:::o;51641:159::-;51781:11;51777:1;51769:6;51765:14;51758:35;51641:159;:::o;51806:182::-;51946:34;51942:1;51934:6;51930:14;51923:58;51806:182;:::o;51994:170::-;52134:22;52130:1;52122:6;52118:14;52111:46;51994:170;:::o;52170:164::-;52310:16;52306:1;52298:6;52294:14;52287:40;52170:164;:::o;52340:231::-;52480:34;52476:1;52468:6;52464:14;52457:58;52549:14;52544:2;52536:6;52532:15;52525:39;52340:231;:::o;52577:182::-;52717:34;52713:1;52705:6;52701:14;52694:58;52577:182;:::o;52765:228::-;52905:34;52901:1;52893:6;52889:14;52882:58;52974:11;52969:2;52961:6;52957:15;52950:36;52765:228;:::o;52999:234::-;53139:34;53135:1;53127:6;53123:14;53116:58;53208:17;53203:2;53195:6;53191:15;53184:42;52999:234;:::o;53239:168::-;53379:20;53375:1;53367:6;53363:14;53356:44;53239:168;:::o;53413:170::-;53553:22;53549:1;53541:6;53537:14;53530:46;53413:170;:::o;53589:172::-;53729:24;53725:1;53717:6;53713:14;53706:48;53589:172;:::o;53767:220::-;53907:34;53903:1;53895:6;53891:14;53884:58;53976:3;53971:2;53963:6;53959:15;53952:28;53767:220;:::o;53993:114::-;;:::o;54113:236::-;54253:34;54249:1;54241:6;54237:14;54230:58;54322:19;54317:2;54309:6;54305:15;54298:44;54113:236;:::o;54355:231::-;54495:34;54491:1;54483:6;54479:14;54472:58;54564:14;54559:2;54551:6;54547:15;54540:39;54355:231;:::o;54592:167::-;54732:19;54728:1;54720:6;54716:14;54709:43;54592:167;:::o;54765:180::-;54905:32;54901:1;54893:6;54889:14;54882:56;54765:180;:::o;54951:166::-;55091:18;55087:1;55079:6;55075:14;55068:42;54951:166;:::o;55123:122::-;55196:24;55214:5;55196:24;:::i;:::-;55189:5;55186:35;55176:63;;55235:1;55232;55225:12;55176:63;55123:122;:::o;55251:116::-;55321:21;55336:5;55321:21;:::i;:::-;55314:5;55311:32;55301:60;;55357:1;55354;55347:12;55301:60;55251:116;:::o;55373:122::-;55446:24;55464:5;55446:24;:::i;:::-;55439:5;55436:35;55426:63;;55485:1;55482;55475:12;55426:63;55373:122;:::o;55501:120::-;55573:23;55590:5;55573:23;:::i;:::-;55566:5;55563:34;55553:62;;55611:1;55608;55601:12;55553:62;55501:120;:::o;55627:122::-;55700:24;55718:5;55700:24;:::i;:::-;55693:5;55690:35;55680:63;;55739:1;55736;55729:12;55680:63;55627:122;:::o;55755:118::-;55826:22;55842:5;55826:22;:::i;:::-;55819:5;55816:33;55806:61;;55863:1;55860;55853:12;55806:61;55755:118;:::o

Swarm Source

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