ETH Price: $2,430.42 (-2.40%)

Token

Neuron Storm (Neuron)
 

Overview

Max Total Supply

59 Neuron

Holders

37

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 Neuron
0xF9034cdc37C4950BA219c932Dc491D8D39debFAb
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:
neuron

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-02
*/

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

/**
 *Submitted for verification at Etherscan.io on 2021-09-21
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}
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);
}
pragma solidity ^0.8.0;

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


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

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

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

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

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

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

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

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


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


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

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

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

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

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

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

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

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

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

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

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

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


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

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

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


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


pragma solidity ^0.8.0;


contract neuron is Ownable, ERC721 {
    
    uint constant tokenPrice = 0.03 ether;
    uint constant maxSupply = 7777;
    uint public totalSupply = 0;
    bool public sale_Status = false;
    string public baseURI;
    uint public maxPerTransaction = 20; //Max per transaction
  
    constructor() ERC721("Neuron Storm", "Neuron"){}

   function buy(uint _count) public payable{
        require(_count > 0, "mint at least one token");
         require(_count <= 20, "mint at least one token");
        require(msg.value >= tokenPrice * _count, "incorrect ether amount");
        require(sale_Status == true, "Sale is Paused.");

        for(uint i = 0; i < _count; i++)
            _safeMint(msg.sender, totalSupply + 1 + i);
        totalSupply += _count;
    }
    function sendGifts(address[] memory _wallets) public onlyOwner{
        require(totalSupply + _wallets.length <= maxSupply, "not enough tokens left");
        for(uint i = 0; i < _wallets.length; i++)
            _safeMint(_wallets[i], totalSupply + 1 + i);
        totalSupply += _wallets.length;
    }
    function setBaseUri(string memory _uri) external onlyOwner {
        baseURI = _uri;
    }
    function saleStatus(bool temp) external onlyOwner {
        sale_Status = temp;
    }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
    function withdraw() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"temp","type":"bool"}],"name":"saleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sale_Status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"sendGifts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260006007556000600860006101000a81548160ff0219169083151502179055506014600a553480156200003657600080fd5b506040518060400160405280600c81526020017f4e6575726f6e2053746f726d00000000000000000000000000000000000000008152506040518060400160405280600681526020017f4e6575726f6e0000000000000000000000000000000000000000000000000000815250620000c3620000b7620000fd60201b60201c565b6200010560201b60201c565b8160019080519060200190620000db929190620001c9565b508060029080519060200190620000f4929190620001c9565b505050620002de565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001d79062000279565b90600052602060002090601f016020900481019282620001fb576000855562000247565b82601f106200021657805160ff191683800117855562000247565b8280016001018555821562000247579182015b828111156200024657825182559160200191906001019062000229565b5b5090506200025691906200025a565b5090565b5b80821115620002755760008160009055506001016200025b565b5090565b600060028204905060018216806200029257607f821691505b60208210811415620002a957620002a8620002af565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61383380620002ee6000396000f3fe6080604052600436106101665760003560e01c806370a08231116100d1578063a0bcfc7f1161008a578063c87b56dd11610064578063c87b56dd14610502578063d96a094a1461053f578063e985e9c51461055b578063f2fde38b1461059857610166565b8063a0bcfc7f14610487578063a22cb465146104b0578063b88d4fde146104d957610166565b806370a082311461038b578063715018a6146103c85780637c8255db146103df5780638032abbc146104085780638da5cb5b1461043157806395d89b411461045c57610166565b806323b872dd1161012357806323b872dd1461028f5780633ccfd60b146102b857806342842e0e146102cf5780634b980d67146102f85780636352211e146103235780636c0360eb1461036057610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b31461021057806318160ddd146102395780631d2e505514610264575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612633565b6105c1565b60405161019f9190612b1a565b60405180910390f35b3480156101b457600080fd5b506101bd6106a3565b6040516101ca9190612b35565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f591906126d6565b610735565b6040516102079190612ab3565b60405180910390f35b34801561021c57600080fd5b506102376004803603810190610232919061257d565b6107ba565b005b34801561024557600080fd5b5061024e6108d2565b60405161025b9190612dd7565b60405180910390f35b34801561027057600080fd5b506102796108d8565b6040516102869190612b1a565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b19190612467565b6108eb565b005b3480156102c457600080fd5b506102cd61094b565b005b3480156102db57600080fd5b506102f660048036038101906102f19190612467565b610a17565b005b34801561030457600080fd5b5061030d610a37565b60405161031a9190612dd7565b60405180910390f35b34801561032f57600080fd5b5061034a600480360381019061034591906126d6565b610a3d565b6040516103579190612ab3565b60405180910390f35b34801561036c57600080fd5b50610375610aef565b6040516103829190612b35565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad91906123fa565b610b7d565b6040516103bf9190612dd7565b60405180910390f35b3480156103d457600080fd5b506103dd610c35565b005b3480156103eb57600080fd5b50610406600480360381019061040191906125bd565b610cbd565b005b34801561041457600080fd5b5061042f600480360381019061042a9190612606565b610e06565b005b34801561043d57600080fd5b50610446610e9f565b6040516104539190612ab3565b60405180910390f35b34801561046857600080fd5b50610471610ec8565b60405161047e9190612b35565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a9919061268d565b610f5a565b005b3480156104bc57600080fd5b506104d760048036038101906104d2919061253d565b610ff0565b005b3480156104e557600080fd5b5061050060048036038101906104fb91906124ba565b611171565b005b34801561050e57600080fd5b50610529600480360381019061052491906126d6565b6111d3565b6040516105369190612b35565b60405180910390f35b610559600480360381019061055491906126d6565b61127a565b005b34801561056757600080fd5b50610582600480360381019061057d9190612427565b61140a565b60405161058f9190612b1a565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba91906123fa565b61149e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061068c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061069c575061069b82611596565b5b9050919050565b6060600180546106b2906130b3565b80601f01602080910402602001604051908101604052809291908181526020018280546106de906130b3565b801561072b5780601f106107005761010080835404028352916020019161072b565b820191906000526020600020905b81548152906001019060200180831161070e57829003601f168201915b5050505050905090565b600061074082611600565b61077f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077690612cb7565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107c582610a3d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d90612d37565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661085561166c565b73ffffffffffffffffffffffffffffffffffffffff16148061088457506108838161087e61166c565b61140a565b5b6108c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ba90612c37565b60405180910390fd5b6108cd8383611674565b505050565b60075481565b600860009054906101000a900460ff1681565b6108fc6108f661166c565b8261172d565b61093b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093290612d57565b60405180910390fd5b61094683838361180b565b505050565b61095361166c565b73ffffffffffffffffffffffffffffffffffffffff16610971610e9f565b73ffffffffffffffffffffffffffffffffffffffff16146109c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109be90612cd7565b60405180910390fd5b6109cf610e9f565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610a14573d6000803e3d6000fd5b50565b610a3283838360405180602001604052806000815250611171565b505050565b600a5481565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610add90612c77565b60405180910390fd5b80915050919050565b60098054610afc906130b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610b28906130b3565b8015610b755780601f10610b4a57610100808354040283529160200191610b75565b820191906000526020600020905b815481529060010190602001808311610b5857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be590612c57565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c3d61166c565b73ffffffffffffffffffffffffffffffffffffffff16610c5b610e9f565b73ffffffffffffffffffffffffffffffffffffffff1614610cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca890612cd7565b60405180910390fd5b610cbb6000611a67565b565b610cc561166c565b73ffffffffffffffffffffffffffffffffffffffff16610ce3610e9f565b73ffffffffffffffffffffffffffffffffffffffff1614610d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3090612cd7565b60405180910390fd5b611e618151600754610d4b9190612ee8565b1115610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8390612d97565b60405180910390fd5b60005b8151811015610de857610dd5828281518110610dae57610dad61321d565b5b6020026020010151826001600754610dc69190612ee8565b610dd09190612ee8565b611b2b565b8080610de090613116565b915050610d8f565b50805160076000828254610dfc9190612ee8565b9250508190555050565b610e0e61166c565b73ffffffffffffffffffffffffffffffffffffffff16610e2c610e9f565b73ffffffffffffffffffffffffffffffffffffffff1614610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7990612cd7565b60405180910390fd5b80600860006101000a81548160ff02191690831515021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054610ed7906130b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610f03906130b3565b8015610f505780601f10610f2557610100808354040283529160200191610f50565b820191906000526020600020905b815481529060010190602001808311610f3357829003601f168201915b5050505050905090565b610f6261166c565b73ffffffffffffffffffffffffffffffffffffffff16610f80610e9f565b73ffffffffffffffffffffffffffffffffffffffff1614610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd90612cd7565b60405180910390fd5b8060099080519060200190610fec929190612170565b5050565b610ff861166c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d90612bd7565b60405180910390fd5b806006600061107361166c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661112061166c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111659190612b1a565b60405180910390a35050565b61118261117c61166c565b8361172d565b6111c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b890612d57565b60405180910390fd5b6111cd84848484611b49565b50505050565b60606111de82611600565b61121d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121490612d17565b60405180910390fd5b6000611227611ba5565b905060008151116112475760405180602001604052806000815250611272565b8061125184611c37565b604051602001611262929190612a8f565b6040516020818303038152906040525b915050919050565b600081116112bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b490612d77565b60405180910390fd5b6014811115611301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f890612d77565b60405180910390fd5b80666a94d74f4300006113149190612f6f565b341015611356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134d90612c17565b60405180910390fd5b60011515600860009054906101000a900460ff161515146113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a390612db7565b60405180910390fd5b60005b818110156113ed576113da338260016007546113cb9190612ee8565b6113d59190612ee8565b611b2b565b80806113e590613116565b9150506113af565b5080600760008282546114009190612ee8565b9250508190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114a661166c565b73ffffffffffffffffffffffffffffffffffffffff166114c4610e9f565b73ffffffffffffffffffffffffffffffffffffffff161461151a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151190612cd7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561158a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158190612b77565b60405180910390fd5b61159381611a67565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166116e783610a3d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061173882611600565b611777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176e90612bf7565b60405180910390fd5b600061178283610a3d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806117f157508373ffffffffffffffffffffffffffffffffffffffff166117d984610735565b73ffffffffffffffffffffffffffffffffffffffff16145b806118025750611801818561140a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661182b82610a3d565b73ffffffffffffffffffffffffffffffffffffffff1614611881576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187890612cf7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e890612bb7565b60405180910390fd5b6118fc838383611d98565b611907600082611674565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119579190612fc9565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119ae9190612ee8565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611b45828260405180602001604052806000815250611d9d565b5050565b611b5484848461180b565b611b6084848484611df8565b611b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9690612b57565b60405180910390fd5b50505050565b606060098054611bb4906130b3565b80601f0160208091040260200160405190810160405280929190818152602001828054611be0906130b3565b8015611c2d5780601f10611c0257610100808354040283529160200191611c2d565b820191906000526020600020905b815481529060010190602001808311611c1057829003601f168201915b5050505050905090565b60606000821415611c7f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d93565b600082905060005b60008214611cb1578080611c9a90613116565b915050600a82611caa9190612f3e565b9150611c87565b60008167ffffffffffffffff811115611ccd57611ccc61324c565b5b6040519080825280601f01601f191660200182016040528015611cff5781602001600182028036833780820191505090505b5090505b60008514611d8c57600182611d189190612fc9565b9150600a85611d27919061315f565b6030611d339190612ee8565b60f81b818381518110611d4957611d4861321d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d859190612f3e565b9450611d03565b8093505050505b919050565b505050565b611da78383611f8f565b611db46000848484611df8565b611df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dea90612b57565b60405180910390fd5b505050565b6000611e198473ffffffffffffffffffffffffffffffffffffffff1661215d565b15611f82578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e4261166c565b8786866040518563ffffffff1660e01b8152600401611e649493929190612ace565b602060405180830381600087803b158015611e7e57600080fd5b505af1925050508015611eaf57506040513d601f19601f82011682018060405250810190611eac9190612660565b60015b611f32573d8060008114611edf576040519150601f19603f3d011682016040523d82523d6000602084013e611ee4565b606091505b50600081511415611f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2190612b57565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611f87565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff690612c97565b60405180910390fd5b61200881611600565b15612048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203f90612b97565b60405180910390fd5b61205460008383611d98565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120a49190612ee8565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461217c906130b3565b90600052602060002090601f01602090048101928261219e57600085556121e5565b82601f106121b757805160ff19168380011785556121e5565b828001600101855582156121e5579182015b828111156121e45782518255916020019190600101906121c9565b5b5090506121f291906121f6565b5090565b5b8082111561220f5760008160009055506001016121f7565b5090565b600061222661222184612e17565b612df2565b9050808382526020820190508285602086028201111561224957612248613280565b5b60005b85811015612279578161225f8882612307565b84526020840193506020830192505060018101905061224c565b5050509392505050565b600061229661229184612e43565b612df2565b9050828152602081018484840111156122b2576122b1613285565b5b6122bd848285613071565b509392505050565b60006122d86122d384612e74565b612df2565b9050828152602081018484840111156122f4576122f3613285565b5b6122ff848285613071565b509392505050565b600081359050612316816137a1565b92915050565b600082601f8301126123315761233061327b565b5b8135612341848260208601612213565b91505092915050565b600081359050612359816137b8565b92915050565b60008135905061236e816137cf565b92915050565b600081519050612383816137cf565b92915050565b600082601f83011261239e5761239d61327b565b5b81356123ae848260208601612283565b91505092915050565b600082601f8301126123cc576123cb61327b565b5b81356123dc8482602086016122c5565b91505092915050565b6000813590506123f4816137e6565b92915050565b6000602082840312156124105761240f61328f565b5b600061241e84828501612307565b91505092915050565b6000806040838503121561243e5761243d61328f565b5b600061244c85828601612307565b925050602061245d85828601612307565b9150509250929050565b6000806000606084860312156124805761247f61328f565b5b600061248e86828701612307565b935050602061249f86828701612307565b92505060406124b0868287016123e5565b9150509250925092565b600080600080608085870312156124d4576124d361328f565b5b60006124e287828801612307565b94505060206124f387828801612307565b9350506040612504878288016123e5565b925050606085013567ffffffffffffffff8111156125255761252461328a565b5b61253187828801612389565b91505092959194509250565b600080604083850312156125545761255361328f565b5b600061256285828601612307565b92505060206125738582860161234a565b9150509250929050565b600080604083850312156125945761259361328f565b5b60006125a285828601612307565b92505060206125b3858286016123e5565b9150509250929050565b6000602082840312156125d3576125d261328f565b5b600082013567ffffffffffffffff8111156125f1576125f061328a565b5b6125fd8482850161231c565b91505092915050565b60006020828403121561261c5761261b61328f565b5b600061262a8482850161234a565b91505092915050565b6000602082840312156126495761264861328f565b5b60006126578482850161235f565b91505092915050565b6000602082840312156126765761267561328f565b5b600061268484828501612374565b91505092915050565b6000602082840312156126a3576126a261328f565b5b600082013567ffffffffffffffff8111156126c1576126c061328a565b5b6126cd848285016123b7565b91505092915050565b6000602082840312156126ec576126eb61328f565b5b60006126fa848285016123e5565b91505092915050565b61270c81612ffd565b82525050565b61271b8161300f565b82525050565b600061272c82612ea5565b6127368185612ebb565b9350612746818560208601613080565b61274f81613294565b840191505092915050565b600061276582612eb0565b61276f8185612ecc565b935061277f818560208601613080565b61278881613294565b840191505092915050565b600061279e82612eb0565b6127a88185612edd565b93506127b8818560208601613080565b80840191505092915050565b60006127d1603283612ecc565b91506127dc826132a5565b604082019050919050565b60006127f4602683612ecc565b91506127ff826132f4565b604082019050919050565b6000612817601c83612ecc565b915061282282613343565b602082019050919050565b600061283a602483612ecc565b91506128458261336c565b604082019050919050565b600061285d601983612ecc565b9150612868826133bb565b602082019050919050565b6000612880602c83612ecc565b915061288b826133e4565b604082019050919050565b60006128a3601683612ecc565b91506128ae82613433565b602082019050919050565b60006128c6603883612ecc565b91506128d18261345c565b604082019050919050565b60006128e9602a83612ecc565b91506128f4826134ab565b604082019050919050565b600061290c602983612ecc565b9150612917826134fa565b604082019050919050565b600061292f602083612ecc565b915061293a82613549565b602082019050919050565b6000612952602c83612ecc565b915061295d82613572565b604082019050919050565b6000612975602083612ecc565b9150612980826135c1565b602082019050919050565b6000612998602983612ecc565b91506129a3826135ea565b604082019050919050565b60006129bb602f83612ecc565b91506129c682613639565b604082019050919050565b60006129de602183612ecc565b91506129e982613688565b604082019050919050565b6000612a01603183612ecc565b9150612a0c826136d7565b604082019050919050565b6000612a24601783612ecc565b9150612a2f82613726565b602082019050919050565b6000612a47601683612ecc565b9150612a528261374f565b602082019050919050565b6000612a6a600f83612ecc565b9150612a7582613778565b602082019050919050565b612a8981613067565b82525050565b6000612a9b8285612793565b9150612aa78284612793565b91508190509392505050565b6000602082019050612ac86000830184612703565b92915050565b6000608082019050612ae36000830187612703565b612af06020830186612703565b612afd6040830185612a80565b8181036060830152612b0f8184612721565b905095945050505050565b6000602082019050612b2f6000830184612712565b92915050565b60006020820190508181036000830152612b4f818461275a565b905092915050565b60006020820190508181036000830152612b70816127c4565b9050919050565b60006020820190508181036000830152612b90816127e7565b9050919050565b60006020820190508181036000830152612bb08161280a565b9050919050565b60006020820190508181036000830152612bd08161282d565b9050919050565b60006020820190508181036000830152612bf081612850565b9050919050565b60006020820190508181036000830152612c1081612873565b9050919050565b60006020820190508181036000830152612c3081612896565b9050919050565b60006020820190508181036000830152612c50816128b9565b9050919050565b60006020820190508181036000830152612c70816128dc565b9050919050565b60006020820190508181036000830152612c90816128ff565b9050919050565b60006020820190508181036000830152612cb081612922565b9050919050565b60006020820190508181036000830152612cd081612945565b9050919050565b60006020820190508181036000830152612cf081612968565b9050919050565b60006020820190508181036000830152612d108161298b565b9050919050565b60006020820190508181036000830152612d30816129ae565b9050919050565b60006020820190508181036000830152612d50816129d1565b9050919050565b60006020820190508181036000830152612d70816129f4565b9050919050565b60006020820190508181036000830152612d9081612a17565b9050919050565b60006020820190508181036000830152612db081612a3a565b9050919050565b60006020820190508181036000830152612dd081612a5d565b9050919050565b6000602082019050612dec6000830184612a80565b92915050565b6000612dfc612e0d565b9050612e0882826130e5565b919050565b6000604051905090565b600067ffffffffffffffff821115612e3257612e3161324c565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612e5e57612e5d61324c565b5b612e6782613294565b9050602081019050919050565b600067ffffffffffffffff821115612e8f57612e8e61324c565b5b612e9882613294565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ef382613067565b9150612efe83613067565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f3357612f32613190565b5b828201905092915050565b6000612f4982613067565b9150612f5483613067565b925082612f6457612f636131bf565b5b828204905092915050565b6000612f7a82613067565b9150612f8583613067565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612fbe57612fbd613190565b5b828202905092915050565b6000612fd482613067565b9150612fdf83613067565b925082821015612ff257612ff1613190565b5b828203905092915050565b600061300882613047565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561309e578082015181840152602081019050613083565b838111156130ad576000848401525b50505050565b600060028204905060018216806130cb57607f821691505b602082108114156130df576130de6131ee565b5b50919050565b6130ee82613294565b810181811067ffffffffffffffff8211171561310d5761310c61324c565b5b80604052505050565b600061312182613067565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561315457613153613190565b5b600182019050919050565b600061316a82613067565b915061317583613067565b925082613185576131846131bf565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f696e636f727265637420657468657220616d6f756e7400000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6d696e74206174206c65617374206f6e6520746f6b656e000000000000000000600082015250565b7f6e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f53616c65206973205061757365642e0000000000000000000000000000000000600082015250565b6137aa81612ffd565b81146137b557600080fd5b50565b6137c18161300f565b81146137cc57600080fd5b50565b6137d88161301b565b81146137e357600080fd5b50565b6137ef81613067565b81146137fa57600080fd5b5056fea26469706673582212206738e0d0f19a37574f6e970c7e0119cc55098347221680e1a409bbf5d069643b64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101665760003560e01c806370a08231116100d1578063a0bcfc7f1161008a578063c87b56dd11610064578063c87b56dd14610502578063d96a094a1461053f578063e985e9c51461055b578063f2fde38b1461059857610166565b8063a0bcfc7f14610487578063a22cb465146104b0578063b88d4fde146104d957610166565b806370a082311461038b578063715018a6146103c85780637c8255db146103df5780638032abbc146104085780638da5cb5b1461043157806395d89b411461045c57610166565b806323b872dd1161012357806323b872dd1461028f5780633ccfd60b146102b857806342842e0e146102cf5780634b980d67146102f85780636352211e146103235780636c0360eb1461036057610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d3578063095ea7b31461021057806318160ddd146102395780631d2e505514610264575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612633565b6105c1565b60405161019f9190612b1a565b60405180910390f35b3480156101b457600080fd5b506101bd6106a3565b6040516101ca9190612b35565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f591906126d6565b610735565b6040516102079190612ab3565b60405180910390f35b34801561021c57600080fd5b506102376004803603810190610232919061257d565b6107ba565b005b34801561024557600080fd5b5061024e6108d2565b60405161025b9190612dd7565b60405180910390f35b34801561027057600080fd5b506102796108d8565b6040516102869190612b1a565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b19190612467565b6108eb565b005b3480156102c457600080fd5b506102cd61094b565b005b3480156102db57600080fd5b506102f660048036038101906102f19190612467565b610a17565b005b34801561030457600080fd5b5061030d610a37565b60405161031a9190612dd7565b60405180910390f35b34801561032f57600080fd5b5061034a600480360381019061034591906126d6565b610a3d565b6040516103579190612ab3565b60405180910390f35b34801561036c57600080fd5b50610375610aef565b6040516103829190612b35565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad91906123fa565b610b7d565b6040516103bf9190612dd7565b60405180910390f35b3480156103d457600080fd5b506103dd610c35565b005b3480156103eb57600080fd5b50610406600480360381019061040191906125bd565b610cbd565b005b34801561041457600080fd5b5061042f600480360381019061042a9190612606565b610e06565b005b34801561043d57600080fd5b50610446610e9f565b6040516104539190612ab3565b60405180910390f35b34801561046857600080fd5b50610471610ec8565b60405161047e9190612b35565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a9919061268d565b610f5a565b005b3480156104bc57600080fd5b506104d760048036038101906104d2919061253d565b610ff0565b005b3480156104e557600080fd5b5061050060048036038101906104fb91906124ba565b611171565b005b34801561050e57600080fd5b50610529600480360381019061052491906126d6565b6111d3565b6040516105369190612b35565b60405180910390f35b610559600480360381019061055491906126d6565b61127a565b005b34801561056757600080fd5b50610582600480360381019061057d9190612427565b61140a565b60405161058f9190612b1a565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba91906123fa565b61149e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061068c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061069c575061069b82611596565b5b9050919050565b6060600180546106b2906130b3565b80601f01602080910402602001604051908101604052809291908181526020018280546106de906130b3565b801561072b5780601f106107005761010080835404028352916020019161072b565b820191906000526020600020905b81548152906001019060200180831161070e57829003601f168201915b5050505050905090565b600061074082611600565b61077f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077690612cb7565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107c582610a3d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082d90612d37565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661085561166c565b73ffffffffffffffffffffffffffffffffffffffff16148061088457506108838161087e61166c565b61140a565b5b6108c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ba90612c37565b60405180910390fd5b6108cd8383611674565b505050565b60075481565b600860009054906101000a900460ff1681565b6108fc6108f661166c565b8261172d565b61093b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093290612d57565b60405180910390fd5b61094683838361180b565b505050565b61095361166c565b73ffffffffffffffffffffffffffffffffffffffff16610971610e9f565b73ffffffffffffffffffffffffffffffffffffffff16146109c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109be90612cd7565b60405180910390fd5b6109cf610e9f565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610a14573d6000803e3d6000fd5b50565b610a3283838360405180602001604052806000815250611171565b505050565b600a5481565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610add90612c77565b60405180910390fd5b80915050919050565b60098054610afc906130b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610b28906130b3565b8015610b755780601f10610b4a57610100808354040283529160200191610b75565b820191906000526020600020905b815481529060010190602001808311610b5857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be590612c57565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c3d61166c565b73ffffffffffffffffffffffffffffffffffffffff16610c5b610e9f565b73ffffffffffffffffffffffffffffffffffffffff1614610cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca890612cd7565b60405180910390fd5b610cbb6000611a67565b565b610cc561166c565b73ffffffffffffffffffffffffffffffffffffffff16610ce3610e9f565b73ffffffffffffffffffffffffffffffffffffffff1614610d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3090612cd7565b60405180910390fd5b611e618151600754610d4b9190612ee8565b1115610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8390612d97565b60405180910390fd5b60005b8151811015610de857610dd5828281518110610dae57610dad61321d565b5b6020026020010151826001600754610dc69190612ee8565b610dd09190612ee8565b611b2b565b8080610de090613116565b915050610d8f565b50805160076000828254610dfc9190612ee8565b9250508190555050565b610e0e61166c565b73ffffffffffffffffffffffffffffffffffffffff16610e2c610e9f565b73ffffffffffffffffffffffffffffffffffffffff1614610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7990612cd7565b60405180910390fd5b80600860006101000a81548160ff02191690831515021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054610ed7906130b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610f03906130b3565b8015610f505780601f10610f2557610100808354040283529160200191610f50565b820191906000526020600020905b815481529060010190602001808311610f3357829003601f168201915b5050505050905090565b610f6261166c565b73ffffffffffffffffffffffffffffffffffffffff16610f80610e9f565b73ffffffffffffffffffffffffffffffffffffffff1614610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd90612cd7565b60405180910390fd5b8060099080519060200190610fec929190612170565b5050565b610ff861166c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d90612bd7565b60405180910390fd5b806006600061107361166c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661112061166c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111659190612b1a565b60405180910390a35050565b61118261117c61166c565b8361172d565b6111c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b890612d57565b60405180910390fd5b6111cd84848484611b49565b50505050565b60606111de82611600565b61121d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121490612d17565b60405180910390fd5b6000611227611ba5565b905060008151116112475760405180602001604052806000815250611272565b8061125184611c37565b604051602001611262929190612a8f565b6040516020818303038152906040525b915050919050565b600081116112bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b490612d77565b60405180910390fd5b6014811115611301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f890612d77565b60405180910390fd5b80666a94d74f4300006113149190612f6f565b341015611356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134d90612c17565b60405180910390fd5b60011515600860009054906101000a900460ff161515146113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a390612db7565b60405180910390fd5b60005b818110156113ed576113da338260016007546113cb9190612ee8565b6113d59190612ee8565b611b2b565b80806113e590613116565b9150506113af565b5080600760008282546114009190612ee8565b9250508190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114a661166c565b73ffffffffffffffffffffffffffffffffffffffff166114c4610e9f565b73ffffffffffffffffffffffffffffffffffffffff161461151a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151190612cd7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561158a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158190612b77565b60405180910390fd5b61159381611a67565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166116e783610a3d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061173882611600565b611777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176e90612bf7565b60405180910390fd5b600061178283610a3d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806117f157508373ffffffffffffffffffffffffffffffffffffffff166117d984610735565b73ffffffffffffffffffffffffffffffffffffffff16145b806118025750611801818561140a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661182b82610a3d565b73ffffffffffffffffffffffffffffffffffffffff1614611881576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187890612cf7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e890612bb7565b60405180910390fd5b6118fc838383611d98565b611907600082611674565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119579190612fc9565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119ae9190612ee8565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611b45828260405180602001604052806000815250611d9d565b5050565b611b5484848461180b565b611b6084848484611df8565b611b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9690612b57565b60405180910390fd5b50505050565b606060098054611bb4906130b3565b80601f0160208091040260200160405190810160405280929190818152602001828054611be0906130b3565b8015611c2d5780601f10611c0257610100808354040283529160200191611c2d565b820191906000526020600020905b815481529060010190602001808311611c1057829003601f168201915b5050505050905090565b60606000821415611c7f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d93565b600082905060005b60008214611cb1578080611c9a90613116565b915050600a82611caa9190612f3e565b9150611c87565b60008167ffffffffffffffff811115611ccd57611ccc61324c565b5b6040519080825280601f01601f191660200182016040528015611cff5781602001600182028036833780820191505090505b5090505b60008514611d8c57600182611d189190612fc9565b9150600a85611d27919061315f565b6030611d339190612ee8565b60f81b818381518110611d4957611d4861321d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d859190612f3e565b9450611d03565b8093505050505b919050565b505050565b611da78383611f8f565b611db46000848484611df8565b611df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dea90612b57565b60405180910390fd5b505050565b6000611e198473ffffffffffffffffffffffffffffffffffffffff1661215d565b15611f82578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e4261166c565b8786866040518563ffffffff1660e01b8152600401611e649493929190612ace565b602060405180830381600087803b158015611e7e57600080fd5b505af1925050508015611eaf57506040513d601f19601f82011682018060405250810190611eac9190612660565b60015b611f32573d8060008114611edf576040519150601f19603f3d011682016040523d82523d6000602084013e611ee4565b606091505b50600081511415611f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2190612b57565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611f87565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff690612c97565b60405180910390fd5b61200881611600565b15612048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203f90612b97565b60405180910390fd5b61205460008383611d98565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120a49190612ee8565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461217c906130b3565b90600052602060002090601f01602090048101928261219e57600085556121e5565b82601f106121b757805160ff19168380011785556121e5565b828001600101855582156121e5579182015b828111156121e45782518255916020019190600101906121c9565b5b5090506121f291906121f6565b5090565b5b8082111561220f5760008160009055506001016121f7565b5090565b600061222661222184612e17565b612df2565b9050808382526020820190508285602086028201111561224957612248613280565b5b60005b85811015612279578161225f8882612307565b84526020840193506020830192505060018101905061224c565b5050509392505050565b600061229661229184612e43565b612df2565b9050828152602081018484840111156122b2576122b1613285565b5b6122bd848285613071565b509392505050565b60006122d86122d384612e74565b612df2565b9050828152602081018484840111156122f4576122f3613285565b5b6122ff848285613071565b509392505050565b600081359050612316816137a1565b92915050565b600082601f8301126123315761233061327b565b5b8135612341848260208601612213565b91505092915050565b600081359050612359816137b8565b92915050565b60008135905061236e816137cf565b92915050565b600081519050612383816137cf565b92915050565b600082601f83011261239e5761239d61327b565b5b81356123ae848260208601612283565b91505092915050565b600082601f8301126123cc576123cb61327b565b5b81356123dc8482602086016122c5565b91505092915050565b6000813590506123f4816137e6565b92915050565b6000602082840312156124105761240f61328f565b5b600061241e84828501612307565b91505092915050565b6000806040838503121561243e5761243d61328f565b5b600061244c85828601612307565b925050602061245d85828601612307565b9150509250929050565b6000806000606084860312156124805761247f61328f565b5b600061248e86828701612307565b935050602061249f86828701612307565b92505060406124b0868287016123e5565b9150509250925092565b600080600080608085870312156124d4576124d361328f565b5b60006124e287828801612307565b94505060206124f387828801612307565b9350506040612504878288016123e5565b925050606085013567ffffffffffffffff8111156125255761252461328a565b5b61253187828801612389565b91505092959194509250565b600080604083850312156125545761255361328f565b5b600061256285828601612307565b92505060206125738582860161234a565b9150509250929050565b600080604083850312156125945761259361328f565b5b60006125a285828601612307565b92505060206125b3858286016123e5565b9150509250929050565b6000602082840312156125d3576125d261328f565b5b600082013567ffffffffffffffff8111156125f1576125f061328a565b5b6125fd8482850161231c565b91505092915050565b60006020828403121561261c5761261b61328f565b5b600061262a8482850161234a565b91505092915050565b6000602082840312156126495761264861328f565b5b60006126578482850161235f565b91505092915050565b6000602082840312156126765761267561328f565b5b600061268484828501612374565b91505092915050565b6000602082840312156126a3576126a261328f565b5b600082013567ffffffffffffffff8111156126c1576126c061328a565b5b6126cd848285016123b7565b91505092915050565b6000602082840312156126ec576126eb61328f565b5b60006126fa848285016123e5565b91505092915050565b61270c81612ffd565b82525050565b61271b8161300f565b82525050565b600061272c82612ea5565b6127368185612ebb565b9350612746818560208601613080565b61274f81613294565b840191505092915050565b600061276582612eb0565b61276f8185612ecc565b935061277f818560208601613080565b61278881613294565b840191505092915050565b600061279e82612eb0565b6127a88185612edd565b93506127b8818560208601613080565b80840191505092915050565b60006127d1603283612ecc565b91506127dc826132a5565b604082019050919050565b60006127f4602683612ecc565b91506127ff826132f4565b604082019050919050565b6000612817601c83612ecc565b915061282282613343565b602082019050919050565b600061283a602483612ecc565b91506128458261336c565b604082019050919050565b600061285d601983612ecc565b9150612868826133bb565b602082019050919050565b6000612880602c83612ecc565b915061288b826133e4565b604082019050919050565b60006128a3601683612ecc565b91506128ae82613433565b602082019050919050565b60006128c6603883612ecc565b91506128d18261345c565b604082019050919050565b60006128e9602a83612ecc565b91506128f4826134ab565b604082019050919050565b600061290c602983612ecc565b9150612917826134fa565b604082019050919050565b600061292f602083612ecc565b915061293a82613549565b602082019050919050565b6000612952602c83612ecc565b915061295d82613572565b604082019050919050565b6000612975602083612ecc565b9150612980826135c1565b602082019050919050565b6000612998602983612ecc565b91506129a3826135ea565b604082019050919050565b60006129bb602f83612ecc565b91506129c682613639565b604082019050919050565b60006129de602183612ecc565b91506129e982613688565b604082019050919050565b6000612a01603183612ecc565b9150612a0c826136d7565b604082019050919050565b6000612a24601783612ecc565b9150612a2f82613726565b602082019050919050565b6000612a47601683612ecc565b9150612a528261374f565b602082019050919050565b6000612a6a600f83612ecc565b9150612a7582613778565b602082019050919050565b612a8981613067565b82525050565b6000612a9b8285612793565b9150612aa78284612793565b91508190509392505050565b6000602082019050612ac86000830184612703565b92915050565b6000608082019050612ae36000830187612703565b612af06020830186612703565b612afd6040830185612a80565b8181036060830152612b0f8184612721565b905095945050505050565b6000602082019050612b2f6000830184612712565b92915050565b60006020820190508181036000830152612b4f818461275a565b905092915050565b60006020820190508181036000830152612b70816127c4565b9050919050565b60006020820190508181036000830152612b90816127e7565b9050919050565b60006020820190508181036000830152612bb08161280a565b9050919050565b60006020820190508181036000830152612bd08161282d565b9050919050565b60006020820190508181036000830152612bf081612850565b9050919050565b60006020820190508181036000830152612c1081612873565b9050919050565b60006020820190508181036000830152612c3081612896565b9050919050565b60006020820190508181036000830152612c50816128b9565b9050919050565b60006020820190508181036000830152612c70816128dc565b9050919050565b60006020820190508181036000830152612c90816128ff565b9050919050565b60006020820190508181036000830152612cb081612922565b9050919050565b60006020820190508181036000830152612cd081612945565b9050919050565b60006020820190508181036000830152612cf081612968565b9050919050565b60006020820190508181036000830152612d108161298b565b9050919050565b60006020820190508181036000830152612d30816129ae565b9050919050565b60006020820190508181036000830152612d50816129d1565b9050919050565b60006020820190508181036000830152612d70816129f4565b9050919050565b60006020820190508181036000830152612d9081612a17565b9050919050565b60006020820190508181036000830152612db081612a3a565b9050919050565b60006020820190508181036000830152612dd081612a5d565b9050919050565b6000602082019050612dec6000830184612a80565b92915050565b6000612dfc612e0d565b9050612e0882826130e5565b919050565b6000604051905090565b600067ffffffffffffffff821115612e3257612e3161324c565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612e5e57612e5d61324c565b5b612e6782613294565b9050602081019050919050565b600067ffffffffffffffff821115612e8f57612e8e61324c565b5b612e9882613294565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ef382613067565b9150612efe83613067565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f3357612f32613190565b5b828201905092915050565b6000612f4982613067565b9150612f5483613067565b925082612f6457612f636131bf565b5b828204905092915050565b6000612f7a82613067565b9150612f8583613067565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612fbe57612fbd613190565b5b828202905092915050565b6000612fd482613067565b9150612fdf83613067565b925082821015612ff257612ff1613190565b5b828203905092915050565b600061300882613047565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561309e578082015181840152602081019050613083565b838111156130ad576000848401525b50505050565b600060028204905060018216806130cb57607f821691505b602082108114156130df576130de6131ee565b5b50919050565b6130ee82613294565b810181811067ffffffffffffffff8211171561310d5761310c61324c565b5b80604052505050565b600061312182613067565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561315457613153613190565b5b600182019050919050565b600061316a82613067565b915061317583613067565b925082613185576131846131bf565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f696e636f727265637420657468657220616d6f756e7400000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6d696e74206174206c65617374206f6e6520746f6b656e000000000000000000600082015250565b7f6e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f53616c65206973205061757365642e0000000000000000000000000000000000600082015250565b6137aa81612ffd565b81146137b557600080fd5b50565b6137c18161300f565b81146137cc57600080fd5b50565b6137d88161301b565b81146137e357600080fd5b50565b6137ef81613067565b81146137fa57600080fd5b5056fea26469706673582212206738e0d0f19a37574f6e970c7e0119cc55098347221680e1a409bbf5d069643b64736f6c63430008070033

Deployed Bytecode Sourcemap

34562:1525:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22408:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23353:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24912:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24435:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34691:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34725:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25802:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35978:106;;;;;;;;;;;;;:::i;:::-;;26212:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34791:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23047:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34763:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22777:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14255:94;;;;;;;;;;;;;:::i;:::-;;35353:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35765:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13604;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23522:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35667:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25205:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26468:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23697:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34913:434;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25571:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14504:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22408:305;22510:4;22562:25;22547:40;;;:11;:40;;;;:105;;;;22619:33;22604:48;;;:11;:48;;;;22547:105;:158;;;;22669:36;22693:11;22669:23;:36::i;:::-;22547:158;22527:178;;22408:305;;;:::o;23353:100::-;23407:13;23440:5;23433:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23353:100;:::o;24912:221::-;24988:7;25016:16;25024:7;25016;:16::i;:::-;25008:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25101:15;:24;25117:7;25101:24;;;;;;;;;;;;;;;;;;;;;25094:31;;24912:221;;;:::o;24435:411::-;24516:13;24532:23;24547:7;24532:14;:23::i;:::-;24516:39;;24580:5;24574:11;;:2;:11;;;;24566:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;24674:5;24658:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;24683:37;24700:5;24707:12;:10;:12::i;:::-;24683:16;:37::i;:::-;24658:62;24636:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;24817:21;24826:2;24830:7;24817:8;:21::i;:::-;24505:341;24435:411;;:::o;34691:27::-;;;;:::o;34725:31::-;;;;;;;;;;;;;:::o;25802:339::-;25997:41;26016:12;:10;:12::i;:::-;26030:7;25997:18;:41::i;:::-;25989:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;26105:28;26115:4;26121:2;26125:7;26105:9;:28::i;:::-;25802:339;;;:::o;35978:106::-;13835:12;:10;:12::i;:::-;13824:23;;:7;:5;:7::i;:::-;:23;;;13816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36036:7:::1;:5;:7::i;:::-;36028:25;;:48;36054:21;36028:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;35978:106::o:0;26212:185::-;26350:39;26367:4;26373:2;26377:7;26350:39;;;;;;;;;;;;:16;:39::i;:::-;26212:185;;;:::o;34791:34::-;;;;:::o;23047:239::-;23119:7;23139:13;23155:7;:16;23163:7;23155:16;;;;;;;;;;;;;;;;;;;;;23139:32;;23207:1;23190:19;;:5;:19;;;;23182:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23273:5;23266:12;;;23047:239;;;:::o;34763:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22777:208::-;22849:7;22894:1;22877:19;;:5;:19;;;;22869:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;22961:9;:16;22971:5;22961:16;;;;;;;;;;;;;;;;22954:23;;22777:208;;;:::o;14255:94::-;13835:12;:10;:12::i;:::-;13824:23;;:7;:5;:7::i;:::-;:23;;;13816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14320:21:::1;14338:1;14320:9;:21::i;:::-;14255:94::o:0;35353:308::-;13835:12;:10;:12::i;:::-;13824:23;;:7;:5;:7::i;:::-;:23;;;13816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34680:4:::1;35448:8;:15;35434:11;;:29;;;;:::i;:::-;:42;;35426:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;35518:6;35514:98;35534:8;:15;35530:1;:19;35514:98;;;35569:43;35579:8;35588:1;35579:11;;;;;;;;:::i;:::-;;;;;;;;35610:1;35606;35592:11;;:15;;;;:::i;:::-;:19;;;;:::i;:::-;35569:9;:43::i;:::-;35551:3;;;;;:::i;:::-;;;;35514:98;;;;35638:8;:15;35623:11;;:30;;;;;;;:::i;:::-;;;;;;;;35353:308:::0;:::o;35765:87::-;13835:12;:10;:12::i;:::-;13824:23;;:7;:5;:7::i;:::-;:23;;;13816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35840:4:::1;35826:11;;:18;;;;;;;;;;;;;;;;;;35765:87:::0;:::o;13604:::-;13650:7;13677:6;;;;;;;;;;;13670:13;;13604:87;:::o;23522:104::-;23578:13;23611:7;23604:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23522:104;:::o;35667:92::-;13835:12;:10;:12::i;:::-;13824:23;;:7;:5;:7::i;:::-;:23;;;13816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35747:4:::1;35737:7;:14;;;;;;;;;;;;:::i;:::-;;35667:92:::0;:::o;25205:295::-;25320:12;:10;:12::i;:::-;25308:24;;:8;:24;;;;25300:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;25420:8;25375:18;:32;25394:12;:10;:12::i;:::-;25375:32;;;;;;;;;;;;;;;:42;25408:8;25375:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;25473:8;25444:48;;25459:12;:10;:12::i;:::-;25444:48;;;25483:8;25444:48;;;;;;:::i;:::-;;;;;;;;25205:295;;:::o;26468:328::-;26643:41;26662:12;:10;:12::i;:::-;26676:7;26643:18;:41::i;:::-;26635:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;26749:39;26763:4;26769:2;26773:7;26782:5;26749:13;:39::i;:::-;26468:328;;;;:::o;23697:334::-;23770:13;23804:16;23812:7;23804;:16::i;:::-;23796:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;23885:21;23909:10;:8;:10::i;:::-;23885:34;;23961:1;23943:7;23937:21;:25;:86;;;;;;;;;;;;;;;;;23989:7;23998:18;:7;:16;:18::i;:::-;23972:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23937:86;23930:93;;;23697:334;;;:::o;34913:434::-;34981:1;34972:6;:10;34964:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;35040:2;35030:6;:12;;35022:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;35115:6;34637:10;35102:19;;;;:::i;:::-;35089:9;:32;;35081:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35182:4;35167:19;;:11;;;;;;;;;;;:19;;;35159:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;35223:6;35219:88;35239:6;35235:1;:10;35219:88;;;35265:42;35275:10;35305:1;35301;35287:11;;:15;;;;:::i;:::-;:19;;;;:::i;:::-;35265:9;:42::i;:::-;35247:3;;;;;:::i;:::-;;;;35219:88;;;;35333:6;35318:11;;:21;;;;;;;:::i;:::-;;;;;;;;34913:434;:::o;25571:164::-;25668:4;25692:18;:25;25711:5;25692:25;;;;;;;;;;;;;;;:35;25718:8;25692:35;;;;;;;;;;;;;;;;;;;;;;;;;25685:42;;25571:164;;;;:::o;14504:192::-;13835:12;:10;:12::i;:::-;13824:23;;:7;:5;:7::i;:::-;:23;;;13816:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14613:1:::1;14593:22;;:8;:22;;;;14585:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14669:19;14679:8;14669:9;:19::i;:::-;14504:192:::0;:::o;15609:157::-;15694:4;15733:25;15718:40;;;:11;:40;;;;15711:47;;15609:157;;;:::o;28306:127::-;28371:4;28423:1;28395:30;;:7;:16;28403:7;28395:16;;;;;;;;;;;;;;;;;;;;;:30;;;;28388:37;;28306:127;;;:::o;744:98::-;797:7;824:10;817:17;;744:98;:::o;32288:174::-;32390:2;32363:15;:24;32379:7;32363:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;32446:7;32442:2;32408:46;;32417:23;32432:7;32417:14;:23::i;:::-;32408:46;;;;;;;;;;;;32288:174;;:::o;28600:348::-;28693:4;28718:16;28726:7;28718;:16::i;:::-;28710:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28794:13;28810:23;28825:7;28810:14;:23::i;:::-;28794:39;;28863:5;28852:16;;:7;:16;;;:51;;;;28896:7;28872:31;;:20;28884:7;28872:11;:20::i;:::-;:31;;;28852:51;:87;;;;28907:32;28924:5;28931:7;28907:16;:32::i;:::-;28852:87;28844:96;;;28600:348;;;;:::o;31592:578::-;31751:4;31724:31;;:23;31739:7;31724:14;:23::i;:::-;:31;;;31716:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;31834:1;31820:16;;:2;:16;;;;31812:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31890:39;31911:4;31917:2;31921:7;31890:20;:39::i;:::-;31994:29;32011:1;32015:7;31994:8;:29::i;:::-;32055:1;32036:9;:15;32046:4;32036:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;32084:1;32067:9;:13;32077:2;32067:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32115:2;32096:7;:16;32104:7;32096:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32154:7;32150:2;32135:27;;32144:4;32135:27;;;;;;;;;;;;31592:578;;;:::o;14704:173::-;14760:16;14779:6;;;;;;;;;;;14760:25;;14805:8;14796:6;;:17;;;;;;;;;;;;;;;;;;14860:8;14829:40;;14850:8;14829:40;;;;;;;;;;;;14749:128;14704:173;:::o;29290:110::-;29366:26;29376:2;29380:7;29366:26;;;;;;;;;;;;:9;:26::i;:::-;29290:110;;:::o;27678:315::-;27835:28;27845:4;27851:2;27855:7;27835:9;:28::i;:::-;27882:48;27905:4;27911:2;27915:7;27924:5;27882:22;:48::i;:::-;27874:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;27678:315;;;;:::o;35864:108::-;35924:13;35957:7;35950:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35864:108;:::o;1209:723::-;1265:13;1495:1;1486:5;:10;1482:53;;;1513:10;;;;;;;;;;;;;;;;;;;;;1482:53;1545:12;1560:5;1545:20;;1576:14;1601:78;1616:1;1608:4;:9;1601:78;;1634:8;;;;;:::i;:::-;;;;1665:2;1657:10;;;;;:::i;:::-;;;1601:78;;;1689:19;1721:6;1711:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1689:39;;1739:154;1755:1;1746:5;:10;1739:154;;1783:1;1773:11;;;;;:::i;:::-;;;1850:2;1842:5;:10;;;;:::i;:::-;1829:2;:24;;;;:::i;:::-;1816:39;;1799:6;1806;1799:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1879:2;1870:11;;;;;:::i;:::-;;;1739:154;;;1917:6;1903:21;;;;;1209:723;;;;:::o;34398:126::-;;;;:::o;29627:321::-;29757:18;29763:2;29767:7;29757:5;:18::i;:::-;29808:54;29839:1;29843:2;29847:7;29856:5;29808:22;:54::i;:::-;29786:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;29627:321;;;:::o;33027:799::-;33182:4;33203:15;:2;:13;;;:15::i;:::-;33199:620;;;33255:2;33239:36;;;33276:12;:10;:12::i;:::-;33290:4;33296:7;33305:5;33239:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33235:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33498:1;33481:6;:13;:18;33477:272;;;33524:60;;;;;;;;;;:::i;:::-;;;;;;;;33477:272;33699:6;33693:13;33684:6;33680:2;33676:15;33669:38;33235:529;33372:41;;;33362:51;;;:6;:51;;;;33355:58;;;;;33199:620;33803:4;33796:11;;33027:799;;;;;;;:::o;30284:382::-;30378:1;30364:16;;:2;:16;;;;30356:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;30437:16;30445:7;30437;:16::i;:::-;30436:17;30428:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30499:45;30528:1;30532:2;30536:7;30499:20;:45::i;:::-;30574:1;30557:9;:13;30567:2;30557:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30605:2;30586:7;:16;30594:7;30586:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30650:7;30646:2;30625:33;;30642:1;30625:33;;;;;;;;;;;;30284:382;;:::o;3674:387::-;3734:4;3942:12;4009:7;3997:20;3989:28;;4052:1;4045:4;:8;4038:15;;;3674:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722: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:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2924:340::-;2980:5;3029:3;3022:4;3014:6;3010:17;3006:27;2996:122;;3037:79;;:::i;:::-;2996:122;3154:6;3141:20;3179:79;3254:3;3246:6;3239:4;3231:6;3227:17;3179:79;:::i;:::-;3170:88;;2986:278;2924:340;;;;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:329::-;3474:6;3523:2;3511:9;3502:7;3498:23;3494:32;3491:119;;;3529:79;;:::i;:::-;3491:119;3649:1;3674:53;3719:7;3710:6;3699:9;3695:22;3674:53;:::i;:::-;3664:63;;3620:117;3415:329;;;;:::o;3750:474::-;3818:6;3826;3875:2;3863:9;3854:7;3850:23;3846:32;3843:119;;;3881:79;;:::i;:::-;3843:119;4001:1;4026:53;4071:7;4062:6;4051:9;4047:22;4026:53;:::i;:::-;4016:63;;3972:117;4128:2;4154:53;4199:7;4190:6;4179:9;4175:22;4154:53;:::i;:::-;4144:63;;4099:118;3750:474;;;;;:::o;4230:619::-;4307:6;4315;4323;4372:2;4360:9;4351:7;4347:23;4343:32;4340:119;;;4378:79;;:::i;:::-;4340:119;4498:1;4523:53;4568:7;4559:6;4548:9;4544:22;4523:53;:::i;:::-;4513:63;;4469:117;4625:2;4651:53;4696:7;4687:6;4676:9;4672:22;4651:53;:::i;:::-;4641:63;;4596:118;4753:2;4779:53;4824:7;4815:6;4804:9;4800:22;4779:53;:::i;:::-;4769:63;;4724:118;4230:619;;;;;:::o;4855:943::-;4950:6;4958;4966;4974;5023:3;5011:9;5002:7;4998:23;4994:33;4991:120;;;5030:79;;:::i;:::-;4991:120;5150:1;5175:53;5220:7;5211:6;5200:9;5196:22;5175:53;:::i;:::-;5165:63;;5121:117;5277:2;5303:53;5348:7;5339:6;5328:9;5324:22;5303:53;:::i;:::-;5293:63;;5248:118;5405:2;5431:53;5476:7;5467:6;5456:9;5452:22;5431:53;:::i;:::-;5421:63;;5376:118;5561:2;5550:9;5546:18;5533:32;5592:18;5584:6;5581:30;5578:117;;;5614:79;;:::i;:::-;5578:117;5719:62;5773:7;5764:6;5753:9;5749:22;5719:62;:::i;:::-;5709:72;;5504:287;4855:943;;;;;;;:::o;5804:468::-;5869:6;5877;5926:2;5914:9;5905:7;5901:23;5897:32;5894:119;;;5932:79;;:::i;:::-;5894:119;6052:1;6077:53;6122:7;6113:6;6102:9;6098:22;6077:53;:::i;:::-;6067:63;;6023:117;6179:2;6205:50;6247:7;6238:6;6227:9;6223:22;6205:50;:::i;:::-;6195:60;;6150:115;5804:468;;;;;:::o;6278:474::-;6346:6;6354;6403:2;6391:9;6382:7;6378:23;6374:32;6371:119;;;6409:79;;:::i;:::-;6371:119;6529:1;6554:53;6599:7;6590:6;6579:9;6575:22;6554:53;:::i;:::-;6544:63;;6500:117;6656:2;6682:53;6727:7;6718:6;6707:9;6703:22;6682:53;:::i;:::-;6672:63;;6627:118;6278:474;;;;;:::o;6758:539::-;6842:6;6891:2;6879:9;6870:7;6866:23;6862:32;6859:119;;;6897:79;;:::i;:::-;6859:119;7045:1;7034:9;7030:17;7017:31;7075:18;7067:6;7064:30;7061:117;;;7097:79;;:::i;:::-;7061:117;7202:78;7272:7;7263:6;7252:9;7248:22;7202:78;:::i;:::-;7192:88;;6988:302;6758:539;;;;:::o;7303:323::-;7359:6;7408:2;7396:9;7387:7;7383:23;7379:32;7376:119;;;7414:79;;:::i;:::-;7376:119;7534:1;7559:50;7601:7;7592:6;7581:9;7577:22;7559:50;:::i;:::-;7549:60;;7505:114;7303:323;;;;:::o;7632:327::-;7690:6;7739:2;7727:9;7718:7;7714:23;7710:32;7707:119;;;7745:79;;:::i;:::-;7707:119;7865:1;7890:52;7934:7;7925:6;7914:9;7910:22;7890:52;:::i;:::-;7880:62;;7836:116;7632:327;;;;:::o;7965:349::-;8034:6;8083:2;8071:9;8062:7;8058:23;8054:32;8051:119;;;8089:79;;:::i;:::-;8051:119;8209:1;8234:63;8289:7;8280:6;8269:9;8265:22;8234:63;:::i;:::-;8224:73;;8180:127;7965:349;;;;:::o;8320:509::-;8389:6;8438:2;8426:9;8417:7;8413:23;8409:32;8406:119;;;8444:79;;:::i;:::-;8406:119;8592:1;8581:9;8577:17;8564:31;8622:18;8614:6;8611:30;8608:117;;;8644:79;;:::i;:::-;8608:117;8749:63;8804:7;8795:6;8784:9;8780:22;8749:63;:::i;:::-;8739:73;;8535:287;8320:509;;;;:::o;8835:329::-;8894:6;8943:2;8931:9;8922:7;8918:23;8914:32;8911:119;;;8949:79;;:::i;:::-;8911:119;9069:1;9094:53;9139:7;9130:6;9119:9;9115:22;9094:53;:::i;:::-;9084:63;;9040:117;8835:329;;;;:::o;9170:118::-;9257:24;9275:5;9257:24;:::i;:::-;9252:3;9245:37;9170:118;;:::o;9294:109::-;9375:21;9390:5;9375:21;:::i;:::-;9370:3;9363:34;9294:109;;:::o;9409:360::-;9495:3;9523:38;9555:5;9523:38;:::i;:::-;9577:70;9640:6;9635:3;9577:70;:::i;:::-;9570:77;;9656:52;9701:6;9696:3;9689:4;9682:5;9678:16;9656:52;:::i;:::-;9733:29;9755:6;9733:29;:::i;:::-;9728:3;9724:39;9717:46;;9499:270;9409:360;;;;:::o;9775:364::-;9863:3;9891:39;9924:5;9891:39;:::i;:::-;9946:71;10010:6;10005:3;9946:71;:::i;:::-;9939:78;;10026:52;10071:6;10066:3;10059:4;10052:5;10048:16;10026:52;:::i;:::-;10103:29;10125:6;10103:29;:::i;:::-;10098:3;10094:39;10087:46;;9867:272;9775:364;;;;:::o;10145:377::-;10251:3;10279:39;10312:5;10279:39;:::i;:::-;10334:89;10416:6;10411:3;10334:89;:::i;:::-;10327:96;;10432:52;10477:6;10472:3;10465:4;10458:5;10454:16;10432:52;:::i;:::-;10509:6;10504:3;10500:16;10493:23;;10255:267;10145:377;;;;:::o;10528:366::-;10670:3;10691:67;10755:2;10750:3;10691:67;:::i;:::-;10684:74;;10767:93;10856:3;10767:93;:::i;:::-;10885:2;10880:3;10876:12;10869:19;;10528:366;;;:::o;10900:::-;11042:3;11063:67;11127:2;11122:3;11063:67;:::i;:::-;11056:74;;11139:93;11228:3;11139:93;:::i;:::-;11257:2;11252:3;11248:12;11241:19;;10900:366;;;:::o;11272:::-;11414:3;11435:67;11499:2;11494:3;11435:67;:::i;:::-;11428:74;;11511:93;11600:3;11511:93;:::i;:::-;11629:2;11624:3;11620:12;11613:19;;11272:366;;;:::o;11644:::-;11786:3;11807:67;11871:2;11866:3;11807:67;:::i;:::-;11800:74;;11883:93;11972:3;11883:93;:::i;:::-;12001:2;11996:3;11992:12;11985:19;;11644:366;;;:::o;12016:::-;12158:3;12179:67;12243:2;12238:3;12179:67;:::i;:::-;12172:74;;12255:93;12344:3;12255:93;:::i;:::-;12373:2;12368:3;12364:12;12357:19;;12016:366;;;:::o;12388:::-;12530:3;12551:67;12615:2;12610:3;12551:67;:::i;:::-;12544:74;;12627:93;12716:3;12627:93;:::i;:::-;12745:2;12740:3;12736:12;12729:19;;12388:366;;;:::o;12760:::-;12902:3;12923:67;12987:2;12982:3;12923:67;:::i;:::-;12916:74;;12999:93;13088:3;12999:93;:::i;:::-;13117:2;13112:3;13108:12;13101:19;;12760:366;;;:::o;13132:::-;13274:3;13295:67;13359:2;13354:3;13295:67;:::i;:::-;13288:74;;13371:93;13460:3;13371:93;:::i;:::-;13489:2;13484:3;13480:12;13473:19;;13132:366;;;:::o;13504:::-;13646:3;13667:67;13731:2;13726:3;13667:67;:::i;:::-;13660:74;;13743:93;13832:3;13743:93;:::i;:::-;13861:2;13856:3;13852:12;13845:19;;13504:366;;;:::o;13876:::-;14018:3;14039:67;14103:2;14098:3;14039:67;:::i;:::-;14032:74;;14115:93;14204:3;14115:93;:::i;:::-;14233:2;14228:3;14224:12;14217:19;;13876:366;;;:::o;14248:::-;14390:3;14411:67;14475:2;14470:3;14411:67;:::i;:::-;14404:74;;14487:93;14576:3;14487:93;:::i;:::-;14605:2;14600:3;14596:12;14589:19;;14248:366;;;:::o;14620:::-;14762:3;14783:67;14847:2;14842:3;14783:67;:::i;:::-;14776:74;;14859:93;14948:3;14859:93;:::i;:::-;14977:2;14972:3;14968:12;14961:19;;14620:366;;;:::o;14992:::-;15134:3;15155:67;15219:2;15214:3;15155:67;:::i;:::-;15148:74;;15231:93;15320:3;15231:93;:::i;:::-;15349:2;15344:3;15340:12;15333:19;;14992:366;;;:::o;15364:::-;15506:3;15527:67;15591:2;15586:3;15527:67;:::i;:::-;15520:74;;15603:93;15692:3;15603:93;:::i;:::-;15721:2;15716:3;15712:12;15705:19;;15364:366;;;:::o;15736:::-;15878:3;15899:67;15963:2;15958:3;15899:67;:::i;:::-;15892:74;;15975:93;16064:3;15975:93;:::i;:::-;16093:2;16088:3;16084:12;16077:19;;15736:366;;;:::o;16108:::-;16250:3;16271:67;16335:2;16330:3;16271:67;:::i;:::-;16264:74;;16347:93;16436:3;16347:93;:::i;:::-;16465:2;16460:3;16456:12;16449:19;;16108:366;;;:::o;16480:::-;16622:3;16643:67;16707:2;16702:3;16643:67;:::i;:::-;16636:74;;16719:93;16808:3;16719:93;:::i;:::-;16837:2;16832:3;16828:12;16821:19;;16480:366;;;:::o;16852:::-;16994:3;17015:67;17079:2;17074:3;17015:67;:::i;:::-;17008:74;;17091:93;17180:3;17091:93;:::i;:::-;17209:2;17204:3;17200:12;17193:19;;16852:366;;;:::o;17224:::-;17366:3;17387:67;17451:2;17446:3;17387:67;:::i;:::-;17380:74;;17463:93;17552:3;17463:93;:::i;:::-;17581:2;17576:3;17572:12;17565:19;;17224:366;;;:::o;17596:::-;17738:3;17759:67;17823:2;17818:3;17759:67;:::i;:::-;17752:74;;17835:93;17924:3;17835:93;:::i;:::-;17953:2;17948:3;17944:12;17937:19;;17596:366;;;:::o;17968:118::-;18055:24;18073:5;18055:24;:::i;:::-;18050:3;18043:37;17968:118;;:::o;18092:435::-;18272:3;18294:95;18385:3;18376:6;18294:95;:::i;:::-;18287:102;;18406:95;18497:3;18488:6;18406:95;:::i;:::-;18399:102;;18518:3;18511:10;;18092:435;;;;;:::o;18533:222::-;18626:4;18664:2;18653:9;18649:18;18641:26;;18677:71;18745:1;18734:9;18730:17;18721:6;18677:71;:::i;:::-;18533:222;;;;:::o;18761:640::-;18956:4;18994:3;18983:9;18979:19;18971:27;;19008:71;19076:1;19065:9;19061:17;19052:6;19008:71;:::i;:::-;19089:72;19157:2;19146:9;19142:18;19133:6;19089:72;:::i;:::-;19171;19239:2;19228:9;19224:18;19215:6;19171:72;:::i;:::-;19290:9;19284:4;19280:20;19275:2;19264:9;19260:18;19253:48;19318:76;19389:4;19380:6;19318:76;:::i;:::-;19310:84;;18761:640;;;;;;;:::o;19407:210::-;19494:4;19532:2;19521:9;19517:18;19509:26;;19545:65;19607:1;19596:9;19592:17;19583:6;19545:65;:::i;:::-;19407:210;;;;:::o;19623:313::-;19736:4;19774:2;19763:9;19759:18;19751:26;;19823:9;19817:4;19813:20;19809:1;19798:9;19794:17;19787:47;19851:78;19924:4;19915:6;19851:78;:::i;:::-;19843:86;;19623:313;;;;:::o;19942:419::-;20108:4;20146:2;20135:9;20131:18;20123:26;;20195:9;20189:4;20185:20;20181:1;20170:9;20166:17;20159:47;20223:131;20349:4;20223:131;:::i;:::-;20215:139;;19942:419;;;:::o;20367:::-;20533:4;20571:2;20560:9;20556:18;20548:26;;20620:9;20614:4;20610:20;20606:1;20595:9;20591:17;20584:47;20648:131;20774:4;20648:131;:::i;:::-;20640:139;;20367:419;;;:::o;20792:::-;20958:4;20996:2;20985:9;20981:18;20973:26;;21045:9;21039:4;21035:20;21031:1;21020:9;21016:17;21009:47;21073:131;21199:4;21073:131;:::i;:::-;21065:139;;20792:419;;;:::o;21217:::-;21383:4;21421:2;21410:9;21406:18;21398:26;;21470:9;21464:4;21460:20;21456:1;21445:9;21441:17;21434:47;21498:131;21624:4;21498:131;:::i;:::-;21490:139;;21217:419;;;:::o;21642:::-;21808:4;21846:2;21835:9;21831:18;21823:26;;21895:9;21889:4;21885:20;21881:1;21870:9;21866:17;21859:47;21923:131;22049:4;21923:131;:::i;:::-;21915:139;;21642:419;;;:::o;22067:::-;22233:4;22271:2;22260:9;22256:18;22248:26;;22320:9;22314:4;22310:20;22306:1;22295:9;22291:17;22284:47;22348:131;22474:4;22348:131;:::i;:::-;22340:139;;22067:419;;;:::o;22492:::-;22658:4;22696:2;22685:9;22681:18;22673:26;;22745:9;22739:4;22735:20;22731:1;22720:9;22716:17;22709:47;22773:131;22899:4;22773:131;:::i;:::-;22765:139;;22492:419;;;:::o;22917:::-;23083:4;23121:2;23110:9;23106:18;23098:26;;23170:9;23164:4;23160:20;23156:1;23145:9;23141:17;23134:47;23198:131;23324:4;23198:131;:::i;:::-;23190:139;;22917:419;;;:::o;23342:::-;23508:4;23546:2;23535:9;23531:18;23523:26;;23595:9;23589:4;23585:20;23581:1;23570:9;23566:17;23559:47;23623:131;23749:4;23623:131;:::i;:::-;23615:139;;23342:419;;;:::o;23767:::-;23933:4;23971:2;23960:9;23956:18;23948:26;;24020:9;24014:4;24010:20;24006:1;23995:9;23991:17;23984:47;24048:131;24174:4;24048:131;:::i;:::-;24040:139;;23767:419;;;:::o;24192:::-;24358:4;24396:2;24385:9;24381:18;24373:26;;24445:9;24439:4;24435:20;24431:1;24420:9;24416:17;24409:47;24473:131;24599:4;24473:131;:::i;:::-;24465:139;;24192:419;;;:::o;24617:::-;24783:4;24821:2;24810:9;24806:18;24798:26;;24870:9;24864:4;24860:20;24856:1;24845:9;24841:17;24834:47;24898:131;25024:4;24898:131;:::i;:::-;24890:139;;24617:419;;;:::o;25042:::-;25208:4;25246:2;25235:9;25231:18;25223:26;;25295:9;25289:4;25285:20;25281:1;25270:9;25266:17;25259:47;25323:131;25449:4;25323:131;:::i;:::-;25315:139;;25042:419;;;:::o;25467:::-;25633:4;25671:2;25660:9;25656:18;25648:26;;25720:9;25714:4;25710:20;25706:1;25695:9;25691:17;25684:47;25748:131;25874:4;25748:131;:::i;:::-;25740:139;;25467:419;;;:::o;25892:::-;26058:4;26096:2;26085:9;26081:18;26073:26;;26145:9;26139:4;26135:20;26131:1;26120:9;26116:17;26109:47;26173:131;26299:4;26173:131;:::i;:::-;26165:139;;25892:419;;;:::o;26317:::-;26483:4;26521:2;26510:9;26506:18;26498:26;;26570:9;26564:4;26560:20;26556:1;26545:9;26541:17;26534:47;26598:131;26724:4;26598:131;:::i;:::-;26590:139;;26317:419;;;:::o;26742:::-;26908:4;26946:2;26935:9;26931:18;26923:26;;26995:9;26989:4;26985:20;26981:1;26970:9;26966:17;26959:47;27023:131;27149:4;27023:131;:::i;:::-;27015:139;;26742:419;;;:::o;27167:::-;27333:4;27371:2;27360:9;27356:18;27348:26;;27420:9;27414:4;27410:20;27406:1;27395:9;27391:17;27384:47;27448:131;27574:4;27448:131;:::i;:::-;27440:139;;27167:419;;;:::o;27592:::-;27758:4;27796:2;27785:9;27781:18;27773:26;;27845:9;27839:4;27835:20;27831:1;27820:9;27816:17;27809:47;27873:131;27999:4;27873:131;:::i;:::-;27865:139;;27592:419;;;:::o;28017:::-;28183:4;28221:2;28210:9;28206:18;28198:26;;28270:9;28264:4;28260:20;28256:1;28245:9;28241:17;28234:47;28298:131;28424:4;28298:131;:::i;:::-;28290:139;;28017:419;;;:::o;28442:222::-;28535:4;28573:2;28562:9;28558:18;28550:26;;28586:71;28654:1;28643:9;28639:17;28630:6;28586:71;:::i;:::-;28442:222;;;;:::o;28670:129::-;28704:6;28731:20;;:::i;:::-;28721:30;;28760:33;28788:4;28780:6;28760:33;:::i;:::-;28670:129;;;:::o;28805:75::-;28838:6;28871:2;28865:9;28855:19;;28805:75;:::o;28886:311::-;28963:4;29053:18;29045:6;29042:30;29039:56;;;29075:18;;:::i;:::-;29039:56;29125:4;29117:6;29113:17;29105:25;;29185:4;29179;29175:15;29167:23;;28886:311;;;:::o;29203:307::-;29264:4;29354:18;29346:6;29343:30;29340:56;;;29376:18;;:::i;:::-;29340:56;29414:29;29436:6;29414:29;:::i;:::-;29406:37;;29498:4;29492;29488:15;29480:23;;29203:307;;;:::o;29516:308::-;29578:4;29668:18;29660:6;29657:30;29654:56;;;29690:18;;:::i;:::-;29654:56;29728:29;29750:6;29728:29;:::i;:::-;29720:37;;29812:4;29806;29802:15;29794:23;;29516:308;;;:::o;29830:98::-;29881:6;29915:5;29909:12;29899:22;;29830:98;;;:::o;29934:99::-;29986:6;30020:5;30014:12;30004:22;;29934:99;;;:::o;30039:168::-;30122:11;30156:6;30151:3;30144:19;30196:4;30191:3;30187:14;30172:29;;30039:168;;;;:::o;30213:169::-;30297:11;30331:6;30326:3;30319:19;30371:4;30366:3;30362:14;30347:29;;30213:169;;;;:::o;30388:148::-;30490:11;30527:3;30512:18;;30388:148;;;;:::o;30542:305::-;30582:3;30601:20;30619:1;30601:20;:::i;:::-;30596:25;;30635:20;30653:1;30635:20;:::i;:::-;30630:25;;30789:1;30721:66;30717:74;30714:1;30711:81;30708:107;;;30795:18;;:::i;:::-;30708:107;30839:1;30836;30832:9;30825:16;;30542:305;;;;:::o;30853:185::-;30893:1;30910:20;30928:1;30910:20;:::i;:::-;30905:25;;30944:20;30962:1;30944:20;:::i;:::-;30939:25;;30983:1;30973:35;;30988:18;;:::i;:::-;30973:35;31030:1;31027;31023:9;31018:14;;30853:185;;;;:::o;31044:348::-;31084:7;31107:20;31125:1;31107:20;:::i;:::-;31102:25;;31141:20;31159:1;31141:20;:::i;:::-;31136:25;;31329:1;31261:66;31257:74;31254:1;31251:81;31246:1;31239:9;31232:17;31228:105;31225:131;;;31336:18;;:::i;:::-;31225:131;31384:1;31381;31377:9;31366:20;;31044:348;;;;:::o;31398:191::-;31438:4;31458:20;31476:1;31458:20;:::i;:::-;31453:25;;31492:20;31510:1;31492:20;:::i;:::-;31487:25;;31531:1;31528;31525:8;31522:34;;;31536:18;;:::i;:::-;31522:34;31581:1;31578;31574:9;31566:17;;31398:191;;;;:::o;31595:96::-;31632:7;31661:24;31679:5;31661:24;:::i;:::-;31650:35;;31595:96;;;:::o;31697:90::-;31731:7;31774:5;31767:13;31760:21;31749:32;;31697:90;;;:::o;31793:149::-;31829:7;31869:66;31862:5;31858:78;31847:89;;31793:149;;;:::o;31948:126::-;31985:7;32025:42;32018:5;32014:54;32003:65;;31948:126;;;:::o;32080:77::-;32117:7;32146:5;32135:16;;32080:77;;;:::o;32163:154::-;32247:6;32242:3;32237;32224:30;32309:1;32300:6;32295:3;32291:16;32284:27;32163:154;;;:::o;32323:307::-;32391:1;32401:113;32415:6;32412:1;32409:13;32401:113;;;32500:1;32495:3;32491:11;32485:18;32481:1;32476:3;32472:11;32465:39;32437:2;32434:1;32430:10;32425:15;;32401:113;;;32532:6;32529:1;32526:13;32523:101;;;32612:1;32603:6;32598:3;32594:16;32587:27;32523:101;32372:258;32323:307;;;:::o;32636:320::-;32680:6;32717:1;32711:4;32707:12;32697:22;;32764:1;32758:4;32754:12;32785:18;32775:81;;32841:4;32833:6;32829:17;32819:27;;32775:81;32903:2;32895:6;32892:14;32872:18;32869:38;32866:84;;;32922:18;;:::i;:::-;32866:84;32687:269;32636:320;;;:::o;32962:281::-;33045:27;33067:4;33045:27;:::i;:::-;33037:6;33033:40;33175:6;33163:10;33160:22;33139:18;33127:10;33124:34;33121:62;33118:88;;;33186:18;;:::i;:::-;33118:88;33226:10;33222:2;33215:22;33005:238;32962:281;;:::o;33249:233::-;33288:3;33311:24;33329:5;33311:24;:::i;:::-;33302:33;;33357:66;33350:5;33347:77;33344:103;;;33427:18;;:::i;:::-;33344:103;33474:1;33467:5;33463:13;33456:20;;33249:233;;;:::o;33488:176::-;33520:1;33537:20;33555:1;33537:20;:::i;:::-;33532:25;;33571:20;33589:1;33571:20;:::i;:::-;33566:25;;33610:1;33600:35;;33615:18;;:::i;:::-;33600:35;33656:1;33653;33649:9;33644:14;;33488:176;;;;:::o;33670:180::-;33718:77;33715:1;33708:88;33815:4;33812:1;33805:15;33839:4;33836:1;33829:15;33856:180;33904:77;33901:1;33894:88;34001:4;33998:1;33991:15;34025:4;34022:1;34015:15;34042:180;34090:77;34087:1;34080:88;34187:4;34184:1;34177:15;34211:4;34208:1;34201:15;34228:180;34276:77;34273:1;34266:88;34373:4;34370:1;34363:15;34397:4;34394:1;34387:15;34414:180;34462:77;34459:1;34452:88;34559:4;34556:1;34549:15;34583:4;34580:1;34573:15;34600:117;34709:1;34706;34699:12;34723:117;34832:1;34829;34822:12;34846:117;34955:1;34952;34945:12;34969:117;35078:1;35075;35068:12;35092:117;35201:1;35198;35191:12;35215:102;35256:6;35307:2;35303:7;35298:2;35291:5;35287:14;35283:28;35273:38;;35215:102;;;:::o;35323:237::-;35463:34;35459:1;35451:6;35447:14;35440:58;35532:20;35527:2;35519:6;35515:15;35508:45;35323:237;:::o;35566:225::-;35706:34;35702:1;35694:6;35690:14;35683:58;35775:8;35770:2;35762:6;35758:15;35751:33;35566:225;:::o;35797:178::-;35937:30;35933:1;35925:6;35921:14;35914:54;35797:178;:::o;35981:223::-;36121:34;36117:1;36109:6;36105:14;36098:58;36190:6;36185:2;36177:6;36173:15;36166:31;35981:223;:::o;36210:175::-;36350:27;36346:1;36338:6;36334:14;36327:51;36210:175;:::o;36391:231::-;36531:34;36527:1;36519:6;36515:14;36508:58;36600:14;36595:2;36587:6;36583:15;36576:39;36391:231;:::o;36628:172::-;36768:24;36764:1;36756:6;36752:14;36745:48;36628:172;:::o;36806:243::-;36946:34;36942:1;36934:6;36930:14;36923:58;37015:26;37010:2;37002:6;36998:15;36991:51;36806:243;:::o;37055:229::-;37195:34;37191:1;37183:6;37179:14;37172:58;37264:12;37259:2;37251:6;37247:15;37240:37;37055:229;:::o;37290:228::-;37430:34;37426:1;37418:6;37414:14;37407:58;37499:11;37494:2;37486:6;37482:15;37475:36;37290:228;:::o;37524:182::-;37664:34;37660:1;37652:6;37648:14;37641:58;37524:182;:::o;37712:231::-;37852:34;37848:1;37840:6;37836:14;37829:58;37921:14;37916:2;37908:6;37904:15;37897:39;37712:231;:::o;37949:182::-;38089:34;38085:1;38077:6;38073:14;38066:58;37949:182;:::o;38137:228::-;38277:34;38273:1;38265:6;38261:14;38254:58;38346:11;38341:2;38333:6;38329:15;38322:36;38137:228;:::o;38371:234::-;38511:34;38507:1;38499:6;38495:14;38488:58;38580:17;38575:2;38567:6;38563:15;38556:42;38371:234;:::o;38611:220::-;38751:34;38747:1;38739:6;38735:14;38728:58;38820:3;38815:2;38807:6;38803:15;38796:28;38611:220;:::o;38837:236::-;38977:34;38973:1;38965:6;38961:14;38954:58;39046:19;39041:2;39033:6;39029:15;39022:44;38837:236;:::o;39079:173::-;39219:25;39215:1;39207:6;39203:14;39196:49;39079:173;:::o;39258:172::-;39398:24;39394:1;39386:6;39382:14;39375:48;39258:172;:::o;39436:165::-;39576:17;39572:1;39564:6;39560:14;39553:41;39436:165;:::o;39607:122::-;39680:24;39698:5;39680:24;:::i;:::-;39673:5;39670:35;39660:63;;39719:1;39716;39709:12;39660:63;39607:122;:::o;39735:116::-;39805:21;39820:5;39805:21;:::i;:::-;39798:5;39795:32;39785:60;;39841:1;39838;39831:12;39785:60;39735:116;:::o;39857:120::-;39929:23;39946:5;39929:23;:::i;:::-;39922:5;39919:34;39909:62;;39967:1;39964;39957:12;39909:62;39857:120;:::o;39983:122::-;40056:24;40074:5;40056:24;:::i;:::-;40049:5;40046:35;40036:63;;40095:1;40092;40085:12;40036:63;39983:122;:::o

Swarm Source

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