ETH Price: $2,342.90 (-2.88%)

Token

Infected Bodies (INF)
 

Overview

Max Total Supply

721 INF

Holders

314

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 INF
0x8297321291f4a713ebffe1a35c5ebc773d791629
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
InfectedBodies

Compiler Version
v0.8.4+commit.c7e474f2

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-30
*/

// 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);
}

/**
 * @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;
}

/**
 * @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);
}

/**
 * @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);
}

/**
 * @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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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);
            }
        }
    }
}

/*
 * @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;
    }
}

/**
 * @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);
    }
}

/**
 * @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;
    }
}

/**
 * @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;
    
    // Base URI
    string private _baseURI;

    // 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;

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

    /**
     * @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(bytes(baseURI()).length != 0, "BaseURI has not been set yet");
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");

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

    /**
    * @dev Returns the base URI set via {_setBaseURI}. This will be
    * automatically added as a prefix in {tokenURI} to each token's URI, or
    * to the token ID if no specific URI is set for that token ID.
    */
    function baseURI() public view virtual returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }

    /**
     * @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(to).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 {}
}

/**
 * @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);
}

/**
 * @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();
    }
}

/**
 * @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);
    }
}

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

    // the supply of Punks
    uint256 public constant MAX_NFT_SUPPLY = 10000;

    // max amount of nfts you can mint at once
    uint256 public maxPurchase = 10;

    // number of reserve tokens in total; this should be the same as the publicTokenIdStart, where the reserve tokens end, the public tokens start
    uint256 public constant reserveTokens = 500;

    // the price per nft
    uint256 public tokenPrice = 50000000000000000; // 0.05 ETH

    // addresses of team members
    address public constant devAddress = 0x0dd874F41cE844FcdaeBA33714B6197136D89B7F;
    address public constant operationsAddress = 0xE9b8bC7aEf16Fb0d53d74f05a897E8A92B2de04f;

    // SHA256 of concatenated hash string containing all the hashes of all tokens
    string public IBProvenanceHash;

    // ensures that we do not change the metadata multiple times
    bool public metadataLocked = false;

    // expresses whether users can buy
    bool public saleIsActive = false;

    // list of addresses eligible for the first pre-sale
    address[] public _whitelistedAddresses;

    // if the publicSale is false, then it's the presale, after the presale, the publicSale will be forever true
    bool public publicSale = false;

    // mapping to keep count of how many tokens an address has bought during presale
    mapping(address => uint256) public _presaleCounter;

    // mapping to keep count of how many tokens an address has bought
    mapping(address => uint256) public amountPerAddress;

    // number of tokens an address can buy during each presale phase
    uint256 public presaleLimit = 5;

    // number of tokens an address can buy during each presale phase
    uint256 public maxPerAddress = 10;

    // counter for the current reserve token id i.e. the tokens reserved for the team, 1000 in total
    uint256 public _reserveTokensTaken = 0;

    // offset to randomise the getRandomId() function
    uint256 internal _randomOffset = 0;
    
    constructor() ERC721("Infected Bodies", "INF") {}

    function _getRandomId() internal returns (uint256)  {
      uint256 id = uint256(keccak256(abi.encodePacked(block.timestamp + block.difficulty + _randomOffset))) % MAX_NFT_SUPPLY;

      if (totalSupply() < MAX_NFT_SUPPLY) {
        while(_exists(id))  {
        _randomOffset++;
        id = uint256(keccak256(abi.encodePacked(block.timestamp + block.difficulty + _randomOffset))) % MAX_NFT_SUPPLY;
        }
      }
      return id;
    }

    function mintInfectedBodies(uint256 numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint");
        require(numberOfTokens > 0 && numberOfTokens <= maxPurchase, "Not within the range of maxPurchase");
        require((totalSupply() + numberOfTokens) <= MAX_NFT_SUPPLY, "Purchase would exceed max supply of Infected Bodies");
        require(amountPerAddress[msg.sender] + numberOfTokens <= maxPerAddress, "You already bought the maximum amount of tokens allowed");
        require(msg.value >= tokenPrice * numberOfTokens, "Ether value sent is not correct");

        if (publicSale != true) {
            require(isInPresale(msg.sender), "You are not whitelisted");
            require(_presaleCounter[msg.sender] + numberOfTokens <= presaleLimit, "Maximum amount of NFTs per address exceeded");
        }

        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 id = _getRandomId();
            if (publicSale != true) {
                _presaleCounter[msg.sender]++;
            } else {
                amountPerAddress[msg.sender]++;
            }
            if (totalSupply() < MAX_NFT_SUPPLY) {
                _safeMint(msg.sender, id);
            }
        }
    }

    function tokensOfOwner(address _owner) external view returns (uint256[] memory ) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }

    // checks whether the address is on the whitelist for 2nd presale
    function isInPresale(address user) public view returns (bool answer) {
        for (uint256 i = 0; i < _whitelistedAddresses.length; i++) {
            if (_whitelistedAddresses[i] == user) {
                return true;
            }
        }
        return false;
    }

    // OWNER ONLY FUNCTIONS

    // add a whole array of addresses to the list of whitelisted addresses for the first presale
    function setWhitelisted(address[] memory addresses) public onlyOwner {
        delete _whitelistedAddresses;
        _whitelistedAddresses = addresses;
    }

    // change token price
    function changeTokenPrice(uint256 newPrice) public onlyOwner {
        tokenPrice = newPrice;
    }

    function goToPublicSalePhase() public onlyOwner {
        require(publicSale != true, "The public sale is already live!");
        publicSale = true;
    }

    // change the amount of tokens you can mint during the first presale
    function changePresaleLimit(uint256 amount) public onlyOwner {
        presaleLimit = amount;
    }

    // changes how many nfts can be own per address
    function changeSaleLimit(uint256 amount) public onlyOwner {
        maxPerAddress = amount;
    }

    // reveals the final provenance hash  and prohibits further changes
    function lockMetadata(string memory finalHash) public onlyOwner {
        require(metadataLocked != true, "Infected bodies: You've already locked the metadata!");

        IBProvenanceHash = finalHash;
        metadataLocked = true;
    }

    // change the amount of tokens users can buy at once
    function changeMaxPurchase(uint256 amount) public onlyOwner {
        maxPurchase = amount;
    }

    // withdraw all the Ether from the contract to the owner
    function withdrawAll() external onlyOwner {
        uint256 balance = address(this).balance;
        uint256 devPortion = balance*100/2000;
        uint256 operationsPortion = balance*100/1000;
        payable(devAddress).transfer(devPortion);
        payable(operationsAddress).transfer(operationsPortion);
        uint256 remainder = balance - devPortion - operationsPortion;
        payable(msg.sender).transfer(remainder);
    }

    // set baseURI
    function setBaseURI(string memory baseURI) public onlyOwner {
        require(metadataLocked != true, "Metadata has already been locked and cannot be changed anymore!");
        _setBaseURI(baseURI);
    }

    // allows minting
    function flipSaleIsActive() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function getReserves(uint256 amount) public onlyOwner {
        require(_reserveTokensTaken + amount <= reserveTokens, "Amount would exceed the number of reserve tokens!");
        for (uint256 i = 0; i < amount; i++) {
            uint256 id = _getRandomId();
            if (totalSupply() < MAX_NFT_SUPPLY) {
                _safeMint(msg.sender, id);
                _reserveTokensTaken++;
            }
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"IBProvenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_presaleCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_reserveTokensTaken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"changeMaxPurchase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"changePresaleLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"changeSaleLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"changeTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"getReserves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"goToPublicSalePhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"isInPresale","outputs":[{"internalType":"bool","name":"answer","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"finalHash","type":"string"}],"name":"lockMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintInfectedBodies","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operationsAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"presaleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveTokens","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":"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"setWhitelisted","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":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600a600d5566b1a2bc2ec50000600e556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055506000601260006101000a81548160ff0219169083151502179055506005601555600a601655600060175560006018553480156200008657600080fd5b506040518060400160405280600f81526020017f496e66656374656420426f6469657300000000000000000000000000000000008152506040518060400160405280600381526020017f494e46000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200010b9291906200021b565b508060019080519060200190620001249291906200021b565b505050620001476200013b6200014d60201b60201c565b6200015560201b60201c565b62000330565b600033905090565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022990620002cb565b90600052602060002090601f0160209004810192826200024d576000855562000299565b82601f106200026857805160ff191683800117855562000299565b8280016001018555821562000299579182015b82811115620002985782518255916020019190600101906200027b565b5b509050620002a89190620002ac565b5090565b5b80821115620002c7576000816000905550600101620002ad565b5090565b60006002820490506001821680620002e457607f821691505b60208210811415620002fb57620002fa62000301565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6157f480620003406000396000f3fe6080604052600436106102c95760003560e01c80637f6567f711610175578063b6ad69d0116100dc578063e985e9c511610095578063ed06f66b1161006f578063ed06f66b14610afd578063f2fde38b14610b14578063f730007514610b3d578063fbc94f2414610b7a576102c9565b8063e985e9c514610a6a578063ea4cfe1214610aa7578063eb8d244414610ad2576102c9565b8063b6ad69d014610924578063b88d4fde14610961578063bb30c95d1461098a578063bb996844146109c7578063c408050614610a04578063c87b56dd14610a2d576102c9565b80638ea7495c1161012e5780638ea7495c1461082657806395d89b411461084f578063977b055b1461087a5780639ad3cb33146108a5578063a22cb465146108d0578063b5077f44146108f9576102c9565b80637f6567f71461073c5780637ff9b596146107655780638462151c14610790578063853828b6146107cd5780638da5cb5b146107e45780638dbc2ce21461080f576102c9565b80634f2c938c11610234578063639814e0116101ed5780636f67b294116101c75780636f67b2941461069457806370a08231146106bd578063715018a6146106fa5780637960425814610711576102c9565b8063639814e01461061357806369d2ceb11461063e5780636c0360eb14610669576102c9565b80634f2c938c146105005780634f6ccce71461051c578063525b3fe31461055957806355f804b3146105845780635df8fb7e146105ad5780636352211e146105d6576102c9565b806327ac36c41161028657806327ac36c4146103f05780632f745c591461041b57806333bc1c5c1461045857806339e00cff146104835780633ad10ef6146104ac57806342842e0e146104d7576102c9565b806301ffc9a7146102ce57806306fdde031461030b578063081812fc14610336578063095ea7b31461037357806318160ddd1461039c57806323b872dd146103c7575b600080fd5b3480156102da57600080fd5b506102f560048036038101906102f09190613fa6565b610ba3565b60405161030291906146b0565b60405180910390f35b34801561031757600080fd5b50610320610c1d565b60405161032d91906146cb565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190614039565b610caf565b60405161036a9190614627565b60405180910390f35b34801561037f57600080fd5b5061039a60048036038101906103959190613f29565b610d34565b005b3480156103a857600080fd5b506103b1610e4c565b6040516103be9190614aad565b60405180910390f35b3480156103d357600080fd5b506103ee60048036038101906103e99190613e23565b610e59565b005b3480156103fc57600080fd5b50610405610eb9565b6040516104129190614aad565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d9190613f29565b610ebf565b60405161044f9190614aad565b60405180910390f35b34801561046457600080fd5b5061046d610f64565b60405161047a91906146b0565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a59190613ff8565b610f77565b005b3480156104b857600080fd5b506104c161107f565b6040516104ce9190614627565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190613e23565b611097565b005b61051a60048036038101906105159190614039565b6110b7565b005b34801561052857600080fd5b50610543600480360381019061053e9190614039565b611496565b6040516105509190614aad565b60405180910390f35b34801561056557600080fd5b5061056e61152d565b60405161057b9190614aad565b60405180910390f35b34801561059057600080fd5b506105ab60048036038101906105a69190613ff8565b611533565b005b3480156105b957600080fd5b506105d460048036038101906105cf9190614039565b611612565b005b3480156105e257600080fd5b506105fd60048036038101906105f89190614039565b611698565b60405161060a9190614627565b60405180910390f35b34801561061f57600080fd5b5061062861174a565b6040516106359190614aad565b60405180910390f35b34801561064a57600080fd5b50610653611750565b60405161066091906146b0565b60405180910390f35b34801561067557600080fd5b5061067e611763565b60405161068b91906146cb565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b69190614039565b6117f5565b005b3480156106c957600080fd5b506106e460048036038101906106df9190613dbe565b61187b565b6040516106f19190614aad565b60405180910390f35b34801561070657600080fd5b5061070f611933565b005b34801561071d57600080fd5b506107266119bb565b6040516107339190614aad565b60405180910390f35b34801561074857600080fd5b50610763600480360381019061075e9190614039565b6119c1565b005b34801561077157600080fd5b5061077a611a47565b6040516107879190614aad565b60405180910390f35b34801561079c57600080fd5b506107b760048036038101906107b29190613dbe565b611a4d565b6040516107c4919061468e565b60405180910390f35b3480156107d957600080fd5b506107e2611bc9565b005b3480156107f057600080fd5b506107f9611da4565b6040516108069190614627565b60405180910390f35b34801561081b57600080fd5b50610824611dce565b005b34801561083257600080fd5b5061084d60048036038101906108489190614039565b611ebe565b005b34801561085b57600080fd5b50610864611fef565b60405161087191906146cb565b60405180910390f35b34801561088657600080fd5b5061088f612081565b60405161089c9190614aad565b60405180910390f35b3480156108b157600080fd5b506108ba612087565b6040516108c791906146cb565b60405180910390f35b3480156108dc57600080fd5b506108f760048036038101906108f29190613eed565b612115565b005b34801561090557600080fd5b5061090e612296565b60405161091b9190614aad565b60405180910390f35b34801561093057600080fd5b5061094b60048036038101906109469190613dbe565b61229c565b6040516109589190614aad565b60405180910390f35b34801561096d57600080fd5b5061098860048036038101906109839190613e72565b6122b4565b005b34801561099657600080fd5b506109b160048036038101906109ac9190613dbe565b612316565b6040516109be9190614aad565b60405180910390f35b3480156109d357600080fd5b506109ee60048036038101906109e99190613dbe565b61232e565b6040516109fb91906146b0565b60405180910390f35b348015610a1057600080fd5b50610a2b6004803603810190610a269190613f65565b612403565b005b348015610a3957600080fd5b50610a546004803603810190610a4f9190614039565b6124a7565b604051610a6191906146cb565b60405180910390f35b348015610a7657600080fd5b50610a916004803603810190610a8c9190613de7565b612575565b604051610a9e91906146b0565b60405180910390f35b348015610ab357600080fd5b50610abc612609565b604051610ac99190614627565b60405180910390f35b348015610ade57600080fd5b50610ae7612621565b604051610af491906146b0565b60405180910390f35b348015610b0957600080fd5b50610b12612634565b005b348015610b2057600080fd5b50610b3b6004803603810190610b369190613dbe565b6126dc565b005b348015610b4957600080fd5b50610b646004803603810190610b5f9190614039565b6127d4565b604051610b719190614627565b60405180910390f35b348015610b8657600080fd5b50610ba16004803603810190610b9c9190614039565b612813565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c165750610c1582612899565b5b9050919050565b606060008054610c2c90614dc2565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5890614dc2565b8015610ca55780601f10610c7a57610100808354040283529160200191610ca5565b820191906000526020600020905b815481529060010190602001808311610c8857829003601f168201915b5050505050905090565b6000610cba8261297b565b610cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf09061490d565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d3f82611698565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da7906149ed565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dcf6129e7565b73ffffffffffffffffffffffffffffffffffffffff161480610dfe5750610dfd81610df86129e7565b612575565b5b610e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e349061486d565b60405180910390fd5b610e4783836129ef565b505050565b6000600a80549050905090565b610e6a610e646129e7565b82612aa8565b610ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea090614a2d565b60405180910390fd5b610eb4838383612b86565b505050565b6101f481565b6000610eca8361187b565b8210610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f029061472d565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601260009054906101000a900460ff1681565b610f7f6129e7565b73ffffffffffffffffffffffffffffffffffffffff16610f9d611da4565b73ffffffffffffffffffffffffffffffffffffffff1614610ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fea9061492d565b60405180910390fd5b60011515601060009054906101000a900460ff161515141561104a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110419061494d565b60405180910390fd5b80600f9080519060200190611060929190613aa1565b506001601060006101000a81548160ff02191690831515021790555050565b730dd874f41ce844fcdaeba33714b6197136d89b7f81565b6110b2838383604051806020016040528060008152506122b4565b505050565b601060019054906101000a900460ff16611106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fd9061482d565b60405180910390fd5b6000811180156111185750600d548111155b611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e906149cd565b60405180910390fd5b61271081611163610e4c565b61116d9190614bf7565b11156111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a590614a8d565b60405180910390fd5b60165481601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111fc9190614bf7565b111561123d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123490614a0d565b60405180910390fd5b80600e5461124b9190614c7e565b34101561128d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112849061480d565b60405180910390fd5b60011515601260009054906101000a900460ff16151514611380576112b13361232e565b6112f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e7906148ed565b60405180910390fd5b60155481601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461133e9190614bf7565b111561137f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611376906146ed565b60405180910390fd5b5b60005b81811015611492576000611395612de2565b905060011515601260009054906101000a900460ff1615151461140c57601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061140290614e25565b9190505550611462565b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061145c90614e25565b91905055505b61271061146d610e4c565b101561147e5761147d3382612ecc565b5b50808061148a90614e25565b915050611383565b5050565b60006114a0610e4c565b82106114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d890614a4d565b60405180910390fd5b600a828154811061151b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b60155481565b61153b6129e7565b73ffffffffffffffffffffffffffffffffffffffff16611559611da4565b73ffffffffffffffffffffffffffffffffffffffff16146115af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a69061492d565b60405180910390fd5b60011515601060009054906101000a900460ff1615151415611606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fd90614a6d565b60405180910390fd5b61160f81612eea565b50565b61161a6129e7565b73ffffffffffffffffffffffffffffffffffffffff16611638611da4565b73ffffffffffffffffffffffffffffffffffffffff161461168e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116859061492d565b60405180910390fd5b8060158190555050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611741576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611738906148ad565b60405180910390fd5b80915050919050565b60165481565b601060009054906101000a900460ff1681565b60606002805461177290614dc2565b80601f016020809104026020016040519081016040528092919081815260200182805461179e90614dc2565b80156117eb5780601f106117c0576101008083540402835291602001916117eb565b820191906000526020600020905b8154815290600101906020018083116117ce57829003601f168201915b5050505050905090565b6117fd6129e7565b73ffffffffffffffffffffffffffffffffffffffff1661181b611da4565b73ffffffffffffffffffffffffffffffffffffffff1614611871576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118689061492d565b60405180910390fd5b8060168190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e39061488d565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61193b6129e7565b73ffffffffffffffffffffffffffffffffffffffff16611959611da4565b73ffffffffffffffffffffffffffffffffffffffff16146119af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a69061492d565b60405180910390fd5b6119b96000612f04565b565b60175481565b6119c96129e7565b73ffffffffffffffffffffffffffffffffffffffff166119e7611da4565b73ffffffffffffffffffffffffffffffffffffffff1614611a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a349061492d565b60405180910390fd5b80600d8190555050565b600e5481565b60606000611a5a8361187b565b90506000811415611add57600067ffffffffffffffff811115611aa6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611ad45781602001602082028036833780820191505090505b50915050611bc4565b60008167ffffffffffffffff811115611b1f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611b4d5781602001602082028036833780820191505090505b50905060005b82811015611bbd57611b658582610ebf565b828281518110611b9e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080611bb590614e25565b915050611b53565b8193505050505b919050565b611bd16129e7565b73ffffffffffffffffffffffffffffffffffffffff16611bef611da4565b73ffffffffffffffffffffffffffffffffffffffff1614611c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3c9061492d565b60405180910390fd5b600047905060006107d0606483611c5c9190614c7e565b611c669190614c4d565b905060006103e8606484611c7a9190614c7e565b611c849190614c4d565b9050730dd874f41ce844fcdaeba33714b6197136d89b7f73ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611ce0573d6000803e3d6000fd5b5073e9b8bc7aef16fb0d53d74f05a897e8a92b2de04f73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611d3b573d6000803e3d6000fd5b506000818385611d4b9190614cd8565b611d559190614cd8565b90503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611d9d573d6000803e3d6000fd5b5050505050565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611dd66129e7565b73ffffffffffffffffffffffffffffffffffffffff16611df4611da4565b73ffffffffffffffffffffffffffffffffffffffff1614611e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e419061492d565b60405180910390fd5b60011515601260009054906101000a900460ff1615151415611ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e989061470d565b60405180910390fd5b6001601260006101000a81548160ff021916908315150217905550565b611ec66129e7565b73ffffffffffffffffffffffffffffffffffffffff16611ee4611da4565b73ffffffffffffffffffffffffffffffffffffffff1614611f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f319061492d565b60405180910390fd5b6101f481601754611f4b9190614bf7565b1115611f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f839061496d565b60405180910390fd5b60005b81811015611feb576000611fa1612de2565b9050612710611fae610e4c565b1015611fd757611fbe3382612ecc565b60176000815480929190611fd190614e25565b91905055505b508080611fe390614e25565b915050611f8f565b5050565b606060018054611ffe90614dc2565b80601f016020809104026020016040519081016040528092919081815260200182805461202a90614dc2565b80156120775780601f1061204c57610100808354040283529160200191612077565b820191906000526020600020905b81548152906001019060200180831161205a57829003601f168201915b5050505050905090565b600d5481565b600f805461209490614dc2565b80601f01602080910402602001604051908101604052809291908181526020018280546120c090614dc2565b801561210d5780601f106120e25761010080835404028352916020019161210d565b820191906000526020600020905b8154815290600101906020018083116120f057829003601f168201915b505050505081565b61211d6129e7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561218b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612182906147ed565b60405180910390fd5b80600660006121986129e7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166122456129e7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161228a91906146b0565b60405180910390a35050565b61271081565b60146020528060005260406000206000915090505481565b6122c56122bf6129e7565b83612aa8565b612304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fb90614a2d565b60405180910390fd5b61231084848484612fca565b50505050565b60136020528060005260406000206000915090505481565b600080600090505b6011805490508110156123f8578273ffffffffffffffffffffffffffffffffffffffff1660118281548110612394577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156123e55760019150506123fe565b80806123f090614e25565b915050612336565b50600090505b919050565b61240b6129e7565b73ffffffffffffffffffffffffffffffffffffffff16612429611da4565b73ffffffffffffffffffffffffffffffffffffffff161461247f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124769061492d565b60405180910390fd5b6011600061248d9190613b27565b80601190805190602001906124a3929190613b48565b5050565b606060006124b3611763565b5114156124f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ec906147ad565b60405180910390fd5b6124fe8261297b565b61253d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612534906149ad565b60405180910390fd5b612545611763565b61254e83613026565b60405160200161255f9291906145e8565b6040516020818303038152906040529050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b73e9b8bc7aef16fb0d53d74f05a897e8a92b2de04f81565b601060019054906101000a900460ff1681565b61263c6129e7565b73ffffffffffffffffffffffffffffffffffffffff1661265a611da4565b73ffffffffffffffffffffffffffffffffffffffff16146126b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a79061492d565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b6126e46129e7565b73ffffffffffffffffffffffffffffffffffffffff16612702611da4565b73ffffffffffffffffffffffffffffffffffffffff1614612758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274f9061492d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156127c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bf9061476d565b60405180910390fd5b6127d181612f04565b50565b601181815481106127e457600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61281b6129e7565b73ffffffffffffffffffffffffffffffffffffffff16612839611da4565b73ffffffffffffffffffffffffffffffffffffffff161461288f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128869061492d565b60405180910390fd5b80600e8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061296457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806129745750612973826131d3565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612a6283611698565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612ab38261297b565b612af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae99061484d565b60405180910390fd5b6000612afd83611698565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612b6c57508373ffffffffffffffffffffffffffffffffffffffff16612b5484610caf565b73ffffffffffffffffffffffffffffffffffffffff16145b80612b7d5750612b7c8185612575565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612ba682611698565b73ffffffffffffffffffffffffffffffffffffffff1614612bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf39061498d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c63906147cd565b60405180910390fd5b612c7783838361323d565b612c826000826129ef565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cd29190614cd8565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d299190614bf7565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000806127106018544442612df79190614bf7565b612e019190614bf7565b604051602001612e11919061460c565b6040516020818303038152906040528051906020012060001c612e349190614e78565b9050612710612e41610e4c565b1015612ec5575b612e518161297b565b15612ec45760186000815480929190612e6990614e25565b91905055506127106018544442612e809190614bf7565b612e8a9190614bf7565b604051602001612e9a919061460c565b6040516020818303038152906040528051906020012060001c612ebd9190614e78565b9050612e48565b5b8091505090565b612ee6828260405180602001604052806000815250613351565b5050565b8060029080519060200190612f00929190613aa1565b5050565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612fd5848484612b86565b612fe1848484846133ac565b613020576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130179061474d565b60405180910390fd5b50505050565b6060600082141561306e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131ce565b600082905060005b600082146130a057808061308990614e25565b915050600a826130999190614c4d565b9150613076565b60008167ffffffffffffffff8111156130e2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156131145781602001600182028036833780820191505090505b5090505b600085146131c75760018261312d9190614cd8565b9150600a8561313c9190614e78565b60306131489190614bf7565b60f81b818381518110613184577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131c09190614c4d565b9450613118565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613248838383613543565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561328b5761328681613548565b6132ca565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146132c9576132c88382613591565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561330d57613308816136fe565b61334c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461334b5761334a8282613841565b5b5b505050565b61335b83836138c0565b61336860008484846133ac565b6133a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339e9061474d565b60405180910390fd5b505050565b60006133cd8473ffffffffffffffffffffffffffffffffffffffff16613a8e565b15613536578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133f66129e7565b8786866040518563ffffffff1660e01b81526004016134189493929190614642565b602060405180830381600087803b15801561343257600080fd5b505af192505050801561346357506040513d601f19601f820116820180604052508101906134609190613fcf565b60015b6134e6573d8060008114613493576040519150601f19603f3d011682016040523d82523d6000602084013e613498565b606091505b506000815114156134de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134d59061474d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061353b565b600190505b949350505050565b505050565b600a80549050600b600083815260200190815260200160002081905550600a81908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161359e8461187b565b6135a89190614cd8565b905060006009600084815260200190815260200160002054905081811461368d576000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816009600083815260200190815260200160002081905550505b6009600084815260200190815260200160002060009055600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600a805490506137129190614cd8565b90506000600b60008481526020019081526020016000205490506000600a8381548110613768577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600a83815481106137b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600b600083815260200190815260200160002081905550600b600085815260200190815260200160002060009055600a805480613825577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061384c8361187b565b905081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806009600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613930576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613927906148cd565b60405180910390fd5b6139398161297b565b15613979576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139709061478d565b60405180910390fd5b6139856000838361323d565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139d59190614bf7565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613aad90614dc2565b90600052602060002090601f016020900481019282613acf5760008555613b16565b82601f10613ae857805160ff1916838001178555613b16565b82800160010185558215613b16579182015b82811115613b15578251825591602001919060010190613afa565b5b509050613b239190613bd2565b5090565b5080546000825590600052602060002090810190613b459190613bd2565b50565b828054828255906000526020600020908101928215613bc1579160200282015b82811115613bc05782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613b68565b5b509050613bce9190613bd2565b5090565b5b80821115613beb576000816000905550600101613bd3565b5090565b6000613c02613bfd84614aed565b614ac8565b90508083825260208201905082856020860282011115613c2157600080fd5b60005b85811015613c515781613c378882613cd7565b845260208401935060208301925050600181019050613c24565b5050509392505050565b6000613c6e613c6984614b19565b614ac8565b905082815260208101848484011115613c8657600080fd5b613c91848285614d80565b509392505050565b6000613cac613ca784614b4a565b614ac8565b905082815260208101848484011115613cc457600080fd5b613ccf848285614d80565b509392505050565b600081359050613ce681615762565b92915050565b600082601f830112613cfd57600080fd5b8135613d0d848260208601613bef565b91505092915050565b600081359050613d2581615779565b92915050565b600081359050613d3a81615790565b92915050565b600081519050613d4f81615790565b92915050565b600082601f830112613d6657600080fd5b8135613d76848260208601613c5b565b91505092915050565b600082601f830112613d9057600080fd5b8135613da0848260208601613c99565b91505092915050565b600081359050613db8816157a7565b92915050565b600060208284031215613dd057600080fd5b6000613dde84828501613cd7565b91505092915050565b60008060408385031215613dfa57600080fd5b6000613e0885828601613cd7565b9250506020613e1985828601613cd7565b9150509250929050565b600080600060608486031215613e3857600080fd5b6000613e4686828701613cd7565b9350506020613e5786828701613cd7565b9250506040613e6886828701613da9565b9150509250925092565b60008060008060808587031215613e8857600080fd5b6000613e9687828801613cd7565b9450506020613ea787828801613cd7565b9350506040613eb887828801613da9565b925050606085013567ffffffffffffffff811115613ed557600080fd5b613ee187828801613d55565b91505092959194509250565b60008060408385031215613f0057600080fd5b6000613f0e85828601613cd7565b9250506020613f1f85828601613d16565b9150509250929050565b60008060408385031215613f3c57600080fd5b6000613f4a85828601613cd7565b9250506020613f5b85828601613da9565b9150509250929050565b600060208284031215613f7757600080fd5b600082013567ffffffffffffffff811115613f9157600080fd5b613f9d84828501613cec565b91505092915050565b600060208284031215613fb857600080fd5b6000613fc684828501613d2b565b91505092915050565b600060208284031215613fe157600080fd5b6000613fef84828501613d40565b91505092915050565b60006020828403121561400a57600080fd5b600082013567ffffffffffffffff81111561402457600080fd5b61403084828501613d7f565b91505092915050565b60006020828403121561404b57600080fd5b600061405984828501613da9565b91505092915050565b600061406e83836145b3565b60208301905092915050565b61408381614d0c565b82525050565b600061409482614b8b565b61409e8185614bb9565b93506140a983614b7b565b8060005b838110156140da5781516140c18882614062565b97506140cc83614bac565b9250506001810190506140ad565b5085935050505092915050565b6140f081614d1e565b82525050565b600061410182614b96565b61410b8185614bca565b935061411b818560208601614d8f565b61412481614f65565b840191505092915050565b600061413a82614ba1565b6141448185614bdb565b9350614154818560208601614d8f565b61415d81614f65565b840191505092915050565b600061417382614ba1565b61417d8185614bec565b935061418d818560208601614d8f565b80840191505092915050565b60006141a6602b83614bdb565b91506141b182614f76565b604082019050919050565b60006141c9602083614bdb565b91506141d482614fc5565b602082019050919050565b60006141ec602b83614bdb565b91506141f782614fee565b604082019050919050565b600061420f603283614bdb565b915061421a8261503d565b604082019050919050565b6000614232602683614bdb565b915061423d8261508c565b604082019050919050565b6000614255601c83614bdb565b9150614260826150db565b602082019050919050565b6000614278601c83614bdb565b915061428382615104565b602082019050919050565b600061429b602483614bdb565b91506142a68261512d565b604082019050919050565b60006142be601983614bdb565b91506142c98261517c565b602082019050919050565b60006142e1601f83614bdb565b91506142ec826151a5565b602082019050919050565b6000614304601b83614bdb565b915061430f826151ce565b602082019050919050565b6000614327602c83614bdb565b9150614332826151f7565b604082019050919050565b600061434a603883614bdb565b915061435582615246565b604082019050919050565b600061436d602a83614bdb565b915061437882615295565b604082019050919050565b6000614390602983614bdb565b915061439b826152e4565b604082019050919050565b60006143b3602083614bdb565b91506143be82615333565b602082019050919050565b60006143d6601783614bdb565b91506143e18261535c565b602082019050919050565b60006143f9602c83614bdb565b915061440482615385565b604082019050919050565b600061441c602083614bdb565b9150614427826153d4565b602082019050919050565b600061443f603483614bdb565b915061444a826153fd565b604082019050919050565b6000614462603183614bdb565b915061446d8261544c565b604082019050919050565b6000614485602983614bdb565b91506144908261549b565b604082019050919050565b60006144a8602f83614bdb565b91506144b3826154ea565b604082019050919050565b60006144cb602383614bdb565b91506144d682615539565b604082019050919050565b60006144ee602183614bdb565b91506144f982615588565b604082019050919050565b6000614511603783614bdb565b915061451c826155d7565b604082019050919050565b6000614534603183614bdb565b915061453f82615626565b604082019050919050565b6000614557602c83614bdb565b915061456282615675565b604082019050919050565b600061457a603f83614bdb565b9150614585826156c4565b604082019050919050565b600061459d603383614bdb565b91506145a882615713565b604082019050919050565b6145bc81614d76565b82525050565b6145cb81614d76565b82525050565b6145e26145dd82614d76565b614e6e565b82525050565b60006145f48285614168565b91506146008284614168565b91508190509392505050565b600061461882846145d1565b60208201915081905092915050565b600060208201905061463c600083018461407a565b92915050565b6000608082019050614657600083018761407a565b614664602083018661407a565b61467160408301856145c2565b818103606083015261468381846140f6565b905095945050505050565b600060208201905081810360008301526146a88184614089565b905092915050565b60006020820190506146c560008301846140e7565b92915050565b600060208201905081810360008301526146e5818461412f565b905092915050565b6000602082019050818103600083015261470681614199565b9050919050565b60006020820190508181036000830152614726816141bc565b9050919050565b60006020820190508181036000830152614746816141df565b9050919050565b6000602082019050818103600083015261476681614202565b9050919050565b6000602082019050818103600083015261478681614225565b9050919050565b600060208201905081810360008301526147a681614248565b9050919050565b600060208201905081810360008301526147c68161426b565b9050919050565b600060208201905081810360008301526147e68161428e565b9050919050565b60006020820190508181036000830152614806816142b1565b9050919050565b60006020820190508181036000830152614826816142d4565b9050919050565b60006020820190508181036000830152614846816142f7565b9050919050565b600060208201905081810360008301526148668161431a565b9050919050565b600060208201905081810360008301526148868161433d565b9050919050565b600060208201905081810360008301526148a681614360565b9050919050565b600060208201905081810360008301526148c681614383565b9050919050565b600060208201905081810360008301526148e6816143a6565b9050919050565b60006020820190508181036000830152614906816143c9565b9050919050565b60006020820190508181036000830152614926816143ec565b9050919050565b600060208201905081810360008301526149468161440f565b9050919050565b6000602082019050818103600083015261496681614432565b9050919050565b6000602082019050818103600083015261498681614455565b9050919050565b600060208201905081810360008301526149a681614478565b9050919050565b600060208201905081810360008301526149c68161449b565b9050919050565b600060208201905081810360008301526149e6816144be565b9050919050565b60006020820190508181036000830152614a06816144e1565b9050919050565b60006020820190508181036000830152614a2681614504565b9050919050565b60006020820190508181036000830152614a4681614527565b9050919050565b60006020820190508181036000830152614a668161454a565b9050919050565b60006020820190508181036000830152614a868161456d565b9050919050565b60006020820190508181036000830152614aa681614590565b9050919050565b6000602082019050614ac260008301846145c2565b92915050565b6000614ad2614ae3565b9050614ade8282614df4565b919050565b6000604051905090565b600067ffffffffffffffff821115614b0857614b07614f36565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614b3457614b33614f36565b5b614b3d82614f65565b9050602081019050919050565b600067ffffffffffffffff821115614b6557614b64614f36565b5b614b6e82614f65565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614c0282614d76565b9150614c0d83614d76565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c4257614c41614ea9565b5b828201905092915050565b6000614c5882614d76565b9150614c6383614d76565b925082614c7357614c72614ed8565b5b828204905092915050565b6000614c8982614d76565b9150614c9483614d76565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ccd57614ccc614ea9565b5b828202905092915050565b6000614ce382614d76565b9150614cee83614d76565b925082821015614d0157614d00614ea9565b5b828203905092915050565b6000614d1782614d56565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614dad578082015181840152602081019050614d92565b83811115614dbc576000848401525b50505050565b60006002820490506001821680614dda57607f821691505b60208210811415614dee57614ded614f07565b5b50919050565b614dfd82614f65565b810181811067ffffffffffffffff82111715614e1c57614e1b614f36565b5b80604052505050565b6000614e3082614d76565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614e6357614e62614ea9565b5b600182019050919050565b6000819050919050565b6000614e8382614d76565b9150614e8e83614d76565b925082614e9e57614e9d614ed8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4d6178696d756d20616d6f756e74206f66204e4654732070657220616464726560008201527f7373206578636565646564000000000000000000000000000000000000000000602082015250565b7f546865207075626c69632073616c6520697320616c7265616479206c69766521600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4261736555524920686173206e6f74206265656e207365742079657400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f53616c65206d7573742062652061637469766520746f206d696e740000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f596f7520617265206e6f742077686974656c6973746564000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e66656374656420626f646965733a20596f7527766520616c72656164792060008201527f6c6f636b656420746865206d6574616461746121000000000000000000000000602082015250565b7f416d6f756e7420776f756c642065786365656420746865206e756d626572206f60008201527f66207265736572766520746f6b656e7321000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f742077697468696e207468652072616e6765206f66206d6178507572636860008201527f6173650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f7520616c726561647920626f7567687420746865206d6178696d756d206160008201527f6d6f756e74206f6620746f6b656e7320616c6c6f776564000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4d657461646174612068617320616c7265616479206265656e206c6f636b656460008201527f20616e642063616e6e6f74206265206368616e67656420616e796d6f72652100602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620496e66656374656420426f6469657300000000000000000000000000602082015250565b61576b81614d0c565b811461577657600080fd5b50565b61578281614d1e565b811461578d57600080fd5b50565b61579981614d2a565b81146157a457600080fd5b50565b6157b081614d76565b81146157bb57600080fd5b5056fea2646970667358221220c691241734f84a10cbb21cb89fb25b35f1ceee8202c65558557eff95f257516164736f6c63430008040033

Deployed Bytecode

0x6080604052600436106102c95760003560e01c80637f6567f711610175578063b6ad69d0116100dc578063e985e9c511610095578063ed06f66b1161006f578063ed06f66b14610afd578063f2fde38b14610b14578063f730007514610b3d578063fbc94f2414610b7a576102c9565b8063e985e9c514610a6a578063ea4cfe1214610aa7578063eb8d244414610ad2576102c9565b8063b6ad69d014610924578063b88d4fde14610961578063bb30c95d1461098a578063bb996844146109c7578063c408050614610a04578063c87b56dd14610a2d576102c9565b80638ea7495c1161012e5780638ea7495c1461082657806395d89b411461084f578063977b055b1461087a5780639ad3cb33146108a5578063a22cb465146108d0578063b5077f44146108f9576102c9565b80637f6567f71461073c5780637ff9b596146107655780638462151c14610790578063853828b6146107cd5780638da5cb5b146107e45780638dbc2ce21461080f576102c9565b80634f2c938c11610234578063639814e0116101ed5780636f67b294116101c75780636f67b2941461069457806370a08231146106bd578063715018a6146106fa5780637960425814610711576102c9565b8063639814e01461061357806369d2ceb11461063e5780636c0360eb14610669576102c9565b80634f2c938c146105005780634f6ccce71461051c578063525b3fe31461055957806355f804b3146105845780635df8fb7e146105ad5780636352211e146105d6576102c9565b806327ac36c41161028657806327ac36c4146103f05780632f745c591461041b57806333bc1c5c1461045857806339e00cff146104835780633ad10ef6146104ac57806342842e0e146104d7576102c9565b806301ffc9a7146102ce57806306fdde031461030b578063081812fc14610336578063095ea7b31461037357806318160ddd1461039c57806323b872dd146103c7575b600080fd5b3480156102da57600080fd5b506102f560048036038101906102f09190613fa6565b610ba3565b60405161030291906146b0565b60405180910390f35b34801561031757600080fd5b50610320610c1d565b60405161032d91906146cb565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190614039565b610caf565b60405161036a9190614627565b60405180910390f35b34801561037f57600080fd5b5061039a60048036038101906103959190613f29565b610d34565b005b3480156103a857600080fd5b506103b1610e4c565b6040516103be9190614aad565b60405180910390f35b3480156103d357600080fd5b506103ee60048036038101906103e99190613e23565b610e59565b005b3480156103fc57600080fd5b50610405610eb9565b6040516104129190614aad565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d9190613f29565b610ebf565b60405161044f9190614aad565b60405180910390f35b34801561046457600080fd5b5061046d610f64565b60405161047a91906146b0565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a59190613ff8565b610f77565b005b3480156104b857600080fd5b506104c161107f565b6040516104ce9190614627565b60405180910390f35b3480156104e357600080fd5b506104fe60048036038101906104f99190613e23565b611097565b005b61051a60048036038101906105159190614039565b6110b7565b005b34801561052857600080fd5b50610543600480360381019061053e9190614039565b611496565b6040516105509190614aad565b60405180910390f35b34801561056557600080fd5b5061056e61152d565b60405161057b9190614aad565b60405180910390f35b34801561059057600080fd5b506105ab60048036038101906105a69190613ff8565b611533565b005b3480156105b957600080fd5b506105d460048036038101906105cf9190614039565b611612565b005b3480156105e257600080fd5b506105fd60048036038101906105f89190614039565b611698565b60405161060a9190614627565b60405180910390f35b34801561061f57600080fd5b5061062861174a565b6040516106359190614aad565b60405180910390f35b34801561064a57600080fd5b50610653611750565b60405161066091906146b0565b60405180910390f35b34801561067557600080fd5b5061067e611763565b60405161068b91906146cb565b60405180910390f35b3480156106a057600080fd5b506106bb60048036038101906106b69190614039565b6117f5565b005b3480156106c957600080fd5b506106e460048036038101906106df9190613dbe565b61187b565b6040516106f19190614aad565b60405180910390f35b34801561070657600080fd5b5061070f611933565b005b34801561071d57600080fd5b506107266119bb565b6040516107339190614aad565b60405180910390f35b34801561074857600080fd5b50610763600480360381019061075e9190614039565b6119c1565b005b34801561077157600080fd5b5061077a611a47565b6040516107879190614aad565b60405180910390f35b34801561079c57600080fd5b506107b760048036038101906107b29190613dbe565b611a4d565b6040516107c4919061468e565b60405180910390f35b3480156107d957600080fd5b506107e2611bc9565b005b3480156107f057600080fd5b506107f9611da4565b6040516108069190614627565b60405180910390f35b34801561081b57600080fd5b50610824611dce565b005b34801561083257600080fd5b5061084d60048036038101906108489190614039565b611ebe565b005b34801561085b57600080fd5b50610864611fef565b60405161087191906146cb565b60405180910390f35b34801561088657600080fd5b5061088f612081565b60405161089c9190614aad565b60405180910390f35b3480156108b157600080fd5b506108ba612087565b6040516108c791906146cb565b60405180910390f35b3480156108dc57600080fd5b506108f760048036038101906108f29190613eed565b612115565b005b34801561090557600080fd5b5061090e612296565b60405161091b9190614aad565b60405180910390f35b34801561093057600080fd5b5061094b60048036038101906109469190613dbe565b61229c565b6040516109589190614aad565b60405180910390f35b34801561096d57600080fd5b5061098860048036038101906109839190613e72565b6122b4565b005b34801561099657600080fd5b506109b160048036038101906109ac9190613dbe565b612316565b6040516109be9190614aad565b60405180910390f35b3480156109d357600080fd5b506109ee60048036038101906109e99190613dbe565b61232e565b6040516109fb91906146b0565b60405180910390f35b348015610a1057600080fd5b50610a2b6004803603810190610a269190613f65565b612403565b005b348015610a3957600080fd5b50610a546004803603810190610a4f9190614039565b6124a7565b604051610a6191906146cb565b60405180910390f35b348015610a7657600080fd5b50610a916004803603810190610a8c9190613de7565b612575565b604051610a9e91906146b0565b60405180910390f35b348015610ab357600080fd5b50610abc612609565b604051610ac99190614627565b60405180910390f35b348015610ade57600080fd5b50610ae7612621565b604051610af491906146b0565b60405180910390f35b348015610b0957600080fd5b50610b12612634565b005b348015610b2057600080fd5b50610b3b6004803603810190610b369190613dbe565b6126dc565b005b348015610b4957600080fd5b50610b646004803603810190610b5f9190614039565b6127d4565b604051610b719190614627565b60405180910390f35b348015610b8657600080fd5b50610ba16004803603810190610b9c9190614039565b612813565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c165750610c1582612899565b5b9050919050565b606060008054610c2c90614dc2565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5890614dc2565b8015610ca55780601f10610c7a57610100808354040283529160200191610ca5565b820191906000526020600020905b815481529060010190602001808311610c8857829003601f168201915b5050505050905090565b6000610cba8261297b565b610cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf09061490d565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d3f82611698565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da7906149ed565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dcf6129e7565b73ffffffffffffffffffffffffffffffffffffffff161480610dfe5750610dfd81610df86129e7565b612575565b5b610e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e349061486d565b60405180910390fd5b610e4783836129ef565b505050565b6000600a80549050905090565b610e6a610e646129e7565b82612aa8565b610ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea090614a2d565b60405180910390fd5b610eb4838383612b86565b505050565b6101f481565b6000610eca8361187b565b8210610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f029061472d565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601260009054906101000a900460ff1681565b610f7f6129e7565b73ffffffffffffffffffffffffffffffffffffffff16610f9d611da4565b73ffffffffffffffffffffffffffffffffffffffff1614610ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fea9061492d565b60405180910390fd5b60011515601060009054906101000a900460ff161515141561104a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110419061494d565b60405180910390fd5b80600f9080519060200190611060929190613aa1565b506001601060006101000a81548160ff02191690831515021790555050565b730dd874f41ce844fcdaeba33714b6197136d89b7f81565b6110b2838383604051806020016040528060008152506122b4565b505050565b601060019054906101000a900460ff16611106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fd9061482d565b60405180910390fd5b6000811180156111185750600d548111155b611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e906149cd565b60405180910390fd5b61271081611163610e4c565b61116d9190614bf7565b11156111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a590614a8d565b60405180910390fd5b60165481601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111fc9190614bf7565b111561123d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123490614a0d565b60405180910390fd5b80600e5461124b9190614c7e565b34101561128d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112849061480d565b60405180910390fd5b60011515601260009054906101000a900460ff16151514611380576112b13361232e565b6112f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e7906148ed565b60405180910390fd5b60155481601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461133e9190614bf7565b111561137f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611376906146ed565b60405180910390fd5b5b60005b81811015611492576000611395612de2565b905060011515601260009054906101000a900460ff1615151461140c57601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061140290614e25565b9190505550611462565b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061145c90614e25565b91905055505b61271061146d610e4c565b101561147e5761147d3382612ecc565b5b50808061148a90614e25565b915050611383565b5050565b60006114a0610e4c565b82106114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d890614a4d565b60405180910390fd5b600a828154811061151b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b60155481565b61153b6129e7565b73ffffffffffffffffffffffffffffffffffffffff16611559611da4565b73ffffffffffffffffffffffffffffffffffffffff16146115af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a69061492d565b60405180910390fd5b60011515601060009054906101000a900460ff1615151415611606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fd90614a6d565b60405180910390fd5b61160f81612eea565b50565b61161a6129e7565b73ffffffffffffffffffffffffffffffffffffffff16611638611da4565b73ffffffffffffffffffffffffffffffffffffffff161461168e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116859061492d565b60405180910390fd5b8060158190555050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611741576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611738906148ad565b60405180910390fd5b80915050919050565b60165481565b601060009054906101000a900460ff1681565b60606002805461177290614dc2565b80601f016020809104026020016040519081016040528092919081815260200182805461179e90614dc2565b80156117eb5780601f106117c0576101008083540402835291602001916117eb565b820191906000526020600020905b8154815290600101906020018083116117ce57829003601f168201915b5050505050905090565b6117fd6129e7565b73ffffffffffffffffffffffffffffffffffffffff1661181b611da4565b73ffffffffffffffffffffffffffffffffffffffff1614611871576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118689061492d565b60405180910390fd5b8060168190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e39061488d565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61193b6129e7565b73ffffffffffffffffffffffffffffffffffffffff16611959611da4565b73ffffffffffffffffffffffffffffffffffffffff16146119af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a69061492d565b60405180910390fd5b6119b96000612f04565b565b60175481565b6119c96129e7565b73ffffffffffffffffffffffffffffffffffffffff166119e7611da4565b73ffffffffffffffffffffffffffffffffffffffff1614611a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a349061492d565b60405180910390fd5b80600d8190555050565b600e5481565b60606000611a5a8361187b565b90506000811415611add57600067ffffffffffffffff811115611aa6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611ad45781602001602082028036833780820191505090505b50915050611bc4565b60008167ffffffffffffffff811115611b1f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611b4d5781602001602082028036833780820191505090505b50905060005b82811015611bbd57611b658582610ebf565b828281518110611b9e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080611bb590614e25565b915050611b53565b8193505050505b919050565b611bd16129e7565b73ffffffffffffffffffffffffffffffffffffffff16611bef611da4565b73ffffffffffffffffffffffffffffffffffffffff1614611c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3c9061492d565b60405180910390fd5b600047905060006107d0606483611c5c9190614c7e565b611c669190614c4d565b905060006103e8606484611c7a9190614c7e565b611c849190614c4d565b9050730dd874f41ce844fcdaeba33714b6197136d89b7f73ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611ce0573d6000803e3d6000fd5b5073e9b8bc7aef16fb0d53d74f05a897e8a92b2de04f73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611d3b573d6000803e3d6000fd5b506000818385611d4b9190614cd8565b611d559190614cd8565b90503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611d9d573d6000803e3d6000fd5b5050505050565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611dd66129e7565b73ffffffffffffffffffffffffffffffffffffffff16611df4611da4565b73ffffffffffffffffffffffffffffffffffffffff1614611e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e419061492d565b60405180910390fd5b60011515601260009054906101000a900460ff1615151415611ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e989061470d565b60405180910390fd5b6001601260006101000a81548160ff021916908315150217905550565b611ec66129e7565b73ffffffffffffffffffffffffffffffffffffffff16611ee4611da4565b73ffffffffffffffffffffffffffffffffffffffff1614611f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f319061492d565b60405180910390fd5b6101f481601754611f4b9190614bf7565b1115611f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f839061496d565b60405180910390fd5b60005b81811015611feb576000611fa1612de2565b9050612710611fae610e4c565b1015611fd757611fbe3382612ecc565b60176000815480929190611fd190614e25565b91905055505b508080611fe390614e25565b915050611f8f565b5050565b606060018054611ffe90614dc2565b80601f016020809104026020016040519081016040528092919081815260200182805461202a90614dc2565b80156120775780601f1061204c57610100808354040283529160200191612077565b820191906000526020600020905b81548152906001019060200180831161205a57829003601f168201915b5050505050905090565b600d5481565b600f805461209490614dc2565b80601f01602080910402602001604051908101604052809291908181526020018280546120c090614dc2565b801561210d5780601f106120e25761010080835404028352916020019161210d565b820191906000526020600020905b8154815290600101906020018083116120f057829003601f168201915b505050505081565b61211d6129e7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561218b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612182906147ed565b60405180910390fd5b80600660006121986129e7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166122456129e7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161228a91906146b0565b60405180910390a35050565b61271081565b60146020528060005260406000206000915090505481565b6122c56122bf6129e7565b83612aa8565b612304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fb90614a2d565b60405180910390fd5b61231084848484612fca565b50505050565b60136020528060005260406000206000915090505481565b600080600090505b6011805490508110156123f8578273ffffffffffffffffffffffffffffffffffffffff1660118281548110612394577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156123e55760019150506123fe565b80806123f090614e25565b915050612336565b50600090505b919050565b61240b6129e7565b73ffffffffffffffffffffffffffffffffffffffff16612429611da4565b73ffffffffffffffffffffffffffffffffffffffff161461247f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124769061492d565b60405180910390fd5b6011600061248d9190613b27565b80601190805190602001906124a3929190613b48565b5050565b606060006124b3611763565b5114156124f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ec906147ad565b60405180910390fd5b6124fe8261297b565b61253d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612534906149ad565b60405180910390fd5b612545611763565b61254e83613026565b60405160200161255f9291906145e8565b6040516020818303038152906040529050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b73e9b8bc7aef16fb0d53d74f05a897e8a92b2de04f81565b601060019054906101000a900460ff1681565b61263c6129e7565b73ffffffffffffffffffffffffffffffffffffffff1661265a611da4565b73ffffffffffffffffffffffffffffffffffffffff16146126b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a79061492d565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b6126e46129e7565b73ffffffffffffffffffffffffffffffffffffffff16612702611da4565b73ffffffffffffffffffffffffffffffffffffffff1614612758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274f9061492d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156127c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bf9061476d565b60405180910390fd5b6127d181612f04565b50565b601181815481106127e457600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61281b6129e7565b73ffffffffffffffffffffffffffffffffffffffff16612839611da4565b73ffffffffffffffffffffffffffffffffffffffff161461288f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128869061492d565b60405180910390fd5b80600e8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061296457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806129745750612973826131d3565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612a6283611698565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612ab38261297b565b612af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae99061484d565b60405180910390fd5b6000612afd83611698565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612b6c57508373ffffffffffffffffffffffffffffffffffffffff16612b5484610caf565b73ffffffffffffffffffffffffffffffffffffffff16145b80612b7d5750612b7c8185612575565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612ba682611698565b73ffffffffffffffffffffffffffffffffffffffff1614612bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bf39061498d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c63906147cd565b60405180910390fd5b612c7783838361323d565b612c826000826129ef565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cd29190614cd8565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d299190614bf7565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000806127106018544442612df79190614bf7565b612e019190614bf7565b604051602001612e11919061460c565b6040516020818303038152906040528051906020012060001c612e349190614e78565b9050612710612e41610e4c565b1015612ec5575b612e518161297b565b15612ec45760186000815480929190612e6990614e25565b91905055506127106018544442612e809190614bf7565b612e8a9190614bf7565b604051602001612e9a919061460c565b6040516020818303038152906040528051906020012060001c612ebd9190614e78565b9050612e48565b5b8091505090565b612ee6828260405180602001604052806000815250613351565b5050565b8060029080519060200190612f00929190613aa1565b5050565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612fd5848484612b86565b612fe1848484846133ac565b613020576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130179061474d565b60405180910390fd5b50505050565b6060600082141561306e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131ce565b600082905060005b600082146130a057808061308990614e25565b915050600a826130999190614c4d565b9150613076565b60008167ffffffffffffffff8111156130e2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156131145781602001600182028036833780820191505090505b5090505b600085146131c75760018261312d9190614cd8565b9150600a8561313c9190614e78565b60306131489190614bf7565b60f81b818381518110613184577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131c09190614c4d565b9450613118565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613248838383613543565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561328b5761328681613548565b6132ca565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146132c9576132c88382613591565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561330d57613308816136fe565b61334c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461334b5761334a8282613841565b5b5b505050565b61335b83836138c0565b61336860008484846133ac565b6133a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339e9061474d565b60405180910390fd5b505050565b60006133cd8473ffffffffffffffffffffffffffffffffffffffff16613a8e565b15613536578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133f66129e7565b8786866040518563ffffffff1660e01b81526004016134189493929190614642565b602060405180830381600087803b15801561343257600080fd5b505af192505050801561346357506040513d601f19601f820116820180604052508101906134609190613fcf565b60015b6134e6573d8060008114613493576040519150601f19603f3d011682016040523d82523d6000602084013e613498565b606091505b506000815114156134de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134d59061474d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061353b565b600190505b949350505050565b505050565b600a80549050600b600083815260200190815260200160002081905550600a81908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161359e8461187b565b6135a89190614cd8565b905060006009600084815260200190815260200160002054905081811461368d576000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816009600083815260200190815260200160002081905550505b6009600084815260200190815260200160002060009055600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600a805490506137129190614cd8565b90506000600b60008481526020019081526020016000205490506000600a8381548110613768577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600a83815481106137b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600b600083815260200190815260200160002081905550600b600085815260200190815260200160002060009055600a805480613825577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061384c8361187b565b905081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806009600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613930576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613927906148cd565b60405180910390fd5b6139398161297b565b15613979576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139709061478d565b60405180910390fd5b6139856000838361323d565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139d59190614bf7565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613aad90614dc2565b90600052602060002090601f016020900481019282613acf5760008555613b16565b82601f10613ae857805160ff1916838001178555613b16565b82800160010185558215613b16579182015b82811115613b15578251825591602001919060010190613afa565b5b509050613b239190613bd2565b5090565b5080546000825590600052602060002090810190613b459190613bd2565b50565b828054828255906000526020600020908101928215613bc1579160200282015b82811115613bc05782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613b68565b5b509050613bce9190613bd2565b5090565b5b80821115613beb576000816000905550600101613bd3565b5090565b6000613c02613bfd84614aed565b614ac8565b90508083825260208201905082856020860282011115613c2157600080fd5b60005b85811015613c515781613c378882613cd7565b845260208401935060208301925050600181019050613c24565b5050509392505050565b6000613c6e613c6984614b19565b614ac8565b905082815260208101848484011115613c8657600080fd5b613c91848285614d80565b509392505050565b6000613cac613ca784614b4a565b614ac8565b905082815260208101848484011115613cc457600080fd5b613ccf848285614d80565b509392505050565b600081359050613ce681615762565b92915050565b600082601f830112613cfd57600080fd5b8135613d0d848260208601613bef565b91505092915050565b600081359050613d2581615779565b92915050565b600081359050613d3a81615790565b92915050565b600081519050613d4f81615790565b92915050565b600082601f830112613d6657600080fd5b8135613d76848260208601613c5b565b91505092915050565b600082601f830112613d9057600080fd5b8135613da0848260208601613c99565b91505092915050565b600081359050613db8816157a7565b92915050565b600060208284031215613dd057600080fd5b6000613dde84828501613cd7565b91505092915050565b60008060408385031215613dfa57600080fd5b6000613e0885828601613cd7565b9250506020613e1985828601613cd7565b9150509250929050565b600080600060608486031215613e3857600080fd5b6000613e4686828701613cd7565b9350506020613e5786828701613cd7565b9250506040613e6886828701613da9565b9150509250925092565b60008060008060808587031215613e8857600080fd5b6000613e9687828801613cd7565b9450506020613ea787828801613cd7565b9350506040613eb887828801613da9565b925050606085013567ffffffffffffffff811115613ed557600080fd5b613ee187828801613d55565b91505092959194509250565b60008060408385031215613f0057600080fd5b6000613f0e85828601613cd7565b9250506020613f1f85828601613d16565b9150509250929050565b60008060408385031215613f3c57600080fd5b6000613f4a85828601613cd7565b9250506020613f5b85828601613da9565b9150509250929050565b600060208284031215613f7757600080fd5b600082013567ffffffffffffffff811115613f9157600080fd5b613f9d84828501613cec565b91505092915050565b600060208284031215613fb857600080fd5b6000613fc684828501613d2b565b91505092915050565b600060208284031215613fe157600080fd5b6000613fef84828501613d40565b91505092915050565b60006020828403121561400a57600080fd5b600082013567ffffffffffffffff81111561402457600080fd5b61403084828501613d7f565b91505092915050565b60006020828403121561404b57600080fd5b600061405984828501613da9565b91505092915050565b600061406e83836145b3565b60208301905092915050565b61408381614d0c565b82525050565b600061409482614b8b565b61409e8185614bb9565b93506140a983614b7b565b8060005b838110156140da5781516140c18882614062565b97506140cc83614bac565b9250506001810190506140ad565b5085935050505092915050565b6140f081614d1e565b82525050565b600061410182614b96565b61410b8185614bca565b935061411b818560208601614d8f565b61412481614f65565b840191505092915050565b600061413a82614ba1565b6141448185614bdb565b9350614154818560208601614d8f565b61415d81614f65565b840191505092915050565b600061417382614ba1565b61417d8185614bec565b935061418d818560208601614d8f565b80840191505092915050565b60006141a6602b83614bdb565b91506141b182614f76565b604082019050919050565b60006141c9602083614bdb565b91506141d482614fc5565b602082019050919050565b60006141ec602b83614bdb565b91506141f782614fee565b604082019050919050565b600061420f603283614bdb565b915061421a8261503d565b604082019050919050565b6000614232602683614bdb565b915061423d8261508c565b604082019050919050565b6000614255601c83614bdb565b9150614260826150db565b602082019050919050565b6000614278601c83614bdb565b915061428382615104565b602082019050919050565b600061429b602483614bdb565b91506142a68261512d565b604082019050919050565b60006142be601983614bdb565b91506142c98261517c565b602082019050919050565b60006142e1601f83614bdb565b91506142ec826151a5565b602082019050919050565b6000614304601b83614bdb565b915061430f826151ce565b602082019050919050565b6000614327602c83614bdb565b9150614332826151f7565b604082019050919050565b600061434a603883614bdb565b915061435582615246565b604082019050919050565b600061436d602a83614bdb565b915061437882615295565b604082019050919050565b6000614390602983614bdb565b915061439b826152e4565b604082019050919050565b60006143b3602083614bdb565b91506143be82615333565b602082019050919050565b60006143d6601783614bdb565b91506143e18261535c565b602082019050919050565b60006143f9602c83614bdb565b915061440482615385565b604082019050919050565b600061441c602083614bdb565b9150614427826153d4565b602082019050919050565b600061443f603483614bdb565b915061444a826153fd565b604082019050919050565b6000614462603183614bdb565b915061446d8261544c565b604082019050919050565b6000614485602983614bdb565b91506144908261549b565b604082019050919050565b60006144a8602f83614bdb565b91506144b3826154ea565b604082019050919050565b60006144cb602383614bdb565b91506144d682615539565b604082019050919050565b60006144ee602183614bdb565b91506144f982615588565b604082019050919050565b6000614511603783614bdb565b915061451c826155d7565b604082019050919050565b6000614534603183614bdb565b915061453f82615626565b604082019050919050565b6000614557602c83614bdb565b915061456282615675565b604082019050919050565b600061457a603f83614bdb565b9150614585826156c4565b604082019050919050565b600061459d603383614bdb565b91506145a882615713565b604082019050919050565b6145bc81614d76565b82525050565b6145cb81614d76565b82525050565b6145e26145dd82614d76565b614e6e565b82525050565b60006145f48285614168565b91506146008284614168565b91508190509392505050565b600061461882846145d1565b60208201915081905092915050565b600060208201905061463c600083018461407a565b92915050565b6000608082019050614657600083018761407a565b614664602083018661407a565b61467160408301856145c2565b818103606083015261468381846140f6565b905095945050505050565b600060208201905081810360008301526146a88184614089565b905092915050565b60006020820190506146c560008301846140e7565b92915050565b600060208201905081810360008301526146e5818461412f565b905092915050565b6000602082019050818103600083015261470681614199565b9050919050565b60006020820190508181036000830152614726816141bc565b9050919050565b60006020820190508181036000830152614746816141df565b9050919050565b6000602082019050818103600083015261476681614202565b9050919050565b6000602082019050818103600083015261478681614225565b9050919050565b600060208201905081810360008301526147a681614248565b9050919050565b600060208201905081810360008301526147c68161426b565b9050919050565b600060208201905081810360008301526147e68161428e565b9050919050565b60006020820190508181036000830152614806816142b1565b9050919050565b60006020820190508181036000830152614826816142d4565b9050919050565b60006020820190508181036000830152614846816142f7565b9050919050565b600060208201905081810360008301526148668161431a565b9050919050565b600060208201905081810360008301526148868161433d565b9050919050565b600060208201905081810360008301526148a681614360565b9050919050565b600060208201905081810360008301526148c681614383565b9050919050565b600060208201905081810360008301526148e6816143a6565b9050919050565b60006020820190508181036000830152614906816143c9565b9050919050565b60006020820190508181036000830152614926816143ec565b9050919050565b600060208201905081810360008301526149468161440f565b9050919050565b6000602082019050818103600083015261496681614432565b9050919050565b6000602082019050818103600083015261498681614455565b9050919050565b600060208201905081810360008301526149a681614478565b9050919050565b600060208201905081810360008301526149c68161449b565b9050919050565b600060208201905081810360008301526149e6816144be565b9050919050565b60006020820190508181036000830152614a06816144e1565b9050919050565b60006020820190508181036000830152614a2681614504565b9050919050565b60006020820190508181036000830152614a4681614527565b9050919050565b60006020820190508181036000830152614a668161454a565b9050919050565b60006020820190508181036000830152614a868161456d565b9050919050565b60006020820190508181036000830152614aa681614590565b9050919050565b6000602082019050614ac260008301846145c2565b92915050565b6000614ad2614ae3565b9050614ade8282614df4565b919050565b6000604051905090565b600067ffffffffffffffff821115614b0857614b07614f36565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614b3457614b33614f36565b5b614b3d82614f65565b9050602081019050919050565b600067ffffffffffffffff821115614b6557614b64614f36565b5b614b6e82614f65565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614c0282614d76565b9150614c0d83614d76565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c4257614c41614ea9565b5b828201905092915050565b6000614c5882614d76565b9150614c6383614d76565b925082614c7357614c72614ed8565b5b828204905092915050565b6000614c8982614d76565b9150614c9483614d76565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ccd57614ccc614ea9565b5b828202905092915050565b6000614ce382614d76565b9150614cee83614d76565b925082821015614d0157614d00614ea9565b5b828203905092915050565b6000614d1782614d56565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614dad578082015181840152602081019050614d92565b83811115614dbc576000848401525b50505050565b60006002820490506001821680614dda57607f821691505b60208210811415614dee57614ded614f07565b5b50919050565b614dfd82614f65565b810181811067ffffffffffffffff82111715614e1c57614e1b614f36565b5b80604052505050565b6000614e3082614d76565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614e6357614e62614ea9565b5b600182019050919050565b6000819050919050565b6000614e8382614d76565b9150614e8e83614d76565b925082614e9e57614e9d614ed8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4d6178696d756d20616d6f756e74206f66204e4654732070657220616464726560008201527f7373206578636565646564000000000000000000000000000000000000000000602082015250565b7f546865207075626c69632073616c6520697320616c7265616479206c69766521600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4261736555524920686173206e6f74206265656e207365742079657400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f53616c65206d7573742062652061637469766520746f206d696e740000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f596f7520617265206e6f742077686974656c6973746564000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e66656374656420626f646965733a20596f7527766520616c72656164792060008201527f6c6f636b656420746865206d6574616461746121000000000000000000000000602082015250565b7f416d6f756e7420776f756c642065786365656420746865206e756d626572206f60008201527f66207265736572766520746f6b656e7321000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f742077697468696e207468652072616e6765206f66206d6178507572636860008201527f6173650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f7520616c726561647920626f7567687420746865206d6178696d756d206160008201527f6d6f756e74206f6620746f6b656e7320616c6c6f776564000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4d657461646174612068617320616c7265616479206265656e206c6f636b656460008201527f20616e642063616e6e6f74206265206368616e67656420616e796d6f72652100602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620496e66656374656420426f6469657300000000000000000000000000602082015250565b61576b81614d0c565b811461577657600080fd5b50565b61578281614d1e565b811461578d57600080fd5b50565b61579981614d2a565b81146157a457600080fd5b50565b6157b081614d76565b81146157bb57600080fd5b5056fea2646970667358221220c691241734f84a10cbb21cb89fb25b35f1ceee8202c65558557eff95f257516164736f6c63430008040033

Deployed Bytecode Sourcemap

42257:7511:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33919:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20716:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22606:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22129:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34559:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23496:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42670:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34227:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43560:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48049:243;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42848:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23906:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44863:1256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34749:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43945:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48995:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47707:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20410:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44055:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43217:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21640:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47869:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20140:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41628:94;;;;;;;;;;;;;:::i;:::-;;44199:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48358:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42748:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46127:541;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48527:440;;;;;;;;;;;;;:::i;:::-;;40977:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47467:158;;;;;;;;;;;;;:::i;:::-;;49334:431;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20885:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42482:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43112:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22899:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42379:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43815:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24162:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43685:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46747:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47163:160;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21060:341;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23265:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42934:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43300:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49234:92;;;;;;;;;;;;;:::i;:::-;;41877:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43399:38;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47358:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33919:224;34021:4;34060:35;34045:50;;;:11;:50;;;;:90;;;;34099:36;34123:11;34099:23;:36::i;:::-;34045:90;34038:97;;33919:224;;;:::o;20716:100::-;20770:13;20803:5;20796:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20716:100;:::o;22606:221::-;22682:7;22710:16;22718:7;22710;:16::i;:::-;22702:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22795:15;:24;22811:7;22795:24;;;;;;;;;;;;;;;;;;;;;22788:31;;22606:221;;;:::o;22129:411::-;22210:13;22226:23;22241:7;22226:14;:23::i;:::-;22210:39;;22274:5;22268:11;;:2;:11;;;;22260:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22368:5;22352:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22377:37;22394:5;22401:12;:10;:12::i;:::-;22377:16;:37::i;:::-;22352:62;22330:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;22511:21;22520:2;22524:7;22511:8;:21::i;:::-;22129:411;;;:::o;34559:113::-;34620:7;34647:10;:17;;;;34640:24;;34559:113;:::o;23496:339::-;23691:41;23710:12;:10;:12::i;:::-;23724:7;23691:18;:41::i;:::-;23683:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23799:28;23809:4;23815:2;23819:7;23799:9;:28::i;:::-;23496:339;;;:::o;42670:43::-;42710:3;42670:43;:::o;34227:256::-;34324:7;34360:23;34377:5;34360:16;:23::i;:::-;34352:5;:31;34344:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;34449:12;:19;34462:5;34449:19;;;;;;;;;;;;;;;:26;34469:5;34449:26;;;;;;;;;;;;34442:33;;34227:256;;;;:::o;43560:30::-;;;;;;;;;;;;;:::o;48049:243::-;41208:12;:10;:12::i;:::-;41197:23;;:7;:5;:7::i;:::-;:23;;;41189:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48150:4:::1;48132:22;;:14;;;;;;;;;;;:22;;;;48124:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;48243:9;48224:16;:28;;;;;;;;;;;;:::i;:::-;;48280:4;48263:14;;:21;;;;;;;;;;;;;;;;;;48049:243:::0;:::o;42848:79::-;42885:42;42848:79;:::o;23906:185::-;24044:39;24061:4;24067:2;24071:7;24044:39;;;;;;;;;;;;:16;:39::i;:::-;23906:185;;;:::o;44863:1256::-;44949:12;;;;;;;;;;;44941:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;45029:1;45012:14;:18;:51;;;;;45052:11;;45034:14;:29;;45012:51;45004:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;42420:5;45139:14;45123:13;:11;:13::i;:::-;:30;;;;:::i;:::-;45122:50;;45114:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;45296:13;;45278:14;45247:16;:28;45264:10;45247:28;;;;;;;;;;;;;;;;:45;;;;:::i;:::-;:62;;45239:130;;;;;;;;;;;;:::i;:::-;;;;;;;;;45414:14;45401:10;;:27;;;;:::i;:::-;45388:9;:40;;45380:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;45495:4;45481:18;;:10;;;;;;;;;;;:18;;;45477:241;;45524:23;45536:10;45524:11;:23::i;:::-;45516:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;45646:12;;45628:14;45598:15;:27;45614:10;45598:27;;;;;;;;;;;;;;;;:44;;;;:::i;:::-;:60;;45590:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;45477:241;45735:9;45730:382;45754:14;45750:1;:18;45730:382;;;45790:10;45803:14;:12;:14::i;:::-;45790:27;;45850:4;45836:18;;:10;;;;;;;;;;;:18;;;45832:159;;45875:15;:27;45891:10;45875:27;;;;;;;;;;;;;;;;:29;;;;;;;;;:::i;:::-;;;;;;45832:159;;;45945:16;:28;45962:10;45945:28;;;;;;;;;;;;;;;;:30;;;;;;;;;:::i;:::-;;;;;;45832:159;42420:5;46009:13;:11;:13::i;:::-;:30;46005:96;;;46060:25;46070:10;46082:2;46060:9;:25::i;:::-;46005:96;45730:382;45770:3;;;;;:::i;:::-;;;;45730:382;;;;44863:1256;:::o;34749:233::-;34824:7;34860:30;:28;:30::i;:::-;34852:5;:38;34844:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;34957:10;34968:5;34957:17;;;;;;;;;;;;;;;;;;;;;;;;34950:24;;34749:233;;;:::o;43945:31::-;;;;:::o;48995:208::-;41208:12;:10;:12::i;:::-;41197:23;;:7;:5;:7::i;:::-;:23;;;41189:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49092:4:::1;49074:22;;:14;;;;;;;;;;;:22;;;;49066:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;49175:20;49187:7;49175:11;:20::i;:::-;48995:208:::0;:::o;47707:101::-;41208:12;:10;:12::i;:::-;41197:23;;:7;:5;:7::i;:::-;:23;;;41189:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47794:6:::1;47779:12;:21;;;;47707:101:::0;:::o;20410:239::-;20482:7;20502:13;20518:7;:16;20526:7;20518:16;;;;;;;;;;;;;;;;;;;;;20502:32;;20570:1;20553:19;;:5;:19;;;;20545:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20636:5;20629:12;;;20410:239;;;:::o;44055:33::-;;;;:::o;43217:34::-;;;;;;;;;;;;;:::o;21640:97::-;21688:13;21721:8;21714:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21640:97;:::o;47869:99::-;41208:12;:10;:12::i;:::-;41197:23;;:7;:5;:7::i;:::-;:23;;;41189:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47954:6:::1;47938:13;:22;;;;47869:99:::0;:::o;20140:208::-;20212:7;20257:1;20240:19;;:5;:19;;;;20232:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;20324:9;:16;20334:5;20324:16;;;;;;;;;;;;;;;;20317:23;;20140:208;;;:::o;41628:94::-;41208:12;:10;:12::i;:::-;41197:23;;:7;:5;:7::i;:::-;:23;;;41189:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41693:21:::1;41711:1;41693:9;:21::i;:::-;41628:94::o:0;44199:38::-;;;;:::o;48358:99::-;41208:12;:10;:12::i;:::-;41197:23;;:7;:5;:7::i;:::-;:23;;;41189:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48443:6:::1;48429:11;:20;;;;48358:99:::0;:::o;42748:45::-;;;;:::o;46127:541::-;46189:16;46219:18;46240:17;46250:6;46240:9;:17::i;:::-;46219:38;;46286:1;46272:10;:15;46268:393;;;46363:1;46349:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46342:23;;;;;46268:393;46398:23;46438:10;46424:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46398:51;;46464:13;46492:130;46516:10;46508:5;:18;46492:130;;;46572:34;46592:6;46600:5;46572:19;:34::i;:::-;46556:6;46563:5;46556:13;;;;;;;;;;;;;;;;;;;;;:50;;;;;46528:7;;;;;:::i;:::-;;;;46492:130;;;46643:6;46636:13;;;;;46127:541;;;;:::o;48527:440::-;41208:12;:10;:12::i;:::-;41197:23;;:7;:5;:7::i;:::-;:23;;;41189:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48580:15:::1;48598:21;48580:39;;48630:18;48663:4;48659:3;48651:7;:11;;;;:::i;:::-;:16;;;;:::i;:::-;48630:37;;48678:25;48718:4;48714:3;48706:7;:11;;;;:::i;:::-;:16;;;;:::i;:::-;48678:44;;42885:42;48733:28;;:40;48762:10;48733:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;42978:42;48784:35;;:54;48820:17;48784:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;48849:17;48892;48879:10;48869:7;:20;;;;:::i;:::-;:40;;;;:::i;:::-;48849:60;;48928:10;48920:28;;:39;48949:9;48920:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;41268:1;;;;48527:440::o:0;40977:87::-;41023:7;41050:6;;;;;;;;;;;41043:13;;40977:87;:::o;47467:158::-;41208:12;:10;:12::i;:::-;41197:23;;:7;:5;:7::i;:::-;:23;;;41189:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47548:4:::1;47534:18;;:10;;;;;;;;;;;:18;;;;47526:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;47613:4;47600:10;;:17;;;;;;;;;;;;;;;;;;47467:158::o:0;49334:431::-;41208:12;:10;:12::i;:::-;41197:23;;:7;:5;:7::i;:::-;:23;;;41189:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42710:3:::1;49429:6;49407:19;;:28;;;;:::i;:::-;:45;;49399:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;49522:9;49517:241;49541:6;49537:1;:10;49517:241;;;49569:10;49582:14;:12;:14::i;:::-;49569:27;;42420:5;49615:13;:11;:13::i;:::-;:30;49611:136;;;49666:25;49676:10;49688:2;49666:9;:25::i;:::-;49710:19;;:21;;;;;;;;;:::i;:::-;;;;;;49611:136;49517:241;49549:3;;;;;:::i;:::-;;;;49517:241;;;;49334:431:::0;:::o;20885:104::-;20941:13;20974:7;20967:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20885:104;:::o;42482:31::-;;;;:::o;43112:30::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22899:295::-;23014:12;:10;:12::i;:::-;23002:24;;:8;:24;;;;22994:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23114:8;23069:18;:32;23088:12;:10;:12::i;:::-;23069:32;;;;;;;;;;;;;;;:42;23102:8;23069:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23167:8;23138:48;;23153:12;:10;:12::i;:::-;23138:48;;;23177:8;23138:48;;;;;;:::i;:::-;;;;;;;;22899:295;;:::o;42379:46::-;42420:5;42379:46;:::o;43815:51::-;;;;;;;;;;;;;;;;;:::o;24162:328::-;24337:41;24356:12;:10;:12::i;:::-;24370:7;24337:18;:41::i;:::-;24329:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24443:39;24457:4;24463:2;24467:7;24476:5;24443:13;:39::i;:::-;24162:328;;;;:::o;43685:50::-;;;;;;;;;;;;;;;;;:::o;46747:279::-;46803:11;46832:9;46844:1;46832:13;;46827:169;46851:21;:28;;;;46847:1;:32;46827:169;;;46933:4;46905:32;;:21;46927:1;46905:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:32;;;46901:84;;;46965:4;46958:11;;;;;46901:84;46881:3;;;;;:::i;:::-;;;;46827:169;;;;47013:5;47006:12;;46747:279;;;;:::o;47163:160::-;41208:12;:10;:12::i;:::-;41197:23;;:7;:5;:7::i;:::-;:23;;;41189:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47250:21:::1;;47243:28;;;;:::i;:::-;47306:9;47282:21;:33;;;;;;;;;;;;:::i;:::-;;47163:160:::0;:::o;21060:341::-;21134:13;21195:1;21174:9;:7;:9::i;:::-;21168:23;:28;;21160:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;21248:17;21256:8;21248:7;:17::i;:::-;21240:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;21361:9;:7;:9::i;:::-;21372:19;:8;:17;:19::i;:::-;21344:48;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21330:63;;21060:341;;;:::o;23265:164::-;23362:4;23386:18;:25;23405:5;23386:25;;;;;;;;;;;;;;;:35;23412:8;23386:35;;;;;;;;;;;;;;;;;;;;;;;;;23379:42;;23265:164;;;;:::o;42934:86::-;42978:42;42934:86;:::o;43300:32::-;;;;;;;;;;;;;:::o;49234:92::-;41208:12;:10;:12::i;:::-;41197:23;;:7;:5;:7::i;:::-;:23;;;41189:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49306:12:::1;;;;;;;;;;;49305:13;49290:12;;:28;;;;;;;;;;;;;;;;;;49234:92::o:0;41877:192::-;41208:12;:10;:12::i;:::-;41197:23;;:7;:5;:7::i;:::-;:23;;;41189:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41986:1:::1;41966:22;;:8;:22;;;;41958:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42042:19;42052:8;42042:9;:19::i;:::-;41877:192:::0;:::o;43399:38::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47358:101::-;41208:12;:10;:12::i;:::-;41197:23;;:7;:5;:7::i;:::-;:23;;;41189:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47443:8:::1;47430:10;:21;;;;47358:101:::0;:::o;19771:305::-;19873:4;19925:25;19910:40;;;:11;:40;;;;:105;;;;19982:33;19967:48;;;:11;:48;;;;19910:105;:158;;;;20032:36;20056:11;20032:23;:36::i;:::-;19910:158;19890:178;;19771:305;;;:::o;26000:127::-;26065:4;26117:1;26089:30;;:7;:16;26097:7;26089:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26082:37;;26000:127;;;:::o;15335:98::-;15388:7;15415:10;15408:17;;15335:98;:::o;29982:174::-;30084:2;30057:15;:24;30073:7;30057:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30140:7;30136:2;30102:46;;30111:23;30126:7;30111:14;:23::i;:::-;30102:46;;;;;;;;;;;;29982:174;;:::o;26294:348::-;26387:4;26412:16;26420:7;26412;:16::i;:::-;26404:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26488:13;26504:23;26519:7;26504:14;:23::i;:::-;26488:39;;26557:5;26546:16;;:7;:16;;;:51;;;;26590:7;26566:31;;:20;26578:7;26566:11;:20::i;:::-;:31;;;26546:51;:87;;;;26601:32;26618:5;26625:7;26601:16;:32::i;:::-;26546:87;26538:96;;;26294:348;;;;:::o;29286:578::-;29445:4;29418:31;;:23;29433:7;29418:14;:23::i;:::-;:31;;;29410:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29528:1;29514:16;;:2;:16;;;;29506:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29584:39;29605:4;29611:2;29615:7;29584:20;:39::i;:::-;29688:29;29705:1;29709:7;29688:8;:29::i;:::-;29749:1;29730:9;:15;29740:4;29730:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29778:1;29761:9;:13;29771:2;29761:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29809:2;29790:7;:16;29798:7;29790:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29848:7;29844:2;29829:27;;29838:4;29829:27;;;;;;;;;;;;29286:578;;;:::o;44405:450::-;44447:7;44466:10;42420:5;44551:13;;44532:16;44514:15;:34;;;;:::i;:::-;:50;;;;:::i;:::-;44497:68;;;;;;;;:::i;:::-;;;;;;;;;;;;;44487:79;;;;;;44479:88;;:105;;;;:::i;:::-;44466:118;;42420:5;44599:13;:11;:13::i;:::-;:30;44595:235;;;44642:179;44648:11;44656:2;44648:7;:11::i;:::-;44642:179;;;44673:13;;:15;;;;;;;;;:::i;:::-;;;;;;42420:5;44776:13;;44757:16;44739:15;:34;;;;:::i;:::-;:50;;;;:::i;:::-;44722:68;;;;;;;;:::i;:::-;;;;;;;;;;;;;44712:79;;;;;;44704:88;;:105;;;;:::i;:::-;44699:110;;44642:179;;;44595:235;44845:2;44838:9;;;44405:450;:::o;26984:110::-;27060:26;27070:2;27074:7;27060:26;;;;;;;;;;;;:9;:26::i;:::-;26984:110;;:::o;21967:100::-;22051:8;22040;:19;;;;;;;;;;;;:::i;:::-;;21967:100;:::o;42077:173::-;42133:16;42152:6;;;;;;;;;;;42133:25;;42178:8;42169:6;;:17;;;;;;;;;;;;;;;;;;42233:8;42202:40;;42223:8;42202:40;;;;;;;;;;;;42077:173;;:::o;25372:315::-;25529:28;25539:4;25545:2;25549:7;25529:9;:28::i;:::-;25576:48;25599:4;25605:2;25609:7;25618:5;25576:22;:48::i;:::-;25568:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25372:315;;;;:::o;15775:723::-;15831:13;16061:1;16052:5;:10;16048:53;;;16079:10;;;;;;;;;;;;;;;;;;;;;16048:53;16111:12;16126:5;16111:20;;16142:14;16167:78;16182:1;16174:4;:9;16167:78;;16200:8;;;;;:::i;:::-;;;;16231:2;16223:10;;;;;:::i;:::-;;;16167:78;;;16255:19;16287:6;16277:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16255:39;;16305:154;16321:1;16312:5;:10;16305:154;;16349:1;16339:11;;;;;:::i;:::-;;;16416:2;16408:5;:10;;;;:::i;:::-;16395:2;:24;;;;:::i;:::-;16382:39;;16365:6;16372;16365:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;16445:2;16436:11;;;;;:::i;:::-;;;16305:154;;;16483:6;16469:21;;;;;15775:723;;;;:::o;18232:157::-;18317:4;18356:25;18341:40;;;:11;:40;;;;18334:47;;18232:157;;;:::o;35595:589::-;35739:45;35766:4;35772:2;35776:7;35739:26;:45::i;:::-;35817:1;35801:18;;:4;:18;;;35797:187;;;35836:40;35868:7;35836:31;:40::i;:::-;35797:187;;;35906:2;35898:10;;:4;:10;;;35894:90;;35925:47;35958:4;35964:7;35925:32;:47::i;:::-;35894:90;35797:187;36012:1;35998:16;;:2;:16;;;35994:183;;;36031:45;36068:7;36031:36;:45::i;:::-;35994:183;;;36104:4;36098:10;;:2;:10;;;36094:83;;36125:40;36153:2;36157:7;36125:27;:40::i;:::-;36094:83;35994:183;35595:589;;;:::o;27321:321::-;27451:18;27457:2;27461:7;27451:5;:18::i;:::-;27502:54;27533:1;27537:2;27541:7;27550:5;27502:22;:54::i;:::-;27480:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;27321:321;;;:::o;30721:803::-;30876:4;30897:15;:2;:13;;;:15::i;:::-;30893:624;;;30949:2;30933:36;;;30970:12;:10;:12::i;:::-;30984:4;30990:7;30999:5;30933:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;30929:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31196:1;31179:6;:13;:18;31175:272;;;31222:60;;;;;;;;;;:::i;:::-;;;;;;;;31175:272;31397:6;31391:13;31382:6;31378:2;31374:15;31367:38;30929:533;31066:45;;;31056:55;;;:6;:55;;;;31049:62;;;;;30893:624;31501:4;31494:11;;30721:803;;;;;;;:::o;32096:126::-;;;;:::o;36907:164::-;37011:10;:17;;;;36984:15;:24;37000:7;36984:24;;;;;;;;;;;:44;;;;37039:10;37055:7;37039:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36907:164;:::o;37698:988::-;37964:22;38014:1;37989:22;38006:4;37989:16;:22::i;:::-;:26;;;;:::i;:::-;37964:51;;38026:18;38047:17;:26;38065:7;38047:26;;;;;;;;;;;;38026:47;;38194:14;38180:10;:28;38176:328;;38225:19;38247:12;:18;38260:4;38247:18;;;;;;;;;;;;;;;:34;38266:14;38247:34;;;;;;;;;;;;38225:56;;38331:11;38298:12;:18;38311:4;38298:18;;;;;;;;;;;;;;;:30;38317:10;38298:30;;;;;;;;;;;:44;;;;38448:10;38415:17;:30;38433:11;38415:30;;;;;;;;;;;:43;;;;38176:328;;38600:17;:26;38618:7;38600:26;;;;;;;;;;;38593:33;;;38644:12;:18;38657:4;38644:18;;;;;;;;;;;;;;;:34;38663:14;38644:34;;;;;;;;;;;38637:41;;;37698:988;;;;:::o;38981:1079::-;39234:22;39279:1;39259:10;:17;;;;:21;;;;:::i;:::-;39234:46;;39291:18;39312:15;:24;39328:7;39312:24;;;;;;;;;;;;39291:45;;39663:19;39685:10;39696:14;39685:26;;;;;;;;;;;;;;;;;;;;;;;;39663:48;;39749:11;39724:10;39735;39724:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;39860:10;39829:15;:28;39845:11;39829:28;;;;;;;;;;;:41;;;;40001:15;:24;40017:7;40001:24;;;;;;;;;;;39994:31;;;40036:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38981:1079;;;;:::o;36485:221::-;36570:14;36587:20;36604:2;36587:16;:20::i;:::-;36570:37;;36645:7;36618:12;:16;36631:2;36618:16;;;;;;;;;;;;;;;:24;36635:6;36618:24;;;;;;;;;;;:34;;;;36692:6;36663:17;:26;36681:7;36663:26;;;;;;;;;;;:35;;;;36485:221;;;:::o;27978:382::-;28072:1;28058:16;;:2;:16;;;;28050:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28131:16;28139:7;28131;:16::i;:::-;28130:17;28122:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28193:45;28222:1;28226:2;28230:7;28193:20;:45::i;:::-;28268:1;28251:9;:13;28261:2;28251:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28299:2;28280:7;:16;28288:7;28280:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28344:7;28340:2;28319:33;;28336:1;28319:33;;;;;;;;;;;;27978:382;;:::o;7682:387::-;7742:4;7950:12;8017:7;8005:20;7997:28;;8060:1;8053:4;:8;8046:15;;;7682:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:655:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:2;;;414:1;411;404:12;350:2;450:1;435:238;460:6;457:1;454:13;435:238;;;528:3;557:37;590:3;578:10;557:37;:::i;:::-;552:3;545:50;624:4;619:3;615:14;608:21;;658:4;653:3;649:14;642:21;;495:178;482:1;479;475:9;470:14;;435:238;;;439:14;126:553;;;;;;;:::o;685:343::-;762:5;787:65;803:48;844:6;803:48;:::i;:::-;787:65;:::i;:::-;778:74;;875:6;868:5;861:21;913:4;906:5;902:16;951:3;942:6;937:3;933:16;930:25;927:2;;;968:1;965;958:12;927:2;981:41;1015:6;1010:3;1005;981:41;:::i;:::-;768:260;;;;;;:::o;1034:345::-;1112:5;1137:66;1153:49;1195:6;1153:49;:::i;:::-;1137:66;:::i;:::-;1128:75;;1226:6;1219:5;1212:21;1264:4;1257:5;1253:16;1302:3;1293:6;1288:3;1284:16;1281:25;1278:2;;;1319:1;1316;1309:12;1278:2;1332:41;1366:6;1361:3;1356;1332:41;:::i;:::-;1118:261;;;;;;:::o;1385:139::-;1431:5;1469:6;1456:20;1447:29;;1485:33;1512:5;1485:33;:::i;:::-;1437:87;;;;:::o;1547:303::-;1618:5;1667:3;1660:4;1652:6;1648:17;1644:27;1634:2;;1685:1;1682;1675:12;1634:2;1725:6;1712:20;1750:94;1840:3;1832:6;1825:4;1817:6;1813:17;1750:94;:::i;:::-;1741:103;;1624:226;;;;;:::o;1856:133::-;1899:5;1937:6;1924:20;1915:29;;1953:30;1977:5;1953:30;:::i;:::-;1905:84;;;;:::o;1995:137::-;2040:5;2078:6;2065:20;2056:29;;2094:32;2120:5;2094:32;:::i;:::-;2046:86;;;;:::o;2138:141::-;2194:5;2225:6;2219:13;2210:22;;2241:32;2267:5;2241:32;:::i;:::-;2200:79;;;;:::o;2298:271::-;2353:5;2402:3;2395:4;2387:6;2383:17;2379:27;2369:2;;2420:1;2417;2410:12;2369:2;2460:6;2447:20;2485:78;2559:3;2551:6;2544:4;2536:6;2532:17;2485:78;:::i;:::-;2476:87;;2359:210;;;;;:::o;2589:273::-;2645:5;2694:3;2687:4;2679:6;2675:17;2671:27;2661:2;;2712:1;2709;2702:12;2661:2;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2651:211;;;;;:::o;2868:139::-;2914:5;2952:6;2939:20;2930:29;;2968:33;2995:5;2968:33;:::i;:::-;2920:87;;;;:::o;3013:262::-;3072:6;3121:2;3109:9;3100:7;3096:23;3092:32;3089:2;;;3137:1;3134;3127:12;3089:2;3180:1;3205:53;3250:7;3241:6;3230:9;3226:22;3205:53;:::i;:::-;3195:63;;3151:117;3079:196;;;;:::o;3281:407::-;3349:6;3357;3406:2;3394:9;3385:7;3381:23;3377:32;3374:2;;;3422:1;3419;3412:12;3374:2;3465:1;3490:53;3535:7;3526:6;3515:9;3511:22;3490:53;:::i;:::-;3480:63;;3436:117;3592:2;3618:53;3663:7;3654:6;3643:9;3639:22;3618:53;:::i;:::-;3608:63;;3563:118;3364:324;;;;;:::o;3694:552::-;3771:6;3779;3787;3836:2;3824:9;3815:7;3811:23;3807:32;3804:2;;;3852:1;3849;3842:12;3804:2;3895:1;3920:53;3965:7;3956:6;3945:9;3941:22;3920:53;:::i;:::-;3910:63;;3866:117;4022:2;4048:53;4093:7;4084:6;4073:9;4069:22;4048:53;:::i;:::-;4038:63;;3993:118;4150:2;4176:53;4221:7;4212:6;4201:9;4197:22;4176:53;:::i;:::-;4166:63;;4121:118;3794:452;;;;;:::o;4252:809::-;4347:6;4355;4363;4371;4420:3;4408:9;4399:7;4395:23;4391:33;4388:2;;;4437:1;4434;4427:12;4388:2;4480:1;4505:53;4550:7;4541:6;4530:9;4526:22;4505:53;:::i;:::-;4495:63;;4451:117;4607:2;4633:53;4678:7;4669:6;4658:9;4654:22;4633:53;:::i;:::-;4623:63;;4578:118;4735:2;4761:53;4806:7;4797:6;4786:9;4782:22;4761:53;:::i;:::-;4751:63;;4706:118;4891:2;4880:9;4876:18;4863:32;4922:18;4914:6;4911:30;4908:2;;;4954:1;4951;4944:12;4908:2;4982:62;5036:7;5027:6;5016:9;5012:22;4982:62;:::i;:::-;4972:72;;4834:220;4378:683;;;;;;;:::o;5067:401::-;5132:6;5140;5189:2;5177:9;5168:7;5164:23;5160:32;5157:2;;;5205:1;5202;5195:12;5157:2;5248:1;5273:53;5318:7;5309:6;5298:9;5294:22;5273:53;:::i;:::-;5263:63;;5219:117;5375:2;5401:50;5443:7;5434:6;5423:9;5419:22;5401:50;:::i;:::-;5391:60;;5346:115;5147:321;;;;;:::o;5474:407::-;5542:6;5550;5599:2;5587:9;5578:7;5574:23;5570:32;5567:2;;;5615:1;5612;5605:12;5567:2;5658:1;5683:53;5728:7;5719:6;5708:9;5704:22;5683:53;:::i;:::-;5673:63;;5629:117;5785:2;5811:53;5856:7;5847:6;5836:9;5832:22;5811:53;:::i;:::-;5801:63;;5756:118;5557:324;;;;;:::o;5887:405::-;5971:6;6020:2;6008:9;5999:7;5995:23;5991:32;5988:2;;;6036:1;6033;6026:12;5988:2;6107:1;6096:9;6092:17;6079:31;6137:18;6129:6;6126:30;6123:2;;;6169:1;6166;6159:12;6123:2;6197:78;6267:7;6258:6;6247:9;6243:22;6197:78;:::i;:::-;6187:88;;6050:235;5978:314;;;;:::o;6298:260::-;6356:6;6405:2;6393:9;6384:7;6380:23;6376:32;6373:2;;;6421:1;6418;6411:12;6373:2;6464:1;6489:52;6533:7;6524:6;6513:9;6509:22;6489:52;:::i;:::-;6479:62;;6435:116;6363:195;;;;:::o;6564:282::-;6633:6;6682:2;6670:9;6661:7;6657:23;6653:32;6650:2;;;6698:1;6695;6688:12;6650:2;6741:1;6766:63;6821:7;6812:6;6801:9;6797:22;6766:63;:::i;:::-;6756:73;;6712:127;6640:206;;;;:::o;6852:375::-;6921:6;6970:2;6958:9;6949:7;6945:23;6941:32;6938:2;;;6986:1;6983;6976:12;6938:2;7057:1;7046:9;7042:17;7029:31;7087:18;7079:6;7076:30;7073:2;;;7119:1;7116;7109:12;7073:2;7147:63;7202:7;7193:6;7182:9;7178:22;7147:63;:::i;:::-;7137:73;;7000:220;6928:299;;;;:::o;7233:262::-;7292:6;7341:2;7329:9;7320:7;7316:23;7312:32;7309:2;;;7357:1;7354;7347:12;7309:2;7400:1;7425:53;7470:7;7461:6;7450:9;7446:22;7425:53;:::i;:::-;7415:63;;7371:117;7299:196;;;;:::o;7501:179::-;7570:10;7591:46;7633:3;7625:6;7591:46;:::i;:::-;7669:4;7664:3;7660:14;7646:28;;7581:99;;;;:::o;7686:118::-;7773:24;7791:5;7773:24;:::i;:::-;7768:3;7761:37;7751:53;;:::o;7840:732::-;7959:3;7988:54;8036:5;7988:54;:::i;:::-;8058:86;8137:6;8132:3;8058:86;:::i;:::-;8051:93;;8168:56;8218:5;8168:56;:::i;:::-;8247:7;8278:1;8263:284;8288:6;8285:1;8282:13;8263:284;;;8364:6;8358:13;8391:63;8450:3;8435:13;8391:63;:::i;:::-;8384:70;;8477:60;8530:6;8477:60;:::i;:::-;8467:70;;8323:224;8310:1;8307;8303:9;8298:14;;8263:284;;;8267:14;8563:3;8556:10;;7964:608;;;;;;;:::o;8578:109::-;8659:21;8674:5;8659:21;:::i;:::-;8654:3;8647:34;8637:50;;:::o;8693:360::-;8779:3;8807:38;8839:5;8807:38;:::i;:::-;8861:70;8924:6;8919:3;8861:70;:::i;:::-;8854:77;;8940:52;8985:6;8980:3;8973:4;8966:5;8962:16;8940:52;:::i;:::-;9017:29;9039:6;9017:29;:::i;:::-;9012:3;9008:39;9001:46;;8783:270;;;;;:::o;9059:364::-;9147:3;9175:39;9208:5;9175:39;:::i;:::-;9230:71;9294:6;9289:3;9230:71;:::i;:::-;9223:78;;9310:52;9355:6;9350:3;9343:4;9336:5;9332:16;9310:52;:::i;:::-;9387:29;9409:6;9387:29;:::i;:::-;9382:3;9378:39;9371:46;;9151:272;;;;;:::o;9429:377::-;9535:3;9563:39;9596:5;9563:39;:::i;:::-;9618:89;9700:6;9695:3;9618:89;:::i;:::-;9611:96;;9716:52;9761:6;9756:3;9749:4;9742:5;9738:16;9716:52;:::i;:::-;9793:6;9788:3;9784:16;9777:23;;9539:267;;;;;:::o;9812:366::-;9954:3;9975:67;10039:2;10034:3;9975:67;:::i;:::-;9968:74;;10051:93;10140:3;10051:93;:::i;:::-;10169:2;10164:3;10160:12;10153:19;;9958:220;;;:::o;10184:366::-;10326:3;10347:67;10411:2;10406:3;10347:67;:::i;:::-;10340:74;;10423:93;10512:3;10423:93;:::i;:::-;10541:2;10536:3;10532:12;10525:19;;10330:220;;;:::o;10556:366::-;10698:3;10719:67;10783:2;10778:3;10719:67;:::i;:::-;10712:74;;10795:93;10884:3;10795:93;:::i;:::-;10913:2;10908:3;10904:12;10897:19;;10702:220;;;:::o;10928:366::-;11070:3;11091:67;11155:2;11150:3;11091:67;:::i;:::-;11084:74;;11167:93;11256:3;11167:93;:::i;:::-;11285:2;11280:3;11276:12;11269:19;;11074:220;;;:::o;11300:366::-;11442:3;11463:67;11527:2;11522:3;11463:67;:::i;:::-;11456:74;;11539:93;11628:3;11539:93;:::i;:::-;11657:2;11652:3;11648:12;11641:19;;11446:220;;;:::o;11672:366::-;11814:3;11835:67;11899:2;11894:3;11835:67;:::i;:::-;11828:74;;11911:93;12000:3;11911:93;:::i;:::-;12029:2;12024:3;12020:12;12013:19;;11818:220;;;:::o;12044:366::-;12186:3;12207:67;12271:2;12266:3;12207:67;:::i;:::-;12200:74;;12283:93;12372:3;12283:93;:::i;:::-;12401:2;12396:3;12392:12;12385:19;;12190:220;;;:::o;12416:366::-;12558:3;12579:67;12643:2;12638:3;12579:67;:::i;:::-;12572:74;;12655:93;12744:3;12655:93;:::i;:::-;12773:2;12768:3;12764:12;12757:19;;12562:220;;;:::o;12788:366::-;12930:3;12951:67;13015:2;13010:3;12951:67;:::i;:::-;12944:74;;13027:93;13116:3;13027:93;:::i;:::-;13145:2;13140:3;13136:12;13129:19;;12934:220;;;:::o;13160:366::-;13302:3;13323:67;13387:2;13382:3;13323:67;:::i;:::-;13316:74;;13399:93;13488:3;13399:93;:::i;:::-;13517:2;13512:3;13508:12;13501:19;;13306:220;;;:::o;13532:366::-;13674:3;13695:67;13759:2;13754:3;13695:67;:::i;:::-;13688:74;;13771:93;13860:3;13771:93;:::i;:::-;13889:2;13884:3;13880:12;13873:19;;13678:220;;;:::o;13904:366::-;14046:3;14067:67;14131:2;14126:3;14067:67;:::i;:::-;14060:74;;14143:93;14232:3;14143:93;:::i;:::-;14261:2;14256:3;14252:12;14245:19;;14050:220;;;:::o;14276:366::-;14418:3;14439:67;14503:2;14498:3;14439:67;:::i;:::-;14432:74;;14515:93;14604:3;14515:93;:::i;:::-;14633:2;14628:3;14624:12;14617:19;;14422:220;;;:::o;14648:366::-;14790:3;14811:67;14875:2;14870:3;14811:67;:::i;:::-;14804:74;;14887:93;14976:3;14887:93;:::i;:::-;15005:2;15000:3;14996:12;14989:19;;14794:220;;;:::o;15020:366::-;15162:3;15183:67;15247:2;15242:3;15183:67;:::i;:::-;15176:74;;15259:93;15348:3;15259:93;:::i;:::-;15377:2;15372:3;15368:12;15361:19;;15166:220;;;:::o;15392:366::-;15534:3;15555:67;15619:2;15614:3;15555:67;:::i;:::-;15548:74;;15631:93;15720:3;15631:93;:::i;:::-;15749:2;15744:3;15740:12;15733:19;;15538:220;;;:::o;15764:366::-;15906:3;15927:67;15991:2;15986:3;15927:67;:::i;:::-;15920:74;;16003:93;16092:3;16003:93;:::i;:::-;16121:2;16116:3;16112:12;16105:19;;15910:220;;;:::o;16136:366::-;16278:3;16299:67;16363:2;16358:3;16299:67;:::i;:::-;16292:74;;16375:93;16464:3;16375:93;:::i;:::-;16493:2;16488:3;16484:12;16477:19;;16282:220;;;:::o;16508:366::-;16650:3;16671:67;16735:2;16730:3;16671:67;:::i;:::-;16664:74;;16747:93;16836:3;16747:93;:::i;:::-;16865:2;16860:3;16856:12;16849:19;;16654:220;;;:::o;16880:366::-;17022:3;17043:67;17107:2;17102:3;17043:67;:::i;:::-;17036:74;;17119:93;17208:3;17119:93;:::i;:::-;17237:2;17232:3;17228:12;17221:19;;17026:220;;;:::o;17252:366::-;17394:3;17415:67;17479:2;17474:3;17415:67;:::i;:::-;17408:74;;17491:93;17580:3;17491:93;:::i;:::-;17609:2;17604:3;17600:12;17593:19;;17398:220;;;:::o;17624:366::-;17766:3;17787:67;17851:2;17846:3;17787:67;:::i;:::-;17780:74;;17863:93;17952:3;17863:93;:::i;:::-;17981:2;17976:3;17972:12;17965:19;;17770:220;;;:::o;17996:366::-;18138:3;18159:67;18223:2;18218:3;18159:67;:::i;:::-;18152:74;;18235:93;18324:3;18235:93;:::i;:::-;18353:2;18348:3;18344:12;18337:19;;18142:220;;;:::o;18368:366::-;18510:3;18531:67;18595:2;18590:3;18531:67;:::i;:::-;18524:74;;18607:93;18696:3;18607:93;:::i;:::-;18725:2;18720:3;18716:12;18709:19;;18514:220;;;:::o;18740:366::-;18882:3;18903:67;18967:2;18962:3;18903:67;:::i;:::-;18896:74;;18979:93;19068:3;18979:93;:::i;:::-;19097:2;19092:3;19088:12;19081:19;;18886:220;;;:::o;19112:366::-;19254:3;19275:67;19339:2;19334:3;19275:67;:::i;:::-;19268:74;;19351:93;19440:3;19351:93;:::i;:::-;19469:2;19464:3;19460:12;19453:19;;19258:220;;;:::o;19484:366::-;19626:3;19647:67;19711:2;19706:3;19647:67;:::i;:::-;19640:74;;19723:93;19812:3;19723:93;:::i;:::-;19841:2;19836:3;19832:12;19825:19;;19630:220;;;:::o;19856:366::-;19998:3;20019:67;20083:2;20078:3;20019:67;:::i;:::-;20012:74;;20095:93;20184:3;20095:93;:::i;:::-;20213:2;20208:3;20204:12;20197:19;;20002:220;;;:::o;20228:366::-;20370:3;20391:67;20455:2;20450:3;20391:67;:::i;:::-;20384:74;;20467:93;20556:3;20467:93;:::i;:::-;20585:2;20580:3;20576:12;20569:19;;20374:220;;;:::o;20600:366::-;20742:3;20763:67;20827:2;20822:3;20763:67;:::i;:::-;20756:74;;20839:93;20928:3;20839:93;:::i;:::-;20957:2;20952:3;20948:12;20941:19;;20746:220;;;:::o;20972:108::-;21049:24;21067:5;21049:24;:::i;:::-;21044:3;21037:37;21027:53;;:::o;21086:118::-;21173:24;21191:5;21173:24;:::i;:::-;21168:3;21161:37;21151:53;;:::o;21210:157::-;21315:45;21335:24;21353:5;21335:24;:::i;:::-;21315:45;:::i;:::-;21310:3;21303:58;21293:74;;:::o;21373:435::-;21553:3;21575:95;21666:3;21657:6;21575:95;:::i;:::-;21568:102;;21687:95;21778:3;21769:6;21687:95;:::i;:::-;21680:102;;21799:3;21792:10;;21557:251;;;;;:::o;21814:256::-;21926:3;21941:75;22012:3;22003:6;21941:75;:::i;:::-;22041:2;22036:3;22032:12;22025:19;;22061:3;22054:10;;21930:140;;;;:::o;22076:222::-;22169:4;22207:2;22196:9;22192:18;22184:26;;22220:71;22288:1;22277:9;22273:17;22264:6;22220:71;:::i;:::-;22174:124;;;;:::o;22304:640::-;22499:4;22537:3;22526:9;22522:19;22514:27;;22551:71;22619:1;22608:9;22604:17;22595:6;22551:71;:::i;:::-;22632:72;22700:2;22689:9;22685:18;22676:6;22632:72;:::i;:::-;22714;22782:2;22771:9;22767:18;22758:6;22714:72;:::i;:::-;22833:9;22827:4;22823:20;22818:2;22807:9;22803:18;22796:48;22861:76;22932:4;22923:6;22861:76;:::i;:::-;22853:84;;22504:440;;;;;;;:::o;22950:373::-;23093:4;23131:2;23120:9;23116:18;23108:26;;23180:9;23174:4;23170:20;23166:1;23155:9;23151:17;23144:47;23208:108;23311:4;23302:6;23208:108;:::i;:::-;23200:116;;23098:225;;;;:::o;23329:210::-;23416:4;23454:2;23443:9;23439:18;23431:26;;23467:65;23529:1;23518:9;23514:17;23505:6;23467:65;:::i;:::-;23421:118;;;;:::o;23545:313::-;23658:4;23696:2;23685:9;23681:18;23673:26;;23745:9;23739:4;23735:20;23731:1;23720:9;23716:17;23709:47;23773:78;23846:4;23837:6;23773:78;:::i;:::-;23765:86;;23663:195;;;;:::o;23864:419::-;24030:4;24068:2;24057:9;24053:18;24045:26;;24117:9;24111:4;24107:20;24103:1;24092:9;24088:17;24081:47;24145:131;24271:4;24145:131;:::i;:::-;24137:139;;24035:248;;;:::o;24289:419::-;24455:4;24493:2;24482:9;24478:18;24470:26;;24542:9;24536:4;24532:20;24528:1;24517:9;24513:17;24506:47;24570:131;24696:4;24570:131;:::i;:::-;24562:139;;24460:248;;;:::o;24714:419::-;24880:4;24918:2;24907:9;24903:18;24895:26;;24967:9;24961:4;24957:20;24953:1;24942:9;24938:17;24931:47;24995:131;25121:4;24995:131;:::i;:::-;24987:139;;24885:248;;;:::o;25139:419::-;25305:4;25343:2;25332:9;25328:18;25320:26;;25392:9;25386:4;25382:20;25378:1;25367:9;25363:17;25356:47;25420:131;25546:4;25420:131;:::i;:::-;25412:139;;25310:248;;;:::o;25564:419::-;25730:4;25768:2;25757:9;25753:18;25745:26;;25817:9;25811:4;25807:20;25803:1;25792:9;25788:17;25781:47;25845:131;25971:4;25845:131;:::i;:::-;25837:139;;25735:248;;;:::o;25989:419::-;26155:4;26193:2;26182:9;26178:18;26170:26;;26242:9;26236:4;26232:20;26228:1;26217:9;26213:17;26206:47;26270:131;26396:4;26270:131;:::i;:::-;26262:139;;26160:248;;;:::o;26414:419::-;26580:4;26618:2;26607:9;26603:18;26595:26;;26667:9;26661:4;26657:20;26653:1;26642:9;26638:17;26631:47;26695:131;26821:4;26695:131;:::i;:::-;26687:139;;26585:248;;;:::o;26839:419::-;27005:4;27043:2;27032:9;27028:18;27020:26;;27092:9;27086:4;27082:20;27078:1;27067:9;27063:17;27056:47;27120:131;27246:4;27120:131;:::i;:::-;27112:139;;27010:248;;;:::o;27264:419::-;27430:4;27468:2;27457:9;27453:18;27445:26;;27517:9;27511:4;27507:20;27503:1;27492:9;27488:17;27481:47;27545:131;27671:4;27545:131;:::i;:::-;27537:139;;27435:248;;;:::o;27689:419::-;27855:4;27893:2;27882:9;27878:18;27870:26;;27942:9;27936:4;27932:20;27928:1;27917:9;27913:17;27906:47;27970:131;28096:4;27970:131;:::i;:::-;27962:139;;27860:248;;;:::o;28114:419::-;28280:4;28318:2;28307:9;28303:18;28295:26;;28367:9;28361:4;28357:20;28353:1;28342:9;28338:17;28331:47;28395:131;28521:4;28395:131;:::i;:::-;28387:139;;28285:248;;;:::o;28539:419::-;28705:4;28743:2;28732:9;28728:18;28720:26;;28792:9;28786:4;28782:20;28778:1;28767:9;28763:17;28756:47;28820:131;28946:4;28820:131;:::i;:::-;28812:139;;28710:248;;;:::o;28964:419::-;29130:4;29168:2;29157:9;29153:18;29145:26;;29217:9;29211:4;29207:20;29203:1;29192:9;29188:17;29181:47;29245:131;29371:4;29245:131;:::i;:::-;29237:139;;29135:248;;;:::o;29389:419::-;29555:4;29593:2;29582:9;29578:18;29570:26;;29642:9;29636:4;29632:20;29628:1;29617:9;29613:17;29606:47;29670:131;29796:4;29670:131;:::i;:::-;29662:139;;29560:248;;;:::o;29814:419::-;29980:4;30018:2;30007:9;30003:18;29995:26;;30067:9;30061:4;30057:20;30053:1;30042:9;30038:17;30031:47;30095:131;30221:4;30095:131;:::i;:::-;30087:139;;29985:248;;;:::o;30239:419::-;30405:4;30443:2;30432:9;30428:18;30420:26;;30492:9;30486:4;30482:20;30478:1;30467:9;30463:17;30456:47;30520:131;30646:4;30520:131;:::i;:::-;30512:139;;30410:248;;;:::o;30664:419::-;30830:4;30868:2;30857:9;30853:18;30845:26;;30917:9;30911:4;30907:20;30903:1;30892:9;30888:17;30881:47;30945:131;31071:4;30945:131;:::i;:::-;30937:139;;30835:248;;;:::o;31089:419::-;31255:4;31293:2;31282:9;31278:18;31270:26;;31342:9;31336:4;31332:20;31328:1;31317:9;31313:17;31306:47;31370:131;31496:4;31370:131;:::i;:::-;31362:139;;31260:248;;;:::o;31514:419::-;31680:4;31718:2;31707:9;31703:18;31695:26;;31767:9;31761:4;31757:20;31753:1;31742:9;31738:17;31731:47;31795:131;31921:4;31795:131;:::i;:::-;31787:139;;31685:248;;;:::o;31939:419::-;32105:4;32143:2;32132:9;32128:18;32120:26;;32192:9;32186:4;32182:20;32178:1;32167:9;32163:17;32156:47;32220:131;32346:4;32220:131;:::i;:::-;32212:139;;32110:248;;;:::o;32364:419::-;32530:4;32568:2;32557:9;32553:18;32545:26;;32617:9;32611:4;32607:20;32603:1;32592:9;32588:17;32581:47;32645:131;32771:4;32645:131;:::i;:::-;32637:139;;32535:248;;;:::o;32789:419::-;32955:4;32993:2;32982:9;32978:18;32970:26;;33042:9;33036:4;33032:20;33028:1;33017:9;33013:17;33006:47;33070:131;33196:4;33070:131;:::i;:::-;33062:139;;32960:248;;;:::o;33214:419::-;33380:4;33418:2;33407:9;33403:18;33395:26;;33467:9;33461:4;33457:20;33453:1;33442:9;33438:17;33431:47;33495:131;33621:4;33495:131;:::i;:::-;33487:139;;33385:248;;;:::o;33639:419::-;33805:4;33843:2;33832:9;33828:18;33820:26;;33892:9;33886:4;33882:20;33878:1;33867:9;33863:17;33856:47;33920:131;34046:4;33920:131;:::i;:::-;33912:139;;33810:248;;;:::o;34064:419::-;34230:4;34268:2;34257:9;34253:18;34245:26;;34317:9;34311:4;34307:20;34303:1;34292:9;34288:17;34281:47;34345:131;34471:4;34345:131;:::i;:::-;34337:139;;34235:248;;;:::o;34489:419::-;34655:4;34693:2;34682:9;34678:18;34670:26;;34742:9;34736:4;34732:20;34728:1;34717:9;34713:17;34706:47;34770:131;34896:4;34770:131;:::i;:::-;34762:139;;34660:248;;;:::o;34914:419::-;35080:4;35118:2;35107:9;35103:18;35095:26;;35167:9;35161:4;35157:20;35153:1;35142:9;35138:17;35131:47;35195:131;35321:4;35195:131;:::i;:::-;35187:139;;35085:248;;;:::o;35339:419::-;35505:4;35543:2;35532:9;35528:18;35520:26;;35592:9;35586:4;35582:20;35578:1;35567:9;35563:17;35556:47;35620:131;35746:4;35620:131;:::i;:::-;35612:139;;35510:248;;;:::o;35764:419::-;35930:4;35968:2;35957:9;35953:18;35945:26;;36017:9;36011:4;36007:20;36003:1;35992:9;35988:17;35981:47;36045:131;36171:4;36045:131;:::i;:::-;36037:139;;35935:248;;;:::o;36189:419::-;36355:4;36393:2;36382:9;36378:18;36370:26;;36442:9;36436:4;36432:20;36428:1;36417:9;36413:17;36406:47;36470:131;36596:4;36470:131;:::i;:::-;36462:139;;36360:248;;;:::o;36614:222::-;36707:4;36745:2;36734:9;36730:18;36722:26;;36758:71;36826:1;36815:9;36811:17;36802:6;36758:71;:::i;:::-;36712:124;;;;:::o;36842:129::-;36876:6;36903:20;;:::i;:::-;36893:30;;36932:33;36960:4;36952:6;36932:33;:::i;:::-;36883:88;;;:::o;36977:75::-;37010:6;37043:2;37037:9;37027:19;;37017:35;:::o;37058:311::-;37135:4;37225:18;37217:6;37214:30;37211:2;;;37247:18;;:::i;:::-;37211:2;37297:4;37289:6;37285:17;37277:25;;37357:4;37351;37347:15;37339:23;;37140:229;;;:::o;37375:307::-;37436:4;37526:18;37518:6;37515:30;37512:2;;;37548:18;;:::i;:::-;37512:2;37586:29;37608:6;37586:29;:::i;:::-;37578:37;;37670:4;37664;37660:15;37652:23;;37441:241;;;:::o;37688:308::-;37750:4;37840:18;37832:6;37829:30;37826:2;;;37862:18;;:::i;:::-;37826:2;37900:29;37922:6;37900:29;:::i;:::-;37892:37;;37984:4;37978;37974:15;37966:23;;37755:241;;;:::o;38002:132::-;38069:4;38092:3;38084:11;;38122:4;38117:3;38113:14;38105:22;;38074:60;;;:::o;38140:114::-;38207:6;38241:5;38235:12;38225:22;;38214:40;;;:::o;38260:98::-;38311:6;38345:5;38339:12;38329:22;;38318:40;;;:::o;38364:99::-;38416:6;38450:5;38444:12;38434:22;;38423:40;;;:::o;38469:113::-;38539:4;38571;38566:3;38562:14;38554:22;;38544:38;;;:::o;38588:184::-;38687:11;38721:6;38716:3;38709:19;38761:4;38756:3;38752:14;38737:29;;38699:73;;;;:::o;38778:168::-;38861:11;38895:6;38890:3;38883:19;38935:4;38930:3;38926:14;38911:29;;38873:73;;;;:::o;38952:169::-;39036:11;39070:6;39065:3;39058:19;39110:4;39105:3;39101:14;39086:29;;39048:73;;;;:::o;39127:148::-;39229:11;39266:3;39251:18;;39241:34;;;;:::o;39281:305::-;39321:3;39340:20;39358:1;39340:20;:::i;:::-;39335:25;;39374:20;39392:1;39374:20;:::i;:::-;39369:25;;39528:1;39460:66;39456:74;39453:1;39450:81;39447:2;;;39534:18;;:::i;:::-;39447:2;39578:1;39575;39571:9;39564:16;;39325:261;;;;:::o;39592:185::-;39632:1;39649:20;39667:1;39649:20;:::i;:::-;39644:25;;39683:20;39701:1;39683:20;:::i;:::-;39678:25;;39722:1;39712:2;;39727:18;;:::i;:::-;39712:2;39769:1;39766;39762:9;39757:14;;39634:143;;;;:::o;39783:348::-;39823:7;39846:20;39864:1;39846:20;:::i;:::-;39841:25;;39880:20;39898:1;39880:20;:::i;:::-;39875:25;;40068:1;40000:66;39996:74;39993:1;39990:81;39985:1;39978:9;39971:17;39967:105;39964:2;;;40075:18;;:::i;:::-;39964:2;40123:1;40120;40116:9;40105:20;;39831:300;;;;:::o;40137:191::-;40177:4;40197:20;40215:1;40197:20;:::i;:::-;40192:25;;40231:20;40249:1;40231:20;:::i;:::-;40226:25;;40270:1;40267;40264:8;40261:2;;;40275:18;;:::i;:::-;40261:2;40320:1;40317;40313:9;40305:17;;40182:146;;;;:::o;40334:96::-;40371:7;40400:24;40418:5;40400:24;:::i;:::-;40389:35;;40379:51;;;:::o;40436:90::-;40470:7;40513:5;40506:13;40499:21;40488:32;;40478:48;;;:::o;40532:149::-;40568:7;40608:66;40601:5;40597:78;40586:89;;40576:105;;;:::o;40687:126::-;40724:7;40764:42;40757:5;40753:54;40742:65;;40732:81;;;:::o;40819:77::-;40856:7;40885:5;40874:16;;40864:32;;;:::o;40902:154::-;40986:6;40981:3;40976;40963:30;41048:1;41039:6;41034:3;41030:16;41023:27;40953:103;;;:::o;41062:307::-;41130:1;41140:113;41154:6;41151:1;41148:13;41140:113;;;41239:1;41234:3;41230:11;41224:18;41220:1;41215:3;41211:11;41204:39;41176:2;41173:1;41169:10;41164:15;;41140:113;;;41271:6;41268:1;41265:13;41262:2;;;41351:1;41342:6;41337:3;41333:16;41326:27;41262:2;41111:258;;;;:::o;41375:320::-;41419:6;41456:1;41450:4;41446:12;41436:22;;41503:1;41497:4;41493:12;41524:18;41514:2;;41580:4;41572:6;41568:17;41558:27;;41514:2;41642;41634:6;41631:14;41611:18;41608:38;41605:2;;;41661:18;;:::i;:::-;41605:2;41426:269;;;;:::o;41701:281::-;41784:27;41806:4;41784:27;:::i;:::-;41776:6;41772:40;41914:6;41902:10;41899:22;41878:18;41866:10;41863:34;41860:62;41857:2;;;41925:18;;:::i;:::-;41857:2;41965:10;41961:2;41954:22;41744:238;;;:::o;41988:233::-;42027:3;42050:24;42068:5;42050:24;:::i;:::-;42041:33;;42096:66;42089:5;42086:77;42083:2;;;42166:18;;:::i;:::-;42083:2;42213:1;42206:5;42202:13;42195:20;;42031:190;;;:::o;42227:79::-;42266:7;42295:5;42284:16;;42274:32;;;:::o;42312:176::-;42344:1;42361:20;42379:1;42361:20;:::i;:::-;42356:25;;42395:20;42413:1;42395:20;:::i;:::-;42390:25;;42434:1;42424:2;;42439:18;;:::i;:::-;42424:2;42480:1;42477;42473:9;42468:14;;42346:142;;;;:::o;42494:180::-;42542:77;42539:1;42532:88;42639:4;42636:1;42629:15;42663:4;42660:1;42653:15;42680:180;42728:77;42725:1;42718:88;42825:4;42822:1;42815:15;42849:4;42846:1;42839:15;42866:180;42914:77;42911:1;42904:88;43011:4;43008:1;43001:15;43035:4;43032:1;43025:15;43052:180;43100:77;43097:1;43090:88;43197:4;43194:1;43187:15;43221:4;43218:1;43211:15;43238:102;43279:6;43330:2;43326:7;43321:2;43314:5;43310:14;43306:28;43296:38;;43286:54;;;:::o;43346:230::-;43486:34;43482:1;43474:6;43470:14;43463:58;43555:13;43550:2;43542:6;43538:15;43531:38;43452:124;:::o;43582:182::-;43722:34;43718:1;43710:6;43706:14;43699:58;43688:76;:::o;43770:230::-;43910:34;43906:1;43898:6;43894:14;43887:58;43979:13;43974:2;43966:6;43962:15;43955:38;43876:124;:::o;44006:237::-;44146:34;44142:1;44134:6;44130:14;44123:58;44215:20;44210:2;44202:6;44198:15;44191:45;44112:131;:::o;44249:225::-;44389:34;44385:1;44377:6;44373:14;44366:58;44458:8;44453:2;44445:6;44441:15;44434:33;44355:119;:::o;44480:178::-;44620:30;44616:1;44608:6;44604:14;44597:54;44586:72;:::o;44664:178::-;44804:30;44800:1;44792:6;44788:14;44781:54;44770:72;:::o;44848:223::-;44988:34;44984:1;44976:6;44972:14;44965:58;45057:6;45052:2;45044:6;45040:15;45033:31;44954:117;:::o;45077:175::-;45217:27;45213:1;45205:6;45201:14;45194:51;45183:69;:::o;45258:181::-;45398:33;45394:1;45386:6;45382:14;45375:57;45364:75;:::o;45445:177::-;45585:29;45581:1;45573:6;45569:14;45562:53;45551:71;:::o;45628:231::-;45768:34;45764:1;45756:6;45752:14;45745:58;45837:14;45832:2;45824:6;45820:15;45813:39;45734:125;:::o;45865:243::-;46005:34;46001:1;45993:6;45989:14;45982:58;46074:26;46069:2;46061:6;46057:15;46050:51;45971:137;:::o;46114:229::-;46254:34;46250:1;46242:6;46238:14;46231:58;46323:12;46318:2;46310:6;46306:15;46299:37;46220:123;:::o;46349:228::-;46489:34;46485:1;46477:6;46473:14;46466:58;46558:11;46553:2;46545:6;46541:15;46534:36;46455:122;:::o;46583:182::-;46723:34;46719:1;46711:6;46707:14;46700:58;46689:76;:::o;46771:173::-;46911:25;46907:1;46899:6;46895:14;46888:49;46877:67;:::o;46950:231::-;47090:34;47086:1;47078:6;47074:14;47067:58;47159:14;47154:2;47146:6;47142:15;47135:39;47056:125;:::o;47187:182::-;47327:34;47323:1;47315:6;47311:14;47304:58;47293:76;:::o;47375:239::-;47515:34;47511:1;47503:6;47499:14;47492:58;47584:22;47579:2;47571:6;47567:15;47560:47;47481:133;:::o;47620:236::-;47760:34;47756:1;47748:6;47744:14;47737:58;47829:19;47824:2;47816:6;47812:15;47805:44;47726:130;:::o;47862:228::-;48002:34;47998:1;47990:6;47986:14;47979:58;48071:11;48066:2;48058:6;48054:15;48047:36;47968:122;:::o;48096:234::-;48236:34;48232:1;48224:6;48220:14;48213:58;48305:17;48300:2;48292:6;48288:15;48281:42;48202:128;:::o;48336:222::-;48476:34;48472:1;48464:6;48460:14;48453:58;48545:5;48540:2;48532:6;48528:15;48521:30;48442:116;:::o;48564:220::-;48704:34;48700:1;48692:6;48688:14;48681:58;48773:3;48768:2;48760:6;48756:15;48749:28;48670:114;:::o;48790:242::-;48930:34;48926:1;48918:6;48914:14;48907:58;48999:25;48994:2;48986:6;48982:15;48975:50;48896:136;:::o;49038:236::-;49178:34;49174:1;49166:6;49162:14;49155:58;49247:19;49242:2;49234:6;49230:15;49223:44;49144:130;:::o;49280:231::-;49420:34;49416:1;49408:6;49404:14;49397:58;49489:14;49484:2;49476:6;49472:15;49465:39;49386:125;:::o;49517:250::-;49657:34;49653:1;49645:6;49641:14;49634:58;49726:33;49721:2;49713:6;49709:15;49702:58;49623:144;:::o;49773:238::-;49913:34;49909:1;49901:6;49897:14;49890:58;49982:21;49977:2;49969:6;49965:15;49958:46;49879:132;:::o;50017:122::-;50090:24;50108:5;50090:24;:::i;:::-;50083:5;50080:35;50070:2;;50129:1;50126;50119:12;50070:2;50060:79;:::o;50145:116::-;50215:21;50230:5;50215:21;:::i;:::-;50208:5;50205:32;50195:2;;50251:1;50248;50241:12;50195:2;50185:76;:::o;50267:120::-;50339:23;50356:5;50339:23;:::i;:::-;50332:5;50329:34;50319:2;;50377:1;50374;50367:12;50319:2;50309:78;:::o;50393:122::-;50466:24;50484:5;50466:24;:::i;:::-;50459:5;50456:35;50446:2;;50505:1;50502;50495:12;50446:2;50436:79;:::o

Swarm Source

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