ETH Price: $2,422.16 (+2.96%)

Token

INTELLIG3NT PANDA (IP)
 

Overview

Max Total Supply

999 IP

Holders

985

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 IP
0xdfacd091cf99e7b5fae46bb865f4a8f93c69cbda
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:
IP

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 2022-09-02
*/

// SPDX-License-Identifier: MIT


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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


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

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

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


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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;

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

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

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


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

pragma solidity >=0.7.0 <0.9.0;


contract IP is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = 0.00002 ether;
  uint256 public maxSupply = 999;
  uint256 public publicSupply = 999;
  uint256 public maxMintAmount = 5;
  uint256 public mintLimitPerWallet = 1;
  bool public paused = false;
  bool public revealed = false;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721(_name, _symbol) {
    baseURI = _initBaseURI;
    setNotRevealedURI(_initNotRevealedUri);
  }

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

  

  // public
  function mint(uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();
    require(!paused,"contract is paused");
    require(_mintAmount > 0,"you can't mint 0 items lol");
    require(_mintAmount <= maxMintAmount,"exceeded max mint amount");
    require(supply + _mintAmount <= publicSupply,"exceeded public supply");
    require(msg.value >= cost * _mintAmount,"not enough eth");
    
    if(mintLimitPerWallet > 0){
        require(balanceOf(msg.sender) + _mintAmount <= mintLimitPerWallet,"exceeded per wallet limit");
    }

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

   function mintTo(address _receiver,uint256 _mintAmount) external onlyOwner {

    uint256 supply = totalSupply();
    require(!paused,"contract is paused");
    require(_mintAmount > 0,"you can't mint 0 items lol");
    require(supply + _mintAmount <= maxSupply,"exceeded max supply");

    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(_receiver, supply + i);
    }
    
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }


  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

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


  function setCost(uint256 _newCost) external onlyOwner {
    cost = _newCost;
  }

  function setLimitPErWallet(uint256 _value) external onlyOwner {
    mintLimitPerWallet = _value;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) external onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

  function setBaseURI(string memory _newBaseURI) external onlyOwner {
    baseURI = _newBaseURI;
  }

  function setBaseExtension(string memory _newBaseExtension) external onlyOwner {
    baseExtension = _newBaseExtension;
  }

  function pause(bool _state) external onlyOwner {
    paused = _state;
  }
   function reveal() public onlyOwner {
      revealed = true;
  }
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }
 
  function withdraw() public payable onlyOwner {

    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);

  }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintLimitPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setLimitPErWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200005192919062000308565b506512309ce54000600e556103e7600f556103e7601055600560115560016012556000601360006101000a81548160ff0219169083151502179055506000601360016101000a81548160ff021916908315150217905550348015620000b557600080fd5b506040516200525e3803806200525e8339818101604052810190620000db919062000436565b83838160009080519060200190620000f592919062000308565b5080600190805190602001906200010e92919062000308565b50505062000131620001256200016560201b60201c565b6200016d60201b60201c565b81600b90805190602001906200014992919062000308565b506200015b816200023360201b60201c565b505050506200072b565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002436200016560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000269620002de60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002c2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b9906200054b565b60405180910390fd5b80600d9080519060200190620002da92919062000308565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003169062000613565b90600052602060002090601f0160209004810192826200033a576000855562000386565b82601f106200035557805160ff191683800117855562000386565b8280016001018555821562000386579182015b828111156200038557825182559160200191906001019062000368565b5b50905062000395919062000399565b5090565b5b80821115620003b45760008160009055506001016200039a565b5090565b6000620003cf620003c98462000596565b6200056d565b905082815260208101848484011115620003ee57620003ed620006e2565b5b620003fb848285620005dd565b509392505050565b600082601f8301126200041b576200041a620006dd565b5b81516200042d848260208601620003b8565b91505092915050565b60008060008060808587031215620004535762000452620006ec565b5b600085015167ffffffffffffffff811115620004745762000473620006e7565b5b620004828782880162000403565b945050602085015167ffffffffffffffff811115620004a657620004a5620006e7565b5b620004b48782880162000403565b935050604085015167ffffffffffffffff811115620004d857620004d7620006e7565b5b620004e68782880162000403565b925050606085015167ffffffffffffffff8111156200050a5762000509620006e7565b5b620005188782880162000403565b91505092959194509250565b600062000533602083620005cc565b9150620005408262000702565b602082019050919050565b60006020820190508181036000830152620005668162000524565b9050919050565b6000620005796200058c565b905062000587828262000649565b919050565b6000604051905090565b600067ffffffffffffffff821115620005b457620005b3620006ae565b5b620005bf82620006f1565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620005fd578082015181840152602081019050620005e0565b838111156200060d576000848401525b50505050565b600060028204905060018216806200062c57607f821691505b602082108114156200064357620006426200067f565b5b50919050565b6200065482620006f1565b810181811067ffffffffffffffff82111715620006765762000675620006ae565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614b23806200073b6000396000f3fe60806040526004361061023b5760003560e01c80635e84d7231161012e578063b88d4fde116100ab578063da3ef23f1161006f578063da3ef23f14610843578063e0f9b4791461086c578063e985e9c514610897578063f2c4ce1e146108d4578063f2fde38b146108fd5761023b565b8063b88d4fde1461075e578063c221831214610787578063c6682862146107b0578063c87b56dd146107db578063d5abeb01146108185761023b565b80638da5cb5b116100f25780638da5cb5b146106ac57806395d89b41146106d7578063a0712d6814610702578063a22cb4651461071e578063a475b5dd146107475761023b565b80635e84d723146105c75780636352211e146105f257806370a082311461062f578063715018a61461066c5780637f00c7a6146106835761023b565b80632f745c59116101bc57806344a0d68a1161018057806344a0d68a146104e25780634f6ccce71461050b578063518302271461054857806355f804b3146105735780635c975abb1461059c5761023b565b80632f745c591461040c5780633ccfd60b1461044957806342842e0e14610453578063438b63001461047c578063449a52f8146104b95761023b565b8063095ea7b311610203578063095ea7b31461033957806313faede61461036257806318160ddd1461038d578063239c70ae146103b857806323b872dd146103e35761023b565b806301ffc9a71461024057806302329a291461027d57806306fdde03146102a6578063081812fc146102d1578063081c8c441461030e575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906134f6565b610926565b6040516102749190613bf7565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f91906134c9565b6109a0565b005b3480156102b257600080fd5b506102bb610a39565b6040516102c89190613c12565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f39190613599565b610acb565b6040516103059190613b6e565b60405180910390f35b34801561031a57600080fd5b50610323610b50565b6040516103309190613c12565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190613489565b610bde565b005b34801561036e57600080fd5b50610377610cf6565b6040516103849190613f54565b60405180910390f35b34801561039957600080fd5b506103a2610cfc565b6040516103af9190613f54565b60405180910390f35b3480156103c457600080fd5b506103cd610d09565b6040516103da9190613f54565b60405180910390f35b3480156103ef57600080fd5b5061040a60048036038101906104059190613373565b610d0f565b005b34801561041857600080fd5b50610433600480360381019061042e9190613489565b610d6f565b6040516104409190613f54565b60405180910390f35b610451610e14565b005b34801561045f57600080fd5b5061047a60048036038101906104759190613373565b610f10565b005b34801561048857600080fd5b506104a3600480360381019061049e9190613306565b610f30565b6040516104b09190613bd5565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db9190613489565b610fde565b005b3480156104ee57600080fd5b5061050960048036038101906105049190613599565b611185565b005b34801561051757600080fd5b50610532600480360381019061052d9190613599565b61120b565b60405161053f9190613f54565b60405180910390f35b34801561055457600080fd5b5061055d61127c565b60405161056a9190613bf7565b60405180910390f35b34801561057f57600080fd5b5061059a60048036038101906105959190613550565b61128f565b005b3480156105a857600080fd5b506105b1611325565b6040516105be9190613bf7565b60405180910390f35b3480156105d357600080fd5b506105dc611338565b6040516105e99190613f54565b60405180910390f35b3480156105fe57600080fd5b5061061960048036038101906106149190613599565b61133e565b6040516106269190613b6e565b60405180910390f35b34801561063b57600080fd5b5061065660048036038101906106519190613306565b6113f0565b6040516106639190613f54565b60405180910390f35b34801561067857600080fd5b506106816114a8565b005b34801561068f57600080fd5b506106aa60048036038101906106a59190613599565b611530565b005b3480156106b857600080fd5b506106c16115b6565b6040516106ce9190613b6e565b60405180910390f35b3480156106e357600080fd5b506106ec6115e0565b6040516106f99190613c12565b60405180910390f35b61071c60048036038101906107179190613599565b611672565b005b34801561072a57600080fd5b5061074560048036038101906107409190613449565b611895565b005b34801561075357600080fd5b5061075c611a16565b005b34801561076a57600080fd5b50610785600480360381019061078091906133c6565b611aaf565b005b34801561079357600080fd5b506107ae60048036038101906107a99190613599565b611b11565b005b3480156107bc57600080fd5b506107c5611b97565b6040516107d29190613c12565b60405180910390f35b3480156107e757600080fd5b5061080260048036038101906107fd9190613599565b611c25565b60405161080f9190613c12565b60405180910390f35b34801561082457600080fd5b5061082d611d7e565b60405161083a9190613f54565b60405180910390f35b34801561084f57600080fd5b5061086a60048036038101906108659190613550565b611d84565b005b34801561087857600080fd5b50610881611e1a565b60405161088e9190613f54565b60405180910390f35b3480156108a357600080fd5b506108be60048036038101906108b99190613333565b611e20565b6040516108cb9190613bf7565b60405180910390f35b3480156108e057600080fd5b506108fb60048036038101906108f69190613550565b611eb4565b005b34801561090957600080fd5b50610924600480360381019061091f9190613306565b611f4a565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610999575061099882612042565b5b9050919050565b6109a8612124565b73ffffffffffffffffffffffffffffffffffffffff166109c66115b6565b73ffffffffffffffffffffffffffffffffffffffff1614610a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1390613e74565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b606060008054610a489061425d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a749061425d565b8015610ac15780601f10610a9657610100808354040283529160200191610ac1565b820191906000526020600020905b815481529060010190602001808311610aa457829003601f168201915b5050505050905090565b6000610ad68261212c565b610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c90613e54565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610b5d9061425d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b899061425d565b8015610bd65780601f10610bab57610100808354040283529160200191610bd6565b820191906000526020600020905b815481529060010190602001808311610bb957829003601f168201915b505050505081565b6000610be98261133e565b90508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5190613ed4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c79612124565b73ffffffffffffffffffffffffffffffffffffffff161480610ca85750610ca781610ca2612124565b611e20565b5b610ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cde90613dd4565b60405180910390fd5b610cf18383612198565b505050565b600e5481565b6000600880549050905090565b60115481565b610d20610d1a612124565b82612251565b610d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5690613ef4565b60405180910390fd5b610d6a83838361232f565b505050565b6000610d7a836113f0565b8210610dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db290613c34565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610e1c612124565b73ffffffffffffffffffffffffffffffffffffffff16610e3a6115b6565b73ffffffffffffffffffffffffffffffffffffffff1614610e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8790613e74565b60405180910390fd5b6000610e9a6115b6565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ebd90613b59565b60006040518083038185875af1925050503d8060008114610efa576040519150601f19603f3d011682016040523d82523d6000602084013e610eff565b606091505b5050905080610f0d57600080fd5b50565b610f2b83838360405180602001604052806000815250611aaf565b505050565b60606000610f3d836113f0565b905060008167ffffffffffffffff811115610f5b57610f5a614425565b5b604051908082528060200260200182016040528015610f895781602001602082028036833780820191505090505b50905060005b82811015610fd357610fa18582610d6f565b828281518110610fb457610fb36143f6565b5b6020026020010181815250508080610fcb906142c0565b915050610f8f565b508092505050919050565b610fe6612124565b73ffffffffffffffffffffffffffffffffffffffff166110046115b6565b73ffffffffffffffffffffffffffffffffffffffff161461105a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105190613e74565b60405180910390fd5b6000611064610cfc565b9050601360009054906101000a900460ff16156110b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ad90613d54565b60405180910390fd5b600082116110f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f090613c94565b60405180910390fd5b600f5482826111089190614092565b1115611149576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114090613cb4565b60405180910390fd5b6000600190505b82811161117f5761116c8482846111679190614092565b61258b565b8080611177906142c0565b915050611150565b50505050565b61118d612124565b73ffffffffffffffffffffffffffffffffffffffff166111ab6115b6565b73ffffffffffffffffffffffffffffffffffffffff1614611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f890613e74565b60405180910390fd5b80600e8190555050565b6000611215610cfc565b8210611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d90613f14565b60405180910390fd5b6008828154811061126a576112696143f6565b5b90600052602060002001549050919050565b601360019054906101000a900460ff1681565b611297612124565b73ffffffffffffffffffffffffffffffffffffffff166112b56115b6565b73ffffffffffffffffffffffffffffffffffffffff161461130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290613e74565b60405180910390fd5b80600b908051906020019061132192919061311a565b5050565b601360009054906101000a900460ff1681565b60105481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113de90613e14565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145890613df4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114b0612124565b73ffffffffffffffffffffffffffffffffffffffff166114ce6115b6565b73ffffffffffffffffffffffffffffffffffffffff1614611524576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151b90613e74565b60405180910390fd5b61152e60006125a9565b565b611538612124565b73ffffffffffffffffffffffffffffffffffffffff166115566115b6565b73ffffffffffffffffffffffffffffffffffffffff16146115ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a390613e74565b60405180910390fd5b8060118190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546115ef9061425d565b80601f016020809104026020016040519081016040528092919081815260200182805461161b9061425d565b80156116685780601f1061163d57610100808354040283529160200191611668565b820191906000526020600020905b81548152906001019060200180831161164b57829003601f168201915b5050505050905090565b600061167c610cfc565b9050601360009054906101000a900460ff16156116ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c590613d54565b60405180910390fd5b60008211611711576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170890613c94565b60405180910390fd5b601154821115611756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174d90613d14565b60405180910390fd5b60105482826117659190614092565b11156117a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179d90613d34565b60405180910390fd5b81600e546117b49190614119565b3410156117f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ed90613f34565b60405180910390fd5b6000601254111561185a576012548261180e336113f0565b6118189190614092565b1115611859576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185090613cf4565b60405180910390fd5b5b6000600190505b8281116118905761187d3382846118789190614092565b61258b565b8080611888906142c0565b915050611861565b505050565b61189d612124565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561190b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190290613d94565b60405180910390fd5b8060056000611918612124565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119c5612124565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a0a9190613bf7565b60405180910390a35050565b611a1e612124565b73ffffffffffffffffffffffffffffffffffffffff16611a3c6115b6565b73ffffffffffffffffffffffffffffffffffffffff1614611a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8990613e74565b60405180910390fd5b6001601360016101000a81548160ff021916908315150217905550565b611ac0611aba612124565b83612251565b611aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af690613ef4565b60405180910390fd5b611b0b8484848461266f565b50505050565b611b19612124565b73ffffffffffffffffffffffffffffffffffffffff16611b376115b6565b73ffffffffffffffffffffffffffffffffffffffff1614611b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8490613e74565b60405180910390fd5b8060128190555050565b600c8054611ba49061425d565b80601f0160208091040260200160405190810160405280929190818152602001828054611bd09061425d565b8015611c1d5780601f10611bf257610100808354040283529160200191611c1d565b820191906000526020600020905b815481529060010190602001808311611c0057829003601f168201915b505050505081565b6060611c308261212c565b611c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6690613eb4565b60405180910390fd5b60001515601360019054906101000a900460ff1615151415611d1d57600d8054611c989061425d565b80601f0160208091040260200160405190810160405280929190818152602001828054611cc49061425d565b8015611d115780601f10611ce657610100808354040283529160200191611d11565b820191906000526020600020905b815481529060010190602001808311611cf457829003601f168201915b50505050509050611d79565b6000611d276126cb565b90506000815111611d475760405180602001604052806000815250611d75565b80611d518461275d565b600c604051602001611d6593929190613b28565b6040516020818303038152906040525b9150505b919050565b600f5481565b611d8c612124565b73ffffffffffffffffffffffffffffffffffffffff16611daa6115b6565b73ffffffffffffffffffffffffffffffffffffffff1614611e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df790613e74565b60405180910390fd5b80600c9080519060200190611e1692919061311a565b5050565b60125481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ebc612124565b73ffffffffffffffffffffffffffffffffffffffff16611eda6115b6565b73ffffffffffffffffffffffffffffffffffffffff1614611f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2790613e74565b60405180910390fd5b80600d9080519060200190611f4692919061311a565b5050565b611f52612124565b73ffffffffffffffffffffffffffffffffffffffff16611f706115b6565b73ffffffffffffffffffffffffffffffffffffffff1614611fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbd90613e74565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202d90613c74565b60405180910390fd5b61203f816125a9565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061210d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061211d575061211c826128be565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661220b8361133e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061225c8261212c565b61229b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229290613db4565b60405180910390fd5b60006122a68361133e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061231557508373ffffffffffffffffffffffffffffffffffffffff166122fd84610acb565b73ffffffffffffffffffffffffffffffffffffffff16145b8061232657506123258185611e20565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661234f8261133e565b73ffffffffffffffffffffffffffffffffffffffff16146123a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239c90613e94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240c90613d74565b60405180910390fd5b612420838383612928565b61242b600082612198565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461247b9190614173565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124d29190614092565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6125a5828260405180602001604052806000815250612a3c565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61267a84848461232f565b61268684848484612a97565b6126c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bc90613c54565b60405180910390fd5b50505050565b6060600b80546126da9061425d565b80601f01602080910402602001604051908101604052809291908181526020018280546127069061425d565b80156127535780601f1061272857610100808354040283529160200191612753565b820191906000526020600020905b81548152906001019060200180831161273657829003601f168201915b5050505050905090565b606060008214156127a5576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128b9565b600082905060005b600082146127d75780806127c0906142c0565b915050600a826127d091906140e8565b91506127ad565b60008167ffffffffffffffff8111156127f3576127f2614425565b5b6040519080825280601f01601f1916602001820160405280156128255781602001600182028036833780820191505090505b5090505b600085146128b25760018261283e9190614173565b9150600a8561284d9190614309565b60306128599190614092565b60f81b81838151811061286f5761286e6143f6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128ab91906140e8565b9450612829565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612933838383612c2e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129765761297181612c33565b6129b5565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146129b4576129b38382612c7c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129f8576129f381612de9565b612a37565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612a3657612a358282612eba565b5b5b505050565b612a468383612f39565b612a536000848484612a97565b612a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8990613c54565b60405180910390fd5b505050565b6000612ab88473ffffffffffffffffffffffffffffffffffffffff16613107565b15612c21578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ae1612124565b8786866040518563ffffffff1660e01b8152600401612b039493929190613b89565b602060405180830381600087803b158015612b1d57600080fd5b505af1925050508015612b4e57506040513d601f19601f82011682018060405250810190612b4b9190613523565b60015b612bd1573d8060008114612b7e576040519150601f19603f3d011682016040523d82523d6000602084013e612b83565b606091505b50600081511415612bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc090613c54565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c26565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612c89846113f0565b612c939190614173565b9050600060076000848152602001908152602001600020549050818114612d78576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612dfd9190614173565b9050600060096000848152602001908152602001600020549050600060088381548110612e2d57612e2c6143f6565b5b906000526020600020015490508060088381548110612e4f57612e4e6143f6565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612e9e57612e9d6143c7565b5b6001900381819060005260206000200160009055905550505050565b6000612ec5836113f0565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa090613e34565b60405180910390fd5b612fb28161212c565b15612ff2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe990613cd4565b60405180910390fd5b612ffe60008383612928565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461304e9190614092565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546131269061425d565b90600052602060002090601f016020900481019282613148576000855561318f565b82601f1061316157805160ff191683800117855561318f565b8280016001018555821561318f579182015b8281111561318e578251825591602001919060010190613173565b5b50905061319c91906131a0565b5090565b5b808211156131b95760008160009055506001016131a1565b5090565b60006131d06131cb84613f94565b613f6f565b9050828152602081018484840111156131ec576131eb614459565b5b6131f784828561421b565b509392505050565b600061321261320d84613fc5565b613f6f565b90508281526020810184848401111561322e5761322d614459565b5b61323984828561421b565b509392505050565b60008135905061325081614a91565b92915050565b60008135905061326581614aa8565b92915050565b60008135905061327a81614abf565b92915050565b60008151905061328f81614abf565b92915050565b600082601f8301126132aa576132a9614454565b5b81356132ba8482602086016131bd565b91505092915050565b600082601f8301126132d8576132d7614454565b5b81356132e88482602086016131ff565b91505092915050565b60008135905061330081614ad6565b92915050565b60006020828403121561331c5761331b614463565b5b600061332a84828501613241565b91505092915050565b6000806040838503121561334a57613349614463565b5b600061335885828601613241565b925050602061336985828601613241565b9150509250929050565b60008060006060848603121561338c5761338b614463565b5b600061339a86828701613241565b93505060206133ab86828701613241565b92505060406133bc868287016132f1565b9150509250925092565b600080600080608085870312156133e0576133df614463565b5b60006133ee87828801613241565b94505060206133ff87828801613241565b9350506040613410878288016132f1565b925050606085013567ffffffffffffffff8111156134315761343061445e565b5b61343d87828801613295565b91505092959194509250565b600080604083850312156134605761345f614463565b5b600061346e85828601613241565b925050602061347f85828601613256565b9150509250929050565b600080604083850312156134a05761349f614463565b5b60006134ae85828601613241565b92505060206134bf858286016132f1565b9150509250929050565b6000602082840312156134df576134de614463565b5b60006134ed84828501613256565b91505092915050565b60006020828403121561350c5761350b614463565b5b600061351a8482850161326b565b91505092915050565b60006020828403121561353957613538614463565b5b600061354784828501613280565b91505092915050565b60006020828403121561356657613565614463565b5b600082013567ffffffffffffffff8111156135845761358361445e565b5b613590848285016132c3565b91505092915050565b6000602082840312156135af576135ae614463565b5b60006135bd848285016132f1565b91505092915050565b60006135d28383613b0a565b60208301905092915050565b6135e7816141a7565b82525050565b60006135f88261401b565b6136028185614049565b935061360d83613ff6565b8060005b8381101561363e57815161362588826135c6565b97506136308361403c565b925050600181019050613611565b5085935050505092915050565b613654816141b9565b82525050565b600061366582614026565b61366f818561405a565b935061367f81856020860161422a565b61368881614468565b840191505092915050565b600061369e82614031565b6136a88185614076565b93506136b881856020860161422a565b6136c181614468565b840191505092915050565b60006136d782614031565b6136e18185614087565b93506136f181856020860161422a565b80840191505092915050565b6000815461370a8161425d565b6137148186614087565b9450600182166000811461372f576001811461374057613773565b60ff19831686528186019350613773565b61374985614006565b60005b8381101561376b5781548189015260018201915060208101905061374c565b838801955050505b50505092915050565b6000613789602b83614076565b915061379482614479565b604082019050919050565b60006137ac603283614076565b91506137b7826144c8565b604082019050919050565b60006137cf602683614076565b91506137da82614517565b604082019050919050565b60006137f2601a83614076565b91506137fd82614566565b602082019050919050565b6000613815601383614076565b91506138208261458f565b602082019050919050565b6000613838601c83614076565b9150613843826145b8565b602082019050919050565b600061385b601983614076565b9150613866826145e1565b602082019050919050565b600061387e601883614076565b91506138898261460a565b602082019050919050565b60006138a1601683614076565b91506138ac82614633565b602082019050919050565b60006138c4601283614076565b91506138cf8261465c565b602082019050919050565b60006138e7602483614076565b91506138f282614685565b604082019050919050565b600061390a601983614076565b9150613915826146d4565b602082019050919050565b600061392d602c83614076565b9150613938826146fd565b604082019050919050565b6000613950603883614076565b915061395b8261474c565b604082019050919050565b6000613973602a83614076565b915061397e8261479b565b604082019050919050565b6000613996602983614076565b91506139a1826147ea565b604082019050919050565b60006139b9602083614076565b91506139c482614839565b602082019050919050565b60006139dc602c83614076565b91506139e782614862565b604082019050919050565b60006139ff602083614076565b9150613a0a826148b1565b602082019050919050565b6000613a22602983614076565b9150613a2d826148da565b604082019050919050565b6000613a45602f83614076565b9150613a5082614929565b604082019050919050565b6000613a68602183614076565b9150613a7382614978565b604082019050919050565b6000613a8b60008361406b565b9150613a96826149c7565b600082019050919050565b6000613aae603183614076565b9150613ab9826149ca565b604082019050919050565b6000613ad1602c83614076565b9150613adc82614a19565b604082019050919050565b6000613af4600e83614076565b9150613aff82614a68565b602082019050919050565b613b1381614211565b82525050565b613b2281614211565b82525050565b6000613b3482866136cc565b9150613b4082856136cc565b9150613b4c82846136fd565b9150819050949350505050565b6000613b6482613a7e565b9150819050919050565b6000602082019050613b8360008301846135de565b92915050565b6000608082019050613b9e60008301876135de565b613bab60208301866135de565b613bb86040830185613b19565b8181036060830152613bca818461365a565b905095945050505050565b60006020820190508181036000830152613bef81846135ed565b905092915050565b6000602082019050613c0c600083018461364b565b92915050565b60006020820190508181036000830152613c2c8184613693565b905092915050565b60006020820190508181036000830152613c4d8161377c565b9050919050565b60006020820190508181036000830152613c6d8161379f565b9050919050565b60006020820190508181036000830152613c8d816137c2565b9050919050565b60006020820190508181036000830152613cad816137e5565b9050919050565b60006020820190508181036000830152613ccd81613808565b9050919050565b60006020820190508181036000830152613ced8161382b565b9050919050565b60006020820190508181036000830152613d0d8161384e565b9050919050565b60006020820190508181036000830152613d2d81613871565b9050919050565b60006020820190508181036000830152613d4d81613894565b9050919050565b60006020820190508181036000830152613d6d816138b7565b9050919050565b60006020820190508181036000830152613d8d816138da565b9050919050565b60006020820190508181036000830152613dad816138fd565b9050919050565b60006020820190508181036000830152613dcd81613920565b9050919050565b60006020820190508181036000830152613ded81613943565b9050919050565b60006020820190508181036000830152613e0d81613966565b9050919050565b60006020820190508181036000830152613e2d81613989565b9050919050565b60006020820190508181036000830152613e4d816139ac565b9050919050565b60006020820190508181036000830152613e6d816139cf565b9050919050565b60006020820190508181036000830152613e8d816139f2565b9050919050565b60006020820190508181036000830152613ead81613a15565b9050919050565b60006020820190508181036000830152613ecd81613a38565b9050919050565b60006020820190508181036000830152613eed81613a5b565b9050919050565b60006020820190508181036000830152613f0d81613aa1565b9050919050565b60006020820190508181036000830152613f2d81613ac4565b9050919050565b60006020820190508181036000830152613f4d81613ae7565b9050919050565b6000602082019050613f696000830184613b19565b92915050565b6000613f79613f8a565b9050613f85828261428f565b919050565b6000604051905090565b600067ffffffffffffffff821115613faf57613fae614425565b5b613fb882614468565b9050602081019050919050565b600067ffffffffffffffff821115613fe057613fdf614425565b5b613fe982614468565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061409d82614211565b91506140a883614211565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140dd576140dc61433a565b5b828201905092915050565b60006140f382614211565b91506140fe83614211565b92508261410e5761410d614369565b5b828204905092915050565b600061412482614211565b915061412f83614211565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141685761416761433a565b5b828202905092915050565b600061417e82614211565b915061418983614211565b92508282101561419c5761419b61433a565b5b828203905092915050565b60006141b2826141f1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561424857808201518184015260208101905061422d565b83811115614257576000848401525b50505050565b6000600282049050600182168061427557607f821691505b6020821081141561428957614288614398565b5b50919050565b61429882614468565b810181811067ffffffffffffffff821117156142b7576142b6614425565b5b80604052505050565b60006142cb82614211565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142fe576142fd61433a565b5b600182019050919050565b600061431482614211565b915061431f83614211565b92508261432f5761432e614369565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f796f752063616e2774206d696e742030206974656d73206c6f6c000000000000600082015250565b7f6578636565646564206d617820737570706c7900000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6578636565646564207065722077616c6c6574206c696d697400000000000000600082015250565b7f6578636565646564206d6178206d696e7420616d6f756e740000000000000000600082015250565b7f6578636565646564207075626c696320737570706c7900000000000000000000600082015250565b7f636f6e7472616374206973207061757365640000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f75676820657468000000000000000000000000000000000000600082015250565b614a9a816141a7565b8114614aa557600080fd5b50565b614ab1816141b9565b8114614abc57600080fd5b50565b614ac8816141c5565b8114614ad357600080fd5b50565b614adf81614211565b8114614aea57600080fd5b5056fea2646970667358221220f54771c243f7cc1ce38a385ef7dcc4e6aa8989affc42886d089fdee3e55a655664736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000011494e54454c4c4947334e542050414e4441000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000249500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d586d50643751634e76774b6f70676855616f767a5946367071543270504e566b334459387573477831614d642f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d58386963714c45595368726f757241744b507a5663474a77796769426142544e5a61644356704359624368372f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80635e84d7231161012e578063b88d4fde116100ab578063da3ef23f1161006f578063da3ef23f14610843578063e0f9b4791461086c578063e985e9c514610897578063f2c4ce1e146108d4578063f2fde38b146108fd5761023b565b8063b88d4fde1461075e578063c221831214610787578063c6682862146107b0578063c87b56dd146107db578063d5abeb01146108185761023b565b80638da5cb5b116100f25780638da5cb5b146106ac57806395d89b41146106d7578063a0712d6814610702578063a22cb4651461071e578063a475b5dd146107475761023b565b80635e84d723146105c75780636352211e146105f257806370a082311461062f578063715018a61461066c5780637f00c7a6146106835761023b565b80632f745c59116101bc57806344a0d68a1161018057806344a0d68a146104e25780634f6ccce71461050b578063518302271461054857806355f804b3146105735780635c975abb1461059c5761023b565b80632f745c591461040c5780633ccfd60b1461044957806342842e0e14610453578063438b63001461047c578063449a52f8146104b95761023b565b8063095ea7b311610203578063095ea7b31461033957806313faede61461036257806318160ddd1461038d578063239c70ae146103b857806323b872dd146103e35761023b565b806301ffc9a71461024057806302329a291461027d57806306fdde03146102a6578063081812fc146102d1578063081c8c441461030e575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906134f6565b610926565b6040516102749190613bf7565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f91906134c9565b6109a0565b005b3480156102b257600080fd5b506102bb610a39565b6040516102c89190613c12565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f39190613599565b610acb565b6040516103059190613b6e565b60405180910390f35b34801561031a57600080fd5b50610323610b50565b6040516103309190613c12565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190613489565b610bde565b005b34801561036e57600080fd5b50610377610cf6565b6040516103849190613f54565b60405180910390f35b34801561039957600080fd5b506103a2610cfc565b6040516103af9190613f54565b60405180910390f35b3480156103c457600080fd5b506103cd610d09565b6040516103da9190613f54565b60405180910390f35b3480156103ef57600080fd5b5061040a60048036038101906104059190613373565b610d0f565b005b34801561041857600080fd5b50610433600480360381019061042e9190613489565b610d6f565b6040516104409190613f54565b60405180910390f35b610451610e14565b005b34801561045f57600080fd5b5061047a60048036038101906104759190613373565b610f10565b005b34801561048857600080fd5b506104a3600480360381019061049e9190613306565b610f30565b6040516104b09190613bd5565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db9190613489565b610fde565b005b3480156104ee57600080fd5b5061050960048036038101906105049190613599565b611185565b005b34801561051757600080fd5b50610532600480360381019061052d9190613599565b61120b565b60405161053f9190613f54565b60405180910390f35b34801561055457600080fd5b5061055d61127c565b60405161056a9190613bf7565b60405180910390f35b34801561057f57600080fd5b5061059a60048036038101906105959190613550565b61128f565b005b3480156105a857600080fd5b506105b1611325565b6040516105be9190613bf7565b60405180910390f35b3480156105d357600080fd5b506105dc611338565b6040516105e99190613f54565b60405180910390f35b3480156105fe57600080fd5b5061061960048036038101906106149190613599565b61133e565b6040516106269190613b6e565b60405180910390f35b34801561063b57600080fd5b5061065660048036038101906106519190613306565b6113f0565b6040516106639190613f54565b60405180910390f35b34801561067857600080fd5b506106816114a8565b005b34801561068f57600080fd5b506106aa60048036038101906106a59190613599565b611530565b005b3480156106b857600080fd5b506106c16115b6565b6040516106ce9190613b6e565b60405180910390f35b3480156106e357600080fd5b506106ec6115e0565b6040516106f99190613c12565b60405180910390f35b61071c60048036038101906107179190613599565b611672565b005b34801561072a57600080fd5b5061074560048036038101906107409190613449565b611895565b005b34801561075357600080fd5b5061075c611a16565b005b34801561076a57600080fd5b50610785600480360381019061078091906133c6565b611aaf565b005b34801561079357600080fd5b506107ae60048036038101906107a99190613599565b611b11565b005b3480156107bc57600080fd5b506107c5611b97565b6040516107d29190613c12565b60405180910390f35b3480156107e757600080fd5b5061080260048036038101906107fd9190613599565b611c25565b60405161080f9190613c12565b60405180910390f35b34801561082457600080fd5b5061082d611d7e565b60405161083a9190613f54565b60405180910390f35b34801561084f57600080fd5b5061086a60048036038101906108659190613550565b611d84565b005b34801561087857600080fd5b50610881611e1a565b60405161088e9190613f54565b60405180910390f35b3480156108a357600080fd5b506108be60048036038101906108b99190613333565b611e20565b6040516108cb9190613bf7565b60405180910390f35b3480156108e057600080fd5b506108fb60048036038101906108f69190613550565b611eb4565b005b34801561090957600080fd5b50610924600480360381019061091f9190613306565b611f4a565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610999575061099882612042565b5b9050919050565b6109a8612124565b73ffffffffffffffffffffffffffffffffffffffff166109c66115b6565b73ffffffffffffffffffffffffffffffffffffffff1614610a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1390613e74565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b606060008054610a489061425d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a749061425d565b8015610ac15780601f10610a9657610100808354040283529160200191610ac1565b820191906000526020600020905b815481529060010190602001808311610aa457829003601f168201915b5050505050905090565b6000610ad68261212c565b610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c90613e54565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610b5d9061425d565b80601f0160208091040260200160405190810160405280929190818152602001828054610b899061425d565b8015610bd65780601f10610bab57610100808354040283529160200191610bd6565b820191906000526020600020905b815481529060010190602001808311610bb957829003601f168201915b505050505081565b6000610be98261133e565b90508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5190613ed4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c79612124565b73ffffffffffffffffffffffffffffffffffffffff161480610ca85750610ca781610ca2612124565b611e20565b5b610ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cde90613dd4565b60405180910390fd5b610cf18383612198565b505050565b600e5481565b6000600880549050905090565b60115481565b610d20610d1a612124565b82612251565b610d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5690613ef4565b60405180910390fd5b610d6a83838361232f565b505050565b6000610d7a836113f0565b8210610dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db290613c34565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610e1c612124565b73ffffffffffffffffffffffffffffffffffffffff16610e3a6115b6565b73ffffffffffffffffffffffffffffffffffffffff1614610e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8790613e74565b60405180910390fd5b6000610e9a6115b6565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ebd90613b59565b60006040518083038185875af1925050503d8060008114610efa576040519150601f19603f3d011682016040523d82523d6000602084013e610eff565b606091505b5050905080610f0d57600080fd5b50565b610f2b83838360405180602001604052806000815250611aaf565b505050565b60606000610f3d836113f0565b905060008167ffffffffffffffff811115610f5b57610f5a614425565b5b604051908082528060200260200182016040528015610f895781602001602082028036833780820191505090505b50905060005b82811015610fd357610fa18582610d6f565b828281518110610fb457610fb36143f6565b5b6020026020010181815250508080610fcb906142c0565b915050610f8f565b508092505050919050565b610fe6612124565b73ffffffffffffffffffffffffffffffffffffffff166110046115b6565b73ffffffffffffffffffffffffffffffffffffffff161461105a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105190613e74565b60405180910390fd5b6000611064610cfc565b9050601360009054906101000a900460ff16156110b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ad90613d54565b60405180910390fd5b600082116110f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f090613c94565b60405180910390fd5b600f5482826111089190614092565b1115611149576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114090613cb4565b60405180910390fd5b6000600190505b82811161117f5761116c8482846111679190614092565b61258b565b8080611177906142c0565b915050611150565b50505050565b61118d612124565b73ffffffffffffffffffffffffffffffffffffffff166111ab6115b6565b73ffffffffffffffffffffffffffffffffffffffff1614611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f890613e74565b60405180910390fd5b80600e8190555050565b6000611215610cfc565b8210611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d90613f14565b60405180910390fd5b6008828154811061126a576112696143f6565b5b90600052602060002001549050919050565b601360019054906101000a900460ff1681565b611297612124565b73ffffffffffffffffffffffffffffffffffffffff166112b56115b6565b73ffffffffffffffffffffffffffffffffffffffff161461130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290613e74565b60405180910390fd5b80600b908051906020019061132192919061311a565b5050565b601360009054906101000a900460ff1681565b60105481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113de90613e14565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145890613df4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114b0612124565b73ffffffffffffffffffffffffffffffffffffffff166114ce6115b6565b73ffffffffffffffffffffffffffffffffffffffff1614611524576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151b90613e74565b60405180910390fd5b61152e60006125a9565b565b611538612124565b73ffffffffffffffffffffffffffffffffffffffff166115566115b6565b73ffffffffffffffffffffffffffffffffffffffff16146115ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a390613e74565b60405180910390fd5b8060118190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546115ef9061425d565b80601f016020809104026020016040519081016040528092919081815260200182805461161b9061425d565b80156116685780601f1061163d57610100808354040283529160200191611668565b820191906000526020600020905b81548152906001019060200180831161164b57829003601f168201915b5050505050905090565b600061167c610cfc565b9050601360009054906101000a900460ff16156116ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c590613d54565b60405180910390fd5b60008211611711576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170890613c94565b60405180910390fd5b601154821115611756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174d90613d14565b60405180910390fd5b60105482826117659190614092565b11156117a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179d90613d34565b60405180910390fd5b81600e546117b49190614119565b3410156117f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ed90613f34565b60405180910390fd5b6000601254111561185a576012548261180e336113f0565b6118189190614092565b1115611859576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185090613cf4565b60405180910390fd5b5b6000600190505b8281116118905761187d3382846118789190614092565b61258b565b8080611888906142c0565b915050611861565b505050565b61189d612124565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561190b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190290613d94565b60405180910390fd5b8060056000611918612124565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119c5612124565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a0a9190613bf7565b60405180910390a35050565b611a1e612124565b73ffffffffffffffffffffffffffffffffffffffff16611a3c6115b6565b73ffffffffffffffffffffffffffffffffffffffff1614611a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8990613e74565b60405180910390fd5b6001601360016101000a81548160ff021916908315150217905550565b611ac0611aba612124565b83612251565b611aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af690613ef4565b60405180910390fd5b611b0b8484848461266f565b50505050565b611b19612124565b73ffffffffffffffffffffffffffffffffffffffff16611b376115b6565b73ffffffffffffffffffffffffffffffffffffffff1614611b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8490613e74565b60405180910390fd5b8060128190555050565b600c8054611ba49061425d565b80601f0160208091040260200160405190810160405280929190818152602001828054611bd09061425d565b8015611c1d5780601f10611bf257610100808354040283529160200191611c1d565b820191906000526020600020905b815481529060010190602001808311611c0057829003601f168201915b505050505081565b6060611c308261212c565b611c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6690613eb4565b60405180910390fd5b60001515601360019054906101000a900460ff1615151415611d1d57600d8054611c989061425d565b80601f0160208091040260200160405190810160405280929190818152602001828054611cc49061425d565b8015611d115780601f10611ce657610100808354040283529160200191611d11565b820191906000526020600020905b815481529060010190602001808311611cf457829003601f168201915b50505050509050611d79565b6000611d276126cb565b90506000815111611d475760405180602001604052806000815250611d75565b80611d518461275d565b600c604051602001611d6593929190613b28565b6040516020818303038152906040525b9150505b919050565b600f5481565b611d8c612124565b73ffffffffffffffffffffffffffffffffffffffff16611daa6115b6565b73ffffffffffffffffffffffffffffffffffffffff1614611e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df790613e74565b60405180910390fd5b80600c9080519060200190611e1692919061311a565b5050565b60125481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ebc612124565b73ffffffffffffffffffffffffffffffffffffffff16611eda6115b6565b73ffffffffffffffffffffffffffffffffffffffff1614611f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2790613e74565b60405180910390fd5b80600d9080519060200190611f4692919061311a565b5050565b611f52612124565b73ffffffffffffffffffffffffffffffffffffffff16611f706115b6565b73ffffffffffffffffffffffffffffffffffffffff1614611fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbd90613e74565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202d90613c74565b60405180910390fd5b61203f816125a9565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061210d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061211d575061211c826128be565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661220b8361133e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061225c8261212c565b61229b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229290613db4565b60405180910390fd5b60006122a68361133e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061231557508373ffffffffffffffffffffffffffffffffffffffff166122fd84610acb565b73ffffffffffffffffffffffffffffffffffffffff16145b8061232657506123258185611e20565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661234f8261133e565b73ffffffffffffffffffffffffffffffffffffffff16146123a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239c90613e94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240c90613d74565b60405180910390fd5b612420838383612928565b61242b600082612198565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461247b9190614173565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124d29190614092565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6125a5828260405180602001604052806000815250612a3c565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61267a84848461232f565b61268684848484612a97565b6126c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bc90613c54565b60405180910390fd5b50505050565b6060600b80546126da9061425d565b80601f01602080910402602001604051908101604052809291908181526020018280546127069061425d565b80156127535780601f1061272857610100808354040283529160200191612753565b820191906000526020600020905b81548152906001019060200180831161273657829003601f168201915b5050505050905090565b606060008214156127a5576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128b9565b600082905060005b600082146127d75780806127c0906142c0565b915050600a826127d091906140e8565b91506127ad565b60008167ffffffffffffffff8111156127f3576127f2614425565b5b6040519080825280601f01601f1916602001820160405280156128255781602001600182028036833780820191505090505b5090505b600085146128b25760018261283e9190614173565b9150600a8561284d9190614309565b60306128599190614092565b60f81b81838151811061286f5761286e6143f6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128ab91906140e8565b9450612829565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612933838383612c2e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129765761297181612c33565b6129b5565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146129b4576129b38382612c7c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129f8576129f381612de9565b612a37565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612a3657612a358282612eba565b5b5b505050565b612a468383612f39565b612a536000848484612a97565b612a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8990613c54565b60405180910390fd5b505050565b6000612ab88473ffffffffffffffffffffffffffffffffffffffff16613107565b15612c21578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ae1612124565b8786866040518563ffffffff1660e01b8152600401612b039493929190613b89565b602060405180830381600087803b158015612b1d57600080fd5b505af1925050508015612b4e57506040513d601f19601f82011682018060405250810190612b4b9190613523565b60015b612bd1573d8060008114612b7e576040519150601f19603f3d011682016040523d82523d6000602084013e612b83565b606091505b50600081511415612bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc090613c54565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c26565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612c89846113f0565b612c939190614173565b9050600060076000848152602001908152602001600020549050818114612d78576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612dfd9190614173565b9050600060096000848152602001908152602001600020549050600060088381548110612e2d57612e2c6143f6565b5b906000526020600020015490508060088381548110612e4f57612e4e6143f6565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612e9e57612e9d6143c7565b5b6001900381819060005260206000200160009055905550505050565b6000612ec5836113f0565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa090613e34565b60405180910390fd5b612fb28161212c565b15612ff2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fe990613cd4565b60405180910390fd5b612ffe60008383612928565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461304e9190614092565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546131269061425d565b90600052602060002090601f016020900481019282613148576000855561318f565b82601f1061316157805160ff191683800117855561318f565b8280016001018555821561318f579182015b8281111561318e578251825591602001919060010190613173565b5b50905061319c91906131a0565b5090565b5b808211156131b95760008160009055506001016131a1565b5090565b60006131d06131cb84613f94565b613f6f565b9050828152602081018484840111156131ec576131eb614459565b5b6131f784828561421b565b509392505050565b600061321261320d84613fc5565b613f6f565b90508281526020810184848401111561322e5761322d614459565b5b61323984828561421b565b509392505050565b60008135905061325081614a91565b92915050565b60008135905061326581614aa8565b92915050565b60008135905061327a81614abf565b92915050565b60008151905061328f81614abf565b92915050565b600082601f8301126132aa576132a9614454565b5b81356132ba8482602086016131bd565b91505092915050565b600082601f8301126132d8576132d7614454565b5b81356132e88482602086016131ff565b91505092915050565b60008135905061330081614ad6565b92915050565b60006020828403121561331c5761331b614463565b5b600061332a84828501613241565b91505092915050565b6000806040838503121561334a57613349614463565b5b600061335885828601613241565b925050602061336985828601613241565b9150509250929050565b60008060006060848603121561338c5761338b614463565b5b600061339a86828701613241565b93505060206133ab86828701613241565b92505060406133bc868287016132f1565b9150509250925092565b600080600080608085870312156133e0576133df614463565b5b60006133ee87828801613241565b94505060206133ff87828801613241565b9350506040613410878288016132f1565b925050606085013567ffffffffffffffff8111156134315761343061445e565b5b61343d87828801613295565b91505092959194509250565b600080604083850312156134605761345f614463565b5b600061346e85828601613241565b925050602061347f85828601613256565b9150509250929050565b600080604083850312156134a05761349f614463565b5b60006134ae85828601613241565b92505060206134bf858286016132f1565b9150509250929050565b6000602082840312156134df576134de614463565b5b60006134ed84828501613256565b91505092915050565b60006020828403121561350c5761350b614463565b5b600061351a8482850161326b565b91505092915050565b60006020828403121561353957613538614463565b5b600061354784828501613280565b91505092915050565b60006020828403121561356657613565614463565b5b600082013567ffffffffffffffff8111156135845761358361445e565b5b613590848285016132c3565b91505092915050565b6000602082840312156135af576135ae614463565b5b60006135bd848285016132f1565b91505092915050565b60006135d28383613b0a565b60208301905092915050565b6135e7816141a7565b82525050565b60006135f88261401b565b6136028185614049565b935061360d83613ff6565b8060005b8381101561363e57815161362588826135c6565b97506136308361403c565b925050600181019050613611565b5085935050505092915050565b613654816141b9565b82525050565b600061366582614026565b61366f818561405a565b935061367f81856020860161422a565b61368881614468565b840191505092915050565b600061369e82614031565b6136a88185614076565b93506136b881856020860161422a565b6136c181614468565b840191505092915050565b60006136d782614031565b6136e18185614087565b93506136f181856020860161422a565b80840191505092915050565b6000815461370a8161425d565b6137148186614087565b9450600182166000811461372f576001811461374057613773565b60ff19831686528186019350613773565b61374985614006565b60005b8381101561376b5781548189015260018201915060208101905061374c565b838801955050505b50505092915050565b6000613789602b83614076565b915061379482614479565b604082019050919050565b60006137ac603283614076565b91506137b7826144c8565b604082019050919050565b60006137cf602683614076565b91506137da82614517565b604082019050919050565b60006137f2601a83614076565b91506137fd82614566565b602082019050919050565b6000613815601383614076565b91506138208261458f565b602082019050919050565b6000613838601c83614076565b9150613843826145b8565b602082019050919050565b600061385b601983614076565b9150613866826145e1565b602082019050919050565b600061387e601883614076565b91506138898261460a565b602082019050919050565b60006138a1601683614076565b91506138ac82614633565b602082019050919050565b60006138c4601283614076565b91506138cf8261465c565b602082019050919050565b60006138e7602483614076565b91506138f282614685565b604082019050919050565b600061390a601983614076565b9150613915826146d4565b602082019050919050565b600061392d602c83614076565b9150613938826146fd565b604082019050919050565b6000613950603883614076565b915061395b8261474c565b604082019050919050565b6000613973602a83614076565b915061397e8261479b565b604082019050919050565b6000613996602983614076565b91506139a1826147ea565b604082019050919050565b60006139b9602083614076565b91506139c482614839565b602082019050919050565b60006139dc602c83614076565b91506139e782614862565b604082019050919050565b60006139ff602083614076565b9150613a0a826148b1565b602082019050919050565b6000613a22602983614076565b9150613a2d826148da565b604082019050919050565b6000613a45602f83614076565b9150613a5082614929565b604082019050919050565b6000613a68602183614076565b9150613a7382614978565b604082019050919050565b6000613a8b60008361406b565b9150613a96826149c7565b600082019050919050565b6000613aae603183614076565b9150613ab9826149ca565b604082019050919050565b6000613ad1602c83614076565b9150613adc82614a19565b604082019050919050565b6000613af4600e83614076565b9150613aff82614a68565b602082019050919050565b613b1381614211565b82525050565b613b2281614211565b82525050565b6000613b3482866136cc565b9150613b4082856136cc565b9150613b4c82846136fd565b9150819050949350505050565b6000613b6482613a7e565b9150819050919050565b6000602082019050613b8360008301846135de565b92915050565b6000608082019050613b9e60008301876135de565b613bab60208301866135de565b613bb86040830185613b19565b8181036060830152613bca818461365a565b905095945050505050565b60006020820190508181036000830152613bef81846135ed565b905092915050565b6000602082019050613c0c600083018461364b565b92915050565b60006020820190508181036000830152613c2c8184613693565b905092915050565b60006020820190508181036000830152613c4d8161377c565b9050919050565b60006020820190508181036000830152613c6d8161379f565b9050919050565b60006020820190508181036000830152613c8d816137c2565b9050919050565b60006020820190508181036000830152613cad816137e5565b9050919050565b60006020820190508181036000830152613ccd81613808565b9050919050565b60006020820190508181036000830152613ced8161382b565b9050919050565b60006020820190508181036000830152613d0d8161384e565b9050919050565b60006020820190508181036000830152613d2d81613871565b9050919050565b60006020820190508181036000830152613d4d81613894565b9050919050565b60006020820190508181036000830152613d6d816138b7565b9050919050565b60006020820190508181036000830152613d8d816138da565b9050919050565b60006020820190508181036000830152613dad816138fd565b9050919050565b60006020820190508181036000830152613dcd81613920565b9050919050565b60006020820190508181036000830152613ded81613943565b9050919050565b60006020820190508181036000830152613e0d81613966565b9050919050565b60006020820190508181036000830152613e2d81613989565b9050919050565b60006020820190508181036000830152613e4d816139ac565b9050919050565b60006020820190508181036000830152613e6d816139cf565b9050919050565b60006020820190508181036000830152613e8d816139f2565b9050919050565b60006020820190508181036000830152613ead81613a15565b9050919050565b60006020820190508181036000830152613ecd81613a38565b9050919050565b60006020820190508181036000830152613eed81613a5b565b9050919050565b60006020820190508181036000830152613f0d81613aa1565b9050919050565b60006020820190508181036000830152613f2d81613ac4565b9050919050565b60006020820190508181036000830152613f4d81613ae7565b9050919050565b6000602082019050613f696000830184613b19565b92915050565b6000613f79613f8a565b9050613f85828261428f565b919050565b6000604051905090565b600067ffffffffffffffff821115613faf57613fae614425565b5b613fb882614468565b9050602081019050919050565b600067ffffffffffffffff821115613fe057613fdf614425565b5b613fe982614468565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061409d82614211565b91506140a883614211565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140dd576140dc61433a565b5b828201905092915050565b60006140f382614211565b91506140fe83614211565b92508261410e5761410d614369565b5b828204905092915050565b600061412482614211565b915061412f83614211565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141685761416761433a565b5b828202905092915050565b600061417e82614211565b915061418983614211565b92508282101561419c5761419b61433a565b5b828203905092915050565b60006141b2826141f1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561424857808201518184015260208101905061422d565b83811115614257576000848401525b50505050565b6000600282049050600182168061427557607f821691505b6020821081141561428957614288614398565b5b50919050565b61429882614468565b810181811067ffffffffffffffff821117156142b7576142b6614425565b5b80604052505050565b60006142cb82614211565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142fe576142fd61433a565b5b600182019050919050565b600061431482614211565b915061431f83614211565b92508261432f5761432e614369565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f796f752063616e2774206d696e742030206974656d73206c6f6c000000000000600082015250565b7f6578636565646564206d617820737570706c7900000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6578636565646564207065722077616c6c6574206c696d697400000000000000600082015250565b7f6578636565646564206d6178206d696e7420616d6f756e740000000000000000600082015250565b7f6578636565646564207075626c696320737570706c7900000000000000000000600082015250565b7f636f6e7472616374206973207061757365640000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f75676820657468000000000000000000000000000000000000600082015250565b614a9a816141a7565b8114614aa557600080fd5b50565b614ab1816141b9565b8114614abc57600080fd5b50565b614ac8816141c5565b8114614ad357600080fd5b50565b614adf81614211565b8114614aea57600080fd5b5056fea2646970667358221220f54771c243f7cc1ce38a385ef7dcc4e6aa8989affc42886d089fdee3e55a655664736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000011494e54454c4c4947334e542050414e4441000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000249500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d586d50643751634e76774b6f70676855616f767a5946367071543270504e566b334459387573477831614d642f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d58386963714c45595368726f757241744b507a5663474a77796769426142544e5a61644356704359624368372f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): INTELLIG3NT PANDA
Arg [1] : _symbol (string): IP
Arg [2] : _initBaseURI (string): ipfs://QmXmPd7QcNvwKopghUaovzYF6pqT2pPNVk3DY8usGx1aMd/
Arg [3] : _initNotRevealedUri (string): ipfs://QmX8icqLEYShrourAtKPzVcGJwygiBaBTNZadCVpCYbCh7/hidden.json

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [5] : 494e54454c4c4947334e542050414e4441000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 4950000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d586d50643751634e76774b6f70676855616f767a594636
Arg [10] : 7071543270504e566b334459387573477831614d642f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [12] : 697066733a2f2f516d58386963714c45595368726f757241744b507a5663474a
Arg [13] : 77796769426142544e5a61644356704359624368372f68696464656e2e6a736f
Arg [14] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

43119:3752:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34664:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46441:75;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22556:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24115:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43258:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23638:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43291:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35304:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43404:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25005:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34972:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46717:149;;;:::i;:::-;;25415:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45024:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44618:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45885:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35494:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43514:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46205:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43483:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43366:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22250:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21980:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42453:94;;;;;;;;;;;;;:::i;:::-;;46081:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41802:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22725:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43944:667;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24408:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46521:65;;;;;;;;;;;;;:::i;:::-;;25671:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45973:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43216:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45380:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43331:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46311:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43441:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24774:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46590:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42702:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34664:224;34766:4;34805:35;34790:50;;;:11;:50;;;;:90;;;;34844:36;34868:11;34844:23;:36::i;:::-;34790:90;34783:97;;34664:224;;;:::o;46441:75::-;42033:12;:10;:12::i;:::-;42022:23;;:7;:5;:7::i;:::-;:23;;;42014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46504:6:::1;46495;;:15;;;;;;;;;;;;;;;;;;46441:75:::0;:::o;22556:100::-;22610:13;22643:5;22636:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22556:100;:::o;24115:221::-;24191:7;24219:16;24227:7;24219;:16::i;:::-;24211:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24304:15;:24;24320:7;24304:24;;;;;;;;;;;;;;;;;;;;;24297:31;;24115:221;;;:::o;43258:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23638:411::-;23719:13;23735:23;23750:7;23735:14;:23::i;:::-;23719:39;;23786:2;23777:11;;:5;:11;;;;23769:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23877:5;23861:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23886:37;23903:5;23910:12;:10;:12::i;:::-;23886:16;:37::i;:::-;23861:62;23839:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;24020:21;24029:2;24033:7;24020:8;:21::i;:::-;23708:341;23638:411;;:::o;43291:35::-;;;;:::o;35304:113::-;35365:7;35392:10;:17;;;;35385:24;;35304:113;:::o;43404:32::-;;;;:::o;25005:339::-;25200:41;25219:12;:10;:12::i;:::-;25233:7;25200:18;:41::i;:::-;25192:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25308:28;25318:4;25324:2;25328:7;25308:9;:28::i;:::-;25005:339;;;:::o;34972:256::-;35069:7;35105:23;35122:5;35105:16;:23::i;:::-;35097:5;:31;35089:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35194:12;:19;35207:5;35194:19;;;;;;;;;;;;;;;:26;35214:5;35194:26;;;;;;;;;;;;35187:33;;34972:256;;;;:::o;46717:149::-;42033:12;:10;:12::i;:::-;42022:23;;:7;:5;:7::i;:::-;:23;;;42014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46772:7:::1;46793;:5;:7::i;:::-;46785:21;;46814;46785:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46771:69;;;46855:2;46847:11;;;::::0;::::1;;46762:104;46717:149::o:0;25415:185::-;25553:39;25570:4;25576:2;25580:7;25553:39;;;;;;;;;;;;:16;:39::i;:::-;25415:185;;;:::o;45024:348::-;45099:16;45127:23;45153:17;45163:6;45153:9;:17::i;:::-;45127:43;;45177:25;45219:15;45205:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45177:58;;45247:9;45242:103;45262:15;45258:1;:19;45242:103;;;45307:30;45327:6;45335:1;45307:19;:30::i;:::-;45293:8;45302:1;45293:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;45279:3;;;;;:::i;:::-;;;;45242:103;;;;45358:8;45351:15;;;;45024:348;;;:::o;44618:400::-;42033:12;:10;:12::i;:::-;42022:23;;:7;:5;:7::i;:::-;:23;;;42014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44701:14:::1;44718:13;:11;:13::i;:::-;44701:30;;44747:6;;;;;;;;;;;44746:7;44738:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;44804:1;44790:11;:15;44782:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;44874:9;;44859:11;44850:6;:20;;;;:::i;:::-;:33;;44842:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;44920:9;44932:1;44920:13;;44915:92;44940:11;44935:1;:16;44915:92;;44967:32;44977:9;44997:1;44988:6;:10;;;;:::i;:::-;44967:9;:32::i;:::-;44953:3;;;;;:::i;:::-;;;;44915:92;;;;44692:326;44618:400:::0;;:::o;45885:82::-;42033:12;:10;:12::i;:::-;42022:23;;:7;:5;:7::i;:::-;:23;;;42014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45953:8:::1;45946:4;:15;;;;45885:82:::0;:::o;35494:233::-;35569:7;35605:30;:28;:30::i;:::-;35597:5;:38;35589:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35702:10;35713:5;35702:17;;;;;;;;:::i;:::-;;;;;;;;;;35695:24;;35494:233;;;:::o;43514:28::-;;;;;;;;;;;;;:::o;46205:100::-;42033:12;:10;:12::i;:::-;42022:23;;:7;:5;:7::i;:::-;:23;;;42014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46288:11:::1;46278:7;:21;;;;;;;;;;;;:::i;:::-;;46205:100:::0;:::o;43483:26::-;;;;;;;;;;;;;:::o;43366:33::-;;;;:::o;22250:239::-;22322:7;22342:13;22358:7;:16;22366:7;22358:16;;;;;;;;;;;;;;;;;;;;;22342:32;;22410:1;22393:19;;:5;:19;;;;22385:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22476:5;22469:12;;;22250:239;;;:::o;21980:208::-;22052:7;22097:1;22080:19;;:5;:19;;;;22072:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;22164:9;:16;22174:5;22164:16;;;;;;;;;;;;;;;;22157:23;;21980:208;;;:::o;42453:94::-;42033:12;:10;:12::i;:::-;42022:23;;:7;:5;:7::i;:::-;:23;;;42014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42518:21:::1;42536:1;42518:9;:21::i;:::-;42453:94::o:0;46081:118::-;42033:12;:10;:12::i;:::-;42022:23;;:7;:5;:7::i;:::-;:23;;;42014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46176:17:::1;46160:13;:33;;;;46081:118:::0;:::o;41802:87::-;41848:7;41875:6;;;;;;;;;;;41868:13;;41802:87;:::o;22725:104::-;22781:13;22814:7;22807:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22725:104;:::o;43944:667::-;44001:14;44018:13;:11;:13::i;:::-;44001:30;;44047:6;;;;;;;;;;;44046:7;44038:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;44104:1;44090:11;:15;44082:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;44165:13;;44150:11;:28;;44142:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;44245:12;;44230:11;44221:6;:20;;;;:::i;:::-;:36;;44213:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;44318:11;44311:4;;:18;;;;:::i;:::-;44298:9;:31;;44290:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;44384:1;44363:18;;:22;44360:139;;;44444:18;;44429:11;44405:21;44415:10;44405:9;:21::i;:::-;:35;;;;:::i;:::-;:57;;44397:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;44360:139;44512:9;44524:1;44512:13;;44507:93;44532:11;44527:1;:16;44507:93;;44559:33;44569:10;44590:1;44581:6;:10;;;;:::i;:::-;44559:9;:33::i;:::-;44545:3;;;;;:::i;:::-;;;;44507:93;;;;43994:617;43944:667;:::o;24408:295::-;24523:12;:10;:12::i;:::-;24511:24;;:8;:24;;;;24503:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;24623:8;24578:18;:32;24597:12;:10;:12::i;:::-;24578:32;;;;;;;;;;;;;;;:42;24611:8;24578:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;24676:8;24647:48;;24662:12;:10;:12::i;:::-;24647:48;;;24686:8;24647:48;;;;;;:::i;:::-;;;;;;;;24408:295;;:::o;46521:65::-;42033:12;:10;:12::i;:::-;42022:23;;:7;:5;:7::i;:::-;:23;;;42014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46576:4:::1;46565:8;;:15;;;;;;;;;;;;;;;;;;46521:65::o:0;25671:328::-;25846:41;25865:12;:10;:12::i;:::-;25879:7;25846:18;:41::i;:::-;25838:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25952:39;25966:4;25972:2;25976:7;25985:5;25952:13;:39::i;:::-;25671:328;;;;:::o;45973:102::-;42033:12;:10;:12::i;:::-;42022:23;;:7;:5;:7::i;:::-;:23;;;42014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46063:6:::1;46042:18;:27;;;;45973:102:::0;:::o;43216:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45380:497::-;45478:13;45519:16;45527:7;45519;:16::i;:::-;45503:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;45628:5;45616:17;;:8;;;;;;;;;;;:17;;;45613:62;;;45653:14;45646:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45613:62;45683:28;45714:10;:8;:10::i;:::-;45683:41;;45769:1;45744:14;45738:28;:32;:133;;;;;;;;;;;;;;;;;45806:14;45822:18;:7;:16;:18::i;:::-;45842:13;45789:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45738:133;45731:140;;;45380:497;;;;:::o;43331:30::-;;;;:::o;46311:124::-;42033:12;:10;:12::i;:::-;42022:23;;:7;:5;:7::i;:::-;:23;;;42014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46412:17:::1;46396:13;:33;;;;;;;;;;;;:::i;:::-;;46311:124:::0;:::o;43441:37::-;;;;:::o;24774:164::-;24871:4;24895:18;:25;24914:5;24895:25;;;;;;;;;;;;;;;:35;24921:8;24895:35;;;;;;;;;;;;;;;;;;;;;;;;;24888:42;;24774:164;;;;:::o;46590:120::-;42033:12;:10;:12::i;:::-;42022:23;;:7;:5;:7::i;:::-;:23;;;42014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46689:15:::1;46672:14;:32;;;;;;;;;;;;:::i;:::-;;46590:120:::0;:::o;42702:192::-;42033:12;:10;:12::i;:::-;42022:23;;:7;:5;:7::i;:::-;:23;;;42014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42811:1:::1;42791:22;;:8;:22;;;;42783:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42867:19;42877:8;42867:9;:19::i;:::-;42702:192:::0;:::o;21611:305::-;21713:4;21765:25;21750:40;;;:11;:40;;;;:105;;;;21822:33;21807:48;;;:11;:48;;;;21750:105;:158;;;;21872:36;21896:11;21872:23;:36::i;:::-;21750:158;21730:178;;21611:305;;;:::o;20085:98::-;20138:7;20165:10;20158:17;;20085:98;:::o;27509:127::-;27574:4;27626:1;27598:30;;:7;:16;27606:7;27598:16;;;;;;;;;;;;;;;;;;;;;:30;;;;27591:37;;27509:127;;;:::o;31491:174::-;31593:2;31566:15;:24;31582:7;31566:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31649:7;31645:2;31611:46;;31620:23;31635:7;31620:14;:23::i;:::-;31611:46;;;;;;;;;;;;31491:174;;:::o;27803:348::-;27896:4;27921:16;27929:7;27921;:16::i;:::-;27913:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27997:13;28013:23;28028:7;28013:14;:23::i;:::-;27997:39;;28066:5;28055:16;;:7;:16;;;:51;;;;28099:7;28075:31;;:20;28087:7;28075:11;:20::i;:::-;:31;;;28055:51;:87;;;;28110:32;28127:5;28134:7;28110:16;:32::i;:::-;28055:87;28047:96;;;27803:348;;;;:::o;30795:578::-;30954:4;30927:31;;:23;30942:7;30927:14;:23::i;:::-;:31;;;30919:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;31037:1;31023:16;;:2;:16;;;;31015:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31093:39;31114:4;31120:2;31124:7;31093:20;:39::i;:::-;31197:29;31214:1;31218:7;31197:8;:29::i;:::-;31258:1;31239:9;:15;31249:4;31239:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;31287:1;31270:9;:13;31280:2;31270:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31318:2;31299:7;:16;31307:7;31299:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31357:7;31353:2;31338:27;;31347:4;31338:27;;;;;;;;;;;;30795:578;;;:::o;28493:110::-;28569:26;28579:2;28583:7;28569:26;;;;;;;;;;;;:9;:26::i;:::-;28493:110;;:::o;42902:173::-;42958:16;42977:6;;;;;;;;;;;42958:25;;43003:8;42994:6;;:17;;;;;;;;;;;;;;;;;;43058:8;43027:40;;43048:8;43027:40;;;;;;;;;;;;42947:128;42902:173;:::o;26881:315::-;27038:28;27048:4;27054:2;27058:7;27038:9;:28::i;:::-;27085:48;27108:4;27114:2;27118:7;27127:5;27085:22;:48::i;:::-;27077:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26881:315;;;;:::o;43817:102::-;43877:13;43906:7;43899:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43817:102;:::o;7917:723::-;7973:13;8203:1;8194:5;:10;8190:53;;;8221:10;;;;;;;;;;;;;;;;;;;;;8190:53;8253:12;8268:5;8253:20;;8284:14;8309:78;8324:1;8316:4;:9;8309:78;;8342:8;;;;;:::i;:::-;;;;8373:2;8365:10;;;;;:::i;:::-;;;8309:78;;;8397:19;8429:6;8419:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8397:39;;8447:154;8463:1;8454:5;:10;8447:154;;8491:1;8481:11;;;;;:::i;:::-;;;8558:2;8550:5;:10;;;;:::i;:::-;8537:2;:24;;;;:::i;:::-;8524:39;;8507:6;8514;8507:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8587:2;8578:11;;;;;:::i;:::-;;;8447:154;;;8625:6;8611:21;;;;;7917:723;;;;:::o;7442:157::-;7527:4;7566:25;7551:40;;;:11;:40;;;;7544:47;;7442:157;;;:::o;36340:589::-;36484:45;36511:4;36517:2;36521:7;36484:26;:45::i;:::-;36562:1;36546:18;;:4;:18;;;36542:187;;;36581:40;36613:7;36581:31;:40::i;:::-;36542:187;;;36651:2;36643:10;;:4;:10;;;36639:90;;36670:47;36703:4;36709:7;36670:32;:47::i;:::-;36639:90;36542:187;36757:1;36743:16;;:2;:16;;;36739:183;;;36776:45;36813:7;36776:36;:45::i;:::-;36739:183;;;36849:4;36843:10;;:2;:10;;;36839:83;;36870:40;36898:2;36902:7;36870:27;:40::i;:::-;36839:83;36739:183;36340:589;;;:::o;28830:321::-;28960:18;28966:2;28970:7;28960:5;:18::i;:::-;29011:54;29042:1;29046:2;29050:7;29059:5;29011:22;:54::i;:::-;28989:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;28830:321;;;:::o;32230:799::-;32385:4;32406:15;:2;:13;;;:15::i;:::-;32402:620;;;32458:2;32442:36;;;32479:12;:10;:12::i;:::-;32493:4;32499:7;32508:5;32442:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32438:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32701:1;32684:6;:13;:18;32680:272;;;32727:60;;;;;;;;;;:::i;:::-;;;;;;;;32680:272;32902:6;32896:13;32887:6;32883:2;32879:15;32872:38;32438:529;32575:41;;;32565:51;;;:6;:51;;;;32558:58;;;;;32402:620;33006:4;32999:11;;32230:799;;;;;;;:::o;33601:126::-;;;;:::o;37652:164::-;37756:10;:17;;;;37729:15;:24;37745:7;37729:24;;;;;;;;;;;:44;;;;37784:10;37800:7;37784:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37652:164;:::o;38443:988::-;38709:22;38759:1;38734:22;38751:4;38734:16;:22::i;:::-;:26;;;;:::i;:::-;38709:51;;38771:18;38792:17;:26;38810:7;38792:26;;;;;;;;;;;;38771:47;;38939:14;38925:10;:28;38921:328;;38970:19;38992:12;:18;39005:4;38992:18;;;;;;;;;;;;;;;:34;39011:14;38992:34;;;;;;;;;;;;38970:56;;39076:11;39043:12;:18;39056:4;39043:18;;;;;;;;;;;;;;;:30;39062:10;39043:30;;;;;;;;;;;:44;;;;39193:10;39160:17;:30;39178:11;39160:30;;;;;;;;;;;:43;;;;38955:294;38921:328;39345:17;:26;39363:7;39345:26;;;;;;;;;;;39338:33;;;39389:12;:18;39402:4;39389:18;;;;;;;;;;;;;;;:34;39408:14;39389:34;;;;;;;;;;;39382:41;;;38524:907;;38443:988;;:::o;39726:1079::-;39979:22;40024:1;40004:10;:17;;;;:21;;;;:::i;:::-;39979:46;;40036:18;40057:15;:24;40073:7;40057:24;;;;;;;;;;;;40036:45;;40408:19;40430:10;40441:14;40430:26;;;;;;;;:::i;:::-;;;;;;;;;;40408:48;;40494:11;40469:10;40480;40469:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;40605:10;40574:15;:28;40590:11;40574:28;;;;;;;;;;;:41;;;;40746:15;:24;40762:7;40746:24;;;;;;;;;;;40739:31;;;40781:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39797:1008;;;39726:1079;:::o;37230:221::-;37315:14;37332:20;37349:2;37332:16;:20::i;:::-;37315:37;;37390:7;37363:12;:16;37376:2;37363:16;;;;;;;;;;;;;;;:24;37380:6;37363:24;;;;;;;;;;;:34;;;;37437:6;37408:17;:26;37426:7;37408:26;;;;;;;;;;;:35;;;;37304:147;37230:221;;:::o;29487:382::-;29581:1;29567:16;;:2;:16;;;;29559:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;29640:16;29648:7;29640;:16::i;:::-;29639:17;29631:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29702:45;29731:1;29735:2;29739:7;29702:20;:45::i;:::-;29777:1;29760:9;:13;29770:2;29760:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29808:2;29789:7;:16;29797:7;29789:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29853:7;29849:2;29828:33;;29845:1;29828:33;;;;;;;;;;;;29487:382;;:::o;10442:387::-;10502:4;10710:12;10777:7;10765:20;10757:28;;10820:1;10813:4;:8;10806:15;;;10442: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:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:179::-;7556:10;7577:46;7619:3;7611:6;7577:46;:::i;:::-;7655:4;7650:3;7646:14;7632:28;;7487:179;;;;:::o;7672:118::-;7759:24;7777:5;7759:24;:::i;:::-;7754:3;7747:37;7672:118;;:::o;7826:732::-;7945:3;7974:54;8022:5;7974:54;:::i;:::-;8044:86;8123:6;8118:3;8044:86;:::i;:::-;8037:93;;8154:56;8204:5;8154:56;:::i;:::-;8233:7;8264:1;8249:284;8274:6;8271:1;8268:13;8249:284;;;8350:6;8344:13;8377:63;8436:3;8421:13;8377:63;:::i;:::-;8370:70;;8463:60;8516:6;8463:60;:::i;:::-;8453:70;;8309:224;8296:1;8293;8289:9;8284:14;;8249:284;;;8253:14;8549:3;8542:10;;7950:608;;;7826:732;;;;:::o;8564:109::-;8645:21;8660:5;8645:21;:::i;:::-;8640:3;8633:34;8564:109;;:::o;8679:360::-;8765:3;8793:38;8825:5;8793:38;:::i;:::-;8847:70;8910:6;8905:3;8847:70;:::i;:::-;8840:77;;8926:52;8971:6;8966:3;8959:4;8952:5;8948:16;8926:52;:::i;:::-;9003:29;9025:6;9003:29;:::i;:::-;8998:3;8994:39;8987:46;;8769:270;8679:360;;;;:::o;9045:364::-;9133:3;9161:39;9194:5;9161:39;:::i;:::-;9216:71;9280:6;9275:3;9216:71;:::i;:::-;9209:78;;9296:52;9341:6;9336:3;9329:4;9322:5;9318:16;9296:52;:::i;:::-;9373:29;9395:6;9373:29;:::i;:::-;9368:3;9364:39;9357:46;;9137:272;9045:364;;;;:::o;9415:377::-;9521:3;9549:39;9582:5;9549:39;:::i;:::-;9604:89;9686:6;9681:3;9604:89;:::i;:::-;9597:96;;9702:52;9747:6;9742:3;9735:4;9728:5;9724:16;9702:52;:::i;:::-;9779:6;9774:3;9770:16;9763:23;;9525:267;9415:377;;;;:::o;9822:845::-;9925:3;9962:5;9956:12;9991:36;10017:9;9991:36;:::i;:::-;10043:89;10125:6;10120:3;10043:89;:::i;:::-;10036:96;;10163:1;10152:9;10148:17;10179:1;10174:137;;;;10325:1;10320:341;;;;10141:520;;10174:137;10258:4;10254:9;10243;10239:25;10234:3;10227:38;10294:6;10289:3;10285:16;10278:23;;10174:137;;10320:341;10387:38;10419:5;10387:38;:::i;:::-;10447:1;10461:154;10475:6;10472:1;10469:13;10461:154;;;10549:7;10543:14;10539:1;10534:3;10530:11;10523:35;10599:1;10590:7;10586:15;10575:26;;10497:4;10494:1;10490:12;10485:17;;10461:154;;;10644:6;10639:3;10635:16;10628:23;;10327:334;;10141:520;;9929:738;;9822:845;;;;:::o;10673:366::-;10815:3;10836:67;10900:2;10895:3;10836:67;:::i;:::-;10829:74;;10912:93;11001:3;10912:93;:::i;:::-;11030:2;11025:3;11021:12;11014:19;;10673:366;;;:::o;11045:::-;11187:3;11208:67;11272:2;11267:3;11208:67;:::i;:::-;11201:74;;11284:93;11373:3;11284:93;:::i;:::-;11402:2;11397:3;11393:12;11386:19;;11045:366;;;:::o;11417:::-;11559:3;11580:67;11644:2;11639:3;11580:67;:::i;:::-;11573:74;;11656:93;11745:3;11656:93;:::i;:::-;11774:2;11769:3;11765:12;11758:19;;11417:366;;;:::o;11789:::-;11931:3;11952:67;12016:2;12011:3;11952:67;:::i;:::-;11945:74;;12028:93;12117:3;12028:93;:::i;:::-;12146:2;12141:3;12137:12;12130:19;;11789:366;;;:::o;12161:::-;12303:3;12324:67;12388:2;12383:3;12324:67;:::i;:::-;12317:74;;12400:93;12489:3;12400:93;:::i;:::-;12518:2;12513:3;12509:12;12502:19;;12161:366;;;:::o;12533:::-;12675:3;12696:67;12760:2;12755:3;12696:67;:::i;:::-;12689:74;;12772:93;12861:3;12772:93;:::i;:::-;12890:2;12885:3;12881:12;12874:19;;12533:366;;;:::o;12905:::-;13047:3;13068:67;13132:2;13127:3;13068:67;:::i;:::-;13061:74;;13144:93;13233:3;13144:93;:::i;:::-;13262:2;13257:3;13253:12;13246:19;;12905:366;;;:::o;13277:::-;13419:3;13440:67;13504:2;13499:3;13440:67;:::i;:::-;13433:74;;13516:93;13605:3;13516:93;:::i;:::-;13634:2;13629:3;13625:12;13618:19;;13277:366;;;:::o;13649:::-;13791:3;13812:67;13876:2;13871:3;13812:67;:::i;:::-;13805:74;;13888:93;13977:3;13888:93;:::i;:::-;14006:2;14001:3;13997:12;13990:19;;13649:366;;;:::o;14021:::-;14163:3;14184:67;14248:2;14243:3;14184:67;:::i;:::-;14177:74;;14260:93;14349:3;14260:93;:::i;:::-;14378:2;14373:3;14369:12;14362:19;;14021:366;;;:::o;14393:::-;14535:3;14556:67;14620:2;14615:3;14556:67;:::i;:::-;14549:74;;14632:93;14721:3;14632:93;:::i;:::-;14750:2;14745:3;14741:12;14734:19;;14393:366;;;:::o;14765:::-;14907:3;14928:67;14992:2;14987:3;14928:67;:::i;:::-;14921:74;;15004:93;15093:3;15004:93;:::i;:::-;15122:2;15117:3;15113:12;15106:19;;14765:366;;;:::o;15137:::-;15279:3;15300:67;15364:2;15359:3;15300:67;:::i;:::-;15293:74;;15376:93;15465:3;15376:93;:::i;:::-;15494:2;15489:3;15485:12;15478:19;;15137:366;;;:::o;15509:::-;15651:3;15672:67;15736:2;15731:3;15672:67;:::i;:::-;15665:74;;15748:93;15837:3;15748:93;:::i;:::-;15866:2;15861:3;15857:12;15850:19;;15509:366;;;:::o;15881:::-;16023:3;16044:67;16108:2;16103:3;16044:67;:::i;:::-;16037:74;;16120:93;16209:3;16120:93;:::i;:::-;16238:2;16233:3;16229:12;16222:19;;15881:366;;;:::o;16253:::-;16395:3;16416:67;16480:2;16475:3;16416:67;:::i;:::-;16409:74;;16492:93;16581:3;16492:93;:::i;:::-;16610:2;16605:3;16601:12;16594:19;;16253:366;;;:::o;16625:::-;16767:3;16788:67;16852:2;16847:3;16788:67;:::i;:::-;16781:74;;16864:93;16953:3;16864:93;:::i;:::-;16982:2;16977:3;16973:12;16966:19;;16625:366;;;:::o;16997:::-;17139:3;17160:67;17224:2;17219:3;17160:67;:::i;:::-;17153:74;;17236:93;17325:3;17236:93;:::i;:::-;17354:2;17349:3;17345:12;17338:19;;16997:366;;;:::o;17369:::-;17511:3;17532:67;17596:2;17591:3;17532:67;:::i;:::-;17525:74;;17608:93;17697:3;17608:93;:::i;:::-;17726:2;17721:3;17717:12;17710:19;;17369:366;;;:::o;17741:::-;17883:3;17904:67;17968:2;17963:3;17904:67;:::i;:::-;17897:74;;17980:93;18069:3;17980:93;:::i;:::-;18098:2;18093:3;18089:12;18082:19;;17741:366;;;:::o;18113:::-;18255:3;18276:67;18340:2;18335:3;18276:67;:::i;:::-;18269:74;;18352:93;18441:3;18352:93;:::i;:::-;18470:2;18465:3;18461:12;18454:19;;18113:366;;;:::o;18485:::-;18627:3;18648:67;18712:2;18707:3;18648:67;:::i;:::-;18641:74;;18724:93;18813:3;18724:93;:::i;:::-;18842:2;18837:3;18833:12;18826:19;;18485:366;;;:::o;18857:398::-;19016:3;19037:83;19118:1;19113:3;19037:83;:::i;:::-;19030:90;;19129:93;19218:3;19129:93;:::i;:::-;19247:1;19242:3;19238:11;19231:18;;18857:398;;;:::o;19261:366::-;19403:3;19424:67;19488:2;19483:3;19424:67;:::i;:::-;19417:74;;19500:93;19589:3;19500:93;:::i;:::-;19618:2;19613:3;19609:12;19602:19;;19261:366;;;:::o;19633:::-;19775:3;19796:67;19860:2;19855:3;19796:67;:::i;:::-;19789:74;;19872:93;19961:3;19872:93;:::i;:::-;19990:2;19985:3;19981:12;19974:19;;19633:366;;;:::o;20005:::-;20147:3;20168:67;20232:2;20227:3;20168:67;:::i;:::-;20161:74;;20244:93;20333:3;20244:93;:::i;:::-;20362:2;20357:3;20353:12;20346:19;;20005:366;;;:::o;20377:108::-;20454:24;20472:5;20454:24;:::i;:::-;20449:3;20442:37;20377:108;;:::o;20491:118::-;20578:24;20596:5;20578:24;:::i;:::-;20573:3;20566:37;20491:118;;:::o;20615:589::-;20840:3;20862:95;20953:3;20944:6;20862:95;:::i;:::-;20855:102;;20974:95;21065:3;21056:6;20974:95;:::i;:::-;20967:102;;21086:92;21174:3;21165:6;21086:92;:::i;:::-;21079:99;;21195:3;21188:10;;20615:589;;;;;;:::o;21210:379::-;21394:3;21416:147;21559:3;21416:147;:::i;:::-;21409:154;;21580:3;21573:10;;21210:379;;;:::o;21595:222::-;21688:4;21726:2;21715:9;21711:18;21703:26;;21739:71;21807:1;21796:9;21792:17;21783:6;21739:71;:::i;:::-;21595:222;;;;:::o;21823:640::-;22018:4;22056:3;22045:9;22041:19;22033:27;;22070:71;22138:1;22127:9;22123:17;22114:6;22070:71;:::i;:::-;22151:72;22219:2;22208:9;22204:18;22195:6;22151:72;:::i;:::-;22233;22301:2;22290:9;22286:18;22277:6;22233:72;:::i;:::-;22352:9;22346:4;22342:20;22337:2;22326:9;22322:18;22315:48;22380:76;22451:4;22442:6;22380:76;:::i;:::-;22372:84;;21823:640;;;;;;;:::o;22469:373::-;22612:4;22650:2;22639:9;22635:18;22627:26;;22699:9;22693:4;22689:20;22685:1;22674:9;22670:17;22663:47;22727:108;22830:4;22821:6;22727:108;:::i;:::-;22719:116;;22469:373;;;;:::o;22848:210::-;22935:4;22973:2;22962:9;22958:18;22950:26;;22986:65;23048:1;23037:9;23033:17;23024:6;22986:65;:::i;:::-;22848:210;;;;:::o;23064:313::-;23177:4;23215:2;23204:9;23200:18;23192:26;;23264:9;23258:4;23254:20;23250:1;23239:9;23235:17;23228:47;23292:78;23365:4;23356:6;23292:78;:::i;:::-;23284:86;;23064:313;;;;:::o;23383:419::-;23549:4;23587:2;23576:9;23572:18;23564:26;;23636:9;23630:4;23626:20;23622:1;23611:9;23607:17;23600:47;23664:131;23790:4;23664:131;:::i;:::-;23656:139;;23383:419;;;:::o;23808:::-;23974:4;24012:2;24001:9;23997:18;23989:26;;24061:9;24055:4;24051:20;24047:1;24036:9;24032:17;24025:47;24089:131;24215:4;24089:131;:::i;:::-;24081:139;;23808:419;;;:::o;24233:::-;24399:4;24437:2;24426:9;24422:18;24414:26;;24486:9;24480:4;24476:20;24472:1;24461:9;24457:17;24450:47;24514:131;24640:4;24514:131;:::i;:::-;24506:139;;24233:419;;;:::o;24658:::-;24824:4;24862:2;24851:9;24847:18;24839:26;;24911:9;24905:4;24901:20;24897:1;24886:9;24882:17;24875:47;24939:131;25065:4;24939:131;:::i;:::-;24931:139;;24658:419;;;:::o;25083:::-;25249:4;25287:2;25276:9;25272:18;25264:26;;25336:9;25330:4;25326:20;25322:1;25311:9;25307:17;25300:47;25364:131;25490:4;25364:131;:::i;:::-;25356:139;;25083:419;;;:::o;25508:::-;25674:4;25712:2;25701:9;25697:18;25689:26;;25761:9;25755:4;25751:20;25747:1;25736:9;25732:17;25725:47;25789:131;25915:4;25789:131;:::i;:::-;25781:139;;25508:419;;;:::o;25933:::-;26099:4;26137:2;26126:9;26122:18;26114:26;;26186:9;26180:4;26176:20;26172:1;26161:9;26157:17;26150:47;26214:131;26340:4;26214:131;:::i;:::-;26206:139;;25933:419;;;:::o;26358:::-;26524:4;26562:2;26551:9;26547:18;26539:26;;26611:9;26605:4;26601:20;26597:1;26586:9;26582:17;26575:47;26639:131;26765:4;26639:131;:::i;:::-;26631:139;;26358:419;;;:::o;26783:::-;26949:4;26987:2;26976:9;26972:18;26964:26;;27036:9;27030:4;27026:20;27022:1;27011:9;27007:17;27000:47;27064:131;27190:4;27064:131;:::i;:::-;27056:139;;26783:419;;;:::o;27208:::-;27374:4;27412:2;27401:9;27397:18;27389:26;;27461:9;27455:4;27451:20;27447:1;27436:9;27432:17;27425:47;27489:131;27615:4;27489:131;:::i;:::-;27481:139;;27208:419;;;:::o;27633:::-;27799:4;27837:2;27826:9;27822:18;27814:26;;27886:9;27880:4;27876:20;27872:1;27861:9;27857:17;27850:47;27914:131;28040:4;27914:131;:::i;:::-;27906:139;;27633:419;;;:::o;28058:::-;28224:4;28262:2;28251:9;28247:18;28239:26;;28311:9;28305:4;28301:20;28297:1;28286:9;28282:17;28275:47;28339:131;28465:4;28339:131;:::i;:::-;28331:139;;28058:419;;;:::o;28483:::-;28649:4;28687:2;28676:9;28672:18;28664:26;;28736:9;28730:4;28726:20;28722:1;28711:9;28707:17;28700:47;28764:131;28890:4;28764:131;:::i;:::-;28756:139;;28483:419;;;:::o;28908:::-;29074:4;29112:2;29101:9;29097:18;29089:26;;29161:9;29155:4;29151:20;29147:1;29136:9;29132:17;29125:47;29189:131;29315:4;29189:131;:::i;:::-;29181:139;;28908:419;;;:::o;29333:::-;29499:4;29537:2;29526:9;29522:18;29514:26;;29586:9;29580:4;29576:20;29572:1;29561:9;29557:17;29550:47;29614:131;29740:4;29614:131;:::i;:::-;29606:139;;29333:419;;;:::o;29758:::-;29924:4;29962:2;29951:9;29947:18;29939:26;;30011:9;30005:4;30001:20;29997:1;29986:9;29982:17;29975:47;30039:131;30165:4;30039:131;:::i;:::-;30031:139;;29758:419;;;:::o;30183:::-;30349:4;30387:2;30376:9;30372:18;30364:26;;30436:9;30430:4;30426:20;30422:1;30411:9;30407:17;30400:47;30464:131;30590:4;30464:131;:::i;:::-;30456:139;;30183:419;;;:::o;30608:::-;30774:4;30812:2;30801:9;30797:18;30789:26;;30861:9;30855:4;30851:20;30847:1;30836:9;30832:17;30825:47;30889:131;31015:4;30889:131;:::i;:::-;30881:139;;30608:419;;;:::o;31033:::-;31199:4;31237:2;31226:9;31222:18;31214:26;;31286:9;31280:4;31276:20;31272:1;31261:9;31257:17;31250:47;31314:131;31440:4;31314:131;:::i;:::-;31306:139;;31033:419;;;:::o;31458:::-;31624:4;31662:2;31651:9;31647:18;31639:26;;31711:9;31705:4;31701:20;31697:1;31686:9;31682:17;31675:47;31739:131;31865:4;31739:131;:::i;:::-;31731:139;;31458:419;;;:::o;31883:::-;32049:4;32087:2;32076:9;32072:18;32064:26;;32136:9;32130:4;32126:20;32122:1;32111:9;32107:17;32100:47;32164:131;32290:4;32164:131;:::i;:::-;32156:139;;31883:419;;;:::o;32308:::-;32474:4;32512:2;32501:9;32497:18;32489:26;;32561:9;32555:4;32551:20;32547:1;32536:9;32532:17;32525:47;32589:131;32715:4;32589:131;:::i;:::-;32581:139;;32308:419;;;:::o;32733:::-;32899:4;32937:2;32926:9;32922:18;32914:26;;32986:9;32980:4;32976:20;32972:1;32961:9;32957:17;32950:47;33014:131;33140:4;33014:131;:::i;:::-;33006:139;;32733:419;;;:::o;33158:::-;33324:4;33362:2;33351:9;33347:18;33339:26;;33411:9;33405:4;33401:20;33397:1;33386:9;33382:17;33375:47;33439:131;33565:4;33439:131;:::i;:::-;33431:139;;33158:419;;;:::o;33583:::-;33749:4;33787:2;33776:9;33772:18;33764:26;;33836:9;33830:4;33826:20;33822:1;33811:9;33807:17;33800:47;33864:131;33990:4;33864:131;:::i;:::-;33856:139;;33583:419;;;:::o;34008:222::-;34101:4;34139:2;34128:9;34124:18;34116:26;;34152:71;34220:1;34209:9;34205:17;34196:6;34152:71;:::i;:::-;34008:222;;;;:::o;34236:129::-;34270:6;34297:20;;:::i;:::-;34287:30;;34326:33;34354:4;34346:6;34326:33;:::i;:::-;34236:129;;;:::o;34371:75::-;34404:6;34437:2;34431:9;34421:19;;34371:75;:::o;34452:307::-;34513:4;34603:18;34595:6;34592:30;34589:56;;;34625:18;;:::i;:::-;34589:56;34663:29;34685:6;34663:29;:::i;:::-;34655:37;;34747:4;34741;34737:15;34729:23;;34452:307;;;:::o;34765:308::-;34827:4;34917:18;34909:6;34906:30;34903:56;;;34939:18;;:::i;:::-;34903:56;34977:29;34999:6;34977:29;:::i;:::-;34969:37;;35061:4;35055;35051:15;35043:23;;34765:308;;;:::o;35079:132::-;35146:4;35169:3;35161:11;;35199:4;35194:3;35190:14;35182:22;;35079:132;;;:::o;35217:141::-;35266:4;35289:3;35281:11;;35312:3;35309:1;35302:14;35346:4;35343:1;35333:18;35325:26;;35217:141;;;:::o;35364:114::-;35431:6;35465:5;35459:12;35449:22;;35364:114;;;:::o;35484:98::-;35535:6;35569:5;35563:12;35553:22;;35484:98;;;:::o;35588:99::-;35640:6;35674:5;35668:12;35658:22;;35588:99;;;:::o;35693:113::-;35763:4;35795;35790:3;35786:14;35778:22;;35693:113;;;:::o;35812:184::-;35911:11;35945:6;35940:3;35933:19;35985:4;35980:3;35976:14;35961:29;;35812:184;;;;:::o;36002:168::-;36085:11;36119:6;36114:3;36107:19;36159:4;36154:3;36150:14;36135:29;;36002:168;;;;:::o;36176:147::-;36277:11;36314:3;36299:18;;36176:147;;;;:::o;36329:169::-;36413:11;36447:6;36442:3;36435:19;36487:4;36482:3;36478:14;36463:29;;36329:169;;;;:::o;36504:148::-;36606:11;36643:3;36628:18;;36504:148;;;;:::o;36658:305::-;36698:3;36717:20;36735:1;36717:20;:::i;:::-;36712:25;;36751:20;36769:1;36751:20;:::i;:::-;36746:25;;36905:1;36837:66;36833:74;36830:1;36827:81;36824:107;;;36911:18;;:::i;:::-;36824:107;36955:1;36952;36948:9;36941:16;;36658:305;;;;:::o;36969:185::-;37009:1;37026:20;37044:1;37026:20;:::i;:::-;37021:25;;37060:20;37078:1;37060:20;:::i;:::-;37055:25;;37099:1;37089:35;;37104:18;;:::i;:::-;37089:35;37146:1;37143;37139:9;37134:14;;36969:185;;;;:::o;37160:348::-;37200:7;37223:20;37241:1;37223:20;:::i;:::-;37218:25;;37257:20;37275:1;37257:20;:::i;:::-;37252:25;;37445:1;37377:66;37373:74;37370:1;37367:81;37362:1;37355:9;37348:17;37344:105;37341:131;;;37452:18;;:::i;:::-;37341:131;37500:1;37497;37493:9;37482:20;;37160:348;;;;:::o;37514:191::-;37554:4;37574:20;37592:1;37574:20;:::i;:::-;37569:25;;37608:20;37626:1;37608:20;:::i;:::-;37603:25;;37647:1;37644;37641:8;37638:34;;;37652:18;;:::i;:::-;37638:34;37697:1;37694;37690:9;37682:17;;37514:191;;;;:::o;37711:96::-;37748:7;37777:24;37795:5;37777:24;:::i;:::-;37766:35;;37711:96;;;:::o;37813:90::-;37847:7;37890:5;37883:13;37876:21;37865:32;;37813:90;;;:::o;37909:149::-;37945:7;37985:66;37978:5;37974:78;37963:89;;37909:149;;;:::o;38064:126::-;38101:7;38141:42;38134:5;38130:54;38119:65;;38064:126;;;:::o;38196:77::-;38233:7;38262:5;38251:16;;38196:77;;;:::o;38279:154::-;38363:6;38358:3;38353;38340:30;38425:1;38416:6;38411:3;38407:16;38400:27;38279:154;;;:::o;38439:307::-;38507:1;38517:113;38531:6;38528:1;38525:13;38517:113;;;38616:1;38611:3;38607:11;38601:18;38597:1;38592:3;38588:11;38581:39;38553:2;38550:1;38546:10;38541:15;;38517:113;;;38648:6;38645:1;38642:13;38639:101;;;38728:1;38719:6;38714:3;38710:16;38703:27;38639:101;38488:258;38439:307;;;:::o;38752:320::-;38796:6;38833:1;38827:4;38823:12;38813:22;;38880:1;38874:4;38870:12;38901:18;38891:81;;38957:4;38949:6;38945:17;38935:27;;38891:81;39019:2;39011:6;39008:14;38988:18;38985:38;38982:84;;;39038:18;;:::i;:::-;38982:84;38803:269;38752:320;;;:::o;39078:281::-;39161:27;39183:4;39161:27;:::i;:::-;39153:6;39149:40;39291:6;39279:10;39276:22;39255:18;39243:10;39240:34;39237:62;39234:88;;;39302:18;;:::i;:::-;39234:88;39342:10;39338:2;39331:22;39121:238;39078:281;;:::o;39365:233::-;39404:3;39427:24;39445:5;39427:24;:::i;:::-;39418:33;;39473:66;39466:5;39463:77;39460:103;;;39543:18;;:::i;:::-;39460:103;39590:1;39583:5;39579:13;39572:20;;39365:233;;;:::o;39604:176::-;39636:1;39653:20;39671:1;39653:20;:::i;:::-;39648:25;;39687:20;39705:1;39687:20;:::i;:::-;39682:25;;39726:1;39716:35;;39731:18;;:::i;:::-;39716:35;39772:1;39769;39765:9;39760:14;;39604:176;;;;:::o;39786:180::-;39834:77;39831:1;39824:88;39931:4;39928:1;39921:15;39955:4;39952:1;39945:15;39972:180;40020:77;40017:1;40010:88;40117:4;40114:1;40107:15;40141:4;40138:1;40131:15;40158:180;40206:77;40203:1;40196:88;40303:4;40300:1;40293:15;40327:4;40324:1;40317:15;40344:180;40392:77;40389:1;40382:88;40489:4;40486:1;40479:15;40513:4;40510:1;40503:15;40530:180;40578:77;40575:1;40568:88;40675:4;40672:1;40665:15;40699:4;40696:1;40689:15;40716:180;40764:77;40761:1;40754:88;40861:4;40858:1;40851:15;40885:4;40882:1;40875:15;40902:117;41011:1;41008;41001:12;41025:117;41134:1;41131;41124:12;41148:117;41257:1;41254;41247:12;41271:117;41380:1;41377;41370:12;41394:102;41435:6;41486:2;41482:7;41477:2;41470:5;41466:14;41462:28;41452:38;;41394:102;;;:::o;41502:230::-;41642:34;41638:1;41630:6;41626:14;41619:58;41711:13;41706:2;41698:6;41694:15;41687:38;41502:230;:::o;41738:237::-;41878:34;41874:1;41866:6;41862:14;41855:58;41947:20;41942:2;41934:6;41930:15;41923:45;41738:237;:::o;41981:225::-;42121:34;42117:1;42109:6;42105:14;42098:58;42190:8;42185:2;42177:6;42173:15;42166:33;41981:225;:::o;42212:176::-;42352:28;42348:1;42340:6;42336:14;42329:52;42212:176;:::o;42394:169::-;42534:21;42530:1;42522:6;42518:14;42511:45;42394:169;:::o;42569:178::-;42709:30;42705:1;42697:6;42693:14;42686:54;42569:178;:::o;42753:175::-;42893:27;42889:1;42881:6;42877:14;42870:51;42753:175;:::o;42934:174::-;43074:26;43070:1;43062:6;43058:14;43051:50;42934:174;:::o;43114:172::-;43254:24;43250:1;43242:6;43238:14;43231:48;43114:172;:::o;43292:168::-;43432:20;43428:1;43420:6;43416:14;43409:44;43292:168;:::o;43466:223::-;43606:34;43602:1;43594:6;43590:14;43583:58;43675:6;43670:2;43662:6;43658:15;43651:31;43466:223;:::o;43695:175::-;43835:27;43831:1;43823:6;43819:14;43812:51;43695:175;:::o;43876:231::-;44016:34;44012:1;44004:6;44000:14;43993:58;44085:14;44080:2;44072:6;44068:15;44061:39;43876:231;:::o;44113:243::-;44253:34;44249:1;44241:6;44237:14;44230:58;44322:26;44317:2;44309:6;44305:15;44298:51;44113:243;:::o;44362:229::-;44502:34;44498:1;44490:6;44486:14;44479:58;44571:12;44566:2;44558:6;44554:15;44547:37;44362:229;:::o;44597:228::-;44737:34;44733:1;44725:6;44721:14;44714:58;44806:11;44801:2;44793:6;44789:15;44782:36;44597:228;:::o;44831:182::-;44971:34;44967:1;44959:6;44955:14;44948:58;44831:182;:::o;45019:231::-;45159:34;45155:1;45147:6;45143:14;45136:58;45228:14;45223:2;45215:6;45211:15;45204:39;45019:231;:::o;45256:182::-;45396:34;45392:1;45384:6;45380:14;45373:58;45256:182;:::o;45444:228::-;45584:34;45580:1;45572:6;45568:14;45561:58;45653:11;45648:2;45640:6;45636:15;45629:36;45444:228;:::o;45678:234::-;45818:34;45814:1;45806:6;45802:14;45795:58;45887:17;45882:2;45874:6;45870:15;45863:42;45678:234;:::o;45918:220::-;46058:34;46054:1;46046:6;46042:14;46035:58;46127:3;46122:2;46114:6;46110:15;46103:28;45918:220;:::o;46144:114::-;;:::o;46264:236::-;46404:34;46400:1;46392:6;46388:14;46381:58;46473:19;46468:2;46460:6;46456:15;46449:44;46264:236;:::o;46506:231::-;46646:34;46642:1;46634:6;46630:14;46623:58;46715:14;46710:2;46702:6;46698:15;46691:39;46506:231;:::o;46743:164::-;46883:16;46879:1;46871:6;46867:14;46860:40;46743:164;:::o;46913:122::-;46986:24;47004:5;46986:24;:::i;:::-;46979:5;46976:35;46966:63;;47025:1;47022;47015:12;46966:63;46913:122;:::o;47041:116::-;47111:21;47126:5;47111:21;:::i;:::-;47104:5;47101:32;47091:60;;47147:1;47144;47137:12;47091:60;47041:116;:::o;47163:120::-;47235:23;47252:5;47235:23;:::i;:::-;47228:5;47225:34;47215:62;;47273:1;47270;47263:12;47215:62;47163:120;:::o;47289:122::-;47362:24;47380:5;47362:24;:::i;:::-;47355:5;47352:35;47342:63;;47401:1;47398;47391:12;47342:63;47289:122;:::o

Swarm Source

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