ETH Price: $3,240.73 (-0.55%)
Gas: 1 Gwei

Token

Zombie Fish Mafia (ZFM)
 

Overview

Max Total Supply

925 ZFM

Holders

325

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 ZFM
0x88e76e904bf2ae273d00619795a64f13bd546817
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Based Fish Never Die

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ZombieFishMafia

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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


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


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


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


pragma solidity ^0.8.0;

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


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


pragma solidity ^0.8.0;

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

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

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


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


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


pragma solidity ^0.8.0;

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

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


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


pragma solidity ^0.8.0;

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

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

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

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

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


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


pragma solidity ^0.8.0;

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


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


pragma solidity ^0.8.0;







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


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


pragma solidity ^0.8.0;

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

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

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


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


pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


pragma solidity ^0.8.0;

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}


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


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


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


pragma solidity ^0.8.0;

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

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

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

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

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


// File contracts/ZombieFishMafia.sol

///////////////////////////////////////////////////////////////////////////////////////////
//                                                                                        //
//                                                                                        //
//        ____                      __   _______      __       __  ___      _____         //
//       / __ )____ _________  ____/ /  / ____(_)____/ /_     /  |/  /___ _/ __(_)___ _   //
//      / __  / __ `/ ___/ _ \/ __  /  / /_  / / ___/ __ \   / /|_/ / __ `/ /_/ / __ `/   //
//     / /_/ / /_/ (__  )  __/ /_/ /  / __/ / (__  ) / / /  / /  / / /_/ / __/ / /_/ /    //
//    /_____/\__,_/____/\___/\__,_/  /_/   /_/____/_/ /_/  /_/  /_/\__,_/_/ /_/\__,_/     //
//                                                                                        //
//                                                                                        //
//                             [ZOMBIE FISH MAFIA COLLECTION]                             //
////////////////////////////////////////////////////////////////////////////////////////////

pragma solidity ^0.8.2;

contract ZombieFishMafia is ERC721, ERC721Enumerable, ERC721URIStorage, Ownable {
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;

    constructor() ERC721("Zombie Fish Mafia", "ZFM") {}

    function mintNFT(address recipient, string memory tokenURI)
        public onlyOwner
        returns (uint256)
    {
        _tokenIdCounter.increment();

        uint256 newItemId = _tokenIdCounter.current();
        _mint(recipient, newItemId);
        _setTokenURI(newItemId, tokenURI);

        return newItemId;
    }
    // The following functions are overrides required by Solidity.

    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
        internal
        override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721, ERC721URIStorage)
        returns (string memory)
    {
        return super.tokenURI(tokenId);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"string","name":"tokenURI","type":"string"}],"name":"mintNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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"}]

60806040523480156200001157600080fd5b506040518060400160405280601181526020017f5a6f6d6269652046697368204d616669610000000000000000000000000000008152506040518060400160405280600381526020017f5a464d0000000000000000000000000000000000000000000000000000000000815250816000908051906020019062000096929190620001a6565b508060019080519060200190620000af929190620001a6565b505050620000d2620000c6620000d860201b60201c565b620000e060201b60201c565b620002bb565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b49062000256565b90600052602060002090601f016020900481019282620001d8576000855562000224565b82601f10620001f357805160ff191683800117855562000224565b8280016001018555821562000224579182015b828111156200022357825182559160200191906001019062000206565b5b50905062000233919062000237565b5090565b5b808211156200025257600081600090555060010162000238565b5090565b600060028204905060018216806200026f57607f821691505b602082108114156200028657620002856200028c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61380180620002cb6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063b88d4fde11610071578063b88d4fde14610343578063c87b56dd1461035f578063e985e9c51461038f578063eacabe14146103bf578063f2fde38b146103ef5761012c565b806370a08231146102b1578063715018a6146102e15780638da5cb5b146102eb57806395d89b4114610309578063a22cb465146103275761012c565b806323b872dd116100f457806323b872dd146101e95780632f745c591461020557806342842e0e146102355780634f6ccce7146102515780636352211e146102815761012c565b806301ffc9a71461013157806306fdde0314610161578063081812fc1461017f578063095ea7b3146101af57806318160ddd146101cb575b600080fd5b61014b6004803603810190610146919061268c565b61040b565b6040516101589190612b1e565b60405180910390f35b61016961041d565b6040516101769190612b39565b60405180910390f35b610199600480360381019061019491906126de565b6104af565b6040516101a69190612ab7565b60405180910390f35b6101c960048036038101906101c49190612650565b610534565b005b6101d361064c565b6040516101e09190612ddb565b60405180910390f35b61020360048036038101906101fe91906124f6565b610659565b005b61021f600480360381019061021a9190612650565b6106b9565b60405161022c9190612ddb565b60405180910390f35b61024f600480360381019061024a91906124f6565b61075e565b005b61026b600480360381019061026691906126de565b61077e565b6040516102789190612ddb565b60405180910390f35b61029b600480360381019061029691906126de565b610815565b6040516102a89190612ab7565b60405180910390f35b6102cb60048036038101906102c69190612491565b6108c7565b6040516102d89190612ddb565b60405180910390f35b6102e961097f565b005b6102f3610a07565b6040516103009190612ab7565b60405180910390f35b610311610a31565b60405161031e9190612b39565b60405180910390f35b610341600480360381019061033c91906125c0565b610ac3565b005b61035d60048036038101906103589190612545565b610c44565b005b610379600480360381019061037491906126de565b610ca6565b6040516103869190612b39565b60405180910390f35b6103a960048036038101906103a491906124ba565b610cb8565b6040516103b69190612b1e565b60405180910390f35b6103d960048036038101906103d491906125fc565b610d4c565b6040516103e69190612ddb565b60405180910390f35b61040960048036038101906104049190612491565b610e00565b005b600061041682610ef8565b9050919050565b60606000805461042c90613031565b80601f016020809104026020016040519081016040528092919081815260200182805461045890613031565b80156104a55780601f1061047a576101008083540402835291602001916104a5565b820191906000526020600020905b81548152906001019060200180831161048857829003601f168201915b5050505050905090565b60006104ba82610f72565b6104f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104f090612cfb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061053f82610815565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156105b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a790612d7b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166105cf610fde565b73ffffffffffffffffffffffffffffffffffffffff1614806105fe57506105fd816105f8610fde565b610cb8565b5b61063d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063490612c3b565b60405180910390fd5b6106478383610fe6565b505050565b6000600880549050905090565b61066a610664610fde565b8261109f565b6106a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a090612d9b565b60405180910390fd5b6106b483838361117d565b505050565b60006106c4836108c7565b8210610705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fc90612b5b565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61077983838360405180602001604052806000815250610c44565b505050565b600061078861064c565b82106107c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c090612dbb565b60405180910390fd5b60088281548110610803577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b590612c7b565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092f90612c5b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610987610fde565b73ffffffffffffffffffffffffffffffffffffffff166109a5610a07565b73ffffffffffffffffffffffffffffffffffffffff16146109fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f290612d1b565b60405180910390fd5b610a0560006113d9565b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610a4090613031565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6c90613031565b8015610ab95780601f10610a8e57610100808354040283529160200191610ab9565b820191906000526020600020905b815481529060010190602001808311610a9c57829003601f168201915b5050505050905090565b610acb610fde565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3090612bfb565b60405180910390fd5b8060056000610b46610fde565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610bf3610fde565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610c389190612b1e565b60405180910390a35050565b610c55610c4f610fde565b8361109f565b610c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8b90612d9b565b60405180910390fd5b610ca08484848461149f565b50505050565b6060610cb1826114fb565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000610d56610fde565b73ffffffffffffffffffffffffffffffffffffffff16610d74610a07565b73ffffffffffffffffffffffffffffffffffffffff1614610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc190612d1b565b60405180910390fd5b610dd4600c61164d565b6000610de0600c611663565b9050610dec8482611671565b610df6818461183f565b8091505092915050565b610e08610fde565b73ffffffffffffffffffffffffffffffffffffffff16610e26610a07565b73ffffffffffffffffffffffffffffffffffffffff1614610e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7390612d1b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee390612b9b565b60405180910390fd5b610ef5816113d9565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610f6b5750610f6a826118b3565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661105983610815565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006110aa82610f72565b6110e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e090612c1b565b60405180910390fd5b60006110f483610815565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061116357508373ffffffffffffffffffffffffffffffffffffffff1661114b846104af565b73ffffffffffffffffffffffffffffffffffffffff16145b8061117457506111738185610cb8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661119d82610815565b73ffffffffffffffffffffffffffffffffffffffff16146111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea90612d3b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125a90612bdb565b60405180910390fd5b61126e838383611995565b611279600082610fe6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112c99190612f47565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113209190612ec0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6114aa84848461117d565b6114b6848484846119a5565b6114f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ec90612b7b565b60405180910390fd5b50505050565b606061150682610f72565b611545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153c90612cdb565b60405180910390fd5b6000600a6000848152602001908152602001600020805461156590613031565b80601f016020809104026020016040519081016040528092919081815260200182805461159190613031565b80156115de5780601f106115b3576101008083540402835291602001916115de565b820191906000526020600020905b8154815290600101906020018083116115c157829003601f168201915b5050505050905060006115ef611b3c565b9050600081511415611605578192505050611648565b60008251111561163a578082604051602001611622929190612a93565b60405160208183030381529060405292505050611648565b61164384611b53565b925050505b919050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d890612cbb565b60405180910390fd5b6116ea81610f72565b1561172a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172190612bbb565b60405180910390fd5b61173660008383611995565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117869190612ec0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b61184882610f72565b611887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187e90612c9b565b60405180910390fd5b80600a600084815260200190815260200160002090805190602001906118ae9291906122b5565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061197e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061198e575061198d82611bfa565b5b9050919050565b6119a0838383611c64565b505050565b60006119c68473ffffffffffffffffffffffffffffffffffffffff16611d78565b15611b2f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119ef610fde565b8786866040518563ffffffff1660e01b8152600401611a119493929190612ad2565b602060405180830381600087803b158015611a2b57600080fd5b505af1925050508015611a5c57506040513d601f19601f82011682018060405250810190611a5991906126b5565b60015b611adf573d8060008114611a8c576040519150601f19603f3d011682016040523d82523d6000602084013e611a91565b606091505b50600081511415611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace90612b7b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611b34565b600190505b949350505050565b606060405180602001604052806000815250905090565b6060611b5e82610f72565b611b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9490612d5b565b60405180910390fd5b6000611ba7611b3c565b90506000815111611bc75760405180602001604052806000815250611bf2565b80611bd184611d8b565b604051602001611be2929190612a93565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611c6f838383611f38565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611cb257611cad81611f3d565b611cf1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611cf057611cef8382611f86565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d3457611d2f816120f3565b611d73565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611d7257611d718282612236565b5b5b505050565b600080823b905060008111915050919050565b60606000821415611dd3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f33565b600082905060005b60008214611e05578080611dee90613094565b915050600a82611dfe9190612f16565b9150611ddb565b60008167ffffffffffffffff811115611e47577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e795781602001600182028036833780820191505090505b5090505b60008514611f2c57600182611e929190612f47565b9150600a85611ea191906130dd565b6030611ead9190612ec0565b60f81b818381518110611ee9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f259190612f16565b9450611e7d565b8093505050505b919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001611f93846108c7565b611f9d9190612f47565b9050600060076000848152602001908152602001600020549050818114612082576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506121079190612f47565b905060006009600084815260200190815260200160002054905060006008838154811061215d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106121a5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061221a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612241836108c7565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546122c190613031565b90600052602060002090601f0160209004810192826122e3576000855561232a565b82601f106122fc57805160ff191683800117855561232a565b8280016001018555821561232a579182015b8281111561232957825182559160200191906001019061230e565b5b509050612337919061233b565b5090565b5b8082111561235457600081600090555060010161233c565b5090565b600061236b61236684612e1b565b612df6565b90508281526020810184848401111561238357600080fd5b61238e848285612fef565b509392505050565b60006123a96123a484612e4c565b612df6565b9050828152602081018484840111156123c157600080fd5b6123cc848285612fef565b509392505050565b6000813590506123e38161376f565b92915050565b6000813590506123f881613786565b92915050565b60008135905061240d8161379d565b92915050565b6000815190506124228161379d565b92915050565b600082601f83011261243957600080fd5b8135612449848260208601612358565b91505092915050565b600082601f83011261246357600080fd5b8135612473848260208601612396565b91505092915050565b60008135905061248b816137b4565b92915050565b6000602082840312156124a357600080fd5b60006124b1848285016123d4565b91505092915050565b600080604083850312156124cd57600080fd5b60006124db858286016123d4565b92505060206124ec858286016123d4565b9150509250929050565b60008060006060848603121561250b57600080fd5b6000612519868287016123d4565b935050602061252a868287016123d4565b925050604061253b8682870161247c565b9150509250925092565b6000806000806080858703121561255b57600080fd5b6000612569878288016123d4565b945050602061257a878288016123d4565b935050604061258b8782880161247c565b925050606085013567ffffffffffffffff8111156125a857600080fd5b6125b487828801612428565b91505092959194509250565b600080604083850312156125d357600080fd5b60006125e1858286016123d4565b92505060206125f2858286016123e9565b9150509250929050565b6000806040838503121561260f57600080fd5b600061261d858286016123d4565b925050602083013567ffffffffffffffff81111561263a57600080fd5b61264685828601612452565b9150509250929050565b6000806040838503121561266357600080fd5b6000612671858286016123d4565b92505060206126828582860161247c565b9150509250929050565b60006020828403121561269e57600080fd5b60006126ac848285016123fe565b91505092915050565b6000602082840312156126c757600080fd5b60006126d584828501612413565b91505092915050565b6000602082840312156126f057600080fd5b60006126fe8482850161247c565b91505092915050565b61271081612f7b565b82525050565b61271f81612f8d565b82525050565b600061273082612e7d565b61273a8185612e93565b935061274a818560208601612ffe565b612753816131ca565b840191505092915050565b600061276982612e88565b6127738185612ea4565b9350612783818560208601612ffe565b61278c816131ca565b840191505092915050565b60006127a282612e88565b6127ac8185612eb5565b93506127bc818560208601612ffe565b80840191505092915050565b60006127d5602b83612ea4565b91506127e0826131db565b604082019050919050565b60006127f8603283612ea4565b91506128038261322a565b604082019050919050565b600061281b602683612ea4565b915061282682613279565b604082019050919050565b600061283e601c83612ea4565b9150612849826132c8565b602082019050919050565b6000612861602483612ea4565b915061286c826132f1565b604082019050919050565b6000612884601983612ea4565b915061288f82613340565b602082019050919050565b60006128a7602c83612ea4565b91506128b282613369565b604082019050919050565b60006128ca603883612ea4565b91506128d5826133b8565b604082019050919050565b60006128ed602a83612ea4565b91506128f882613407565b604082019050919050565b6000612910602983612ea4565b915061291b82613456565b604082019050919050565b6000612933602e83612ea4565b915061293e826134a5565b604082019050919050565b6000612956602083612ea4565b9150612961826134f4565b602082019050919050565b6000612979603183612ea4565b91506129848261351d565b604082019050919050565b600061299c602c83612ea4565b91506129a78261356c565b604082019050919050565b60006129bf602083612ea4565b91506129ca826135bb565b602082019050919050565b60006129e2602983612ea4565b91506129ed826135e4565b604082019050919050565b6000612a05602f83612ea4565b9150612a1082613633565b604082019050919050565b6000612a28602183612ea4565b9150612a3382613682565b604082019050919050565b6000612a4b603183612ea4565b9150612a56826136d1565b604082019050919050565b6000612a6e602c83612ea4565b9150612a7982613720565b604082019050919050565b612a8d81612fe5565b82525050565b6000612a9f8285612797565b9150612aab8284612797565b91508190509392505050565b6000602082019050612acc6000830184612707565b92915050565b6000608082019050612ae76000830187612707565b612af46020830186612707565b612b016040830185612a84565b8181036060830152612b138184612725565b905095945050505050565b6000602082019050612b336000830184612716565b92915050565b60006020820190508181036000830152612b53818461275e565b905092915050565b60006020820190508181036000830152612b74816127c8565b9050919050565b60006020820190508181036000830152612b94816127eb565b9050919050565b60006020820190508181036000830152612bb48161280e565b9050919050565b60006020820190508181036000830152612bd481612831565b9050919050565b60006020820190508181036000830152612bf481612854565b9050919050565b60006020820190508181036000830152612c1481612877565b9050919050565b60006020820190508181036000830152612c348161289a565b9050919050565b60006020820190508181036000830152612c54816128bd565b9050919050565b60006020820190508181036000830152612c74816128e0565b9050919050565b60006020820190508181036000830152612c9481612903565b9050919050565b60006020820190508181036000830152612cb481612926565b9050919050565b60006020820190508181036000830152612cd481612949565b9050919050565b60006020820190508181036000830152612cf48161296c565b9050919050565b60006020820190508181036000830152612d148161298f565b9050919050565b60006020820190508181036000830152612d34816129b2565b9050919050565b60006020820190508181036000830152612d54816129d5565b9050919050565b60006020820190508181036000830152612d74816129f8565b9050919050565b60006020820190508181036000830152612d9481612a1b565b9050919050565b60006020820190508181036000830152612db481612a3e565b9050919050565b60006020820190508181036000830152612dd481612a61565b9050919050565b6000602082019050612df06000830184612a84565b92915050565b6000612e00612e11565b9050612e0c8282613063565b919050565b6000604051905090565b600067ffffffffffffffff821115612e3657612e3561319b565b5b612e3f826131ca565b9050602081019050919050565b600067ffffffffffffffff821115612e6757612e6661319b565b5b612e70826131ca565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ecb82612fe5565b9150612ed683612fe5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f0b57612f0a61310e565b5b828201905092915050565b6000612f2182612fe5565b9150612f2c83612fe5565b925082612f3c57612f3b61313d565b5b828204905092915050565b6000612f5282612fe5565b9150612f5d83612fe5565b925082821015612f7057612f6f61310e565b5b828203905092915050565b6000612f8682612fc5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561301c578082015181840152602081019050613001565b8381111561302b576000848401525b50505050565b6000600282049050600182168061304957607f821691505b6020821081141561305d5761305c61316c565b5b50919050565b61306c826131ca565b810181811067ffffffffffffffff8211171561308b5761308a61319b565b5b80604052505050565b600061309f82612fe5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130d2576130d161310e565b5b600182019050919050565b60006130e882612fe5565b91506130f383612fe5565b9250826131035761310261313d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61377881612f7b565b811461378357600080fd5b50565b61378f81612f8d565b811461379a57600080fd5b50565b6137a681612f99565b81146137b157600080fd5b50565b6137bd81612fe5565b81146137c857600080fd5b5056fea2646970667358221220803cf3328e5c76651734f26edea20d6c040d13061a5fb2249ed528a1d1df55d164736f6c63430008020033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063b88d4fde11610071578063b88d4fde14610343578063c87b56dd1461035f578063e985e9c51461038f578063eacabe14146103bf578063f2fde38b146103ef5761012c565b806370a08231146102b1578063715018a6146102e15780638da5cb5b146102eb57806395d89b4114610309578063a22cb465146103275761012c565b806323b872dd116100f457806323b872dd146101e95780632f745c591461020557806342842e0e146102355780634f6ccce7146102515780636352211e146102815761012c565b806301ffc9a71461013157806306fdde0314610161578063081812fc1461017f578063095ea7b3146101af57806318160ddd146101cb575b600080fd5b61014b6004803603810190610146919061268c565b61040b565b6040516101589190612b1e565b60405180910390f35b61016961041d565b6040516101769190612b39565b60405180910390f35b610199600480360381019061019491906126de565b6104af565b6040516101a69190612ab7565b60405180910390f35b6101c960048036038101906101c49190612650565b610534565b005b6101d361064c565b6040516101e09190612ddb565b60405180910390f35b61020360048036038101906101fe91906124f6565b610659565b005b61021f600480360381019061021a9190612650565b6106b9565b60405161022c9190612ddb565b60405180910390f35b61024f600480360381019061024a91906124f6565b61075e565b005b61026b600480360381019061026691906126de565b61077e565b6040516102789190612ddb565b60405180910390f35b61029b600480360381019061029691906126de565b610815565b6040516102a89190612ab7565b60405180910390f35b6102cb60048036038101906102c69190612491565b6108c7565b6040516102d89190612ddb565b60405180910390f35b6102e961097f565b005b6102f3610a07565b6040516103009190612ab7565b60405180910390f35b610311610a31565b60405161031e9190612b39565b60405180910390f35b610341600480360381019061033c91906125c0565b610ac3565b005b61035d60048036038101906103589190612545565b610c44565b005b610379600480360381019061037491906126de565b610ca6565b6040516103869190612b39565b60405180910390f35b6103a960048036038101906103a491906124ba565b610cb8565b6040516103b69190612b1e565b60405180910390f35b6103d960048036038101906103d491906125fc565b610d4c565b6040516103e69190612ddb565b60405180910390f35b61040960048036038101906104049190612491565b610e00565b005b600061041682610ef8565b9050919050565b60606000805461042c90613031565b80601f016020809104026020016040519081016040528092919081815260200182805461045890613031565b80156104a55780601f1061047a576101008083540402835291602001916104a5565b820191906000526020600020905b81548152906001019060200180831161048857829003601f168201915b5050505050905090565b60006104ba82610f72565b6104f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104f090612cfb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061053f82610815565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156105b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a790612d7b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166105cf610fde565b73ffffffffffffffffffffffffffffffffffffffff1614806105fe57506105fd816105f8610fde565b610cb8565b5b61063d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063490612c3b565b60405180910390fd5b6106478383610fe6565b505050565b6000600880549050905090565b61066a610664610fde565b8261109f565b6106a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a090612d9b565b60405180910390fd5b6106b483838361117d565b505050565b60006106c4836108c7565b8210610705576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fc90612b5b565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61077983838360405180602001604052806000815250610c44565b505050565b600061078861064c565b82106107c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c090612dbb565b60405180910390fd5b60088281548110610803577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b590612c7b565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092f90612c5b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610987610fde565b73ffffffffffffffffffffffffffffffffffffffff166109a5610a07565b73ffffffffffffffffffffffffffffffffffffffff16146109fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f290612d1b565b60405180910390fd5b610a0560006113d9565b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610a4090613031565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6c90613031565b8015610ab95780601f10610a8e57610100808354040283529160200191610ab9565b820191906000526020600020905b815481529060010190602001808311610a9c57829003601f168201915b5050505050905090565b610acb610fde565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3090612bfb565b60405180910390fd5b8060056000610b46610fde565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610bf3610fde565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610c389190612b1e565b60405180910390a35050565b610c55610c4f610fde565b8361109f565b610c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8b90612d9b565b60405180910390fd5b610ca08484848461149f565b50505050565b6060610cb1826114fb565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000610d56610fde565b73ffffffffffffffffffffffffffffffffffffffff16610d74610a07565b73ffffffffffffffffffffffffffffffffffffffff1614610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc190612d1b565b60405180910390fd5b610dd4600c61164d565b6000610de0600c611663565b9050610dec8482611671565b610df6818461183f565b8091505092915050565b610e08610fde565b73ffffffffffffffffffffffffffffffffffffffff16610e26610a07565b73ffffffffffffffffffffffffffffffffffffffff1614610e7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7390612d1b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee390612b9b565b60405180910390fd5b610ef5816113d9565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610f6b5750610f6a826118b3565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661105983610815565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006110aa82610f72565b6110e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e090612c1b565b60405180910390fd5b60006110f483610815565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061116357508373ffffffffffffffffffffffffffffffffffffffff1661114b846104af565b73ffffffffffffffffffffffffffffffffffffffff16145b8061117457506111738185610cb8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661119d82610815565b73ffffffffffffffffffffffffffffffffffffffff16146111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea90612d3b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125a90612bdb565b60405180910390fd5b61126e838383611995565b611279600082610fe6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112c99190612f47565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113209190612ec0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6114aa84848461117d565b6114b6848484846119a5565b6114f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ec90612b7b565b60405180910390fd5b50505050565b606061150682610f72565b611545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153c90612cdb565b60405180910390fd5b6000600a6000848152602001908152602001600020805461156590613031565b80601f016020809104026020016040519081016040528092919081815260200182805461159190613031565b80156115de5780601f106115b3576101008083540402835291602001916115de565b820191906000526020600020905b8154815290600101906020018083116115c157829003601f168201915b5050505050905060006115ef611b3c565b9050600081511415611605578192505050611648565b60008251111561163a578082604051602001611622929190612a93565b60405160208183030381529060405292505050611648565b61164384611b53565b925050505b919050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d890612cbb565b60405180910390fd5b6116ea81610f72565b1561172a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172190612bbb565b60405180910390fd5b61173660008383611995565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117869190612ec0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b61184882610f72565b611887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187e90612c9b565b60405180910390fd5b80600a600084815260200190815260200160002090805190602001906118ae9291906122b5565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061197e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061198e575061198d82611bfa565b5b9050919050565b6119a0838383611c64565b505050565b60006119c68473ffffffffffffffffffffffffffffffffffffffff16611d78565b15611b2f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119ef610fde565b8786866040518563ffffffff1660e01b8152600401611a119493929190612ad2565b602060405180830381600087803b158015611a2b57600080fd5b505af1925050508015611a5c57506040513d601f19601f82011682018060405250810190611a5991906126b5565b60015b611adf573d8060008114611a8c576040519150601f19603f3d011682016040523d82523d6000602084013e611a91565b606091505b50600081511415611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace90612b7b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611b34565b600190505b949350505050565b606060405180602001604052806000815250905090565b6060611b5e82610f72565b611b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9490612d5b565b60405180910390fd5b6000611ba7611b3c565b90506000815111611bc75760405180602001604052806000815250611bf2565b80611bd184611d8b565b604051602001611be2929190612a93565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611c6f838383611f38565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611cb257611cad81611f3d565b611cf1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611cf057611cef8382611f86565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d3457611d2f816120f3565b611d73565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611d7257611d718282612236565b5b5b505050565b600080823b905060008111915050919050565b60606000821415611dd3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f33565b600082905060005b60008214611e05578080611dee90613094565b915050600a82611dfe9190612f16565b9150611ddb565b60008167ffffffffffffffff811115611e47577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e795781602001600182028036833780820191505090505b5090505b60008514611f2c57600182611e929190612f47565b9150600a85611ea191906130dd565b6030611ead9190612ec0565b60f81b818381518110611ee9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f259190612f16565b9450611e7d565b8093505050505b919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001611f93846108c7565b611f9d9190612f47565b9050600060076000848152602001908152602001600020549050818114612082576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506121079190612f47565b905060006009600084815260200190815260200160002054905060006008838154811061215d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106121a5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061221a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612241836108c7565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546122c190613031565b90600052602060002090601f0160209004810192826122e3576000855561232a565b82601f106122fc57805160ff191683800117855561232a565b8280016001018555821561232a579182015b8281111561232957825182559160200191906001019061230e565b5b509050612337919061233b565b5090565b5b8082111561235457600081600090555060010161233c565b5090565b600061236b61236684612e1b565b612df6565b90508281526020810184848401111561238357600080fd5b61238e848285612fef565b509392505050565b60006123a96123a484612e4c565b612df6565b9050828152602081018484840111156123c157600080fd5b6123cc848285612fef565b509392505050565b6000813590506123e38161376f565b92915050565b6000813590506123f881613786565b92915050565b60008135905061240d8161379d565b92915050565b6000815190506124228161379d565b92915050565b600082601f83011261243957600080fd5b8135612449848260208601612358565b91505092915050565b600082601f83011261246357600080fd5b8135612473848260208601612396565b91505092915050565b60008135905061248b816137b4565b92915050565b6000602082840312156124a357600080fd5b60006124b1848285016123d4565b91505092915050565b600080604083850312156124cd57600080fd5b60006124db858286016123d4565b92505060206124ec858286016123d4565b9150509250929050565b60008060006060848603121561250b57600080fd5b6000612519868287016123d4565b935050602061252a868287016123d4565b925050604061253b8682870161247c565b9150509250925092565b6000806000806080858703121561255b57600080fd5b6000612569878288016123d4565b945050602061257a878288016123d4565b935050604061258b8782880161247c565b925050606085013567ffffffffffffffff8111156125a857600080fd5b6125b487828801612428565b91505092959194509250565b600080604083850312156125d357600080fd5b60006125e1858286016123d4565b92505060206125f2858286016123e9565b9150509250929050565b6000806040838503121561260f57600080fd5b600061261d858286016123d4565b925050602083013567ffffffffffffffff81111561263a57600080fd5b61264685828601612452565b9150509250929050565b6000806040838503121561266357600080fd5b6000612671858286016123d4565b92505060206126828582860161247c565b9150509250929050565b60006020828403121561269e57600080fd5b60006126ac848285016123fe565b91505092915050565b6000602082840312156126c757600080fd5b60006126d584828501612413565b91505092915050565b6000602082840312156126f057600080fd5b60006126fe8482850161247c565b91505092915050565b61271081612f7b565b82525050565b61271f81612f8d565b82525050565b600061273082612e7d565b61273a8185612e93565b935061274a818560208601612ffe565b612753816131ca565b840191505092915050565b600061276982612e88565b6127738185612ea4565b9350612783818560208601612ffe565b61278c816131ca565b840191505092915050565b60006127a282612e88565b6127ac8185612eb5565b93506127bc818560208601612ffe565b80840191505092915050565b60006127d5602b83612ea4565b91506127e0826131db565b604082019050919050565b60006127f8603283612ea4565b91506128038261322a565b604082019050919050565b600061281b602683612ea4565b915061282682613279565b604082019050919050565b600061283e601c83612ea4565b9150612849826132c8565b602082019050919050565b6000612861602483612ea4565b915061286c826132f1565b604082019050919050565b6000612884601983612ea4565b915061288f82613340565b602082019050919050565b60006128a7602c83612ea4565b91506128b282613369565b604082019050919050565b60006128ca603883612ea4565b91506128d5826133b8565b604082019050919050565b60006128ed602a83612ea4565b91506128f882613407565b604082019050919050565b6000612910602983612ea4565b915061291b82613456565b604082019050919050565b6000612933602e83612ea4565b915061293e826134a5565b604082019050919050565b6000612956602083612ea4565b9150612961826134f4565b602082019050919050565b6000612979603183612ea4565b91506129848261351d565b604082019050919050565b600061299c602c83612ea4565b91506129a78261356c565b604082019050919050565b60006129bf602083612ea4565b91506129ca826135bb565b602082019050919050565b60006129e2602983612ea4565b91506129ed826135e4565b604082019050919050565b6000612a05602f83612ea4565b9150612a1082613633565b604082019050919050565b6000612a28602183612ea4565b9150612a3382613682565b604082019050919050565b6000612a4b603183612ea4565b9150612a56826136d1565b604082019050919050565b6000612a6e602c83612ea4565b9150612a7982613720565b604082019050919050565b612a8d81612fe5565b82525050565b6000612a9f8285612797565b9150612aab8284612797565b91508190509392505050565b6000602082019050612acc6000830184612707565b92915050565b6000608082019050612ae76000830187612707565b612af46020830186612707565b612b016040830185612a84565b8181036060830152612b138184612725565b905095945050505050565b6000602082019050612b336000830184612716565b92915050565b60006020820190508181036000830152612b53818461275e565b905092915050565b60006020820190508181036000830152612b74816127c8565b9050919050565b60006020820190508181036000830152612b94816127eb565b9050919050565b60006020820190508181036000830152612bb48161280e565b9050919050565b60006020820190508181036000830152612bd481612831565b9050919050565b60006020820190508181036000830152612bf481612854565b9050919050565b60006020820190508181036000830152612c1481612877565b9050919050565b60006020820190508181036000830152612c348161289a565b9050919050565b60006020820190508181036000830152612c54816128bd565b9050919050565b60006020820190508181036000830152612c74816128e0565b9050919050565b60006020820190508181036000830152612c9481612903565b9050919050565b60006020820190508181036000830152612cb481612926565b9050919050565b60006020820190508181036000830152612cd481612949565b9050919050565b60006020820190508181036000830152612cf48161296c565b9050919050565b60006020820190508181036000830152612d148161298f565b9050919050565b60006020820190508181036000830152612d34816129b2565b9050919050565b60006020820190508181036000830152612d54816129d5565b9050919050565b60006020820190508181036000830152612d74816129f8565b9050919050565b60006020820190508181036000830152612d9481612a1b565b9050919050565b60006020820190508181036000830152612db481612a3e565b9050919050565b60006020820190508181036000830152612dd481612a61565b9050919050565b6000602082019050612df06000830184612a84565b92915050565b6000612e00612e11565b9050612e0c8282613063565b919050565b6000604051905090565b600067ffffffffffffffff821115612e3657612e3561319b565b5b612e3f826131ca565b9050602081019050919050565b600067ffffffffffffffff821115612e6757612e6661319b565b5b612e70826131ca565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ecb82612fe5565b9150612ed683612fe5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f0b57612f0a61310e565b5b828201905092915050565b6000612f2182612fe5565b9150612f2c83612fe5565b925082612f3c57612f3b61313d565b5b828204905092915050565b6000612f5282612fe5565b9150612f5d83612fe5565b925082821015612f7057612f6f61310e565b5b828203905092915050565b6000612f8682612fc5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561301c578082015181840152602081019050613001565b8381111561302b576000848401525b50505050565b6000600282049050600182168061304957607f821691505b6020821081141561305d5761305c61316c565b5b50919050565b61306c826131ca565b810181811067ffffffffffffffff8211171561308b5761308a61319b565b5b80604052505050565b600061309f82612fe5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130d2576130d161310e565b5b600182019050919050565b60006130e882612fe5565b91506130f383612fe5565b9250826131035761310261313d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61377881612f7b565b811461378357600080fd5b50565b61378f81612f8d565b811461379a57600080fd5b50565b6137a681612f99565b81146137b157600080fd5b50565b6137bd81612fe5565b81146137c857600080fd5b5056fea2646970667358221220803cf3328e5c76651734f26edea20d6c040d13061a5fb2249ed528a1d1df55d164736f6c63430008020033

Deployed Bytecode Sourcemap

47747:1402:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48934:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21667:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23226:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22749:411;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35414:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24116:339;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35082:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24526:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35604:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21361:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21091:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44503:94;;;:::i;:::-;;43852:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21836:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23519:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24782:328;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48730:196;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23885:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47986:333;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44752:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48934:212;49073:4;49102:36;49126:11;49102:23;:36::i;:::-;49095:43;;48934:212;;;:::o;21667:100::-;21721:13;21754:5;21747:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21667:100;:::o;23226:221::-;23302:7;23330:16;23338:7;23330;:16::i;:::-;23322:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23415:15;:24;23431:7;23415:24;;;;;;;;;;;;;;;;;;;;;23408:31;;23226:221;;;:::o;22749:411::-;22830:13;22846:23;22861:7;22846:14;:23::i;:::-;22830:39;;22894:5;22888:11;;:2;:11;;;;22880:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22988:5;22972:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22997:37;23014:5;23021:12;:10;:12::i;:::-;22997:16;:37::i;:::-;22972:62;22950:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;23131:21;23140:2;23144:7;23131:8;:21::i;:::-;22749:411;;;:::o;35414:113::-;35475:7;35502:10;:17;;;;35495:24;;35414:113;:::o;24116:339::-;24311:41;24330:12;:10;:12::i;:::-;24344:7;24311:18;:41::i;:::-;24303:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24419:28;24429:4;24435:2;24439:7;24419:9;:28::i;:::-;24116:339;;;:::o;35082:256::-;35179:7;35215:23;35232:5;35215:16;:23::i;:::-;35207:5;:31;35199:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35304:12;:19;35317:5;35304:19;;;;;;;;;;;;;;;:26;35324:5;35304:26;;;;;;;;;;;;35297:33;;35082:256;;;;:::o;24526:185::-;24664:39;24681:4;24687:2;24691:7;24664:39;;;;;;;;;;;;:16;:39::i;:::-;24526:185;;;:::o;35604:233::-;35679:7;35715:30;:28;:30::i;:::-;35707:5;:38;35699:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35812:10;35823:5;35812:17;;;;;;;;;;;;;;;;;;;;;;;;35805:24;;35604:233;;;:::o;21361:239::-;21433:7;21453:13;21469:7;:16;21477:7;21469:16;;;;;;;;;;;;;;;;;;;;;21453:32;;21521:1;21504:19;;:5;:19;;;;21496:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21587:5;21580:12;;;21361:239;;;:::o;21091:208::-;21163:7;21208:1;21191:19;;:5;:19;;;;21183:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21275:9;:16;21285:5;21275:16;;;;;;;;;;;;;;;;21268:23;;21091:208;;;:::o;44503:94::-;44083:12;:10;:12::i;:::-;44072:23;;:7;:5;:7::i;:::-;:23;;;44064:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44568:21:::1;44586:1;44568:9;:21::i;:::-;44503:94::o:0;43852:87::-;43898:7;43925:6;;;;;;;;;;;43918:13;;43852:87;:::o;21836:104::-;21892:13;21925:7;21918:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21836:104;:::o;23519:295::-;23634:12;:10;:12::i;:::-;23622:24;;:8;:24;;;;23614:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23734:8;23689:18;:32;23708:12;:10;:12::i;:::-;23689:32;;;;;;;;;;;;;;;:42;23722:8;23689:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23787:8;23758:48;;23773:12;:10;:12::i;:::-;23758:48;;;23797:8;23758:48;;;;;;:::i;:::-;;;;;;;;23519:295;;:::o;24782:328::-;24957:41;24976:12;:10;:12::i;:::-;24990:7;24957:18;:41::i;:::-;24949:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25063:39;25077:4;25083:2;25087:7;25096:5;25063:13;:39::i;:::-;24782:328;;;;:::o;48730:196::-;48857:13;48895:23;48910:7;48895:14;:23::i;:::-;48888:30;;48730:196;;;:::o;23885:164::-;23982:4;24006:18;:25;24025:5;24006:25;;;;;;;;;;;;;;;:35;24032:8;24006:35;;;;;;;;;;;;;;;;;;;;;;;;;23999:42;;23885:164;;;;:::o;47986:333::-;48090:7;44083:12;:10;:12::i;:::-;44072:23;;:7;:5;:7::i;:::-;:23;;;44064:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48115:27:::1;:15;:25;:27::i;:::-;48155:17;48175:25;:15;:23;:25::i;:::-;48155:45;;48211:27;48217:9;48228;48211:5;:27::i;:::-;48249:33;48262:9;48273:8;48249:12;:33::i;:::-;48302:9;48295:16;;;47986:333:::0;;;;:::o;44752:192::-;44083:12;:10;:12::i;:::-;44072:23;;:7;:5;:7::i;:::-;:23;;;44064:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44861:1:::1;44841:22;;:8;:22;;;;44833:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44917:19;44927:8;44917:9;:19::i;:::-;44752:192:::0;:::o;34774:224::-;34876:4;34915:35;34900:50;;;:11;:50;;;;:90;;;;34954:36;34978:11;34954:23;:36::i;:::-;34900:90;34893:97;;34774:224;;;:::o;26620:127::-;26685:4;26737:1;26709:30;;:7;:16;26717:7;26709:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26702:37;;26620:127;;;:::o;16130:98::-;16183:7;16210:10;16203:17;;16130:98;:::o;30602:174::-;30704:2;30677:15;:24;30693:7;30677:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30760:7;30756:2;30722:46;;30731:23;30746:7;30731:14;:23::i;:::-;30722:46;;;;;;;;;;;;30602:174;;:::o;26914:348::-;27007:4;27032:16;27040:7;27032;:16::i;:::-;27024:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27108:13;27124:23;27139:7;27124:14;:23::i;:::-;27108:39;;27177:5;27166:16;;:7;:16;;;:51;;;;27210:7;27186:31;;:20;27198:7;27186:11;:20::i;:::-;:31;;;27166:51;:87;;;;27221:32;27238:5;27245:7;27221:16;:32::i;:::-;27166:87;27158:96;;;26914:348;;;;:::o;29906:578::-;30065:4;30038:31;;:23;30053:7;30038:14;:23::i;:::-;:31;;;30030:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;30148:1;30134:16;;:2;:16;;;;30126:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30204:39;30225:4;30231:2;30235:7;30204:20;:39::i;:::-;30308:29;30325:1;30329:7;30308:8;:29::i;:::-;30369:1;30350:9;:15;30360:4;30350:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30398:1;30381:9;:13;30391:2;30381:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30429:2;30410:7;:16;30418:7;30410:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30468:7;30464:2;30449:27;;30458:4;30449:27;;;;;;;;;;;;29906:578;;;:::o;44952:173::-;45008:16;45027:6;;;;;;;;;;;45008:25;;45053:8;45044:6;;:17;;;;;;;;;;;;;;;;;;45108:8;45077:40;;45098:8;45077:40;;;;;;;;;;;;44952:173;;:::o;25992:315::-;26149:28;26159:4;26165:2;26169:7;26149:9;:28::i;:::-;26196:48;26219:4;26225:2;26229:7;26238:5;26196:22;:48::i;:::-;26188:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25992:315;;;;:::o;41356:679::-;41429:13;41463:16;41471:7;41463;:16::i;:::-;41455:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;41546:23;41572:10;:19;41583:7;41572:19;;;;;;;;;;;41546:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41602:18;41623:10;:8;:10::i;:::-;41602:31;;41731:1;41715:4;41709:18;:23;41705:72;;;41756:9;41749:16;;;;;;41705:72;41907:1;41887:9;41881:23;:27;41877:108;;;41956:4;41962:9;41939:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41925:48;;;;;;41877:108;42004:23;42019:7;42004:14;:23::i;:::-;41997:30;;;;41356:679;;;;:::o;46077:127::-;46184:1;46166:7;:14;;;:19;;;;;;;;;;;46077:127;:::o;45955:114::-;46020:7;46047;:14;;;46040:21;;45955:114;;;:::o;28598:382::-;28692:1;28678:16;;:2;:16;;;;28670:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28751:16;28759:7;28751;:16::i;:::-;28750:17;28742:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28813:45;28842:1;28846:2;28850:7;28813:20;:45::i;:::-;28888:1;28871:9;:13;28881:2;28871:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28919:2;28900:7;:16;28908:7;28900:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28964:7;28960:2;28939:33;;28956:1;28939:33;;;;;;;;;;;;28598:382;;:::o;42191:217::-;42291:16;42299:7;42291;:16::i;:::-;42283:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;42391:9;42369:10;:19;42380:7;42369:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;42191:217;;:::o;20722:305::-;20824:4;20876:25;20861:40;;;:11;:40;;;;:105;;;;20933:33;20918:48;;;:11;:48;;;;20861:105;:158;;;;20983:36;21007:11;20983:23;:36::i;:::-;20861:158;20841:178;;20722:305;;;:::o;48395:204::-;48546:45;48573:4;48579:2;48583:7;48546:26;:45::i;:::-;48395:204;;;:::o;31341:799::-;31496:4;31517:15;:2;:13;;;:15::i;:::-;31513:620;;;31569:2;31553:36;;;31590:12;:10;:12::i;:::-;31604:4;31610:7;31619:5;31553:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31549:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31812:1;31795:6;:13;:18;31791:272;;;31838:60;;;;;;;;;;:::i;:::-;;;;;;;;31791:272;32013:6;32007:13;31998:6;31994:2;31990:15;31983:38;31549:529;31686:41;;;31676:51;;;:6;:51;;;;31669:58;;;;;31513:620;32117:4;32110:11;;31341:799;;;;;;;:::o;22593:94::-;22644:13;22670:9;;;;;;;;;;;;;;22593:94;:::o;22011:334::-;22084:13;22118:16;22126:7;22118;:16::i;:::-;22110:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22199:21;22223:10;:8;:10::i;:::-;22199:34;;22275:1;22257:7;22251:21;:25;:86;;;;;;;;;;;;;;;;;22303:7;22312:18;:7;:16;:18::i;:::-;22286:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22251:86;22244:93;;;22011:334;;;:::o;19222:157::-;19307:4;19346:25;19331:40;;;:11;:40;;;;19324:47;;19222:157;;;:::o;36450:589::-;36594:45;36621:4;36627:2;36631:7;36594:26;:45::i;:::-;36672:1;36656:18;;:4;:18;;;36652:187;;;36691:40;36723:7;36691:31;:40::i;:::-;36652:187;;;36761:2;36753:10;;:4;:10;;;36749:90;;36780:47;36813:4;36819:7;36780:32;:47::i;:::-;36749:90;36652:187;36867:1;36853:16;;:2;:16;;;36849:183;;;36886:45;36923:7;36886:36;:45::i;:::-;36849:183;;;36959:4;36953:10;;:2;:10;;;36949:83;;36980:40;37008:2;37012:7;36980:27;:40::i;:::-;36949:83;36849:183;36450:589;;;:::o;8168:387::-;8228:4;8436:12;8503:7;8491:20;8483:28;;8546:1;8539:4;:8;8532:15;;;8168:387;;;:::o;16661:723::-;16717:13;16947:1;16938:5;:10;16934:53;;;16965:10;;;;;;;;;;;;;;;;;;;;;16934:53;16997:12;17012:5;16997:20;;17028:14;17053:78;17068:1;17060:4;:9;17053:78;;17086:8;;;;;:::i;:::-;;;;17117:2;17109:10;;;;;:::i;:::-;;;17053:78;;;17141:19;17173:6;17163:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17141:39;;17191:154;17207:1;17198:5;:10;17191:154;;17235:1;17225:11;;;;;:::i;:::-;;;17302:2;17294:5;:10;;;;:::i;:::-;17281:2;:24;;;;:::i;:::-;17268:39;;17251:6;17258;17251:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;17331:2;17322:11;;;;;:::i;:::-;;;17191:154;;;17369:6;17355:21;;;;;16661:723;;;;:::o;32712:126::-;;;;:::o;37762:164::-;37866:10;:17;;;;37839:15;:24;37855:7;37839:24;;;;;;;;;;;:44;;;;37894:10;37910:7;37894:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37762:164;:::o;38553:988::-;38819:22;38869:1;38844:22;38861:4;38844:16;:22::i;:::-;:26;;;;:::i;:::-;38819:51;;38881:18;38902:17;:26;38920:7;38902:26;;;;;;;;;;;;38881:47;;39049:14;39035:10;:28;39031:328;;39080:19;39102:12;:18;39115:4;39102:18;;;;;;;;;;;;;;;:34;39121:14;39102:34;;;;;;;;;;;;39080:56;;39186:11;39153:12;:18;39166:4;39153:18;;;;;;;;;;;;;;;:30;39172:10;39153:30;;;;;;;;;;;:44;;;;39303:10;39270:17;:30;39288:11;39270:30;;;;;;;;;;;:43;;;;39031:328;;39455:17;:26;39473:7;39455:26;;;;;;;;;;;39448:33;;;39499:12;:18;39512:4;39499:18;;;;;;;;;;;;;;;:34;39518:14;39499:34;;;;;;;;;;;39492:41;;;38553:988;;;;:::o;39836:1079::-;40089:22;40134:1;40114:10;:17;;;;:21;;;;:::i;:::-;40089:46;;40146:18;40167:15;:24;40183:7;40167:24;;;;;;;;;;;;40146:45;;40518:19;40540:10;40551:14;40540:26;;;;;;;;;;;;;;;;;;;;;;;;40518:48;;40604:11;40579:10;40590;40579:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;40715:10;40684:15;:28;40700:11;40684:28;;;;;;;;;;;:41;;;;40856:15;:24;40872:7;40856:24;;;;;;;;;;;40849:31;;;40891:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39836:1079;;;;:::o;37340:221::-;37425:14;37442:20;37459:2;37442:16;:20::i;:::-;37425:37;;37500:7;37473:12;:16;37486:2;37473:16;;;;;;;;;;;;;;;:24;37490:6;37473:24;;;;;;;;;;;:34;;;;37547:6;37518:17;:26;37536:7;37518:26;;;;;;;;;;;:35;;;;37340:221;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;;;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;;;;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;;;;;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;;;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:520::-;;;4605:2;4593:9;4584:7;4580:23;4576:32;4573:2;;;4621:1;4618;4611:12;4573:2;4664:1;4689:53;4734:7;4725:6;4714:9;4710:22;4689:53;:::i;:::-;4679:63;;4635:117;4819:2;4808:9;4804:18;4791:32;4850:18;4842:6;4839:30;4836:2;;;4882:1;4879;4872:12;4836:2;4910:63;4965:7;4956:6;4945:9;4941:22;4910:63;:::i;:::-;4900:73;;4762:221;4563:427;;;;;:::o;4996:407::-;;;5121:2;5109:9;5100:7;5096:23;5092:32;5089:2;;;5137:1;5134;5127:12;5089:2;5180:1;5205:53;5250:7;5241:6;5230:9;5226:22;5205:53;:::i;:::-;5195:63;;5151:117;5307:2;5333:53;5378:7;5369:6;5358:9;5354:22;5333:53;:::i;:::-;5323:63;;5278:118;5079:324;;;;;:::o;5409:260::-;;5516:2;5504:9;5495:7;5491:23;5487:32;5484:2;;;5532:1;5529;5522:12;5484:2;5575:1;5600:52;5644:7;5635:6;5624:9;5620:22;5600:52;:::i;:::-;5590:62;;5546:116;5474:195;;;;:::o;5675:282::-;;5793:2;5781:9;5772:7;5768:23;5764:32;5761:2;;;5809:1;5806;5799:12;5761:2;5852:1;5877:63;5932:7;5923:6;5912:9;5908:22;5877:63;:::i;:::-;5867:73;;5823:127;5751:206;;;;:::o;5963:262::-;;6071:2;6059:9;6050:7;6046:23;6042:32;6039:2;;;6087:1;6084;6077:12;6039:2;6130:1;6155:53;6200:7;6191:6;6180:9;6176:22;6155:53;:::i;:::-;6145:63;;6101:117;6029:196;;;;:::o;6231:118::-;6318:24;6336:5;6318:24;:::i;:::-;6313:3;6306:37;6296:53;;:::o;6355:109::-;6436:21;6451:5;6436:21;:::i;:::-;6431:3;6424:34;6414:50;;:::o;6470:360::-;;6584:38;6616:5;6584:38;:::i;:::-;6638:70;6701:6;6696:3;6638:70;:::i;:::-;6631:77;;6717:52;6762:6;6757:3;6750:4;6743:5;6739:16;6717:52;:::i;:::-;6794:29;6816:6;6794:29;:::i;:::-;6789:3;6785:39;6778:46;;6560:270;;;;;:::o;6836:364::-;;6952:39;6985:5;6952:39;:::i;:::-;7007:71;7071:6;7066:3;7007:71;:::i;:::-;7000:78;;7087:52;7132:6;7127:3;7120:4;7113:5;7109:16;7087:52;:::i;:::-;7164:29;7186:6;7164:29;:::i;:::-;7159:3;7155:39;7148:46;;6928:272;;;;;:::o;7206:377::-;;7340:39;7373:5;7340:39;:::i;:::-;7395:89;7477:6;7472:3;7395:89;:::i;:::-;7388:96;;7493:52;7538:6;7533:3;7526:4;7519:5;7515:16;7493:52;:::i;:::-;7570:6;7565:3;7561:16;7554:23;;7316:267;;;;;:::o;7589:366::-;;7752:67;7816:2;7811:3;7752:67;:::i;:::-;7745:74;;7828:93;7917:3;7828:93;:::i;:::-;7946:2;7941:3;7937:12;7930:19;;7735:220;;;:::o;7961:366::-;;8124:67;8188:2;8183:3;8124:67;:::i;:::-;8117:74;;8200:93;8289:3;8200:93;:::i;:::-;8318:2;8313:3;8309:12;8302:19;;8107:220;;;:::o;8333:366::-;;8496:67;8560:2;8555:3;8496:67;:::i;:::-;8489:74;;8572:93;8661:3;8572:93;:::i;:::-;8690:2;8685:3;8681:12;8674:19;;8479:220;;;:::o;8705:366::-;;8868:67;8932:2;8927:3;8868:67;:::i;:::-;8861:74;;8944:93;9033:3;8944:93;:::i;:::-;9062:2;9057:3;9053:12;9046:19;;8851:220;;;:::o;9077:366::-;;9240:67;9304:2;9299:3;9240:67;:::i;:::-;9233:74;;9316:93;9405:3;9316:93;:::i;:::-;9434:2;9429:3;9425:12;9418:19;;9223:220;;;:::o;9449:366::-;;9612:67;9676:2;9671:3;9612:67;:::i;:::-;9605:74;;9688:93;9777:3;9688:93;:::i;:::-;9806:2;9801:3;9797:12;9790:19;;9595:220;;;:::o;9821:366::-;;9984:67;10048:2;10043:3;9984:67;:::i;:::-;9977:74;;10060:93;10149:3;10060:93;:::i;:::-;10178:2;10173:3;10169:12;10162:19;;9967:220;;;:::o;10193:366::-;;10356:67;10420:2;10415:3;10356:67;:::i;:::-;10349:74;;10432:93;10521:3;10432:93;:::i;:::-;10550:2;10545:3;10541:12;10534:19;;10339:220;;;:::o;10565:366::-;;10728:67;10792:2;10787:3;10728:67;:::i;:::-;10721:74;;10804:93;10893:3;10804:93;:::i;:::-;10922:2;10917:3;10913:12;10906:19;;10711:220;;;:::o;10937:366::-;;11100:67;11164:2;11159:3;11100:67;:::i;:::-;11093:74;;11176:93;11265:3;11176:93;:::i;:::-;11294:2;11289:3;11285:12;11278:19;;11083:220;;;:::o;11309:366::-;;11472:67;11536:2;11531:3;11472:67;:::i;:::-;11465:74;;11548:93;11637:3;11548:93;:::i;:::-;11666:2;11661:3;11657:12;11650:19;;11455:220;;;:::o;11681:366::-;;11844:67;11908:2;11903:3;11844:67;:::i;:::-;11837:74;;11920:93;12009:3;11920:93;:::i;:::-;12038:2;12033:3;12029:12;12022:19;;11827:220;;;:::o;12053:366::-;;12216:67;12280:2;12275:3;12216:67;:::i;:::-;12209:74;;12292:93;12381:3;12292:93;:::i;:::-;12410:2;12405:3;12401:12;12394:19;;12199:220;;;:::o;12425:366::-;;12588:67;12652:2;12647:3;12588:67;:::i;:::-;12581:74;;12664:93;12753:3;12664:93;:::i;:::-;12782:2;12777:3;12773:12;12766:19;;12571:220;;;:::o;12797:366::-;;12960:67;13024:2;13019:3;12960:67;:::i;:::-;12953:74;;13036:93;13125:3;13036:93;:::i;:::-;13154:2;13149:3;13145:12;13138:19;;12943:220;;;:::o;13169:366::-;;13332:67;13396:2;13391:3;13332:67;:::i;:::-;13325:74;;13408:93;13497:3;13408:93;:::i;:::-;13526:2;13521:3;13517:12;13510:19;;13315:220;;;:::o;13541:366::-;;13704:67;13768:2;13763:3;13704:67;:::i;:::-;13697:74;;13780:93;13869:3;13780:93;:::i;:::-;13898:2;13893:3;13889:12;13882:19;;13687:220;;;:::o;13913:366::-;;14076:67;14140:2;14135:3;14076:67;:::i;:::-;14069:74;;14152:93;14241:3;14152:93;:::i;:::-;14270:2;14265:3;14261:12;14254:19;;14059:220;;;:::o;14285:366::-;;14448:67;14512:2;14507:3;14448:67;:::i;:::-;14441:74;;14524:93;14613:3;14524:93;:::i;:::-;14642:2;14637:3;14633:12;14626:19;;14431:220;;;:::o;14657:366::-;;14820:67;14884:2;14879:3;14820:67;:::i;:::-;14813:74;;14896:93;14985:3;14896:93;:::i;:::-;15014:2;15009:3;15005:12;14998:19;;14803:220;;;:::o;15029:118::-;15116:24;15134:5;15116:24;:::i;:::-;15111:3;15104:37;15094:53;;:::o;15153:435::-;;15355:95;15446:3;15437:6;15355:95;:::i;:::-;15348:102;;15467:95;15558:3;15549:6;15467:95;:::i;:::-;15460:102;;15579:3;15572:10;;15337:251;;;;;:::o;15594:222::-;;15725:2;15714:9;15710:18;15702:26;;15738:71;15806:1;15795:9;15791:17;15782:6;15738:71;:::i;:::-;15692:124;;;;:::o;15822:640::-;;16055:3;16044:9;16040:19;16032:27;;16069:71;16137:1;16126:9;16122:17;16113:6;16069:71;:::i;:::-;16150:72;16218:2;16207:9;16203:18;16194:6;16150:72;:::i;:::-;16232;16300:2;16289:9;16285:18;16276:6;16232:72;:::i;:::-;16351:9;16345:4;16341:20;16336:2;16325:9;16321:18;16314:48;16379:76;16450:4;16441:6;16379:76;:::i;:::-;16371:84;;16022:440;;;;;;;:::o;16468:210::-;;16593:2;16582:9;16578:18;16570:26;;16606:65;16668:1;16657:9;16653:17;16644:6;16606:65;:::i;:::-;16560:118;;;;:::o;16684:313::-;;16835:2;16824:9;16820:18;16812:26;;16884:9;16878:4;16874:20;16870:1;16859:9;16855:17;16848:47;16912:78;16985:4;16976:6;16912:78;:::i;:::-;16904:86;;16802:195;;;;:::o;17003:419::-;;17207:2;17196:9;17192:18;17184:26;;17256:9;17250:4;17246:20;17242:1;17231:9;17227:17;17220:47;17284:131;17410:4;17284:131;:::i;:::-;17276:139;;17174:248;;;:::o;17428:419::-;;17632:2;17621:9;17617:18;17609:26;;17681:9;17675:4;17671:20;17667:1;17656:9;17652:17;17645:47;17709:131;17835:4;17709:131;:::i;:::-;17701:139;;17599:248;;;:::o;17853:419::-;;18057:2;18046:9;18042:18;18034:26;;18106:9;18100:4;18096:20;18092:1;18081:9;18077:17;18070:47;18134:131;18260:4;18134:131;:::i;:::-;18126:139;;18024:248;;;:::o;18278:419::-;;18482:2;18471:9;18467:18;18459:26;;18531:9;18525:4;18521:20;18517:1;18506:9;18502:17;18495:47;18559:131;18685:4;18559:131;:::i;:::-;18551:139;;18449:248;;;:::o;18703:419::-;;18907:2;18896:9;18892:18;18884:26;;18956:9;18950:4;18946:20;18942:1;18931:9;18927:17;18920:47;18984:131;19110:4;18984:131;:::i;:::-;18976:139;;18874:248;;;:::o;19128:419::-;;19332:2;19321:9;19317:18;19309:26;;19381:9;19375:4;19371:20;19367:1;19356:9;19352:17;19345:47;19409:131;19535:4;19409:131;:::i;:::-;19401:139;;19299:248;;;:::o;19553:419::-;;19757:2;19746:9;19742:18;19734:26;;19806:9;19800:4;19796:20;19792:1;19781:9;19777:17;19770:47;19834:131;19960:4;19834:131;:::i;:::-;19826:139;;19724:248;;;:::o;19978:419::-;;20182:2;20171:9;20167:18;20159:26;;20231:9;20225:4;20221:20;20217:1;20206:9;20202:17;20195:47;20259:131;20385:4;20259:131;:::i;:::-;20251:139;;20149:248;;;:::o;20403:419::-;;20607:2;20596:9;20592:18;20584:26;;20656:9;20650:4;20646:20;20642:1;20631:9;20627:17;20620:47;20684:131;20810:4;20684:131;:::i;:::-;20676:139;;20574:248;;;:::o;20828:419::-;;21032:2;21021:9;21017:18;21009:26;;21081:9;21075:4;21071:20;21067:1;21056:9;21052:17;21045:47;21109:131;21235:4;21109:131;:::i;:::-;21101:139;;20999:248;;;:::o;21253:419::-;;21457:2;21446:9;21442:18;21434:26;;21506:9;21500:4;21496:20;21492:1;21481:9;21477:17;21470:47;21534:131;21660:4;21534:131;:::i;:::-;21526:139;;21424:248;;;:::o;21678:419::-;;21882:2;21871:9;21867:18;21859:26;;21931:9;21925:4;21921:20;21917:1;21906:9;21902:17;21895:47;21959:131;22085:4;21959:131;:::i;:::-;21951:139;;21849:248;;;:::o;22103:419::-;;22307:2;22296:9;22292:18;22284:26;;22356:9;22350:4;22346:20;22342:1;22331:9;22327:17;22320:47;22384:131;22510:4;22384:131;:::i;:::-;22376:139;;22274:248;;;:::o;22528:419::-;;22732:2;22721:9;22717:18;22709:26;;22781:9;22775:4;22771:20;22767:1;22756:9;22752:17;22745:47;22809:131;22935:4;22809:131;:::i;:::-;22801:139;;22699:248;;;:::o;22953:419::-;;23157:2;23146:9;23142:18;23134:26;;23206:9;23200:4;23196:20;23192:1;23181:9;23177:17;23170:47;23234:131;23360:4;23234:131;:::i;:::-;23226:139;;23124:248;;;:::o;23378:419::-;;23582:2;23571:9;23567:18;23559:26;;23631:9;23625:4;23621:20;23617:1;23606:9;23602:17;23595:47;23659:131;23785:4;23659:131;:::i;:::-;23651:139;;23549:248;;;:::o;23803:419::-;;24007:2;23996:9;23992:18;23984:26;;24056:9;24050:4;24046:20;24042:1;24031:9;24027:17;24020:47;24084:131;24210:4;24084:131;:::i;:::-;24076:139;;23974:248;;;:::o;24228:419::-;;24432:2;24421:9;24417:18;24409:26;;24481:9;24475:4;24471:20;24467:1;24456:9;24452:17;24445:47;24509:131;24635:4;24509:131;:::i;:::-;24501:139;;24399:248;;;:::o;24653:419::-;;24857:2;24846:9;24842:18;24834:26;;24906:9;24900:4;24896:20;24892:1;24881:9;24877:17;24870:47;24934:131;25060:4;24934:131;:::i;:::-;24926:139;;24824:248;;;:::o;25078:419::-;;25282:2;25271:9;25267:18;25259:26;;25331:9;25325:4;25321:20;25317:1;25306:9;25302:17;25295:47;25359:131;25485:4;25359:131;:::i;:::-;25351:139;;25249:248;;;:::o;25503:222::-;;25634:2;25623:9;25619:18;25611:26;;25647:71;25715:1;25704:9;25700:17;25691:6;25647:71;:::i;:::-;25601:124;;;;:::o;25731:129::-;;25792:20;;:::i;:::-;25782:30;;25821:33;25849:4;25841:6;25821:33;:::i;:::-;25772:88;;;:::o;25866:75::-;;25932:2;25926:9;25916:19;;25906:35;:::o;25947:307::-;;26098:18;26090:6;26087:30;26084:2;;;26120:18;;:::i;:::-;26084:2;26158:29;26180:6;26158:29;:::i;:::-;26150:37;;26242:4;26236;26232:15;26224:23;;26013:241;;;:::o;26260:308::-;;26412:18;26404:6;26401:30;26398:2;;;26434:18;;:::i;:::-;26398:2;26472:29;26494:6;26472:29;:::i;:::-;26464:37;;26556:4;26550;26546:15;26538:23;;26327:241;;;:::o;26574:98::-;;26659:5;26653:12;26643:22;;26632:40;;;:::o;26678:99::-;;26764:5;26758:12;26748:22;;26737:40;;;:::o;26783:168::-;;26900:6;26895:3;26888:19;26940:4;26935:3;26931:14;26916:29;;26878:73;;;;:::o;26957:169::-;;27075:6;27070:3;27063:19;27115:4;27110:3;27106:14;27091:29;;27053:73;;;;:::o;27132:148::-;;27271:3;27256:18;;27246:34;;;;:::o;27286:305::-;;27345:20;27363:1;27345:20;:::i;:::-;27340:25;;27379:20;27397:1;27379:20;:::i;:::-;27374:25;;27533:1;27465:66;27461:74;27458:1;27455:81;27452:2;;;27539:18;;:::i;:::-;27452:2;27583:1;27580;27576:9;27569:16;;27330:261;;;;:::o;27597:185::-;;27654:20;27672:1;27654:20;:::i;:::-;27649:25;;27688:20;27706:1;27688:20;:::i;:::-;27683:25;;27727:1;27717:2;;27732:18;;:::i;:::-;27717:2;27774:1;27771;27767:9;27762:14;;27639:143;;;;:::o;27788:191::-;;27848:20;27866:1;27848:20;:::i;:::-;27843:25;;27882:20;27900:1;27882:20;:::i;:::-;27877:25;;27921:1;27918;27915:8;27912:2;;;27926:18;;:::i;:::-;27912:2;27971:1;27968;27964:9;27956:17;;27833:146;;;;:::o;27985:96::-;;28051:24;28069:5;28051:24;:::i;:::-;28040:35;;28030:51;;;:::o;28087:90::-;;28164:5;28157:13;28150:21;28139:32;;28129:48;;;:::o;28183:149::-;;28259:66;28252:5;28248:78;28237:89;;28227:105;;;:::o;28338:126::-;;28415:42;28408:5;28404:54;28393:65;;28383:81;;;:::o;28470:77::-;;28536:5;28525:16;;28515:32;;;:::o;28553:154::-;28637:6;28632:3;28627;28614:30;28699:1;28690:6;28685:3;28681:16;28674:27;28604:103;;;:::o;28713:307::-;28781:1;28791:113;28805:6;28802:1;28799:13;28791:113;;;28890:1;28885:3;28881:11;28875:18;28871:1;28866:3;28862:11;28855:39;28827:2;28824:1;28820:10;28815:15;;28791:113;;;28922:6;28919:1;28916:13;28913:2;;;29002:1;28993:6;28988:3;28984:16;28977:27;28913:2;28762:258;;;;:::o;29026:320::-;;29107:1;29101:4;29097:12;29087:22;;29154:1;29148:4;29144:12;29175:18;29165:2;;29231:4;29223:6;29219:17;29209:27;;29165:2;29293;29285:6;29282:14;29262:18;29259:38;29256:2;;;29312:18;;:::i;:::-;29256:2;29077:269;;;;:::o;29352:281::-;29435:27;29457:4;29435:27;:::i;:::-;29427:6;29423:40;29565:6;29553:10;29550:22;29529:18;29517:10;29514:34;29511:62;29508:2;;;29576:18;;:::i;:::-;29508:2;29616:10;29612:2;29605:22;29395:238;;;:::o;29639:233::-;;29701:24;29719:5;29701:24;:::i;:::-;29692:33;;29747:66;29740:5;29737:77;29734:2;;;29817:18;;:::i;:::-;29734:2;29864:1;29857:5;29853:13;29846:20;;29682:190;;;:::o;29878:176::-;;29927:20;29945:1;29927:20;:::i;:::-;29922:25;;29961:20;29979:1;29961:20;:::i;:::-;29956:25;;30000:1;29990:2;;30005:18;;:::i;:::-;29990:2;30046:1;30043;30039:9;30034:14;;29912:142;;;;:::o;30060:180::-;30108:77;30105:1;30098:88;30205:4;30202:1;30195:15;30229:4;30226:1;30219:15;30246:180;30294:77;30291:1;30284:88;30391:4;30388:1;30381:15;30415:4;30412:1;30405:15;30432:180;30480:77;30477:1;30470:88;30577:4;30574:1;30567:15;30601:4;30598:1;30591:15;30618:180;30666:77;30663:1;30656:88;30763:4;30760:1;30753:15;30787:4;30784:1;30777:15;30804:102;;30896:2;30892:7;30887:2;30880:5;30876:14;30872:28;30862:38;;30852:54;;;:::o;30912:230::-;31052:34;31048:1;31040:6;31036:14;31029:58;31121:13;31116:2;31108:6;31104:15;31097:38;31018:124;:::o;31148:237::-;31288:34;31284:1;31276:6;31272:14;31265:58;31357:20;31352:2;31344:6;31340:15;31333:45;31254:131;:::o;31391:225::-;31531:34;31527:1;31519:6;31515:14;31508:58;31600:8;31595:2;31587:6;31583:15;31576:33;31497:119;:::o;31622:178::-;31762:30;31758:1;31750:6;31746:14;31739:54;31728:72;:::o;31806:223::-;31946:34;31942:1;31934:6;31930:14;31923:58;32015:6;32010:2;32002:6;31998:15;31991:31;31912:117;:::o;32035:175::-;32175:27;32171:1;32163:6;32159:14;32152:51;32141:69;:::o;32216:231::-;32356:34;32352:1;32344:6;32340:14;32333:58;32425:14;32420:2;32412:6;32408:15;32401:39;32322:125;:::o;32453:243::-;32593:34;32589:1;32581:6;32577:14;32570:58;32662:26;32657:2;32649:6;32645:15;32638:51;32559:137;:::o;32702:229::-;32842:34;32838:1;32830:6;32826:14;32819:58;32911:12;32906:2;32898:6;32894:15;32887:37;32808:123;:::o;32937:228::-;33077:34;33073:1;33065:6;33061:14;33054:58;33146:11;33141:2;33133:6;33129:15;33122:36;33043:122;:::o;33171:233::-;33311:34;33307:1;33299:6;33295:14;33288:58;33380:16;33375:2;33367:6;33363:15;33356:41;33277:127;:::o;33410:182::-;33550:34;33546:1;33538:6;33534:14;33527:58;33516:76;:::o;33598:236::-;33738:34;33734:1;33726:6;33722:14;33715:58;33807:19;33802:2;33794:6;33790:15;33783:44;33704:130;:::o;33840:231::-;33980:34;33976:1;33968:6;33964:14;33957:58;34049:14;34044:2;34036:6;34032:15;34025:39;33946:125;:::o;34077:182::-;34217:34;34213:1;34205:6;34201:14;34194:58;34183:76;:::o;34265:228::-;34405:34;34401:1;34393:6;34389:14;34382:58;34474:11;34469:2;34461:6;34457:15;34450:36;34371:122;:::o;34499:234::-;34639:34;34635:1;34627:6;34623:14;34616:58;34708:17;34703:2;34695:6;34691:15;34684:42;34605:128;:::o;34739:220::-;34879:34;34875:1;34867:6;34863:14;34856:58;34948:3;34943:2;34935:6;34931:15;34924:28;34845:114;:::o;34965:236::-;35105:34;35101:1;35093:6;35089:14;35082:58;35174:19;35169:2;35161:6;35157:15;35150:44;35071:130;:::o;35207:231::-;35347:34;35343:1;35335:6;35331:14;35324:58;35416:14;35411:2;35403:6;35399:15;35392:39;35313:125;:::o;35444:122::-;35517:24;35535:5;35517:24;:::i;:::-;35510:5;35507:35;35497:2;;35556:1;35553;35546:12;35497:2;35487:79;:::o;35572:116::-;35642:21;35657:5;35642:21;:::i;:::-;35635:5;35632:32;35622:2;;35678:1;35675;35668:12;35622:2;35612:76;:::o;35694:120::-;35766:23;35783:5;35766:23;:::i;:::-;35759:5;35756:34;35746:2;;35804:1;35801;35794:12;35746:2;35736:78;:::o;35820:122::-;35893:24;35911:5;35893:24;:::i;:::-;35886:5;35883:35;35873:2;;35932:1;35929;35922:12;35873:2;35863:79;:::o

Swarm Source

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