ETH Price: $2,288.81 (-3.30%)

Token

The Insanitarium (INSANITARIUM)
 

Overview

Max Total Supply

180 INSANITARIUM

Holders

113

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 INSANITARIUM
0xBC859EACd4FEbE0604d711C3c83Af1dF79Ca0984
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:
Insanitarium

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File contracts/Insanitarium.sol

pragma solidity ^0.8.0;

contract Insanitarium is ERC721Enumerable, Ownable {
    using Counters for Counters.Counter;

    constructor() ERC721("The Insanitarium", "INSANITARIUM") {}

    uint256 public PRICE = 0.06 ether;
    uint256 public constant GIFT_SUPPLY = 127;
    uint256 public constant PUBLIC_SUPPLY = 8600;
    uint256 public constant MAX_SUPPLY = GIFT_SUPPLY + PUBLIC_SUPPLY;

    uint256 public constant TRANSACTION_LIMIT = 10;
    uint256 public constant WALLET_LIMIT = 100;

    Counters.Counter private _publicTokenIdCounter;
    Counters.Counter public _giftTokenIdCounter;

    bool public isPublicSaleActive = false;
    bool public isWhitelistSaleActive = false;
    bool public isMetadataFrozen = false;

    mapping(address => uint256) private _whitelistMints;

    uint256 public totalWhitelistCount = 0;

    string private baseURI = "";

    function purchase(uint256 numberOfTokens) external payable {
        require(msg.sender == tx.origin, "No contracts allowed");
        require(isPublicSaleActive, "Public sale is still inactive");
        require(totalSupply() < MAX_SUPPLY, "Tokens are sold out");
        require(
            numberOfTokens + balanceOf(msg.sender) <= WALLET_LIMIT,
            "Will exceed wallet limit"
        );
        require(
            totalWhitelistCount +
                _publicTokenIdCounter.current() +
                numberOfTokens <=
                PUBLIC_SUPPLY,
            "Public supply is sold out"
        );
        require(
            numberOfTokens <= TRANSACTION_LIMIT,
            "Cannot exceed TRANSACTION_LIMIT"
        );
        require(
            msg.value >= PRICE * numberOfTokens,
            "ETH amount is not sufficient"
        );
        for (uint256 i = 0; i < numberOfTokens; i++) {
            _safeMint(
                msg.sender,
                _giftTokenIdCounter.current() + _publicTokenIdCounter.current()
            );
            _publicTokenIdCounter.increment();
        }
    }

    function purchaseFromWhitelist(uint256 numberOfTokens) external payable {
        require(isWhitelistSaleActive, "Whitelist sale is still inactive");
        require(
            _whitelistMints[msg.sender] != 0,
            "You have no whitelist mints"
        );
        require(totalSupply() < MAX_SUPPLY, "Tokens are sold out");
        require(
            _publicTokenIdCounter.current() + numberOfTokens <= PUBLIC_SUPPLY,
            "Public supply is sold out"
        );
        require(
            (_whitelistMints[msg.sender] - numberOfTokens) >= 0,
            "You don't have enough whitelist mints"
        );
        require(
            numberOfTokens <= TRANSACTION_LIMIT,
            "Cannot be above TRANSACTION_LIMIT"
        );
        require(
            msg.value >= PRICE * numberOfTokens,
            "ETH amount is not sufficient"
        );

        for (uint256 i = 0; i < numberOfTokens; i++) {
            _safeMint(
                msg.sender,
                _giftTokenIdCounter.current() + _publicTokenIdCounter.current()
            );
            _publicTokenIdCounter.increment();
            totalWhitelistCount -= 1;
            _whitelistMints[msg.sender] -= 1;
        }
    }

    function gift(address[] calldata giftAddress, uint256[] calldata giftAmount)
        external
        onlyOwner
    {
        uint256 giftToBeSent = 0;
        for (uint256 z = 0; z < giftAmount.length; z++) {
            giftToBeSent += giftAmount[z];
        }
        require(totalSupply() < MAX_SUPPLY, "Tokens are sold out");
        require(
            _giftTokenIdCounter.current() + giftToBeSent <= GIFT_SUPPLY,
            "Gift supply is sold out"
        );

        for (uint256 i = 0; i < giftAddress.length; i++) {
            for (uint256 y = 0; y < giftAmount[i]; y++) {
                _safeMint(
                    giftAddress[i],
                    _giftTokenIdCounter.current() +
                        _publicTokenIdCounter.current()
                );
                _giftTokenIdCounter.increment();
            }
        }
    }

    function addToWhitelist(
        address[] calldata addressList,
        uint256[] calldata mintAmount
    ) external onlyOwner {
        require(
            addressList.length == mintAmount.length,
            "Arrays are not equal"
        );
        for (uint256 i = 0; i < addressList.length; i++) {
            require(addressList[i] != address(0), "Address can't be null");
            if (_whitelistMints[addressList[i]] == 0) {
                totalWhitelistCount += mintAmount[i];
            }
            _whitelistMints[addressList[i]] = mintAmount[i];
        }
    }

    function removeFromWhitelist(address[] calldata addressList)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < addressList.length; i++) {
            require(addressList[i] != address(0), "Address can't be null");
            totalWhitelistCount -= _whitelistMints[addressList[i]];
            _whitelistMints[addressList[i]] = 0;
        }
    }

    function releaseReservedWhitelist() external onlyOwner {
        totalWhitelistCount = 0;
        isWhitelistSaleActive = false;
    }

    function checkWhiteList(address addr) external view returns (uint256) {
        return _whitelistMints[addr];
    }

    function setBaseURI(string calldata URI) external onlyOwner {
        require(!isMetadataFrozen, "Metadata has been frozen");
        baseURI = URI;
    }

    function setPublicSaleStatus() external onlyOwner {
        isPublicSaleActive = !isPublicSaleActive;
    }

    function setWhiteListSaleStatus() external onlyOwner {
        isWhitelistSaleActive = !isWhitelistSaleActive;
    }

    function freezeMetadata() external onlyOwner {
        isMetadataFrozen = true;
    }

    function setMintPrice(uint256 price) external onlyOwner {
        PRICE = price;
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721)
        returns (string memory)
    {
        require(_exists(tokenId), "Token does not exist");

        return string(abi.encodePacked(baseURI, Strings.toString(tokenId)));
    }

    function tokensOfOwner(address owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(owner);
        uint256[] memory tokenIds = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokenIds;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"GIFT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TRANSACTION_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WALLET_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_giftTokenIdCounter","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addressList","type":"address[]"},{"internalType":"uint256[]","name":"mintAmount","type":"uint256[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"checkWhiteList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freezeMetadata","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":"giftAddress","type":"address[]"},{"internalType":"uint256[]","name":"giftAmount","type":"uint256[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMetadataFrozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistSaleActive","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":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"purchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"purchaseFromWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"releaseReservedWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addressList","type":"address[]"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","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":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setWhiteListSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalWhitelistCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266d529ae9e860000600b556000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055506000600e60026101000a81548160ff021916908315150217905550600060105560405180602001604052806000815250601190805190602001906200008c9291906200022f565b503480156200009a57600080fd5b506040518060400160405280601081526020017f54686520496e73616e6974617269756d000000000000000000000000000000008152506040518060400160405280600c81526020017f494e53414e4954415249554d000000000000000000000000000000000000000081525081600090805190602001906200011f9291906200022f565b508060019080519060200190620001389291906200022f565b5050506200015b6200014f6200016160201b60201c565b6200016960201b60201c565b62000344565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023d90620002df565b90600052602060002090601f016020900481019282620002615760008555620002ad565b82601f106200027c57805160ff1916838001178555620002ad565b82800160010185558215620002ad579182015b82811115620002ac5782518255916020019190600101906200028f565b5b509050620002bc9190620002c0565b5090565b5b80821115620002db576000816000905550600101620002c1565b5090565b60006002820490506001821680620002f857607f821691505b602082108114156200030f576200030e62000315565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6156ba80620003546000396000f3fe6080604052600436106102675760003560e01c8063715018a611610144578063b88d4fde116100b6578063d111515d1161007a578063d111515d146108ed578063e985e9c514610904578063efef39a114610941578063f2fde38b1461095d578063f4a0a52814610986578063f8d50542146109af57610267565b8063b88d4fde1461081a578063b98451cf14610843578063bfe0e6321461086e578063c3b4d5b914610885578063c87b56dd146108b057610267565b80638d859f3e116101085780638d859f3e146107085780638da5cb5b1461073357806395d89b411461075e5780639cce37c614610789578063a22cb465146107c6578063b6fd509b146107ef57610267565b8063715018a6146106495780637705f9b5146106605780637dfed9fe146106895780638342083a146106a05780638462151c146106cb57610267565b80632f745c59116101dd57806342842e0e116101a157806342842e0e146105175780634f6ccce714610540578063548db1741461057d57806355f804b3146105a65780636352211e146105cf57806370a082311461060c57610267565b80632f745c591461044257806332cb6b0c1461047f578063351ed951146104aa5780633ccfd60b146104d55780633df6d28f146104ec57610267565b806312fc74a81161022f57806312fc74a81461036557806318160ddd146103815780631e84c413146103ac5780631ea63901146103d7578063236bf9281461040257806323b872dd1461041957610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b3146103115780630e24495e1461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613d7d565b6109d8565b6040516102a09190614555565b60405180910390f35b3480156102b557600080fd5b506102be610a52565b6040516102cb9190614570565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613e24565b610ae4565b60405161030891906144cc565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190613c6f565b610b69565b005b34801561034657600080fd5b5061034f610c81565b60405161035c9190614555565b60405180910390f35b61037f600480360381019061037a9190613e24565b610c94565b005b34801561038d57600080fd5b50610396610ffc565b6040516103a391906149b2565b60405180910390f35b3480156103b857600080fd5b506103c1611009565b6040516103ce9190614555565b60405180910390f35b3480156103e357600080fd5b506103ec61101c565b6040516103f991906149b2565b60405180910390f35b34801561040e57600080fd5b50610417611021565b005b34801561042557600080fd5b50610440600480360381019061043b9190613b59565b6110c2565b005b34801561044e57600080fd5b5061046960048036038101906104649190613c6f565b611122565b60405161047691906149b2565b60405180910390f35b34801561048b57600080fd5b506104946111c7565b6040516104a191906149b2565b60405180910390f35b3480156104b657600080fd5b506104bf6111d9565b6040516104cc91906149b2565b60405180910390f35b3480156104e157600080fd5b506104ea6111de565b005b3480156104f857600080fd5b506105016112a9565b60405161050e91906149b2565b60405180910390f35b34801561052357600080fd5b5061053e60048036038101906105399190613b59565b6112af565b005b34801561054c57600080fd5b5061056760048036038101906105629190613e24565b6112cf565b60405161057491906149b2565b60405180910390f35b34801561058957600080fd5b506105a4600480360381019061059f9190613caf565b611340565b005b3480156105b257600080fd5b506105cd60048036038101906105c89190613dd7565b611564565b005b3480156105db57600080fd5b506105f660048036038101906105f19190613e24565b611646565b60405161060391906144cc565b60405180910390f35b34801561061857600080fd5b50610633600480360381019061062e9190613aec565b6116f8565b60405161064091906149b2565b60405180910390f35b34801561065557600080fd5b5061065e6117b0565b005b34801561066c57600080fd5b5061068760048036038101906106829190613cfc565b611838565b005b34801561069557600080fd5b5061069e611a66565b005b3480156106ac57600080fd5b506106b5611b0e565b6040516106c291906149b2565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed9190613aec565b611b14565b6040516106ff9190614533565b60405180910390f35b34801561071457600080fd5b5061071d611bc2565b60405161072a91906149b2565b60405180910390f35b34801561073f57600080fd5b50610748611bc8565b60405161075591906144cc565b60405180910390f35b34801561076a57600080fd5b50610773611bf2565b6040516107809190614570565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab9190613aec565b611c84565b6040516107bd91906149b2565b60405180910390f35b3480156107d257600080fd5b506107ed60048036038101906107e89190613c2f565b611ccd565b005b3480156107fb57600080fd5b50610804611e4e565b60405161081191906149b2565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c9190613bac565b611e53565b005b34801561084f57600080fd5b50610858611eb5565b6040516108659190614555565b60405180910390f35b34801561087a57600080fd5b50610883611ec8565b005b34801561089157600080fd5b5061089a611f70565b6040516108a791906149b2565b60405180910390f35b3480156108bc57600080fd5b506108d760048036038101906108d29190613e24565b611f7c565b6040516108e49190614570565b60405180910390f35b3480156108f957600080fd5b50610902611ff8565b005b34801561091057600080fd5b5061092b60048036038101906109269190613b19565b612091565b6040516109389190614555565b60405180910390f35b61095b60048036038101906109569190613e24565b612125565b005b34801561096957600080fd5b50610984600480360381019061097f9190613aec565b6123dd565b005b34801561099257600080fd5b506109ad60048036038101906109a89190613e24565b6124d5565b005b3480156109bb57600080fd5b506109d660048036038101906109d19190613cfc565b61255b565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4b5750610a4a82612804565b5b9050919050565b606060008054610a6190614c7f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8d90614c7f565b8015610ada5780601f10610aaf57610100808354040283529160200191610ada565b820191906000526020600020905b815481529060010190602001808311610abd57829003601f168201915b5050505050905090565b6000610aef826128e6565b610b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b25906147f2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b7482611646565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdc90614872565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c04612952565b73ffffffffffffffffffffffffffffffffffffffff161480610c335750610c3281610c2d612952565b612091565b5b610c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6990614732565b60405180910390fd5b610c7c838361295a565b505050565b600e60029054906101000a900460ff1681565b600e60019054906101000a900460ff16610ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cda90614592565b60405180910390fd5b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415610d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5d906145b2565b60405180910390fd5b612198607f610d759190614ab4565b610d7d610ffc565b10610dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db490614912565b60405180910390fd5b61219881610dcb600c612a13565b610dd59190614ab4565b1115610e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0d90614992565b60405180910390fd5b600081600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e639190614b95565b1015610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b90614932565b60405180910390fd5b600a811115610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf90614832565b60405180910390fd5b80600b54610ef69190614b3b565b341015610f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2f906146d2565b60405180910390fd5b60005b81811015610ff857610f6a33610f51600c612a13565b610f5b600d612a13565b610f659190614ab4565b612a21565b610f74600c612a3f565b600160106000828254610f879190614b95565b925050819055506001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fde9190614b95565b925050819055508080610ff090614ce2565b915050610f3b565b5050565b6000600880549050905090565b600e60009054906101000a900460ff1681565b607f81565b611029612952565b73ffffffffffffffffffffffffffffffffffffffff16611047611bc8565b73ffffffffffffffffffffffffffffffffffffffff161461109d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109490614812565b60405180910390fd5b60006010819055506000600e60016101000a81548160ff021916908315150217905550565b6110d36110cd612952565b82612a55565b611112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110990614892565b60405180910390fd5b61111d838383612b33565b505050565b600061112d836116f8565b821061116e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611165906145d2565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b612198607f6111d69190614ab4565b81565b606481565b6111e6612952565b73ffffffffffffffffffffffffffffffffffffffff16611204611bc8565b73ffffffffffffffffffffffffffffffffffffffff161461125a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125190614812565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112a5573d6000803e3d6000fd5b5050565b60105481565b6112ca83838360405180602001604052806000815250611e53565b505050565b60006112d9610ffc565b821061131a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611311906148b2565b60405180910390fd5b6008828154811061132e5761132d614e18565b5b90600052602060002001549050919050565b611348612952565b73ffffffffffffffffffffffffffffffffffffffff16611366611bc8565b73ffffffffffffffffffffffffffffffffffffffff16146113bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b390614812565b60405180910390fd5b60005b8282905081101561155f57600073ffffffffffffffffffffffffffffffffffffffff168383838181106113f5576113f4614e18565b5b905060200201602081019061140a9190613aec565b73ffffffffffffffffffffffffffffffffffffffff161415611461576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611458906148d2565b60405180910390fd5b600f600084848481811061147857611477614e18565b5b905060200201602081019061148d9190613aec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601060008282546114d99190614b95565b925050819055506000600f60008585858181106114f9576114f8614e18565b5b905060200201602081019061150e9190613aec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061155790614ce2565b9150506113bf565b505050565b61156c612952565b73ffffffffffffffffffffffffffffffffffffffff1661158a611bc8565b73ffffffffffffffffffffffffffffffffffffffff16146115e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d790614812565b60405180910390fd5b600e60029054906101000a900460ff1615611630576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162790614972565b60405180910390fd5b81816011919061164192919061386e565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e690614772565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090614752565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117b8612952565b73ffffffffffffffffffffffffffffffffffffffff166117d6611bc8565b73ffffffffffffffffffffffffffffffffffffffff161461182c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182390614812565b60405180910390fd5b6118366000612d8f565b565b611840612952565b73ffffffffffffffffffffffffffffffffffffffff1661185e611bc8565b73ffffffffffffffffffffffffffffffffffffffff16146118b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ab90614812565b60405180910390fd5b6000805b838390508110156118fd578383828181106118d6576118d5614e18565b5b90506020020135826118e89190614ab4565b915080806118f590614ce2565b9150506118b8565b50612198607f61190d9190614ab4565b611915610ffc565b10611955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194c90614912565b60405180910390fd5b607f81611962600d612a13565b61196c9190614ab4565b11156119ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a490614652565b60405180910390fd5b60005b85859050811015611a5e5760005b8484838181106119d1576119d0614e18565b5b90506020020135811015611a4a57611a2d8787848181106119f5576119f4614e18565b5b9050602002016020810190611a0a9190613aec565b611a14600c612a13565b611a1e600d612a13565b611a289190614ab4565b612a21565b611a37600d612a3f565b8080611a4290614ce2565b9150506119be565b508080611a5690614ce2565b9150506119b0565b505050505050565b611a6e612952565b73ffffffffffffffffffffffffffffffffffffffff16611a8c611bc8565b73ffffffffffffffffffffffffffffffffffffffff1614611ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad990614812565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b61219881565b60606000611b21836116f8565b905060008167ffffffffffffffff811115611b3f57611b3e614e47565b5b604051908082528060200260200182016040528015611b6d5781602001602082028036833780820191505090505b50905060005b82811015611bb757611b858582611122565b828281518110611b9857611b97614e18565b5b6020026020010181815250508080611baf90614ce2565b915050611b73565b508092505050919050565b600b5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611c0190614c7f565b80601f0160208091040260200160405190810160405280929190818152602001828054611c2d90614c7f565b8015611c7a5780601f10611c4f57610100808354040283529160200191611c7a565b820191906000526020600020905b815481529060010190602001808311611c5d57829003601f168201915b5050505050905090565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611cd5612952565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3a90614692565b60405180910390fd5b8060056000611d50612952565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611dfd612952565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e429190614555565b60405180910390a35050565b600a81565b611e64611e5e612952565b83612a55565b611ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9a90614892565b60405180910390fd5b611eaf84848484612e55565b50505050565b600e60019054906101000a900460ff1681565b611ed0612952565b73ffffffffffffffffffffffffffffffffffffffff16611eee611bc8565b73ffffffffffffffffffffffffffffffffffffffff1614611f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3b90614812565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b600d8060000154905081565b6060611f87826128e6565b611fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbd906146b2565b60405180910390fd5b6011611fd183612eb1565b604051602001611fe29291906144a8565b6040516020818303038152906040529050919050565b612000612952565b73ffffffffffffffffffffffffffffffffffffffff1661201e611bc8565b73ffffffffffffffffffffffffffffffffffffffff1614612074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206b90614812565b60405180910390fd5b6001600e60026101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218a90614952565b60405180910390fd5b600e60009054906101000a900460ff166121e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d990614712565b60405180910390fd5b612198607f6121f19190614ab4565b6121f9610ffc565b10612239576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223090614912565b60405180910390fd5b6064612244336116f8565b8261224f9190614ab4565b1115612290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228790614792565b60405180910390fd5b6121988161229e600c612a13565b6010546122ab9190614ab4565b6122b59190614ab4565b11156122f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ed90614992565b60405180910390fd5b600a81111561233a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612331906147b2565b60405180910390fd5b80600b546123489190614b3b565b34101561238a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612381906146d2565b60405180910390fd5b60005b818110156123d9576123bc336123a3600c612a13565b6123ad600d612a13565b6123b79190614ab4565b612a21565b6123c6600c612a3f565b80806123d190614ce2565b91505061238d565b5050565b6123e5612952565b73ffffffffffffffffffffffffffffffffffffffff16612403611bc8565b73ffffffffffffffffffffffffffffffffffffffff1614612459576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245090614812565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c090614612565b60405180910390fd5b6124d281612d8f565b50565b6124dd612952565b73ffffffffffffffffffffffffffffffffffffffff166124fb611bc8565b73ffffffffffffffffffffffffffffffffffffffff1614612551576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254890614812565b60405180910390fd5b80600b8190555050565b612563612952565b73ffffffffffffffffffffffffffffffffffffffff16612581611bc8565b73ffffffffffffffffffffffffffffffffffffffff16146125d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ce90614812565b60405180910390fd5b81819050848490501461261f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612616906148f2565b60405180910390fd5b60005b848490508110156127fd57600073ffffffffffffffffffffffffffffffffffffffff1685858381811061265857612657614e18565b5b905060200201602081019061266d9190613aec565b73ffffffffffffffffffffffffffffffffffffffff1614156126c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bb906148d2565b60405180910390fd5b6000600f60008787858181106126dd576126dc614e18565b5b90506020020160208101906126f29190613aec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414156127665782828281811061274657612745614e18565b5b905060200201356010600082825461275e9190614ab4565b925050819055505b82828281811061277957612778614e18565b5b90506020020135600f600087878581811061279757612796614e18565b5b90506020020160208101906127ac9190613aec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806127f590614ce2565b915050612622565b5050505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806128cf57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806128df57506128de82613012565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166129cd83611646565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b612a3b82826040518060200160405280600081525061307c565b5050565b6001816000016000828254019250508190555050565b6000612a60826128e6565b612a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a96906146f2565b60405180910390fd5b6000612aaa83611646565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612b1957508373ffffffffffffffffffffffffffffffffffffffff16612b0184610ae4565b73ffffffffffffffffffffffffffffffffffffffff16145b80612b2a5750612b298185612091565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612b5382611646565b73ffffffffffffffffffffffffffffffffffffffff1614612ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba090614852565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1090614672565b60405180910390fd5b612c248383836130d7565b612c2f60008261295a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c7f9190614b95565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cd69190614ab4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612e60848484612b33565b612e6c848484846131eb565b612eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea2906145f2565b60405180910390fd5b50505050565b60606000821415612ef9576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061300d565b600082905060005b60008214612f2b578080612f1490614ce2565b915050600a82612f249190614b0a565b9150612f01565b60008167ffffffffffffffff811115612f4757612f46614e47565b5b6040519080825280601f01601f191660200182016040528015612f795781602001600182028036833780820191505090505b5090505b6000851461300657600182612f929190614b95565b9150600a85612fa19190614d2b565b6030612fad9190614ab4565b60f81b818381518110612fc357612fc2614e18565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fff9190614b0a565b9450612f7d565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6130868383613382565b61309360008484846131eb565b6130d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c9906145f2565b60405180910390fd5b505050565b6130e2838383613550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131255761312081613555565b613164565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461316357613162838261359e565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131a7576131a28161370b565b6131e6565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146131e5576131e482826137dc565b5b5b505050565b600061320c8473ffffffffffffffffffffffffffffffffffffffff1661385b565b15613375578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613235612952565b8786866040518563ffffffff1660e01b815260040161325794939291906144e7565b602060405180830381600087803b15801561327157600080fd5b505af19250505080156132a257506040513d601f19601f8201168201806040525081019061329f9190613daa565b60015b613325573d80600081146132d2576040519150601f19603f3d011682016040523d82523d6000602084013e6132d7565b606091505b5060008151141561331d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613314906145f2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061337a565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133e9906147d2565b60405180910390fd5b6133fb816128e6565b1561343b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343290614632565b60405180910390fd5b613447600083836130d7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134979190614ab4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016135ab846116f8565b6135b59190614b95565b905060006007600084815260200190815260200160002054905081811461369a576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061371f9190614b95565b905060006009600084815260200190815260200160002054905060006008838154811061374f5761374e614e18565b5b90600052602060002001549050806008838154811061377157613770614e18565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806137c0576137bf614de9565b5b6001900381819060005260206000200160009055905550505050565b60006137e7836116f8565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b82805461387a90614c7f565b90600052602060002090601f01602090048101928261389c57600085556138e3565b82601f106138b557803560ff19168380011785556138e3565b828001600101855582156138e3579182015b828111156138e25782358255916020019190600101906138c7565b5b5090506138f091906138f4565b5090565b5b8082111561390d5760008160009055506001016138f5565b5090565b600061392461391f846149f2565b6149cd565b9050828152602081018484840111156139405761393f614e85565b5b61394b848285614c3d565b509392505050565b60008135905061396281615628565b92915050565b60008083601f84011261397e5761397d614e7b565b5b8235905067ffffffffffffffff81111561399b5761399a614e76565b5b6020830191508360208202830111156139b7576139b6614e80565b5b9250929050565b60008083601f8401126139d4576139d3614e7b565b5b8235905067ffffffffffffffff8111156139f1576139f0614e76565b5b602083019150836020820283011115613a0d57613a0c614e80565b5b9250929050565b600081359050613a238161563f565b92915050565b600081359050613a3881615656565b92915050565b600081519050613a4d81615656565b92915050565b600082601f830112613a6857613a67614e7b565b5b8135613a78848260208601613911565b91505092915050565b60008083601f840112613a9757613a96614e7b565b5b8235905067ffffffffffffffff811115613ab457613ab3614e76565b5b602083019150836001820283011115613ad057613acf614e80565b5b9250929050565b600081359050613ae68161566d565b92915050565b600060208284031215613b0257613b01614e8f565b5b6000613b1084828501613953565b91505092915050565b60008060408385031215613b3057613b2f614e8f565b5b6000613b3e85828601613953565b9250506020613b4f85828601613953565b9150509250929050565b600080600060608486031215613b7257613b71614e8f565b5b6000613b8086828701613953565b9350506020613b9186828701613953565b9250506040613ba286828701613ad7565b9150509250925092565b60008060008060808587031215613bc657613bc5614e8f565b5b6000613bd487828801613953565b9450506020613be587828801613953565b9350506040613bf687828801613ad7565b925050606085013567ffffffffffffffff811115613c1757613c16614e8a565b5b613c2387828801613a53565b91505092959194509250565b60008060408385031215613c4657613c45614e8f565b5b6000613c5485828601613953565b9250506020613c6585828601613a14565b9150509250929050565b60008060408385031215613c8657613c85614e8f565b5b6000613c9485828601613953565b9250506020613ca585828601613ad7565b9150509250929050565b60008060208385031215613cc657613cc5614e8f565b5b600083013567ffffffffffffffff811115613ce457613ce3614e8a565b5b613cf085828601613968565b92509250509250929050565b60008060008060408587031215613d1657613d15614e8f565b5b600085013567ffffffffffffffff811115613d3457613d33614e8a565b5b613d4087828801613968565b9450945050602085013567ffffffffffffffff811115613d6357613d62614e8a565b5b613d6f878288016139be565b925092505092959194509250565b600060208284031215613d9357613d92614e8f565b5b6000613da184828501613a29565b91505092915050565b600060208284031215613dc057613dbf614e8f565b5b6000613dce84828501613a3e565b91505092915050565b60008060208385031215613dee57613ded614e8f565b5b600083013567ffffffffffffffff811115613e0c57613e0b614e8a565b5b613e1885828601613a81565b92509250509250929050565b600060208284031215613e3a57613e39614e8f565b5b6000613e4884828501613ad7565b91505092915050565b6000613e5d838361448a565b60208301905092915050565b613e7281614bc9565b82525050565b6000613e8382614a48565b613e8d8185614a76565b9350613e9883614a23565b8060005b83811015613ec9578151613eb08882613e51565b9750613ebb83614a69565b925050600181019050613e9c565b5085935050505092915050565b613edf81614bdb565b82525050565b6000613ef082614a53565b613efa8185614a87565b9350613f0a818560208601614c4c565b613f1381614e94565b840191505092915050565b6000613f2982614a5e565b613f338185614a98565b9350613f43818560208601614c4c565b613f4c81614e94565b840191505092915050565b6000613f6282614a5e565b613f6c8185614aa9565b9350613f7c818560208601614c4c565b80840191505092915050565b60008154613f9581614c7f565b613f9f8186614aa9565b94506001821660008114613fba5760018114613fcb57613ffe565b60ff19831686528186019350613ffe565b613fd485614a33565b60005b83811015613ff657815481890152600182019150602081019050613fd7565b838801955050505b50505092915050565b6000614014602083614a98565b915061401f82614ea5565b602082019050919050565b6000614037601b83614a98565b915061404282614ece565b602082019050919050565b600061405a602b83614a98565b915061406582614ef7565b604082019050919050565b600061407d603283614a98565b915061408882614f46565b604082019050919050565b60006140a0602683614a98565b91506140ab82614f95565b604082019050919050565b60006140c3601c83614a98565b91506140ce82614fe4565b602082019050919050565b60006140e6601783614a98565b91506140f18261500d565b602082019050919050565b6000614109602483614a98565b915061411482615036565b604082019050919050565b600061412c601983614a98565b915061413782615085565b602082019050919050565b600061414f601483614a98565b915061415a826150ae565b602082019050919050565b6000614172601c83614a98565b915061417d826150d7565b602082019050919050565b6000614195602c83614a98565b91506141a082615100565b604082019050919050565b60006141b8601d83614a98565b91506141c38261514f565b602082019050919050565b60006141db603883614a98565b91506141e682615178565b604082019050919050565b60006141fe602a83614a98565b9150614209826151c7565b604082019050919050565b6000614221602983614a98565b915061422c82615216565b604082019050919050565b6000614244601883614a98565b915061424f82615265565b602082019050919050565b6000614267601f83614a98565b91506142728261528e565b602082019050919050565b600061428a602083614a98565b9150614295826152b7565b602082019050919050565b60006142ad602c83614a98565b91506142b8826152e0565b604082019050919050565b60006142d0602083614a98565b91506142db8261532f565b602082019050919050565b60006142f3602183614a98565b91506142fe82615358565b604082019050919050565b6000614316602983614a98565b9150614321826153a7565b604082019050919050565b6000614339602183614a98565b9150614344826153f6565b604082019050919050565b600061435c603183614a98565b915061436782615445565b604082019050919050565b600061437f602c83614a98565b915061438a82615494565b604082019050919050565b60006143a2601583614a98565b91506143ad826154e3565b602082019050919050565b60006143c5601483614a98565b91506143d08261550c565b602082019050919050565b60006143e8601383614a98565b91506143f382615535565b602082019050919050565b600061440b602583614a98565b91506144168261555e565b604082019050919050565b600061442e601483614a98565b9150614439826155ad565b602082019050919050565b6000614451601883614a98565b915061445c826155d6565b602082019050919050565b6000614474601983614a98565b915061447f826155ff565b602082019050919050565b61449381614c33565b82525050565b6144a281614c33565b82525050565b60006144b48285613f88565b91506144c08284613f57565b91508190509392505050565b60006020820190506144e16000830184613e69565b92915050565b60006080820190506144fc6000830187613e69565b6145096020830186613e69565b6145166040830185614499565b81810360608301526145288184613ee5565b905095945050505050565b6000602082019050818103600083015261454d8184613e78565b905092915050565b600060208201905061456a6000830184613ed6565b92915050565b6000602082019050818103600083015261458a8184613f1e565b905092915050565b600060208201905081810360008301526145ab81614007565b9050919050565b600060208201905081810360008301526145cb8161402a565b9050919050565b600060208201905081810360008301526145eb8161404d565b9050919050565b6000602082019050818103600083015261460b81614070565b9050919050565b6000602082019050818103600083015261462b81614093565b9050919050565b6000602082019050818103600083015261464b816140b6565b9050919050565b6000602082019050818103600083015261466b816140d9565b9050919050565b6000602082019050818103600083015261468b816140fc565b9050919050565b600060208201905081810360008301526146ab8161411f565b9050919050565b600060208201905081810360008301526146cb81614142565b9050919050565b600060208201905081810360008301526146eb81614165565b9050919050565b6000602082019050818103600083015261470b81614188565b9050919050565b6000602082019050818103600083015261472b816141ab565b9050919050565b6000602082019050818103600083015261474b816141ce565b9050919050565b6000602082019050818103600083015261476b816141f1565b9050919050565b6000602082019050818103600083015261478b81614214565b9050919050565b600060208201905081810360008301526147ab81614237565b9050919050565b600060208201905081810360008301526147cb8161425a565b9050919050565b600060208201905081810360008301526147eb8161427d565b9050919050565b6000602082019050818103600083015261480b816142a0565b9050919050565b6000602082019050818103600083015261482b816142c3565b9050919050565b6000602082019050818103600083015261484b816142e6565b9050919050565b6000602082019050818103600083015261486b81614309565b9050919050565b6000602082019050818103600083015261488b8161432c565b9050919050565b600060208201905081810360008301526148ab8161434f565b9050919050565b600060208201905081810360008301526148cb81614372565b9050919050565b600060208201905081810360008301526148eb81614395565b9050919050565b6000602082019050818103600083015261490b816143b8565b9050919050565b6000602082019050818103600083015261492b816143db565b9050919050565b6000602082019050818103600083015261494b816143fe565b9050919050565b6000602082019050818103600083015261496b81614421565b9050919050565b6000602082019050818103600083015261498b81614444565b9050919050565b600060208201905081810360008301526149ab81614467565b9050919050565b60006020820190506149c76000830184614499565b92915050565b60006149d76149e8565b90506149e38282614cb1565b919050565b6000604051905090565b600067ffffffffffffffff821115614a0d57614a0c614e47565b5b614a1682614e94565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614abf82614c33565b9150614aca83614c33565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614aff57614afe614d5c565b5b828201905092915050565b6000614b1582614c33565b9150614b2083614c33565b925082614b3057614b2f614d8b565b5b828204905092915050565b6000614b4682614c33565b9150614b5183614c33565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b8a57614b89614d5c565b5b828202905092915050565b6000614ba082614c33565b9150614bab83614c33565b925082821015614bbe57614bbd614d5c565b5b828203905092915050565b6000614bd482614c13565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614c6a578082015181840152602081019050614c4f565b83811115614c79576000848401525b50505050565b60006002820490506001821680614c9757607f821691505b60208210811415614cab57614caa614dba565b5b50919050565b614cba82614e94565b810181811067ffffffffffffffff82111715614cd957614cd8614e47565b5b80604052505050565b6000614ced82614c33565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614d2057614d1f614d5c565b5b600182019050919050565b6000614d3682614c33565b9150614d4183614c33565b925082614d5157614d50614d8b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f57686974656c6973742073616c65206973207374696c6c20696e616374697665600082015250565b7f596f752068617665206e6f2077686974656c697374206d696e74730000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4769667420737570706c7920697320736f6c64206f7574000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b7f45544820616d6f756e74206973206e6f742073756666696369656e7400000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973207374696c6c20696e616374697665000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f57696c6c206578636565642077616c6c6574206c696d69740000000000000000600082015250565b7f43616e6e6f7420657863656564205452414e53414354494f4e5f4c494d495400600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616e6e6f742062652061626f7665205452414e53414354494f4e5f4c494d4960008201527f5400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416464726573732063616e2774206265206e756c6c0000000000000000000000600082015250565b7f41727261797320617265206e6f7420657175616c000000000000000000000000600082015250565b7f546f6b656e732061726520736f6c64206f757400000000000000000000000000600082015250565b7f596f7520646f6e2774206861766520656e6f7567682077686974656c6973742060008201527f6d696e7473000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f20636f6e74726163747320616c6c6f776564000000000000000000000000600082015250565b7f4d6574616461746120686173206265656e2066726f7a656e0000000000000000600082015250565b7f5075626c696320737570706c7920697320736f6c64206f757400000000000000600082015250565b61563181614bc9565b811461563c57600080fd5b50565b61564881614bdb565b811461565357600080fd5b50565b61565f81614be7565b811461566a57600080fd5b50565b61567681614c33565b811461568157600080fd5b5056fea26469706673582212208666ce73ba7198cf6a89d115834442ca415c413debbe2d795f4482aac2ef785664736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102675760003560e01c8063715018a611610144578063b88d4fde116100b6578063d111515d1161007a578063d111515d146108ed578063e985e9c514610904578063efef39a114610941578063f2fde38b1461095d578063f4a0a52814610986578063f8d50542146109af57610267565b8063b88d4fde1461081a578063b98451cf14610843578063bfe0e6321461086e578063c3b4d5b914610885578063c87b56dd146108b057610267565b80638d859f3e116101085780638d859f3e146107085780638da5cb5b1461073357806395d89b411461075e5780639cce37c614610789578063a22cb465146107c6578063b6fd509b146107ef57610267565b8063715018a6146106495780637705f9b5146106605780637dfed9fe146106895780638342083a146106a05780638462151c146106cb57610267565b80632f745c59116101dd57806342842e0e116101a157806342842e0e146105175780634f6ccce714610540578063548db1741461057d57806355f804b3146105a65780636352211e146105cf57806370a082311461060c57610267565b80632f745c591461044257806332cb6b0c1461047f578063351ed951146104aa5780633ccfd60b146104d55780633df6d28f146104ec57610267565b806312fc74a81161022f57806312fc74a81461036557806318160ddd146103815780631e84c413146103ac5780631ea63901146103d7578063236bf9281461040257806323b872dd1461041957610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b3146103115780630e24495e1461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613d7d565b6109d8565b6040516102a09190614555565b60405180910390f35b3480156102b557600080fd5b506102be610a52565b6040516102cb9190614570565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613e24565b610ae4565b60405161030891906144cc565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190613c6f565b610b69565b005b34801561034657600080fd5b5061034f610c81565b60405161035c9190614555565b60405180910390f35b61037f600480360381019061037a9190613e24565b610c94565b005b34801561038d57600080fd5b50610396610ffc565b6040516103a391906149b2565b60405180910390f35b3480156103b857600080fd5b506103c1611009565b6040516103ce9190614555565b60405180910390f35b3480156103e357600080fd5b506103ec61101c565b6040516103f991906149b2565b60405180910390f35b34801561040e57600080fd5b50610417611021565b005b34801561042557600080fd5b50610440600480360381019061043b9190613b59565b6110c2565b005b34801561044e57600080fd5b5061046960048036038101906104649190613c6f565b611122565b60405161047691906149b2565b60405180910390f35b34801561048b57600080fd5b506104946111c7565b6040516104a191906149b2565b60405180910390f35b3480156104b657600080fd5b506104bf6111d9565b6040516104cc91906149b2565b60405180910390f35b3480156104e157600080fd5b506104ea6111de565b005b3480156104f857600080fd5b506105016112a9565b60405161050e91906149b2565b60405180910390f35b34801561052357600080fd5b5061053e60048036038101906105399190613b59565b6112af565b005b34801561054c57600080fd5b5061056760048036038101906105629190613e24565b6112cf565b60405161057491906149b2565b60405180910390f35b34801561058957600080fd5b506105a4600480360381019061059f9190613caf565b611340565b005b3480156105b257600080fd5b506105cd60048036038101906105c89190613dd7565b611564565b005b3480156105db57600080fd5b506105f660048036038101906105f19190613e24565b611646565b60405161060391906144cc565b60405180910390f35b34801561061857600080fd5b50610633600480360381019061062e9190613aec565b6116f8565b60405161064091906149b2565b60405180910390f35b34801561065557600080fd5b5061065e6117b0565b005b34801561066c57600080fd5b5061068760048036038101906106829190613cfc565b611838565b005b34801561069557600080fd5b5061069e611a66565b005b3480156106ac57600080fd5b506106b5611b0e565b6040516106c291906149b2565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed9190613aec565b611b14565b6040516106ff9190614533565b60405180910390f35b34801561071457600080fd5b5061071d611bc2565b60405161072a91906149b2565b60405180910390f35b34801561073f57600080fd5b50610748611bc8565b60405161075591906144cc565b60405180910390f35b34801561076a57600080fd5b50610773611bf2565b6040516107809190614570565b60405180910390f35b34801561079557600080fd5b506107b060048036038101906107ab9190613aec565b611c84565b6040516107bd91906149b2565b60405180910390f35b3480156107d257600080fd5b506107ed60048036038101906107e89190613c2f565b611ccd565b005b3480156107fb57600080fd5b50610804611e4e565b60405161081191906149b2565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c9190613bac565b611e53565b005b34801561084f57600080fd5b50610858611eb5565b6040516108659190614555565b60405180910390f35b34801561087a57600080fd5b50610883611ec8565b005b34801561089157600080fd5b5061089a611f70565b6040516108a791906149b2565b60405180910390f35b3480156108bc57600080fd5b506108d760048036038101906108d29190613e24565b611f7c565b6040516108e49190614570565b60405180910390f35b3480156108f957600080fd5b50610902611ff8565b005b34801561091057600080fd5b5061092b60048036038101906109269190613b19565b612091565b6040516109389190614555565b60405180910390f35b61095b60048036038101906109569190613e24565b612125565b005b34801561096957600080fd5b50610984600480360381019061097f9190613aec565b6123dd565b005b34801561099257600080fd5b506109ad60048036038101906109a89190613e24565b6124d5565b005b3480156109bb57600080fd5b506109d660048036038101906109d19190613cfc565b61255b565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4b5750610a4a82612804565b5b9050919050565b606060008054610a6190614c7f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8d90614c7f565b8015610ada5780601f10610aaf57610100808354040283529160200191610ada565b820191906000526020600020905b815481529060010190602001808311610abd57829003601f168201915b5050505050905090565b6000610aef826128e6565b610b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b25906147f2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b7482611646565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdc90614872565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c04612952565b73ffffffffffffffffffffffffffffffffffffffff161480610c335750610c3281610c2d612952565b612091565b5b610c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6990614732565b60405180910390fd5b610c7c838361295a565b505050565b600e60029054906101000a900460ff1681565b600e60019054906101000a900460ff16610ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cda90614592565b60405180910390fd5b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415610d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5d906145b2565b60405180910390fd5b612198607f610d759190614ab4565b610d7d610ffc565b10610dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db490614912565b60405180910390fd5b61219881610dcb600c612a13565b610dd59190614ab4565b1115610e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0d90614992565b60405180910390fd5b600081600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e639190614b95565b1015610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b90614932565b60405180910390fd5b600a811115610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf90614832565b60405180910390fd5b80600b54610ef69190614b3b565b341015610f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2f906146d2565b60405180910390fd5b60005b81811015610ff857610f6a33610f51600c612a13565b610f5b600d612a13565b610f659190614ab4565b612a21565b610f74600c612a3f565b600160106000828254610f879190614b95565b925050819055506001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fde9190614b95565b925050819055508080610ff090614ce2565b915050610f3b565b5050565b6000600880549050905090565b600e60009054906101000a900460ff1681565b607f81565b611029612952565b73ffffffffffffffffffffffffffffffffffffffff16611047611bc8565b73ffffffffffffffffffffffffffffffffffffffff161461109d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109490614812565b60405180910390fd5b60006010819055506000600e60016101000a81548160ff021916908315150217905550565b6110d36110cd612952565b82612a55565b611112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110990614892565b60405180910390fd5b61111d838383612b33565b505050565b600061112d836116f8565b821061116e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611165906145d2565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b612198607f6111d69190614ab4565b81565b606481565b6111e6612952565b73ffffffffffffffffffffffffffffffffffffffff16611204611bc8565b73ffffffffffffffffffffffffffffffffffffffff161461125a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125190614812565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112a5573d6000803e3d6000fd5b5050565b60105481565b6112ca83838360405180602001604052806000815250611e53565b505050565b60006112d9610ffc565b821061131a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611311906148b2565b60405180910390fd5b6008828154811061132e5761132d614e18565b5b90600052602060002001549050919050565b611348612952565b73ffffffffffffffffffffffffffffffffffffffff16611366611bc8565b73ffffffffffffffffffffffffffffffffffffffff16146113bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b390614812565b60405180910390fd5b60005b8282905081101561155f57600073ffffffffffffffffffffffffffffffffffffffff168383838181106113f5576113f4614e18565b5b905060200201602081019061140a9190613aec565b73ffffffffffffffffffffffffffffffffffffffff161415611461576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611458906148d2565b60405180910390fd5b600f600084848481811061147857611477614e18565b5b905060200201602081019061148d9190613aec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601060008282546114d99190614b95565b925050819055506000600f60008585858181106114f9576114f8614e18565b5b905060200201602081019061150e9190613aec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061155790614ce2565b9150506113bf565b505050565b61156c612952565b73ffffffffffffffffffffffffffffffffffffffff1661158a611bc8565b73ffffffffffffffffffffffffffffffffffffffff16146115e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d790614812565b60405180910390fd5b600e60029054906101000a900460ff1615611630576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162790614972565b60405180910390fd5b81816011919061164192919061386e565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e690614772565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090614752565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117b8612952565b73ffffffffffffffffffffffffffffffffffffffff166117d6611bc8565b73ffffffffffffffffffffffffffffffffffffffff161461182c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182390614812565b60405180910390fd5b6118366000612d8f565b565b611840612952565b73ffffffffffffffffffffffffffffffffffffffff1661185e611bc8565b73ffffffffffffffffffffffffffffffffffffffff16146118b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ab90614812565b60405180910390fd5b6000805b838390508110156118fd578383828181106118d6576118d5614e18565b5b90506020020135826118e89190614ab4565b915080806118f590614ce2565b9150506118b8565b50612198607f61190d9190614ab4565b611915610ffc565b10611955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194c90614912565b60405180910390fd5b607f81611962600d612a13565b61196c9190614ab4565b11156119ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a490614652565b60405180910390fd5b60005b85859050811015611a5e5760005b8484838181106119d1576119d0614e18565b5b90506020020135811015611a4a57611a2d8787848181106119f5576119f4614e18565b5b9050602002016020810190611a0a9190613aec565b611a14600c612a13565b611a1e600d612a13565b611a289190614ab4565b612a21565b611a37600d612a3f565b8080611a4290614ce2565b9150506119be565b508080611a5690614ce2565b9150506119b0565b505050505050565b611a6e612952565b73ffffffffffffffffffffffffffffffffffffffff16611a8c611bc8565b73ffffffffffffffffffffffffffffffffffffffff1614611ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad990614812565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b61219881565b60606000611b21836116f8565b905060008167ffffffffffffffff811115611b3f57611b3e614e47565b5b604051908082528060200260200182016040528015611b6d5781602001602082028036833780820191505090505b50905060005b82811015611bb757611b858582611122565b828281518110611b9857611b97614e18565b5b6020026020010181815250508080611baf90614ce2565b915050611b73565b508092505050919050565b600b5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611c0190614c7f565b80601f0160208091040260200160405190810160405280929190818152602001828054611c2d90614c7f565b8015611c7a5780601f10611c4f57610100808354040283529160200191611c7a565b820191906000526020600020905b815481529060010190602001808311611c5d57829003601f168201915b5050505050905090565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611cd5612952565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3a90614692565b60405180910390fd5b8060056000611d50612952565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611dfd612952565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e429190614555565b60405180910390a35050565b600a81565b611e64611e5e612952565b83612a55565b611ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9a90614892565b60405180910390fd5b611eaf84848484612e55565b50505050565b600e60019054906101000a900460ff1681565b611ed0612952565b73ffffffffffffffffffffffffffffffffffffffff16611eee611bc8565b73ffffffffffffffffffffffffffffffffffffffff1614611f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3b90614812565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b600d8060000154905081565b6060611f87826128e6565b611fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbd906146b2565b60405180910390fd5b6011611fd183612eb1565b604051602001611fe29291906144a8565b6040516020818303038152906040529050919050565b612000612952565b73ffffffffffffffffffffffffffffffffffffffff1661201e611bc8565b73ffffffffffffffffffffffffffffffffffffffff1614612074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206b90614812565b60405180910390fd5b6001600e60026101000a81548160ff021916908315150217905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218a90614952565b60405180910390fd5b600e60009054906101000a900460ff166121e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d990614712565b60405180910390fd5b612198607f6121f19190614ab4565b6121f9610ffc565b10612239576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223090614912565b60405180910390fd5b6064612244336116f8565b8261224f9190614ab4565b1115612290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228790614792565b60405180910390fd5b6121988161229e600c612a13565b6010546122ab9190614ab4565b6122b59190614ab4565b11156122f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ed90614992565b60405180910390fd5b600a81111561233a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612331906147b2565b60405180910390fd5b80600b546123489190614b3b565b34101561238a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612381906146d2565b60405180910390fd5b60005b818110156123d9576123bc336123a3600c612a13565b6123ad600d612a13565b6123b79190614ab4565b612a21565b6123c6600c612a3f565b80806123d190614ce2565b91505061238d565b5050565b6123e5612952565b73ffffffffffffffffffffffffffffffffffffffff16612403611bc8565b73ffffffffffffffffffffffffffffffffffffffff1614612459576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245090614812565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c090614612565b60405180910390fd5b6124d281612d8f565b50565b6124dd612952565b73ffffffffffffffffffffffffffffffffffffffff166124fb611bc8565b73ffffffffffffffffffffffffffffffffffffffff1614612551576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254890614812565b60405180910390fd5b80600b8190555050565b612563612952565b73ffffffffffffffffffffffffffffffffffffffff16612581611bc8565b73ffffffffffffffffffffffffffffffffffffffff16146125d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ce90614812565b60405180910390fd5b81819050848490501461261f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612616906148f2565b60405180910390fd5b60005b848490508110156127fd57600073ffffffffffffffffffffffffffffffffffffffff1685858381811061265857612657614e18565b5b905060200201602081019061266d9190613aec565b73ffffffffffffffffffffffffffffffffffffffff1614156126c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bb906148d2565b60405180910390fd5b6000600f60008787858181106126dd576126dc614e18565b5b90506020020160208101906126f29190613aec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414156127665782828281811061274657612745614e18565b5b905060200201356010600082825461275e9190614ab4565b925050819055505b82828281811061277957612778614e18565b5b90506020020135600f600087878581811061279757612796614e18565b5b90506020020160208101906127ac9190613aec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806127f590614ce2565b915050612622565b5050505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806128cf57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806128df57506128de82613012565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166129cd83611646565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b612a3b82826040518060200160405280600081525061307c565b5050565b6001816000016000828254019250508190555050565b6000612a60826128e6565b612a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a96906146f2565b60405180910390fd5b6000612aaa83611646565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612b1957508373ffffffffffffffffffffffffffffffffffffffff16612b0184610ae4565b73ffffffffffffffffffffffffffffffffffffffff16145b80612b2a5750612b298185612091565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612b5382611646565b73ffffffffffffffffffffffffffffffffffffffff1614612ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba090614852565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1090614672565b60405180910390fd5b612c248383836130d7565b612c2f60008261295a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c7f9190614b95565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cd69190614ab4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612e60848484612b33565b612e6c848484846131eb565b612eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea2906145f2565b60405180910390fd5b50505050565b60606000821415612ef9576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061300d565b600082905060005b60008214612f2b578080612f1490614ce2565b915050600a82612f249190614b0a565b9150612f01565b60008167ffffffffffffffff811115612f4757612f46614e47565b5b6040519080825280601f01601f191660200182016040528015612f795781602001600182028036833780820191505090505b5090505b6000851461300657600182612f929190614b95565b9150600a85612fa19190614d2b565b6030612fad9190614ab4565b60f81b818381518110612fc357612fc2614e18565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fff9190614b0a565b9450612f7d565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6130868383613382565b61309360008484846131eb565b6130d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c9906145f2565b60405180910390fd5b505050565b6130e2838383613550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131255761312081613555565b613164565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461316357613162838261359e565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131a7576131a28161370b565b6131e6565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146131e5576131e482826137dc565b5b5b505050565b600061320c8473ffffffffffffffffffffffffffffffffffffffff1661385b565b15613375578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613235612952565b8786866040518563ffffffff1660e01b815260040161325794939291906144e7565b602060405180830381600087803b15801561327157600080fd5b505af19250505080156132a257506040513d601f19601f8201168201806040525081019061329f9190613daa565b60015b613325573d80600081146132d2576040519150601f19603f3d011682016040523d82523d6000602084013e6132d7565b606091505b5060008151141561331d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613314906145f2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061337a565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133e9906147d2565b60405180910390fd5b6133fb816128e6565b1561343b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343290614632565b60405180910390fd5b613447600083836130d7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134979190614ab4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016135ab846116f8565b6135b59190614b95565b905060006007600084815260200190815260200160002054905081811461369a576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061371f9190614b95565b905060006009600084815260200190815260200160002054905060006008838154811061374f5761374e614e18565b5b90600052602060002001549050806008838154811061377157613770614e18565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806137c0576137bf614de9565b5b6001900381819060005260206000200160009055905550505050565b60006137e7836116f8565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b82805461387a90614c7f565b90600052602060002090601f01602090048101928261389c57600085556138e3565b82601f106138b557803560ff19168380011785556138e3565b828001600101855582156138e3579182015b828111156138e25782358255916020019190600101906138c7565b5b5090506138f091906138f4565b5090565b5b8082111561390d5760008160009055506001016138f5565b5090565b600061392461391f846149f2565b6149cd565b9050828152602081018484840111156139405761393f614e85565b5b61394b848285614c3d565b509392505050565b60008135905061396281615628565b92915050565b60008083601f84011261397e5761397d614e7b565b5b8235905067ffffffffffffffff81111561399b5761399a614e76565b5b6020830191508360208202830111156139b7576139b6614e80565b5b9250929050565b60008083601f8401126139d4576139d3614e7b565b5b8235905067ffffffffffffffff8111156139f1576139f0614e76565b5b602083019150836020820283011115613a0d57613a0c614e80565b5b9250929050565b600081359050613a238161563f565b92915050565b600081359050613a3881615656565b92915050565b600081519050613a4d81615656565b92915050565b600082601f830112613a6857613a67614e7b565b5b8135613a78848260208601613911565b91505092915050565b60008083601f840112613a9757613a96614e7b565b5b8235905067ffffffffffffffff811115613ab457613ab3614e76565b5b602083019150836001820283011115613ad057613acf614e80565b5b9250929050565b600081359050613ae68161566d565b92915050565b600060208284031215613b0257613b01614e8f565b5b6000613b1084828501613953565b91505092915050565b60008060408385031215613b3057613b2f614e8f565b5b6000613b3e85828601613953565b9250506020613b4f85828601613953565b9150509250929050565b600080600060608486031215613b7257613b71614e8f565b5b6000613b8086828701613953565b9350506020613b9186828701613953565b9250506040613ba286828701613ad7565b9150509250925092565b60008060008060808587031215613bc657613bc5614e8f565b5b6000613bd487828801613953565b9450506020613be587828801613953565b9350506040613bf687828801613ad7565b925050606085013567ffffffffffffffff811115613c1757613c16614e8a565b5b613c2387828801613a53565b91505092959194509250565b60008060408385031215613c4657613c45614e8f565b5b6000613c5485828601613953565b9250506020613c6585828601613a14565b9150509250929050565b60008060408385031215613c8657613c85614e8f565b5b6000613c9485828601613953565b9250506020613ca585828601613ad7565b9150509250929050565b60008060208385031215613cc657613cc5614e8f565b5b600083013567ffffffffffffffff811115613ce457613ce3614e8a565b5b613cf085828601613968565b92509250509250929050565b60008060008060408587031215613d1657613d15614e8f565b5b600085013567ffffffffffffffff811115613d3457613d33614e8a565b5b613d4087828801613968565b9450945050602085013567ffffffffffffffff811115613d6357613d62614e8a565b5b613d6f878288016139be565b925092505092959194509250565b600060208284031215613d9357613d92614e8f565b5b6000613da184828501613a29565b91505092915050565b600060208284031215613dc057613dbf614e8f565b5b6000613dce84828501613a3e565b91505092915050565b60008060208385031215613dee57613ded614e8f565b5b600083013567ffffffffffffffff811115613e0c57613e0b614e8a565b5b613e1885828601613a81565b92509250509250929050565b600060208284031215613e3a57613e39614e8f565b5b6000613e4884828501613ad7565b91505092915050565b6000613e5d838361448a565b60208301905092915050565b613e7281614bc9565b82525050565b6000613e8382614a48565b613e8d8185614a76565b9350613e9883614a23565b8060005b83811015613ec9578151613eb08882613e51565b9750613ebb83614a69565b925050600181019050613e9c565b5085935050505092915050565b613edf81614bdb565b82525050565b6000613ef082614a53565b613efa8185614a87565b9350613f0a818560208601614c4c565b613f1381614e94565b840191505092915050565b6000613f2982614a5e565b613f338185614a98565b9350613f43818560208601614c4c565b613f4c81614e94565b840191505092915050565b6000613f6282614a5e565b613f6c8185614aa9565b9350613f7c818560208601614c4c565b80840191505092915050565b60008154613f9581614c7f565b613f9f8186614aa9565b94506001821660008114613fba5760018114613fcb57613ffe565b60ff19831686528186019350613ffe565b613fd485614a33565b60005b83811015613ff657815481890152600182019150602081019050613fd7565b838801955050505b50505092915050565b6000614014602083614a98565b915061401f82614ea5565b602082019050919050565b6000614037601b83614a98565b915061404282614ece565b602082019050919050565b600061405a602b83614a98565b915061406582614ef7565b604082019050919050565b600061407d603283614a98565b915061408882614f46565b604082019050919050565b60006140a0602683614a98565b91506140ab82614f95565b604082019050919050565b60006140c3601c83614a98565b91506140ce82614fe4565b602082019050919050565b60006140e6601783614a98565b91506140f18261500d565b602082019050919050565b6000614109602483614a98565b915061411482615036565b604082019050919050565b600061412c601983614a98565b915061413782615085565b602082019050919050565b600061414f601483614a98565b915061415a826150ae565b602082019050919050565b6000614172601c83614a98565b915061417d826150d7565b602082019050919050565b6000614195602c83614a98565b91506141a082615100565b604082019050919050565b60006141b8601d83614a98565b91506141c38261514f565b602082019050919050565b60006141db603883614a98565b91506141e682615178565b604082019050919050565b60006141fe602a83614a98565b9150614209826151c7565b604082019050919050565b6000614221602983614a98565b915061422c82615216565b604082019050919050565b6000614244601883614a98565b915061424f82615265565b602082019050919050565b6000614267601f83614a98565b91506142728261528e565b602082019050919050565b600061428a602083614a98565b9150614295826152b7565b602082019050919050565b60006142ad602c83614a98565b91506142b8826152e0565b604082019050919050565b60006142d0602083614a98565b91506142db8261532f565b602082019050919050565b60006142f3602183614a98565b91506142fe82615358565b604082019050919050565b6000614316602983614a98565b9150614321826153a7565b604082019050919050565b6000614339602183614a98565b9150614344826153f6565b604082019050919050565b600061435c603183614a98565b915061436782615445565b604082019050919050565b600061437f602c83614a98565b915061438a82615494565b604082019050919050565b60006143a2601583614a98565b91506143ad826154e3565b602082019050919050565b60006143c5601483614a98565b91506143d08261550c565b602082019050919050565b60006143e8601383614a98565b91506143f382615535565b602082019050919050565b600061440b602583614a98565b91506144168261555e565b604082019050919050565b600061442e601483614a98565b9150614439826155ad565b602082019050919050565b6000614451601883614a98565b915061445c826155d6565b602082019050919050565b6000614474601983614a98565b915061447f826155ff565b602082019050919050565b61449381614c33565b82525050565b6144a281614c33565b82525050565b60006144b48285613f88565b91506144c08284613f57565b91508190509392505050565b60006020820190506144e16000830184613e69565b92915050565b60006080820190506144fc6000830187613e69565b6145096020830186613e69565b6145166040830185614499565b81810360608301526145288184613ee5565b905095945050505050565b6000602082019050818103600083015261454d8184613e78565b905092915050565b600060208201905061456a6000830184613ed6565b92915050565b6000602082019050818103600083015261458a8184613f1e565b905092915050565b600060208201905081810360008301526145ab81614007565b9050919050565b600060208201905081810360008301526145cb8161402a565b9050919050565b600060208201905081810360008301526145eb8161404d565b9050919050565b6000602082019050818103600083015261460b81614070565b9050919050565b6000602082019050818103600083015261462b81614093565b9050919050565b6000602082019050818103600083015261464b816140b6565b9050919050565b6000602082019050818103600083015261466b816140d9565b9050919050565b6000602082019050818103600083015261468b816140fc565b9050919050565b600060208201905081810360008301526146ab8161411f565b9050919050565b600060208201905081810360008301526146cb81614142565b9050919050565b600060208201905081810360008301526146eb81614165565b9050919050565b6000602082019050818103600083015261470b81614188565b9050919050565b6000602082019050818103600083015261472b816141ab565b9050919050565b6000602082019050818103600083015261474b816141ce565b9050919050565b6000602082019050818103600083015261476b816141f1565b9050919050565b6000602082019050818103600083015261478b81614214565b9050919050565b600060208201905081810360008301526147ab81614237565b9050919050565b600060208201905081810360008301526147cb8161425a565b9050919050565b600060208201905081810360008301526147eb8161427d565b9050919050565b6000602082019050818103600083015261480b816142a0565b9050919050565b6000602082019050818103600083015261482b816142c3565b9050919050565b6000602082019050818103600083015261484b816142e6565b9050919050565b6000602082019050818103600083015261486b81614309565b9050919050565b6000602082019050818103600083015261488b8161432c565b9050919050565b600060208201905081810360008301526148ab8161434f565b9050919050565b600060208201905081810360008301526148cb81614372565b9050919050565b600060208201905081810360008301526148eb81614395565b9050919050565b6000602082019050818103600083015261490b816143b8565b9050919050565b6000602082019050818103600083015261492b816143db565b9050919050565b6000602082019050818103600083015261494b816143fe565b9050919050565b6000602082019050818103600083015261496b81614421565b9050919050565b6000602082019050818103600083015261498b81614444565b9050919050565b600060208201905081810360008301526149ab81614467565b9050919050565b60006020820190506149c76000830184614499565b92915050565b60006149d76149e8565b90506149e38282614cb1565b919050565b6000604051905090565b600067ffffffffffffffff821115614a0d57614a0c614e47565b5b614a1682614e94565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614abf82614c33565b9150614aca83614c33565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614aff57614afe614d5c565b5b828201905092915050565b6000614b1582614c33565b9150614b2083614c33565b925082614b3057614b2f614d8b565b5b828204905092915050565b6000614b4682614c33565b9150614b5183614c33565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b8a57614b89614d5c565b5b828202905092915050565b6000614ba082614c33565b9150614bab83614c33565b925082821015614bbe57614bbd614d5c565b5b828203905092915050565b6000614bd482614c13565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614c6a578082015181840152602081019050614c4f565b83811115614c79576000848401525b50505050565b60006002820490506001821680614c9757607f821691505b60208210811415614cab57614caa614dba565b5b50919050565b614cba82614e94565b810181811067ffffffffffffffff82111715614cd957614cd8614e47565b5b80604052505050565b6000614ced82614c33565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614d2057614d1f614d5c565b5b600182019050919050565b6000614d3682614c33565b9150614d4183614c33565b925082614d5157614d50614d8b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f57686974656c6973742073616c65206973207374696c6c20696e616374697665600082015250565b7f596f752068617665206e6f2077686974656c697374206d696e74730000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4769667420737570706c7920697320736f6c64206f7574000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b7f45544820616d6f756e74206973206e6f742073756666696369656e7400000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973207374696c6c20696e616374697665000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f57696c6c206578636565642077616c6c6574206c696d69740000000000000000600082015250565b7f43616e6e6f7420657863656564205452414e53414354494f4e5f4c494d495400600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616e6e6f742062652061626f7665205452414e53414354494f4e5f4c494d4960008201527f5400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416464726573732063616e2774206265206e756c6c0000000000000000000000600082015250565b7f41727261797320617265206e6f7420657175616c000000000000000000000000600082015250565b7f546f6b656e732061726520736f6c64206f757400000000000000000000000000600082015250565b7f596f7520646f6e2774206861766520656e6f7567682077686974656c6973742060008201527f6d696e7473000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f20636f6e74726163747320616c6c6f776564000000000000000000000000600082015250565b7f4d6574616461746120686173206265656e2066726f7a656e0000000000000000600082015250565b7f5075626c696320737570706c7920697320736f6c64206f757400000000000000600082015250565b61563181614bc9565b811461563c57600080fd5b50565b61564881614bdb565b811461565357600080fd5b50565b61565f81614be7565b811461566a57600080fd5b50565b61567681614c33565b811461568157600080fd5b5056fea26469706673582212208666ce73ba7198cf6a89d115834442ca415c413debbe2d795f4482aac2ef785664736f6c63430008070033

Deployed Bytecode Sourcemap

46705:6856:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36476:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22616:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24309:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23832:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47388:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48737:1252;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37279:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47295:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46914:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51875:137;;;;;;;;;;;;;:::i;:::-;;25368:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36860:343;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47013:64;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47139:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52744:145;;;;;;;;;;;;;:::i;:::-;;47493:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25815:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37469:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51489:378;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52145:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22223:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21866:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45974:94;;;;;;;;;;;;;:::i;:::-;;49997:880;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52310:109;;;;;;;;;;;;;:::i;:::-;;46962:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53182:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46874:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45323:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22785:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52020:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24689:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47086:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26071:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47340:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52427:118;;;;;;;;;;;;;:::i;:::-;;47243:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52897:277;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52553:87;;;;;;;;;;;;;:::i;:::-;;25087:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47576:1153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46223:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52648:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50885:596;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36476:300;36623:4;36680:35;36665:50;;;:11;:50;;;;:103;;;;36732:36;36756:11;36732:23;:36::i;:::-;36665:103;36645:123;;36476:300;;;:::o;22616:100::-;22670:13;22703:5;22696:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22616:100;:::o;24309:308::-;24430:7;24477:16;24485:7;24477;:16::i;:::-;24455:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;24585:15;:24;24601:7;24585:24;;;;;;;;;;;;;;;;;;;;;24578:31;;24309:308;;;:::o;23832:411::-;23913:13;23929:23;23944:7;23929:14;:23::i;:::-;23913:39;;23977:5;23971:11;;:2;:11;;;;23963:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;24071:5;24055:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;24080:37;24097:5;24104:12;:10;:12::i;:::-;24080:16;:37::i;:::-;24055:62;24033:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;24214:21;24223:2;24227:7;24214:8;:21::i;:::-;23902:341;23832:411;;:::o;47388:36::-;;;;;;;;;;;;;:::o;48737:1252::-;48828:21;;;;;;;;;;;48820:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;48950:1;48919:15;:27;48935:10;48919:27;;;;;;;;;;;;;;;;:32;;48897:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;47002:4;46952:3;47050:27;;;;:::i;:::-;49025:13;:11;:13::i;:::-;:26;49017:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;47002:4;49142:14;49108:31;:21;:29;:31::i;:::-;:48;;;;:::i;:::-;:65;;49086:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;49309:1;49290:14;49260:15;:27;49276:10;49260:27;;;;;;;;;;;;;;;;:44;;;;:::i;:::-;49259:51;;49237:138;;;;;;;;;;;;:::i;:::-;;;;;;;;;47130:2;49408:14;:35;;49386:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;49558:14;49550:5;;:22;;;;:::i;:::-;49537:9;:35;;49515:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;49646:9;49641:341;49665:14;49661:1;:18;49641:341;;;49701:135;49729:10;49790:31;:21;:29;:31::i;:::-;49758:29;:19;:27;:29::i;:::-;:63;;;;:::i;:::-;49701:9;:135::i;:::-;49851:33;:21;:31;:33::i;:::-;49922:1;49899:19;;:24;;;;;;;:::i;:::-;;;;;;;;49969:1;49938:15;:27;49954:10;49938:27;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;49681:3;;;;;:::i;:::-;;;;49641:341;;;;48737:1252;:::o;37279:113::-;37340:7;37367:10;:17;;;;37360:24;;37279:113;:::o;47295:38::-;;;;;;;;;;;;;:::o;46914:41::-;46952:3;46914:41;:::o;51875:137::-;45554:12;:10;:12::i;:::-;45543:23;;:7;:5;:7::i;:::-;:23;;;45535:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51963:1:::1;51941:19;:23;;;;51999:5;51975:21;;:29;;;;;;;;;;;;;;;;;;51875:137::o:0;25368:376::-;25577:41;25596:12;:10;:12::i;:::-;25610:7;25577:18;:41::i;:::-;25555:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;25708:28;25718:4;25724:2;25728:7;25708:9;:28::i;:::-;25368:376;;;:::o;36860:343::-;37002:7;37057:23;37074:5;37057:16;:23::i;:::-;37049:5;:31;37027:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;37169:12;:19;37182:5;37169:19;;;;;;;;;;;;;;;:26;37189:5;37169:26;;;;;;;;;;;;37162:33;;36860:343;;;;:::o;47013:64::-;47002:4;46952:3;47050:27;;;;:::i;:::-;47013:64;:::o;47139:42::-;47178:3;47139:42;:::o;52744:145::-;45554:12;:10;:12::i;:::-;45543:23;;:7;:5;:7::i;:::-;:23;;;45535:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52794:15:::1;52812:21;52794:39;;52852:10;52844:28;;:37;52873:7;52844:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;52783:106;52744:145::o:0;47493:38::-;;;;:::o;25815:185::-;25953:39;25970:4;25976:2;25980:7;25953:39;;;;;;;;;;;;:16;:39::i;:::-;25815:185;;;:::o;37469:320::-;37589:7;37644:30;:28;:30::i;:::-;37636:5;:38;37614:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;37764:10;37775:5;37764:17;;;;;;;;:::i;:::-;;;;;;;;;;37757:24;;37469:320;;;:::o;51489:378::-;45554:12;:10;:12::i;:::-;45543:23;;:7;:5;:7::i;:::-;:23;;;45535:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51608:9:::1;51603:257;51627:11;;:18;;51623:1;:22;51603:257;;;51701:1;51675:28;;:11;;51687:1;51675:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;:28;;;;51667:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;51767:15;:31;51783:11;;51795:1;51783:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;51767:31;;;;;;;;;;;;;;;;51744:19;;:54;;;;;;;:::i;:::-;;;;;;;;51847:1;51813:15;:31;51829:11;;51841:1;51829:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;51813:31;;;;;;;;;;;;;;;:35;;;;51647:3;;;;;:::i;:::-;;;;51603:257;;;;51489:378:::0;;:::o;52145:157::-;45554:12;:10;:12::i;:::-;45543:23;;:7;:5;:7::i;:::-;:23;;;45535:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52225:16:::1;;;;;;;;;;;52224:17;52216:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;52291:3;;52281:7;:13;;;;;;;:::i;:::-;;52145:157:::0;;:::o;22223:326::-;22340:7;22365:13;22381:7;:16;22389:7;22381:16;;;;;;;;;;;;;;;;;;;;;22365:32;;22447:1;22430:19;;:5;:19;;;;22408:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;22536:5;22529:12;;;22223:326;;;:::o;21866:295::-;21983:7;22047:1;22030:19;;:5;:19;;;;22008:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;22137:9;:16;22147:5;22137:16;;;;;;;;;;;;;;;;22130:23;;21866:295;;;:::o;45974:94::-;45554:12;:10;:12::i;:::-;45543:23;;:7;:5;:7::i;:::-;:23;;;45535:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46039:21:::1;46057:1;46039:9;:21::i;:::-;45974:94::o:0;49997:880::-;45554:12;:10;:12::i;:::-;45543:23;;:7;:5;:7::i;:::-;:23;;;45535:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50127:20:::1;50167:9:::0;50162:104:::1;50186:10;;:17;;50182:1;:21;50162:104;;;50241:10;;50252:1;50241:13;;;;;;;:::i;:::-;;;;;;;;50225:29;;;;;:::i;:::-;;;50205:3;;;;;:::i;:::-;;;;50162:104;;;;47002:4;46952:3;47050:27;;;;:::i;:::-;50284:13;:11;:13::i;:::-;:26;50276:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;46952:3;50399:12;50367:29;:19;:27;:29::i;:::-;:44;;;;:::i;:::-;:59;;50345:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;50495:9;50490:380;50514:11;;:18;;50510:1;:22;50490:380;;;50559:9;50554:305;50578:10;;50589:1;50578:13;;;;;;;:::i;:::-;;;;;;;;50574:1;:17;50554:305;;;50617:176;50649:11;;50661:1;50649:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;50743:31;:21;:29;:31::i;:::-;50686:29;:19;:27;:29::i;:::-;:88;;;;:::i;:::-;50617:9;:176::i;:::-;50812:31;:19;:29;:31::i;:::-;50593:3;;;;;:::i;:::-;;;;50554:305;;;;50534:3;;;;;:::i;:::-;;;;50490:380;;;;50116:761;49997:880:::0;;;;:::o;52310:109::-;45554:12;:10;:12::i;:::-;45543:23;;:7;:5;:7::i;:::-;:23;;;45535:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52393:18:::1;;;;;;;;;;;52392:19;52371:18;;:40;;;;;;;;;;;;;;;;;;52310:109::o:0;46962:44::-;47002:4;46962:44;:::o;53182:376::-;53268:16;53302:18;53323:16;53333:5;53323:9;:16::i;:::-;53302:37;;53350:25;53392:10;53378:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53350:53;;53419:9;53414:111;53438:10;53434:1;:14;53414:111;;;53484:29;53504:5;53511:1;53484:19;:29::i;:::-;53470:8;53479:1;53470:11;;;;;;;;:::i;:::-;;;;;;;:43;;;;;53450:3;;;;;:::i;:::-;;;;53414:111;;;;53542:8;53535:15;;;;53182:376;;;:::o;46874:33::-;;;;:::o;45323:87::-;45369:7;45396:6;;;;;;;;;;;45389:13;;45323:87;:::o;22785:104::-;22841:13;22874:7;22867:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22785:104;:::o;52020:117::-;52081:7;52108:15;:21;52124:4;52108:21;;;;;;;;;;;;;;;;52101:28;;52020:117;;;:::o;24689:327::-;24836:12;:10;:12::i;:::-;24824:24;;:8;:24;;;;24816:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;24936:8;24891:18;:32;24910:12;:10;:12::i;:::-;24891:32;;;;;;;;;;;;;;;:42;24924:8;24891:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;24989:8;24960:48;;24975:12;:10;:12::i;:::-;24960:48;;;24999:8;24960:48;;;;;;:::i;:::-;;;;;;;;24689:327;;:::o;47086:46::-;47130:2;47086:46;:::o;26071:365::-;26260:41;26279:12;:10;:12::i;:::-;26293:7;26260:18;:41::i;:::-;26238:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;26389:39;26403:4;26409:2;26413:7;26422:5;26389:13;:39::i;:::-;26071:365;;;;:::o;47340:41::-;;;;;;;;;;;;;:::o;52427:118::-;45554:12;:10;:12::i;:::-;45543:23;;:7;:5;:7::i;:::-;:23;;;45535:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52516:21:::1;;;;;;;;;;;52515:22;52491:21;;:46;;;;;;;;;;;;;;;;;;52427:118::o:0;47243:43::-;;;;;;;;;:::o;52897:277::-;53006:13;53045:16;53053:7;53045;:16::i;:::-;53037:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;53130:7;53139:25;53156:7;53139:16;:25::i;:::-;53113:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53099:67;;52897:277;;;:::o;52553:87::-;45554:12;:10;:12::i;:::-;45543:23;;:7;:5;:7::i;:::-;:23;;;45535:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52628:4:::1;52609:16;;:23;;;;;;;;;;;;;;;;;;52553:87::o:0;25087:214::-;25229:4;25258:18;:25;25277:5;25258:25;;;;;;;;;;;;;;;:35;25284:8;25258:35;;;;;;;;;;;;;;;;;;;;;;;;;25251:42;;25087:214;;;;:::o;47576:1153::-;47668:9;47654:23;;:10;:23;;;47646:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;47721:18;;;;;;;;;;;47713:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;47002:4;46952:3;47050:27;;;;:::i;:::-;47792:13;:11;:13::i;:::-;:26;47784:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;47178:3;47892:21;47902:10;47892:9;:21::i;:::-;47875:14;:38;;;;:::i;:::-;:54;;47853:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;47002:4;48104:14;48053:31;:21;:29;:31::i;:::-;48014:19;;:70;;;;:::i;:::-;:104;;;;:::i;:::-;:138;;47992:213;;;;;;;;;;;;:::i;:::-;;;;;;;;;47130:2;48238:14;:35;;48216:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;48386:14;48378:5;;:22;;;;:::i;:::-;48365:9;:35;;48343:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;48472:9;48467:255;48491:14;48487:1;:18;48467:255;;;48527:135;48555:10;48616:31;:21;:29;:31::i;:::-;48584:29;:19;:27;:29::i;:::-;:63;;;;:::i;:::-;48527:9;:135::i;:::-;48677:33;:21;:31;:33::i;:::-;48507:3;;;;;:::i;:::-;;;;48467:255;;;;47576:1153;:::o;46223:229::-;45554:12;:10;:12::i;:::-;45543:23;;:7;:5;:7::i;:::-;:23;;;45535:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46346:1:::1;46326:22;;:8;:22;;;;46304:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;46425:19;46435:8;46425:9;:19::i;:::-;46223:229:::0;:::o;52648:88::-;45554:12;:10;:12::i;:::-;45543:23;;:7;:5;:7::i;:::-;:23;;;45535:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52723:5:::1;52715;:13;;;;52648:88:::0;:::o;50885:596::-;45554:12;:10;:12::i;:::-;45543:23;;:7;:5;:7::i;:::-;:23;;;45535:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51071:10:::1;;:17;;51049:11;;:18;;:39;51027:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;51152:9;51147:327;51171:11;;:18;;51167:1;:22;51147:327;;;51245:1;51219:28;;:11;;51231:1;51219:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;:28;;;;51211:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;51327:1;51292:15;:31;51308:11;;51320:1;51308:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;51292:31;;;;;;;;;;;;;;;;:36;51288:113;;;51372:10;;51383:1;51372:13;;;;;;;:::i;:::-;;;;;;;;51349:19;;:36;;;;;;;:::i;:::-;;;;;;;;51288:113;51449:10;;51460:1;51449:13;;;;;;;:::i;:::-;;;;;;;;51415:15;:31;51431:11;;51443:1;51431:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;51415:31;;;;;;;;;;;;;;;:47;;;;51191:3;;;;;:::i;:::-;;;;51147:327;;;;50885:596:::0;;;;:::o;21447:355::-;21594:4;21651:25;21636:40;;;:11;:40;;;;:105;;;;21708:33;21693:48;;;:11;:48;;;;21636:105;:158;;;;21758:36;21782:11;21758:23;:36::i;:::-;21636:158;21616:178;;21447:355;;;:::o;27983:127::-;28048:4;28100:1;28072:30;;:7;:16;28080:7;28072:16;;;;;;;;;;;;;;;;;;;;;:30;;;;28065:37;;27983:127;;;:::o;16797:98::-;16850:7;16877:10;16870:17;;16797:98;:::o;32106:174::-;32208:2;32181:15;:24;32197:7;32181:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;32264:7;32260:2;32226:46;;32235:23;32250:7;32235:14;:23::i;:::-;32226:46;;;;;;;;;;;;32106:174;;:::o;43707:114::-;43772:7;43799;:14;;;43792:21;;43707:114;;;:::o;29071:110::-;29147:26;29157:2;29161:7;29147:26;;;;;;;;;;;;:9;:26::i;:::-;29071:110;;:::o;43829:127::-;43936:1;43918:7;:14;;;:19;;;;;;;;;;;43829:127;:::o;28277:452::-;28406:4;28450:16;28458:7;28450;:16::i;:::-;28428:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;28549:13;28565:23;28580:7;28565:14;:23::i;:::-;28549:39;;28618:5;28607:16;;:7;:16;;;:64;;;;28664:7;28640:31;;:20;28652:7;28640:11;:20::i;:::-;:31;;;28607:64;:113;;;;28688:32;28705:5;28712:7;28688:16;:32::i;:::-;28607:113;28599:122;;;28277:452;;;;:::o;31373:615::-;31546:4;31519:31;;:23;31534:7;31519:14;:23::i;:::-;:31;;;31497:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;31652:1;31638:16;;:2;:16;;;;31630:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31708:39;31729:4;31735:2;31739:7;31708:20;:39::i;:::-;31812:29;31829:1;31833:7;31812:8;:29::i;:::-;31873:1;31854:9;:15;31864:4;31854:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;31902:1;31885:9;:13;31895:2;31885:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31933:2;31914:7;:16;31922:7;31914:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31972:7;31968:2;31953:27;;31962:4;31953:27;;;;;;;;;;;;31373:615;;;:::o;46460:173::-;46516:16;46535:6;;;;;;;;;;;46516:25;;46561:8;46552:6;;:17;;;;;;;;;;;;;;;;;;46616:8;46585:40;;46606:8;46585:40;;;;;;;;;;;;46505:128;46460:173;:::o;27318:352::-;27475:28;27485:4;27491:2;27495:7;27475:9;:28::i;:::-;27536:48;27559:4;27565:2;27569:7;27578:5;27536:22;:48::i;:::-;27514:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;27318:352;;;;:::o;17324:723::-;17380:13;17610:1;17601:5;:10;17597:53;;;17628:10;;;;;;;;;;;;;;;;;;;;;17597:53;17660:12;17675:5;17660:20;;17691:14;17716:78;17731:1;17723:4;:9;17716:78;;17749:8;;;;;:::i;:::-;;;;17780:2;17772:10;;;;;:::i;:::-;;;17716:78;;;17804:19;17836:6;17826:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17804:39;;17854:154;17870:1;17861:5;:10;17854:154;;17898:1;17888:11;;;;;:::i;:::-;;;17965:2;17957:5;:10;;;;:::i;:::-;17944:2;:24;;;;:::i;:::-;17931:39;;17914:6;17921;17914:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;17994:2;17985:11;;;;;:::i;:::-;;;17854:154;;;18032:6;18018:21;;;;;17324:723;;;;:::o;19913:207::-;20043:4;20087:25;20072:40;;;:11;:40;;;;20065:47;;19913:207;;;:::o;29408:321::-;29538:18;29544:2;29548:7;29538:5;:18::i;:::-;29589:54;29620:1;29624:2;29628:7;29637:5;29589:22;:54::i;:::-;29567:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;29408:321;;;:::o;38402:589::-;38546:45;38573:4;38579:2;38583:7;38546:26;:45::i;:::-;38624:1;38608:18;;:4;:18;;;38604:187;;;38643:40;38675:7;38643:31;:40::i;:::-;38604:187;;;38713:2;38705:10;;:4;:10;;;38701:90;;38732:47;38765:4;38771:7;38732:32;:47::i;:::-;38701:90;38604:187;38819:1;38805:16;;:2;:16;;;38801:183;;;38838:45;38875:7;38838:36;:45::i;:::-;38801:183;;;38911:4;38905:10;;:2;:10;;;38901:83;;38932:40;38960:2;38964:7;38932:27;:40::i;:::-;38901:83;38801:183;38402:589;;;:::o;32845:980::-;33000:4;33021:15;:2;:13;;;:15::i;:::-;33017:801;;;33090:2;33074:36;;;33133:12;:10;:12::i;:::-;33168:4;33195:7;33225:5;33074:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33053:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33449:1;33432:6;:13;:18;33428:320;;;33475:108;;;;;;;;;;:::i;:::-;;;;;;;;33428:320;33698:6;33692:13;33683:6;33679:2;33675:15;33668:38;33053:710;33323:41;;;33313:51;;;:6;:51;;;;33306:58;;;;;33017:801;33802:4;33795:11;;32845:980;;;;;;;:::o;30065:382::-;30159:1;30145:16;;:2;:16;;;;30137:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;30218:16;30226:7;30218;:16::i;:::-;30217:17;30209:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30280:45;30309:1;30313:2;30317:7;30280:20;:45::i;:::-;30355:1;30338:9;:13;30348:2;30338:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30386:2;30367:7;:16;30375:7;30367:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30431:7;30427:2;30406:33;;30423:1;30406:33;;;;;;;;;;;;30065:382;;:::o;34397:126::-;;;;:::o;39714:164::-;39818:10;:17;;;;39791:15;:24;39807:7;39791:24;;;;;;;;;;;:44;;;;39846:10;39862:7;39846:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39714:164;:::o;40505:1002::-;40785:22;40835:1;40810:22;40827:4;40810:16;:22::i;:::-;:26;;;;:::i;:::-;40785:51;;40847:18;40868:17;:26;40886:7;40868:26;;;;;;;;;;;;40847:47;;41015:14;41001:10;:28;40997:328;;41046:19;41068:12;:18;41081:4;41068:18;;;;;;;;;;;;;;;:34;41087:14;41068:34;;;;;;;;;;;;41046:56;;41152:11;41119:12;:18;41132:4;41119:18;;;;;;;;;;;;;;;:30;41138:10;41119:30;;;;;;;;;;;:44;;;;41269:10;41236:17;:30;41254:11;41236:30;;;;;;;;;;;:43;;;;41031:294;40997:328;41421:17;:26;41439:7;41421:26;;;;;;;;;;;41414:33;;;41465:12;:18;41478:4;41465:18;;;;;;;;;;;;;;;:34;41484:14;41465:34;;;;;;;;;;;41458:41;;;40600:907;;40505:1002;;:::o;41802:1079::-;42055:22;42100:1;42080:10;:17;;;;:21;;;;:::i;:::-;42055:46;;42112:18;42133:15;:24;42149:7;42133:24;;;;;;;;;;;;42112:45;;42484:19;42506:10;42517:14;42506:26;;;;;;;;:::i;:::-;;;;;;;;;;42484:48;;42570:11;42545:10;42556;42545:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;42681:10;42650:15;:28;42666:11;42650:28;;;;;;;;;;;:41;;;;42822:15;:24;42838:7;42822:24;;;;;;;;;;;42815:31;;;42857:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41873:1008;;;41802:1079;:::o;39292:221::-;39377:14;39394:20;39411:2;39394:16;:20::i;:::-;39377:37;;39452:7;39425:12;:16;39438:2;39425:16;;;;;;;;;;;;;;;:24;39442:6;39425:24;;;;;;;;;;;:34;;;;39499:6;39470:17;:26;39488:7;39470:26;;;;;;;;;;;:35;;;;39366:147;39292:221;;:::o;8372:387::-;8432:4;8640:12;8707:7;8695:20;8687:28;;8750:1;8743:4;:8;8736:15;;;8372:387;;;:::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;585:568::-;658:8;668:6;718:3;711:4;703:6;699:17;695:27;685:122;;726:79;;:::i;:::-;685:122;839:6;826:20;816:30;;869:18;861:6;858:30;855:117;;;891:79;;:::i;:::-;855:117;1005:4;997:6;993:17;981:29;;1059:3;1051:4;1043:6;1039:17;1029:8;1025:32;1022:41;1019:128;;;1066:79;;:::i;:::-;1019:128;585:568;;;;;:::o;1176:::-;1249:8;1259:6;1309:3;1302:4;1294:6;1290:17;1286:27;1276:122;;1317:79;;:::i;:::-;1276:122;1430:6;1417:20;1407:30;;1460:18;1452:6;1449:30;1446:117;;;1482:79;;:::i;:::-;1446:117;1596:4;1588:6;1584:17;1572:29;;1650:3;1642:4;1634:6;1630:17;1620:8;1616:32;1613:41;1610:128;;;1657:79;;:::i;:::-;1610:128;1176:568;;;;;:::o;1750:133::-;1793:5;1831:6;1818:20;1809:29;;1847:30;1871:5;1847:30;:::i;:::-;1750:133;;;;:::o;1889:137::-;1934:5;1972:6;1959:20;1950:29;;1988:32;2014:5;1988:32;:::i;:::-;1889:137;;;;:::o;2032:141::-;2088:5;2119:6;2113:13;2104:22;;2135:32;2161:5;2135:32;:::i;:::-;2032:141;;;;:::o;2192:338::-;2247:5;2296:3;2289:4;2281:6;2277:17;2273:27;2263:122;;2304:79;;:::i;:::-;2263:122;2421:6;2408:20;2446:78;2520:3;2512:6;2505:4;2497:6;2493:17;2446:78;:::i;:::-;2437:87;;2253:277;2192:338;;;;:::o;2550:553::-;2608:8;2618:6;2668:3;2661:4;2653:6;2649:17;2645:27;2635:122;;2676:79;;:::i;:::-;2635:122;2789:6;2776:20;2766:30;;2819:18;2811:6;2808:30;2805:117;;;2841:79;;:::i;:::-;2805:117;2955:4;2947:6;2943:17;2931:29;;3009:3;3001:4;2993:6;2989:17;2979:8;2975:32;2972:41;2969:128;;;3016:79;;:::i;:::-;2969:128;2550:553;;;;;:::o;3109:139::-;3155:5;3193:6;3180:20;3171:29;;3209:33;3236:5;3209:33;:::i;:::-;3109:139;;;;:::o;3254:329::-;3313:6;3362:2;3350:9;3341:7;3337:23;3333:32;3330:119;;;3368:79;;:::i;:::-;3330:119;3488:1;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3459:117;3254:329;;;;:::o;3589:474::-;3657:6;3665;3714:2;3702:9;3693:7;3689:23;3685:32;3682:119;;;3720:79;;:::i;:::-;3682:119;3840:1;3865:53;3910:7;3901:6;3890:9;3886:22;3865:53;:::i;:::-;3855:63;;3811:117;3967:2;3993:53;4038:7;4029:6;4018:9;4014:22;3993:53;:::i;:::-;3983:63;;3938:118;3589:474;;;;;:::o;4069:619::-;4146:6;4154;4162;4211:2;4199:9;4190:7;4186:23;4182:32;4179:119;;;4217:79;;:::i;:::-;4179:119;4337:1;4362:53;4407:7;4398:6;4387:9;4383:22;4362:53;:::i;:::-;4352:63;;4308:117;4464:2;4490:53;4535:7;4526:6;4515:9;4511:22;4490:53;:::i;:::-;4480:63;;4435:118;4592:2;4618:53;4663:7;4654:6;4643:9;4639:22;4618:53;:::i;:::-;4608:63;;4563:118;4069:619;;;;;:::o;4694:943::-;4789:6;4797;4805;4813;4862:3;4850:9;4841:7;4837:23;4833:33;4830:120;;;4869:79;;:::i;:::-;4830:120;4989:1;5014:53;5059:7;5050:6;5039:9;5035:22;5014:53;:::i;:::-;5004:63;;4960:117;5116:2;5142:53;5187:7;5178:6;5167:9;5163:22;5142:53;:::i;:::-;5132:63;;5087:118;5244:2;5270:53;5315:7;5306:6;5295:9;5291:22;5270:53;:::i;:::-;5260:63;;5215:118;5400:2;5389:9;5385:18;5372:32;5431:18;5423:6;5420:30;5417:117;;;5453:79;;:::i;:::-;5417:117;5558:62;5612:7;5603:6;5592:9;5588:22;5558:62;:::i;:::-;5548:72;;5343:287;4694:943;;;;;;;:::o;5643:468::-;5708:6;5716;5765:2;5753:9;5744:7;5740:23;5736:32;5733:119;;;5771:79;;:::i;:::-;5733:119;5891:1;5916:53;5961:7;5952:6;5941:9;5937:22;5916:53;:::i;:::-;5906:63;;5862:117;6018:2;6044:50;6086:7;6077:6;6066:9;6062:22;6044:50;:::i;:::-;6034:60;;5989:115;5643:468;;;;;:::o;6117:474::-;6185:6;6193;6242:2;6230:9;6221:7;6217:23;6213:32;6210:119;;;6248:79;;:::i;:::-;6210:119;6368:1;6393:53;6438:7;6429:6;6418:9;6414:22;6393:53;:::i;:::-;6383:63;;6339:117;6495:2;6521:53;6566:7;6557:6;6546:9;6542:22;6521:53;:::i;:::-;6511:63;;6466:118;6117:474;;;;;:::o;6597:559::-;6683:6;6691;6740:2;6728:9;6719:7;6715:23;6711:32;6708:119;;;6746:79;;:::i;:::-;6708:119;6894:1;6883:9;6879:17;6866:31;6924:18;6916:6;6913:30;6910:117;;;6946:79;;:::i;:::-;6910:117;7059:80;7131:7;7122:6;7111:9;7107:22;7059:80;:::i;:::-;7041:98;;;;6837:312;6597:559;;;;;:::o;7162:934::-;7284:6;7292;7300;7308;7357:2;7345:9;7336:7;7332:23;7328:32;7325:119;;;7363:79;;:::i;:::-;7325:119;7511:1;7500:9;7496:17;7483:31;7541:18;7533:6;7530:30;7527:117;;;7563:79;;:::i;:::-;7527:117;7676:80;7748:7;7739:6;7728:9;7724:22;7676:80;:::i;:::-;7658:98;;;;7454:312;7833:2;7822:9;7818:18;7805:32;7864:18;7856:6;7853:30;7850:117;;;7886:79;;:::i;:::-;7850:117;7999:80;8071:7;8062:6;8051:9;8047:22;7999:80;:::i;:::-;7981:98;;;;7776:313;7162:934;;;;;;;:::o;8102:327::-;8160:6;8209:2;8197:9;8188:7;8184:23;8180:32;8177:119;;;8215:79;;:::i;:::-;8177:119;8335:1;8360:52;8404:7;8395:6;8384:9;8380:22;8360:52;:::i;:::-;8350:62;;8306:116;8102:327;;;;:::o;8435:349::-;8504:6;8553:2;8541:9;8532:7;8528:23;8524:32;8521:119;;;8559:79;;:::i;:::-;8521:119;8679:1;8704:63;8759:7;8750:6;8739:9;8735:22;8704:63;:::i;:::-;8694:73;;8650:127;8435:349;;;;:::o;8790:529::-;8861:6;8869;8918:2;8906:9;8897:7;8893:23;8889:32;8886:119;;;8924:79;;:::i;:::-;8886:119;9072:1;9061:9;9057:17;9044:31;9102:18;9094:6;9091:30;9088:117;;;9124:79;;:::i;:::-;9088:117;9237:65;9294:7;9285:6;9274:9;9270:22;9237:65;:::i;:::-;9219:83;;;;9015:297;8790:529;;;;;:::o;9325:329::-;9384:6;9433:2;9421:9;9412:7;9408:23;9404:32;9401:119;;;9439:79;;:::i;:::-;9401:119;9559:1;9584:53;9629:7;9620:6;9609:9;9605:22;9584:53;:::i;:::-;9574:63;;9530:117;9325:329;;;;:::o;9660:179::-;9729:10;9750:46;9792:3;9784:6;9750:46;:::i;:::-;9828:4;9823:3;9819:14;9805:28;;9660:179;;;;:::o;9845:118::-;9932:24;9950:5;9932:24;:::i;:::-;9927:3;9920:37;9845:118;;:::o;9999:732::-;10118:3;10147:54;10195:5;10147:54;:::i;:::-;10217:86;10296:6;10291:3;10217:86;:::i;:::-;10210:93;;10327:56;10377:5;10327:56;:::i;:::-;10406:7;10437:1;10422:284;10447:6;10444:1;10441:13;10422:284;;;10523:6;10517:13;10550:63;10609:3;10594:13;10550:63;:::i;:::-;10543:70;;10636:60;10689:6;10636:60;:::i;:::-;10626:70;;10482:224;10469:1;10466;10462:9;10457:14;;10422:284;;;10426:14;10722:3;10715:10;;10123:608;;;9999:732;;;;:::o;10737:109::-;10818:21;10833:5;10818:21;:::i;:::-;10813:3;10806:34;10737:109;;:::o;10852:360::-;10938:3;10966:38;10998:5;10966:38;:::i;:::-;11020:70;11083:6;11078:3;11020:70;:::i;:::-;11013:77;;11099:52;11144:6;11139:3;11132:4;11125:5;11121:16;11099:52;:::i;:::-;11176:29;11198:6;11176:29;:::i;:::-;11171:3;11167:39;11160:46;;10942:270;10852:360;;;;:::o;11218:364::-;11306:3;11334:39;11367:5;11334:39;:::i;:::-;11389:71;11453:6;11448:3;11389:71;:::i;:::-;11382:78;;11469:52;11514:6;11509:3;11502:4;11495:5;11491:16;11469:52;:::i;:::-;11546:29;11568:6;11546:29;:::i;:::-;11541:3;11537:39;11530:46;;11310:272;11218:364;;;;:::o;11588:377::-;11694:3;11722:39;11755:5;11722:39;:::i;:::-;11777:89;11859:6;11854:3;11777:89;:::i;:::-;11770:96;;11875:52;11920:6;11915:3;11908:4;11901:5;11897:16;11875:52;:::i;:::-;11952:6;11947:3;11943:16;11936:23;;11698:267;11588:377;;;;:::o;11995:845::-;12098:3;12135:5;12129:12;12164:36;12190:9;12164:36;:::i;:::-;12216:89;12298:6;12293:3;12216:89;:::i;:::-;12209:96;;12336:1;12325:9;12321:17;12352:1;12347:137;;;;12498:1;12493:341;;;;12314:520;;12347:137;12431:4;12427:9;12416;12412:25;12407:3;12400:38;12467:6;12462:3;12458:16;12451:23;;12347:137;;12493:341;12560:38;12592:5;12560:38;:::i;:::-;12620:1;12634:154;12648:6;12645:1;12642:13;12634:154;;;12722:7;12716:14;12712:1;12707:3;12703:11;12696:35;12772:1;12763:7;12759:15;12748:26;;12670:4;12667:1;12663:12;12658:17;;12634:154;;;12817:6;12812:3;12808:16;12801:23;;12500:334;;12314:520;;12102:738;;11995:845;;;;:::o;12846:366::-;12988:3;13009:67;13073:2;13068:3;13009:67;:::i;:::-;13002:74;;13085:93;13174:3;13085:93;:::i;:::-;13203:2;13198:3;13194:12;13187:19;;12846:366;;;:::o;13218:::-;13360:3;13381:67;13445:2;13440:3;13381:67;:::i;:::-;13374:74;;13457:93;13546:3;13457:93;:::i;:::-;13575:2;13570:3;13566:12;13559:19;;13218:366;;;:::o;13590:::-;13732:3;13753:67;13817:2;13812:3;13753:67;:::i;:::-;13746:74;;13829:93;13918:3;13829:93;:::i;:::-;13947:2;13942:3;13938:12;13931:19;;13590:366;;;:::o;13962:::-;14104:3;14125:67;14189:2;14184:3;14125:67;:::i;:::-;14118:74;;14201:93;14290:3;14201:93;:::i;:::-;14319:2;14314:3;14310:12;14303:19;;13962:366;;;:::o;14334:::-;14476:3;14497:67;14561:2;14556:3;14497:67;:::i;:::-;14490:74;;14573:93;14662:3;14573:93;:::i;:::-;14691:2;14686:3;14682:12;14675:19;;14334:366;;;:::o;14706:::-;14848:3;14869:67;14933:2;14928:3;14869:67;:::i;:::-;14862:74;;14945:93;15034:3;14945:93;:::i;:::-;15063:2;15058:3;15054:12;15047:19;;14706:366;;;:::o;15078:::-;15220:3;15241:67;15305:2;15300:3;15241:67;:::i;:::-;15234:74;;15317:93;15406:3;15317:93;:::i;:::-;15435:2;15430:3;15426:12;15419:19;;15078:366;;;:::o;15450:::-;15592:3;15613:67;15677:2;15672:3;15613:67;:::i;:::-;15606:74;;15689:93;15778:3;15689:93;:::i;:::-;15807:2;15802:3;15798:12;15791:19;;15450:366;;;:::o;15822:::-;15964:3;15985:67;16049:2;16044:3;15985:67;:::i;:::-;15978:74;;16061:93;16150:3;16061:93;:::i;:::-;16179:2;16174:3;16170:12;16163:19;;15822:366;;;:::o;16194:::-;16336:3;16357:67;16421:2;16416:3;16357:67;:::i;:::-;16350:74;;16433:93;16522:3;16433:93;:::i;:::-;16551:2;16546:3;16542:12;16535:19;;16194:366;;;:::o;16566:::-;16708:3;16729:67;16793:2;16788:3;16729:67;:::i;:::-;16722:74;;16805:93;16894:3;16805:93;:::i;:::-;16923:2;16918:3;16914:12;16907:19;;16566:366;;;:::o;16938:::-;17080:3;17101:67;17165:2;17160:3;17101:67;:::i;:::-;17094:74;;17177:93;17266:3;17177:93;:::i;:::-;17295:2;17290:3;17286:12;17279:19;;16938:366;;;:::o;17310:::-;17452:3;17473:67;17537:2;17532:3;17473:67;:::i;:::-;17466:74;;17549:93;17638:3;17549:93;:::i;:::-;17667:2;17662:3;17658:12;17651:19;;17310:366;;;:::o;17682:::-;17824:3;17845:67;17909:2;17904:3;17845:67;:::i;:::-;17838:74;;17921:93;18010:3;17921:93;:::i;:::-;18039:2;18034:3;18030:12;18023:19;;17682:366;;;:::o;18054:::-;18196:3;18217:67;18281:2;18276:3;18217:67;:::i;:::-;18210:74;;18293:93;18382:3;18293:93;:::i;:::-;18411:2;18406:3;18402:12;18395:19;;18054:366;;;:::o;18426:::-;18568:3;18589:67;18653:2;18648:3;18589:67;:::i;:::-;18582:74;;18665:93;18754:3;18665:93;:::i;:::-;18783:2;18778:3;18774:12;18767:19;;18426:366;;;:::o;18798:::-;18940:3;18961:67;19025:2;19020:3;18961:67;:::i;:::-;18954:74;;19037:93;19126:3;19037:93;:::i;:::-;19155:2;19150:3;19146:12;19139:19;;18798:366;;;:::o;19170:::-;19312:3;19333:67;19397:2;19392:3;19333:67;:::i;:::-;19326:74;;19409:93;19498:3;19409:93;:::i;:::-;19527:2;19522:3;19518:12;19511:19;;19170:366;;;:::o;19542:::-;19684:3;19705:67;19769:2;19764:3;19705:67;:::i;:::-;19698:74;;19781:93;19870:3;19781:93;:::i;:::-;19899:2;19894:3;19890:12;19883:19;;19542:366;;;:::o;19914:::-;20056:3;20077:67;20141:2;20136:3;20077:67;:::i;:::-;20070:74;;20153:93;20242:3;20153:93;:::i;:::-;20271:2;20266:3;20262:12;20255:19;;19914:366;;;:::o;20286:::-;20428:3;20449:67;20513:2;20508:3;20449:67;:::i;:::-;20442:74;;20525:93;20614:3;20525:93;:::i;:::-;20643:2;20638:3;20634:12;20627:19;;20286:366;;;:::o;20658:::-;20800:3;20821:67;20885:2;20880:3;20821:67;:::i;:::-;20814:74;;20897:93;20986:3;20897:93;:::i;:::-;21015:2;21010:3;21006:12;20999:19;;20658:366;;;:::o;21030:::-;21172:3;21193:67;21257:2;21252:3;21193:67;:::i;:::-;21186:74;;21269:93;21358:3;21269:93;:::i;:::-;21387:2;21382:3;21378:12;21371:19;;21030:366;;;:::o;21402:::-;21544:3;21565:67;21629:2;21624:3;21565:67;:::i;:::-;21558:74;;21641:93;21730:3;21641:93;:::i;:::-;21759:2;21754:3;21750:12;21743:19;;21402:366;;;:::o;21774:::-;21916:3;21937:67;22001:2;21996:3;21937:67;:::i;:::-;21930:74;;22013:93;22102:3;22013:93;:::i;:::-;22131:2;22126:3;22122:12;22115:19;;21774:366;;;:::o;22146:::-;22288:3;22309:67;22373:2;22368:3;22309:67;:::i;:::-;22302:74;;22385:93;22474:3;22385:93;:::i;:::-;22503:2;22498:3;22494:12;22487:19;;22146:366;;;:::o;22518:::-;22660:3;22681:67;22745:2;22740:3;22681:67;:::i;:::-;22674:74;;22757:93;22846:3;22757:93;:::i;:::-;22875:2;22870:3;22866:12;22859:19;;22518:366;;;:::o;22890:::-;23032:3;23053:67;23117:2;23112:3;23053:67;:::i;:::-;23046:74;;23129:93;23218:3;23129:93;:::i;:::-;23247:2;23242:3;23238:12;23231:19;;22890:366;;;:::o;23262:::-;23404:3;23425:67;23489:2;23484:3;23425:67;:::i;:::-;23418:74;;23501:93;23590:3;23501:93;:::i;:::-;23619:2;23614:3;23610:12;23603:19;;23262:366;;;:::o;23634:::-;23776:3;23797:67;23861:2;23856:3;23797:67;:::i;:::-;23790:74;;23873:93;23962:3;23873:93;:::i;:::-;23991:2;23986:3;23982:12;23975:19;;23634:366;;;:::o;24006:::-;24148:3;24169:67;24233:2;24228:3;24169:67;:::i;:::-;24162:74;;24245:93;24334:3;24245:93;:::i;:::-;24363:2;24358:3;24354:12;24347:19;;24006:366;;;:::o;24378:::-;24520:3;24541:67;24605:2;24600:3;24541:67;:::i;:::-;24534:74;;24617:93;24706:3;24617:93;:::i;:::-;24735:2;24730:3;24726:12;24719:19;;24378:366;;;:::o;24750:::-;24892:3;24913:67;24977:2;24972:3;24913:67;:::i;:::-;24906:74;;24989:93;25078:3;24989:93;:::i;:::-;25107:2;25102:3;25098:12;25091:19;;24750:366;;;:::o;25122:108::-;25199:24;25217:5;25199:24;:::i;:::-;25194:3;25187:37;25122:108;;:::o;25236:118::-;25323:24;25341:5;25323:24;:::i;:::-;25318:3;25311:37;25236:118;;:::o;25360:429::-;25537:3;25559:92;25647:3;25638:6;25559:92;:::i;:::-;25552:99;;25668:95;25759:3;25750:6;25668:95;:::i;:::-;25661:102;;25780:3;25773:10;;25360:429;;;;;:::o;25795:222::-;25888:4;25926:2;25915:9;25911:18;25903:26;;25939:71;26007:1;25996:9;25992:17;25983:6;25939:71;:::i;:::-;25795:222;;;;:::o;26023:640::-;26218:4;26256:3;26245:9;26241:19;26233:27;;26270:71;26338:1;26327:9;26323:17;26314:6;26270:71;:::i;:::-;26351:72;26419:2;26408:9;26404:18;26395:6;26351:72;:::i;:::-;26433;26501:2;26490:9;26486:18;26477:6;26433:72;:::i;:::-;26552:9;26546:4;26542:20;26537:2;26526:9;26522:18;26515:48;26580:76;26651:4;26642:6;26580:76;:::i;:::-;26572:84;;26023:640;;;;;;;:::o;26669:373::-;26812:4;26850:2;26839:9;26835:18;26827:26;;26899:9;26893:4;26889:20;26885:1;26874:9;26870:17;26863:47;26927:108;27030:4;27021:6;26927:108;:::i;:::-;26919:116;;26669:373;;;;:::o;27048:210::-;27135:4;27173:2;27162:9;27158:18;27150:26;;27186:65;27248:1;27237:9;27233:17;27224:6;27186:65;:::i;:::-;27048:210;;;;:::o;27264:313::-;27377:4;27415:2;27404:9;27400:18;27392:26;;27464:9;27458:4;27454:20;27450:1;27439:9;27435:17;27428:47;27492:78;27565:4;27556:6;27492:78;:::i;:::-;27484:86;;27264:313;;;;:::o;27583:419::-;27749:4;27787:2;27776:9;27772:18;27764:26;;27836:9;27830:4;27826:20;27822:1;27811:9;27807:17;27800:47;27864:131;27990:4;27864:131;:::i;:::-;27856:139;;27583:419;;;:::o;28008:::-;28174:4;28212:2;28201:9;28197:18;28189:26;;28261:9;28255:4;28251:20;28247:1;28236:9;28232:17;28225:47;28289:131;28415:4;28289:131;:::i;:::-;28281:139;;28008:419;;;:::o;28433:::-;28599:4;28637:2;28626:9;28622:18;28614:26;;28686:9;28680:4;28676:20;28672:1;28661:9;28657:17;28650:47;28714:131;28840:4;28714:131;:::i;:::-;28706:139;;28433:419;;;:::o;28858:::-;29024:4;29062:2;29051:9;29047:18;29039:26;;29111:9;29105:4;29101:20;29097:1;29086:9;29082:17;29075:47;29139:131;29265:4;29139:131;:::i;:::-;29131:139;;28858:419;;;:::o;29283:::-;29449:4;29487:2;29476:9;29472:18;29464:26;;29536:9;29530:4;29526:20;29522:1;29511:9;29507:17;29500:47;29564:131;29690:4;29564:131;:::i;:::-;29556:139;;29283:419;;;:::o;29708:::-;29874:4;29912:2;29901:9;29897:18;29889:26;;29961:9;29955:4;29951:20;29947:1;29936:9;29932:17;29925:47;29989:131;30115:4;29989:131;:::i;:::-;29981:139;;29708:419;;;:::o;30133:::-;30299:4;30337:2;30326:9;30322:18;30314:26;;30386:9;30380:4;30376:20;30372:1;30361:9;30357:17;30350:47;30414:131;30540:4;30414:131;:::i;:::-;30406:139;;30133:419;;;:::o;30558:::-;30724:4;30762:2;30751:9;30747:18;30739:26;;30811:9;30805:4;30801:20;30797:1;30786:9;30782:17;30775:47;30839:131;30965:4;30839:131;:::i;:::-;30831:139;;30558:419;;;:::o;30983:::-;31149:4;31187:2;31176:9;31172:18;31164:26;;31236:9;31230:4;31226:20;31222:1;31211:9;31207:17;31200:47;31264:131;31390:4;31264:131;:::i;:::-;31256:139;;30983:419;;;:::o;31408:::-;31574:4;31612:2;31601:9;31597:18;31589:26;;31661:9;31655:4;31651:20;31647:1;31636:9;31632:17;31625:47;31689:131;31815:4;31689:131;:::i;:::-;31681:139;;31408:419;;;:::o;31833:::-;31999:4;32037:2;32026:9;32022:18;32014:26;;32086:9;32080:4;32076:20;32072:1;32061:9;32057:17;32050:47;32114:131;32240:4;32114:131;:::i;:::-;32106:139;;31833:419;;;:::o;32258:::-;32424:4;32462:2;32451:9;32447:18;32439:26;;32511:9;32505:4;32501:20;32497:1;32486:9;32482:17;32475:47;32539:131;32665:4;32539:131;:::i;:::-;32531:139;;32258:419;;;:::o;32683:::-;32849:4;32887:2;32876:9;32872:18;32864:26;;32936:9;32930:4;32926:20;32922:1;32911:9;32907:17;32900:47;32964:131;33090:4;32964:131;:::i;:::-;32956:139;;32683:419;;;:::o;33108:::-;33274:4;33312:2;33301:9;33297:18;33289:26;;33361:9;33355:4;33351:20;33347:1;33336:9;33332:17;33325:47;33389:131;33515:4;33389:131;:::i;:::-;33381:139;;33108:419;;;:::o;33533:::-;33699:4;33737:2;33726:9;33722:18;33714:26;;33786:9;33780:4;33776:20;33772:1;33761:9;33757:17;33750:47;33814:131;33940:4;33814:131;:::i;:::-;33806:139;;33533:419;;;:::o;33958:::-;34124:4;34162:2;34151:9;34147:18;34139:26;;34211:9;34205:4;34201:20;34197:1;34186:9;34182:17;34175:47;34239:131;34365:4;34239:131;:::i;:::-;34231:139;;33958:419;;;:::o;34383:::-;34549:4;34587:2;34576:9;34572:18;34564:26;;34636:9;34630:4;34626:20;34622:1;34611:9;34607:17;34600:47;34664:131;34790:4;34664:131;:::i;:::-;34656:139;;34383:419;;;:::o;34808:::-;34974:4;35012:2;35001:9;34997:18;34989:26;;35061:9;35055:4;35051:20;35047:1;35036:9;35032:17;35025:47;35089:131;35215:4;35089:131;:::i;:::-;35081:139;;34808:419;;;:::o;35233:::-;35399:4;35437:2;35426:9;35422:18;35414:26;;35486:9;35480:4;35476:20;35472:1;35461:9;35457:17;35450:47;35514:131;35640:4;35514:131;:::i;:::-;35506:139;;35233:419;;;:::o;35658:::-;35824:4;35862:2;35851:9;35847:18;35839:26;;35911:9;35905:4;35901:20;35897:1;35886:9;35882:17;35875:47;35939:131;36065:4;35939:131;:::i;:::-;35931:139;;35658:419;;;:::o;36083:::-;36249:4;36287:2;36276:9;36272:18;36264:26;;36336:9;36330:4;36326:20;36322:1;36311:9;36307:17;36300:47;36364:131;36490:4;36364:131;:::i;:::-;36356:139;;36083:419;;;:::o;36508:::-;36674:4;36712:2;36701:9;36697:18;36689:26;;36761:9;36755:4;36751:20;36747:1;36736:9;36732:17;36725:47;36789:131;36915:4;36789:131;:::i;:::-;36781:139;;36508:419;;;:::o;36933:::-;37099:4;37137:2;37126:9;37122:18;37114:26;;37186:9;37180:4;37176:20;37172:1;37161:9;37157:17;37150:47;37214:131;37340:4;37214:131;:::i;:::-;37206:139;;36933:419;;;:::o;37358:::-;37524:4;37562:2;37551:9;37547:18;37539:26;;37611:9;37605:4;37601:20;37597:1;37586:9;37582:17;37575:47;37639:131;37765:4;37639:131;:::i;:::-;37631:139;;37358:419;;;:::o;37783:::-;37949:4;37987:2;37976:9;37972:18;37964:26;;38036:9;38030:4;38026:20;38022:1;38011:9;38007:17;38000:47;38064:131;38190:4;38064:131;:::i;:::-;38056:139;;37783:419;;;:::o;38208:::-;38374:4;38412:2;38401:9;38397:18;38389:26;;38461:9;38455:4;38451:20;38447:1;38436:9;38432:17;38425:47;38489:131;38615:4;38489:131;:::i;:::-;38481:139;;38208:419;;;:::o;38633:::-;38799:4;38837:2;38826:9;38822:18;38814:26;;38886:9;38880:4;38876:20;38872:1;38861:9;38857:17;38850:47;38914:131;39040:4;38914:131;:::i;:::-;38906:139;;38633:419;;;:::o;39058:::-;39224:4;39262:2;39251:9;39247:18;39239:26;;39311:9;39305:4;39301:20;39297:1;39286:9;39282:17;39275:47;39339:131;39465:4;39339:131;:::i;:::-;39331:139;;39058:419;;;:::o;39483:::-;39649:4;39687:2;39676:9;39672:18;39664:26;;39736:9;39730:4;39726:20;39722:1;39711:9;39707:17;39700:47;39764:131;39890:4;39764:131;:::i;:::-;39756:139;;39483:419;;;:::o;39908:::-;40074:4;40112:2;40101:9;40097:18;40089:26;;40161:9;40155:4;40151:20;40147:1;40136:9;40132:17;40125:47;40189:131;40315:4;40189:131;:::i;:::-;40181:139;;39908:419;;;:::o;40333:::-;40499:4;40537:2;40526:9;40522:18;40514:26;;40586:9;40580:4;40576:20;40572:1;40561:9;40557:17;40550:47;40614:131;40740:4;40614:131;:::i;:::-;40606:139;;40333:419;;;:::o;40758:::-;40924:4;40962:2;40951:9;40947:18;40939:26;;41011:9;41005:4;41001:20;40997:1;40986:9;40982:17;40975:47;41039:131;41165:4;41039:131;:::i;:::-;41031:139;;40758:419;;;:::o;41183:::-;41349:4;41387:2;41376:9;41372:18;41364:26;;41436:9;41430:4;41426:20;41422:1;41411:9;41407:17;41400:47;41464:131;41590:4;41464:131;:::i;:::-;41456:139;;41183:419;;;:::o;41608:222::-;41701:4;41739:2;41728:9;41724:18;41716:26;;41752:71;41820:1;41809:9;41805:17;41796:6;41752:71;:::i;:::-;41608:222;;;;:::o;41836:129::-;41870:6;41897:20;;:::i;:::-;41887:30;;41926:33;41954:4;41946:6;41926:33;:::i;:::-;41836:129;;;:::o;41971:75::-;42004:6;42037:2;42031:9;42021:19;;41971:75;:::o;42052:307::-;42113:4;42203:18;42195:6;42192:30;42189:56;;;42225:18;;:::i;:::-;42189:56;42263:29;42285:6;42263:29;:::i;:::-;42255:37;;42347:4;42341;42337:15;42329:23;;42052:307;;;:::o;42365:132::-;42432:4;42455:3;42447:11;;42485:4;42480:3;42476:14;42468:22;;42365:132;;;:::o;42503:141::-;42552:4;42575:3;42567:11;;42598:3;42595:1;42588:14;42632:4;42629:1;42619:18;42611:26;;42503:141;;;:::o;42650:114::-;42717:6;42751:5;42745:12;42735:22;;42650:114;;;:::o;42770:98::-;42821:6;42855:5;42849:12;42839:22;;42770:98;;;:::o;42874:99::-;42926:6;42960:5;42954:12;42944:22;;42874:99;;;:::o;42979:113::-;43049:4;43081;43076:3;43072:14;43064:22;;42979:113;;;:::o;43098:184::-;43197:11;43231:6;43226:3;43219:19;43271:4;43266:3;43262:14;43247:29;;43098:184;;;;:::o;43288:168::-;43371:11;43405:6;43400:3;43393:19;43445:4;43440:3;43436:14;43421:29;;43288:168;;;;:::o;43462:169::-;43546:11;43580:6;43575:3;43568:19;43620:4;43615:3;43611:14;43596:29;;43462:169;;;;:::o;43637:148::-;43739:11;43776:3;43761:18;;43637:148;;;;:::o;43791:305::-;43831:3;43850:20;43868:1;43850:20;:::i;:::-;43845:25;;43884:20;43902:1;43884:20;:::i;:::-;43879:25;;44038:1;43970:66;43966:74;43963:1;43960:81;43957:107;;;44044:18;;:::i;:::-;43957:107;44088:1;44085;44081:9;44074:16;;43791:305;;;;:::o;44102:185::-;44142:1;44159:20;44177:1;44159:20;:::i;:::-;44154:25;;44193:20;44211:1;44193:20;:::i;:::-;44188:25;;44232:1;44222:35;;44237:18;;:::i;:::-;44222:35;44279:1;44276;44272:9;44267:14;;44102:185;;;;:::o;44293:348::-;44333:7;44356:20;44374:1;44356:20;:::i;:::-;44351:25;;44390:20;44408:1;44390:20;:::i;:::-;44385:25;;44578:1;44510:66;44506:74;44503:1;44500:81;44495:1;44488:9;44481:17;44477:105;44474:131;;;44585:18;;:::i;:::-;44474:131;44633:1;44630;44626:9;44615:20;;44293:348;;;;:::o;44647:191::-;44687:4;44707:20;44725:1;44707:20;:::i;:::-;44702:25;;44741:20;44759:1;44741:20;:::i;:::-;44736:25;;44780:1;44777;44774:8;44771:34;;;44785:18;;:::i;:::-;44771:34;44830:1;44827;44823:9;44815:17;;44647:191;;;;:::o;44844:96::-;44881:7;44910:24;44928:5;44910:24;:::i;:::-;44899:35;;44844:96;;;:::o;44946:90::-;44980:7;45023:5;45016:13;45009:21;44998:32;;44946:90;;;:::o;45042:149::-;45078:7;45118:66;45111:5;45107:78;45096:89;;45042:149;;;:::o;45197:126::-;45234:7;45274:42;45267:5;45263:54;45252:65;;45197:126;;;:::o;45329:77::-;45366:7;45395:5;45384:16;;45329:77;;;:::o;45412:154::-;45496:6;45491:3;45486;45473:30;45558:1;45549:6;45544:3;45540:16;45533:27;45412:154;;;:::o;45572:307::-;45640:1;45650:113;45664:6;45661:1;45658:13;45650:113;;;45749:1;45744:3;45740:11;45734:18;45730:1;45725:3;45721:11;45714:39;45686:2;45683:1;45679:10;45674:15;;45650:113;;;45781:6;45778:1;45775:13;45772:101;;;45861:1;45852:6;45847:3;45843:16;45836:27;45772:101;45621:258;45572:307;;;:::o;45885:320::-;45929:6;45966:1;45960:4;45956:12;45946:22;;46013:1;46007:4;46003:12;46034:18;46024:81;;46090:4;46082:6;46078:17;46068:27;;46024:81;46152:2;46144:6;46141:14;46121:18;46118:38;46115:84;;;46171:18;;:::i;:::-;46115:84;45936:269;45885:320;;;:::o;46211:281::-;46294:27;46316:4;46294:27;:::i;:::-;46286:6;46282:40;46424:6;46412:10;46409:22;46388:18;46376:10;46373:34;46370:62;46367:88;;;46435:18;;:::i;:::-;46367:88;46475:10;46471:2;46464:22;46254:238;46211:281;;:::o;46498:233::-;46537:3;46560:24;46578:5;46560:24;:::i;:::-;46551:33;;46606:66;46599:5;46596:77;46593:103;;;46676:18;;:::i;:::-;46593:103;46723:1;46716:5;46712:13;46705:20;;46498:233;;;:::o;46737:176::-;46769:1;46786:20;46804:1;46786:20;:::i;:::-;46781:25;;46820:20;46838:1;46820:20;:::i;:::-;46815:25;;46859:1;46849:35;;46864:18;;:::i;:::-;46849:35;46905:1;46902;46898:9;46893:14;;46737:176;;;;:::o;46919:180::-;46967:77;46964:1;46957:88;47064:4;47061:1;47054:15;47088:4;47085:1;47078:15;47105:180;47153:77;47150:1;47143:88;47250:4;47247:1;47240:15;47274:4;47271:1;47264:15;47291:180;47339:77;47336:1;47329:88;47436:4;47433:1;47426:15;47460:4;47457:1;47450:15;47477:180;47525:77;47522:1;47515:88;47622:4;47619:1;47612:15;47646:4;47643:1;47636:15;47663:180;47711:77;47708:1;47701:88;47808:4;47805:1;47798:15;47832:4;47829:1;47822:15;47849:180;47897:77;47894:1;47887:88;47994:4;47991:1;47984:15;48018:4;48015:1;48008:15;48035:117;48144:1;48141;48134:12;48158:117;48267:1;48264;48257:12;48281:117;48390:1;48387;48380:12;48404:117;48513:1;48510;48503:12;48527:117;48636:1;48633;48626:12;48650:117;48759:1;48756;48749:12;48773:102;48814:6;48865:2;48861:7;48856:2;48849:5;48845:14;48841:28;48831:38;;48773:102;;;:::o;48881:182::-;49021:34;49017:1;49009:6;49005:14;48998:58;48881:182;:::o;49069:177::-;49209:29;49205:1;49197:6;49193:14;49186:53;49069:177;:::o;49252:230::-;49392:34;49388:1;49380:6;49376:14;49369:58;49461:13;49456:2;49448:6;49444:15;49437:38;49252:230;:::o;49488:237::-;49628:34;49624:1;49616:6;49612:14;49605:58;49697:20;49692:2;49684:6;49680:15;49673:45;49488:237;:::o;49731:225::-;49871:34;49867:1;49859:6;49855:14;49848:58;49940:8;49935:2;49927:6;49923:15;49916:33;49731:225;:::o;49962:178::-;50102:30;50098:1;50090:6;50086:14;50079:54;49962:178;:::o;50146:173::-;50286:25;50282:1;50274:6;50270:14;50263:49;50146:173;:::o;50325:223::-;50465:34;50461:1;50453:6;50449:14;50442:58;50534:6;50529:2;50521:6;50517:15;50510:31;50325:223;:::o;50554:175::-;50694:27;50690:1;50682:6;50678:14;50671:51;50554:175;:::o;50735:170::-;50875:22;50871:1;50863:6;50859:14;50852:46;50735:170;:::o;50911:178::-;51051:30;51047:1;51039:6;51035:14;51028:54;50911:178;:::o;51095:231::-;51235:34;51231:1;51223:6;51219:14;51212:58;51304:14;51299:2;51291:6;51287:15;51280:39;51095:231;:::o;51332:179::-;51472:31;51468:1;51460:6;51456:14;51449:55;51332:179;:::o;51517:243::-;51657:34;51653:1;51645:6;51641:14;51634:58;51726:26;51721:2;51713:6;51709:15;51702:51;51517:243;:::o;51766:229::-;51906:34;51902:1;51894:6;51890:14;51883:58;51975:12;51970:2;51962:6;51958:15;51951:37;51766:229;:::o;52001:228::-;52141:34;52137:1;52129:6;52125:14;52118:58;52210:11;52205:2;52197:6;52193:15;52186:36;52001:228;:::o;52235:174::-;52375:26;52371:1;52363:6;52359:14;52352:50;52235:174;:::o;52415:181::-;52555:33;52551:1;52543:6;52539:14;52532:57;52415:181;:::o;52602:182::-;52742:34;52738:1;52730:6;52726:14;52719:58;52602:182;:::o;52790:231::-;52930:34;52926:1;52918:6;52914:14;52907:58;52999:14;52994:2;52986:6;52982:15;52975:39;52790:231;:::o;53027:182::-;53167:34;53163:1;53155:6;53151:14;53144:58;53027:182;:::o;53215:220::-;53355:34;53351:1;53343:6;53339:14;53332:58;53424:3;53419:2;53411:6;53407:15;53400:28;53215:220;:::o;53441:228::-;53581:34;53577:1;53569:6;53565:14;53558:58;53650:11;53645:2;53637:6;53633:15;53626:36;53441:228;:::o;53675:220::-;53815:34;53811:1;53803:6;53799:14;53792:58;53884:3;53879:2;53871:6;53867:15;53860:28;53675:220;:::o;53901:236::-;54041:34;54037:1;54029:6;54025:14;54018:58;54110:19;54105:2;54097:6;54093:15;54086:44;53901:236;:::o;54143:231::-;54283:34;54279:1;54271:6;54267:14;54260:58;54352:14;54347:2;54339:6;54335:15;54328:39;54143:231;:::o;54380:171::-;54520:23;54516:1;54508:6;54504:14;54497:47;54380:171;:::o;54557:170::-;54697:22;54693:1;54685:6;54681:14;54674:46;54557:170;:::o;54733:169::-;54873:21;54869:1;54861:6;54857:14;54850:45;54733:169;:::o;54908:224::-;55048:34;55044:1;55036:6;55032:14;55025:58;55117:7;55112:2;55104:6;55100:15;55093:32;54908:224;:::o;55138:170::-;55278:22;55274:1;55266:6;55262:14;55255:46;55138:170;:::o;55314:174::-;55454:26;55450:1;55442:6;55438:14;55431:50;55314:174;:::o;55494:175::-;55634:27;55630:1;55622:6;55618:14;55611:51;55494:175;:::o;55675:122::-;55748:24;55766:5;55748:24;:::i;:::-;55741:5;55738:35;55728:63;;55787:1;55784;55777:12;55728:63;55675:122;:::o;55803:116::-;55873:21;55888:5;55873:21;:::i;:::-;55866:5;55863:32;55853:60;;55909:1;55906;55899:12;55853:60;55803:116;:::o;55925:120::-;55997:23;56014:5;55997:23;:::i;:::-;55990:5;55987:34;55977:62;;56035:1;56032;56025:12;55977:62;55925:120;:::o;56051:122::-;56124:24;56142:5;56124:24;:::i;:::-;56117:5;56114:35;56104:63;;56163:1;56160;56153:12;56104:63;56051:122;:::o

Swarm Source

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