ETH Price: $3,173.65 (-8.56%)
Gas: 2 Gwei

Token

Gen-I K-Noids (TKN)
 

Overview

Max Total Supply

0 TKN

Holders

440

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TKN
0x1e6d3934ecfe90f39f73d6b4ff80ab667fdd6735
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:
tkn

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-19
*/

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/security/Pausable.sol



pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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

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

        return super.tokenURI(tokenId);
    }

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

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

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

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



pragma solidity ^0.8.0;



/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}

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



pragma solidity ^0.8.0;

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

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

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

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

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

// File: contracts/TKN.sol


pragma solidity ^0.8.0;





contract tkn is ERC721, ERC721URIStorage, Pausable, Ownable {
    using Address for address;
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;

    uint256 public maxSupply = 10000;
    uint256 public price = 80000000000000000;
    bool public saleOpen = false;
    bool public presaleOpen = false;
    string public baseURI;

    mapping(address => uint256) public Whitelist;

    receive() external payable {}

    constructor() ERC721('Gen-I K-Noids', 'TKN') {
    }

    function mint(uint256 amount) public payable {
        require(!Address.isContract(msg.sender), "Contracts are not allowed to mint");
        require(msg.value >= price * amount, 'Not enough was paid');

        if (!saleOpen) {
            require(presaleOpen == true, 'Presale is not open');
            uint256 who = Whitelist[msg.sender];
            require(who > 0, 'This address is not whitelisted for the presale');
            require(amount <= who, 'This address is not allowed to mint that many during the presale');
            for (uint256 i = 0; i < amount; i++) 
                internalMint(msg.sender);
                Whitelist[msg.sender] = who - amount;
            return;
        }

        require(amount <= 10, 'Only 10 per transaction allowed');
        for (uint256 i = 0; i < amount; i++) internalMint(msg.sender);
    }

    function internalMint(address to) internal {
        require(_tokenIdCounter.current() < maxSupply, 'Supply depleted');
         _tokenIdCounter.increment();
        _safeMint(to, _tokenIdCounter.current());
    }

    function whitelistAddress(address[] memory who, uint256 amount) public onlyOwner {
        for (uint256 i = 0; i < who.length; i++) Whitelist[who[i]] = amount;
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(owner()).transfer(balance);
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function toggleSale() public onlyOwner {
        saleOpen = !saleOpen;
    }

    function togglePresale() public onlyOwner {
        presaleOpen = !presaleOpen;
    }

    function setBaseURI(string memory newBaseURI) public onlyOwner {
        baseURI = newBaseURI;
    }

    function setPrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
    }

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

    function safeMint(address to) public onlyOwner {
        internalMint(to);
    }

    // The following functions are overrides required by Solidity.
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override(ERC721) whenNotPaused {
        super._beforeTokenTransfer(from, to, tokenId);
    }

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Whitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"safeMint","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":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","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":[],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"who","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"whitelistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405261271060095567011c37937e080000600a556000600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055503480156200005957600080fd5b506040518060400160405280600d81526020017f47656e2d49204b2d4e6f696473000000000000000000000000000000000000008152506040518060400160405280600381526020017f544b4e00000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000de92919062000209565b508060019080519060200190620000f792919062000209565b5050506000600760006101000a81548160ff02191690831515021790555062000135620001296200013b60201b60201c565b6200014360201b60201c565b6200031e565b600033905090565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021790620002b9565b90600052602060002090601f0160209004810192826200023b576000855562000287565b82601f106200025657805160ff191683800117855562000287565b8280016001018555821562000287579182015b828111156200028657825182559160200191906001019062000269565b5b5090506200029691906200029a565b5090565b5b80821115620002b55760008160009055506001016200029b565b5090565b60006002820490506001821680620002d257607f821691505b60208210811415620002e957620002e8620002ef565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6142fe806200032e6000396000f3fe6080604052600436106101f25760003560e01c8063715018a61161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd14610661578063d5abeb011461069e578063e985e9c5146106c9578063eb73900b14610706578063f2fde38b14610743576101f9565b8063a0712d68146105c8578063a22cb465146105e4578063b88d4fde1461060d578063bee6348a14610636576101f9565b806391b7f5ed116100dc57806391b7f5ed1461051e57806395d89b411461054757806399288dbb14610572578063a035b1fe1461059d576101f9565b8063715018a6146104ae5780637d8966e4146104c55780638456cb59146104dc5780638da5cb5b146104f3576101f9565b806340d097c3116101855780636352211e116101545780636352211e146103e05780636b6384db1461041d5780636c0360eb1461044657806370a0823114610471576101f9565b806340d097c31461033a57806342842e0e1461036357806355f804b31461038c5780635c975abb146103b5576101f9565b806323b872dd116101c157806323b872dd146102cc57806334393743146102f55780633ccfd60b1461030c5780633f4ba83a14610323576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3576101f9565b366101f957005b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612f99565b61076c565b6040516102329190613a90565b60405180910390f35b34801561024757600080fd5b5061025061077e565b60405161025d9190613aab565b60405180910390f35b34801561027257600080fd5b5061028d6004803603810190610288919061302c565b610810565b60405161029a9190613a29565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190612f09565b610895565b005b3480156102d857600080fd5b506102f360048036038101906102ee9190612e03565b6109ad565b005b34801561030157600080fd5b5061030a610a0d565b005b34801561031857600080fd5b50610321610ab5565b005b34801561032f57600080fd5b50610338610b87565b005b34801561034657600080fd5b50610361600480360381019061035c9190612d9e565b610c0d565b005b34801561036f57600080fd5b5061038a60048036038101906103859190612e03565b610c95565b005b34801561039857600080fd5b506103b360048036038101906103ae9190612feb565b610cb5565b005b3480156103c157600080fd5b506103ca610d4b565b6040516103d79190613a90565b60405180910390f35b3480156103ec57600080fd5b506104076004803603810190610402919061302c565b610d62565b6040516104149190613a29565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f9190612f45565b610e14565b005b34801561045257600080fd5b5061045b610f38565b6040516104689190613aab565b60405180910390f35b34801561047d57600080fd5b5061049860048036038101906104939190612d9e565b610fc6565b6040516104a59190613e0d565b60405180910390f35b3480156104ba57600080fd5b506104c361107e565b005b3480156104d157600080fd5b506104da611106565b005b3480156104e857600080fd5b506104f16111ae565b005b3480156104ff57600080fd5b50610508611234565b6040516105159190613a29565b60405180910390f35b34801561052a57600080fd5b506105456004803603810190610540919061302c565b61125e565b005b34801561055357600080fd5b5061055c6112e4565b6040516105699190613aab565b60405180910390f35b34801561057e57600080fd5b50610587611376565b6040516105949190613a90565b60405180910390f35b3480156105a957600080fd5b506105b2611389565b6040516105bf9190613e0d565b60405180910390f35b6105e260048036038101906105dd919061302c565b61138f565b005b3480156105f057600080fd5b5061060b60048036038101906106069190612ecd565b611649565b005b34801561061957600080fd5b50610634600480360381019061062f9190612e52565b6117ca565b005b34801561064257600080fd5b5061064b61182c565b6040516106589190613a90565b60405180910390f35b34801561066d57600080fd5b506106886004803603810190610683919061302c565b61183f565b6040516106959190613aab565b60405180910390f35b3480156106aa57600080fd5b506106b3611851565b6040516106c09190613e0d565b60405180910390f35b3480156106d557600080fd5b506106f060048036038101906106eb9190612dc7565b611857565b6040516106fd9190613a90565b60405180910390f35b34801561071257600080fd5b5061072d60048036038101906107289190612d9e565b6118eb565b60405161073a9190613e0d565b60405180910390f35b34801561074f57600080fd5b5061076a60048036038101906107659190612d9e565b611903565b005b6000610777826119fb565b9050919050565b60606000805461078d906140f3565b80601f01602080910402602001604051908101604052809291908181526020018280546107b9906140f3565b80156108065780601f106107db57610100808354040283529160200191610806565b820191906000526020600020905b8154815290600101906020018083116107e957829003601f168201915b5050505050905090565b600061081b82611add565b61085a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085190613cad565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108a082610d62565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090890613d4d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610930611b49565b73ffffffffffffffffffffffffffffffffffffffff16148061095f575061095e81610959611b49565b611857565b5b61099e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099590613bed565b60405180910390fd5b6109a88383611b51565b505050565b6109be6109b8611b49565b82611c0a565b6109fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f490613d8d565b60405180910390fd5b610a08838383611ce8565b505050565b610a15611b49565b73ffffffffffffffffffffffffffffffffffffffff16610a33611234565b73ffffffffffffffffffffffffffffffffffffffff1614610a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8090613ccd565b60405180910390fd5b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b610abd611b49565b73ffffffffffffffffffffffffffffffffffffffff16610adb611234565b73ffffffffffffffffffffffffffffffffffffffff1614610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2890613ccd565b60405180910390fd5b6000479050610b3e611234565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b83573d6000803e3d6000fd5b5050565b610b8f611b49565b73ffffffffffffffffffffffffffffffffffffffff16610bad611234565b73ffffffffffffffffffffffffffffffffffffffff1614610c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfa90613ccd565b60405180910390fd5b610c0b611f44565b565b610c15611b49565b73ffffffffffffffffffffffffffffffffffffffff16610c33611234565b73ffffffffffffffffffffffffffffffffffffffff1614610c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8090613ccd565b60405180910390fd5b610c9281611fe6565b50565b610cb0838383604051806020016040528060008152506117ca565b505050565b610cbd611b49565b73ffffffffffffffffffffffffffffffffffffffff16610cdb611234565b73ffffffffffffffffffffffffffffffffffffffff1614610d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2890613ccd565b60405180910390fd5b80600c9080519060200190610d47929190612b2c565b5050565b6000600760009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0290613c2d565b60405180910390fd5b80915050919050565b610e1c611b49565b73ffffffffffffffffffffffffffffffffffffffff16610e3a611234565b73ffffffffffffffffffffffffffffffffffffffff1614610e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8790613ccd565b60405180910390fd5b60005b8251811015610f335781600d6000858481518110610eda577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080610f2b90614125565b915050610e93565b505050565b600c8054610f45906140f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610f71906140f3565b8015610fbe5780601f10610f9357610100808354040283529160200191610fbe565b820191906000526020600020905b815481529060010190602001808311610fa157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102e90613c0d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611086611b49565b73ffffffffffffffffffffffffffffffffffffffff166110a4611234565b73ffffffffffffffffffffffffffffffffffffffff16146110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190613ccd565b60405180910390fd5b6111046000612053565b565b61110e611b49565b73ffffffffffffffffffffffffffffffffffffffff1661112c611234565b73ffffffffffffffffffffffffffffffffffffffff1614611182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117990613ccd565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6111b6611b49565b73ffffffffffffffffffffffffffffffffffffffff166111d4611234565b73ffffffffffffffffffffffffffffffffffffffff161461122a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122190613ccd565b60405180910390fd5b611232612119565b565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611266611b49565b73ffffffffffffffffffffffffffffffffffffffff16611284611234565b73ffffffffffffffffffffffffffffffffffffffff16146112da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d190613ccd565b60405180910390fd5b80600a8190555050565b6060600180546112f3906140f3565b80601f016020809104026020016040519081016040528092919081815260200182805461131f906140f3565b801561136c5780601f106113415761010080835404028352916020019161136c565b820191906000526020600020905b81548152906001019060200180831161134f57829003601f168201915b5050505050905090565b600b60009054906101000a900460ff1681565b600a5481565b611398336121bc565b156113d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cf90613ded565b60405180910390fd5b80600a546113e69190613faf565b341015611428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141f90613bcd565b60405180910390fd5b600b60009054906101000a900460ff166115d95760011515600b60019054906101000a900460ff16151514611492576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148990613d2d565b60405180910390fd5b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008111611519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151090613dcd565b60405180910390fd5b8082111561155c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155390613dad565b60405180910390fd5b60005b828110156115835761157033611fe6565b808061157b90614125565b91505061155f565b5081816115909190614009565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050611646565b600a81111561161d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161490613c4d565b60405180910390fd5b60005b818110156116445761163133611fe6565b808061163c90614125565b915050611620565b505b50565b611651611b49565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b690613b6d565b60405180910390fd5b80600560006116cc611b49565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611779611b49565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117be9190613a90565b60405180910390a35050565b6117db6117d5611b49565b83611c0a565b61181a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181190613d8d565b60405180910390fd5b611826848484846121cf565b50505050565b600b60019054906101000a900460ff1681565b606061184a8261222b565b9050919050565b60095481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d6020528060005260406000206000915090505481565b61190b611b49565b73ffffffffffffffffffffffffffffffffffffffff16611929611234565b73ffffffffffffffffffffffffffffffffffffffff161461197f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197690613ccd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e690613b0d565b60405180910390fd5b6119f881612053565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ac657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ad65750611ad58261237d565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611bc483610d62565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c1582611add565b611c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4b90613b8d565b60405180910390fd5b6000611c5f83610d62565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611cce57508373ffffffffffffffffffffffffffffffffffffffff16611cb684610810565b73ffffffffffffffffffffffffffffffffffffffff16145b80611cdf5750611cde8185611857565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d0882610d62565b73ffffffffffffffffffffffffffffffffffffffff1614611d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5590613ced565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc590613b4d565b60405180910390fd5b611dd98383836123e7565b611de4600082611b51565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e349190614009565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e8b9190613f28565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611f4c610d4b565b611f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8290613acd565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611fcf611b49565b604051611fdc9190613a29565b60405180910390a1565b600954611ff3600861243f565b10612033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202a90613d6d565b60405180910390fd5b61203d600861244d565b6120508161204b600861243f565b612463565b50565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612121610d4b565b15612161576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215890613bad565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586121a5611b49565b6040516121b29190613a29565b60405180910390a1565b600080823b905060008111915050919050565b6121da848484611ce8565b6121e684848484612481565b612225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221c90613aed565b60405180910390fd5b50505050565b606061223682611add565b612275576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226c90613c8d565b60405180910390fd5b6000600660008481526020019081526020016000208054612295906140f3565b80601f01602080910402602001604051908101604052809291908181526020018280546122c1906140f3565b801561230e5780601f106122e35761010080835404028352916020019161230e565b820191906000526020600020905b8154815290600101906020018083116122f157829003601f168201915b50505050509050600061231f612618565b9050600081511415612335578192505050612378565b60008251111561236a578082604051602001612352929190613a05565b60405160208183030381529060405292505050612378565b612373846126aa565b925050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6123ef610d4b565b1561242f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242690613bad565b60405180910390fd5b61243a838383612751565b505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b61247d828260405180602001604052806000815250612756565b5050565b60006124a28473ffffffffffffffffffffffffffffffffffffffff166121bc565b1561260b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124cb611b49565b8786866040518563ffffffff1660e01b81526004016124ed9493929190613a44565b602060405180830381600087803b15801561250757600080fd5b505af192505050801561253857506040513d601f19601f820116820180604052508101906125359190612fc2565b60015b6125bb573d8060008114612568576040519150601f19603f3d011682016040523d82523d6000602084013e61256d565b606091505b506000815114156125b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125aa90613aed565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612610565b600190505b949350505050565b6060600c8054612627906140f3565b80601f0160208091040260200160405190810160405280929190818152602001828054612653906140f3565b80156126a05780601f10612675576101008083540402835291602001916126a0565b820191906000526020600020905b81548152906001019060200180831161268357829003601f168201915b5050505050905090565b60606126b582611add565b6126f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126eb90613d0d565b60405180910390fd5b60006126fe612618565b9050600081511161271e5760405180602001604052806000815250612749565b80612728846127b1565b604051602001612739929190613a05565b6040516020818303038152906040525b915050919050565b505050565b612760838361295e565b61276d6000848484612481565b6127ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a390613aed565b60405180910390fd5b505050565b606060008214156127f9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612959565b600082905060005b6000821461282b57808061281490614125565b915050600a826128249190613f7e565b9150612801565b60008167ffffffffffffffff81111561286d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561289f5781602001600182028036833780820191505090505b5090505b60008514612952576001826128b89190614009565b9150600a856128c7919061416e565b60306128d39190613f28565b60f81b81838151811061290f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561294b9190613f7e565b94506128a3565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c590613c6d565b60405180910390fd5b6129d781611add565b15612a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0e90613b2d565b60405180910390fd5b612a23600083836123e7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a739190613f28565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612b38906140f3565b90600052602060002090601f016020900481019282612b5a5760008555612ba1565b82601f10612b7357805160ff1916838001178555612ba1565b82800160010185558215612ba1579182015b82811115612ba0578251825591602001919060010190612b85565b5b509050612bae9190612bb2565b5090565b5b80821115612bcb576000816000905550600101612bb3565b5090565b6000612be2612bdd84613e59565b613e28565b90508083825260208201905082856020860282011115612c0157600080fd5b60005b85811015612c315781612c178882612cb7565b845260208401935060208301925050600181019050612c04565b5050509392505050565b6000612c4e612c4984613e85565b613e28565b905082815260208101848484011115612c6657600080fd5b612c718482856140b1565b509392505050565b6000612c8c612c8784613eb5565b613e28565b905082815260208101848484011115612ca457600080fd5b612caf8482856140b1565b509392505050565b600081359050612cc68161426c565b92915050565b600082601f830112612cdd57600080fd5b8135612ced848260208601612bcf565b91505092915050565b600081359050612d0581614283565b92915050565b600081359050612d1a8161429a565b92915050565b600081519050612d2f8161429a565b92915050565b600082601f830112612d4657600080fd5b8135612d56848260208601612c3b565b91505092915050565b600082601f830112612d7057600080fd5b8135612d80848260208601612c79565b91505092915050565b600081359050612d98816142b1565b92915050565b600060208284031215612db057600080fd5b6000612dbe84828501612cb7565b91505092915050565b60008060408385031215612dda57600080fd5b6000612de885828601612cb7565b9250506020612df985828601612cb7565b9150509250929050565b600080600060608486031215612e1857600080fd5b6000612e2686828701612cb7565b9350506020612e3786828701612cb7565b9250506040612e4886828701612d89565b9150509250925092565b60008060008060808587031215612e6857600080fd5b6000612e7687828801612cb7565b9450506020612e8787828801612cb7565b9350506040612e9887828801612d89565b925050606085013567ffffffffffffffff811115612eb557600080fd5b612ec187828801612d35565b91505092959194509250565b60008060408385031215612ee057600080fd5b6000612eee85828601612cb7565b9250506020612eff85828601612cf6565b9150509250929050565b60008060408385031215612f1c57600080fd5b6000612f2a85828601612cb7565b9250506020612f3b85828601612d89565b9150509250929050565b60008060408385031215612f5857600080fd5b600083013567ffffffffffffffff811115612f7257600080fd5b612f7e85828601612ccc565b9250506020612f8f85828601612d89565b9150509250929050565b600060208284031215612fab57600080fd5b6000612fb984828501612d0b565b91505092915050565b600060208284031215612fd457600080fd5b6000612fe284828501612d20565b91505092915050565b600060208284031215612ffd57600080fd5b600082013567ffffffffffffffff81111561301757600080fd5b61302384828501612d5f565b91505092915050565b60006020828403121561303e57600080fd5b600061304c84828501612d89565b91505092915050565b61305e8161403d565b82525050565b61306d8161404f565b82525050565b600061307e82613ee5565b6130888185613efb565b93506130988185602086016140c0565b6130a18161425b565b840191505092915050565b60006130b782613ef0565b6130c18185613f0c565b93506130d18185602086016140c0565b6130da8161425b565b840191505092915050565b60006130f082613ef0565b6130fa8185613f1d565b935061310a8185602086016140c0565b80840191505092915050565b6000613123601483613f0c565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b6000613163603283613f0c565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006131c9602683613f0c565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061322f601c83613f0c565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061326f602483613f0c565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006132d5601983613f0c565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613315602c83613f0c565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061337b601083613f0c565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b60006133bb601383613f0c565b91507f4e6f7420656e6f756768207761732070616964000000000000000000000000006000830152602082019050919050565b60006133fb603883613f0c565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613461602a83613f0c565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006134c7602983613f0c565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061352d601f83613f0c565b91507f4f6e6c7920313020706572207472616e73616374696f6e20616c6c6f776564006000830152602082019050919050565b600061356d602083613f0c565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006135ad603183613f0c565b91507f45524337323155524953746f726167653a2055524920717565727920666f722060008301527f6e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006020830152604082019050919050565b6000613613602c83613f0c565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613679602083613f0c565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006136b9602983613f0c565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061371f602f83613f0c565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613785601383613f0c565b91507f50726573616c65206973206e6f74206f70656e000000000000000000000000006000830152602082019050919050565b60006137c5602183613f0c565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061382b600f83613f0c565b91507f537570706c79206465706c6574656400000000000000000000000000000000006000830152602082019050919050565b600061386b603183613f0c565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006138d1604083613f0c565b91507f546869732061646472657373206973206e6f7420616c6c6f77656420746f206d60008301527f696e742074686174206d616e7920647572696e67207468652070726573616c656020830152604082019050919050565b6000613937602f83613f0c565b91507f546869732061646472657373206973206e6f742077686974656c69737465642060008301527f666f72207468652070726573616c6500000000000000000000000000000000006020830152604082019050919050565b600061399d602183613f0c565b91507f436f6e74726163747320617265206e6f7420616c6c6f77656420746f206d696e60008301527f74000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6139ff816140a7565b82525050565b6000613a1182856130e5565b9150613a1d82846130e5565b91508190509392505050565b6000602082019050613a3e6000830184613055565b92915050565b6000608082019050613a596000830187613055565b613a666020830186613055565b613a7360408301856139f6565b8181036060830152613a858184613073565b905095945050505050565b6000602082019050613aa56000830184613064565b92915050565b60006020820190508181036000830152613ac581846130ac565b905092915050565b60006020820190508181036000830152613ae681613116565b9050919050565b60006020820190508181036000830152613b0681613156565b9050919050565b60006020820190508181036000830152613b26816131bc565b9050919050565b60006020820190508181036000830152613b4681613222565b9050919050565b60006020820190508181036000830152613b6681613262565b9050919050565b60006020820190508181036000830152613b86816132c8565b9050919050565b60006020820190508181036000830152613ba681613308565b9050919050565b60006020820190508181036000830152613bc68161336e565b9050919050565b60006020820190508181036000830152613be6816133ae565b9050919050565b60006020820190508181036000830152613c06816133ee565b9050919050565b60006020820190508181036000830152613c2681613454565b9050919050565b60006020820190508181036000830152613c46816134ba565b9050919050565b60006020820190508181036000830152613c6681613520565b9050919050565b60006020820190508181036000830152613c8681613560565b9050919050565b60006020820190508181036000830152613ca6816135a0565b9050919050565b60006020820190508181036000830152613cc681613606565b9050919050565b60006020820190508181036000830152613ce68161366c565b9050919050565b60006020820190508181036000830152613d06816136ac565b9050919050565b60006020820190508181036000830152613d2681613712565b9050919050565b60006020820190508181036000830152613d4681613778565b9050919050565b60006020820190508181036000830152613d66816137b8565b9050919050565b60006020820190508181036000830152613d868161381e565b9050919050565b60006020820190508181036000830152613da68161385e565b9050919050565b60006020820190508181036000830152613dc6816138c4565b9050919050565b60006020820190508181036000830152613de68161392a565b9050919050565b60006020820190508181036000830152613e0681613990565b9050919050565b6000602082019050613e2260008301846139f6565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613e4f57613e4e61422c565b5b8060405250919050565b600067ffffffffffffffff821115613e7457613e7361422c565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613ea057613e9f61422c565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613ed057613ecf61422c565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f33826140a7565b9150613f3e836140a7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f7357613f7261419f565b5b828201905092915050565b6000613f89826140a7565b9150613f94836140a7565b925082613fa457613fa36141ce565b5b828204905092915050565b6000613fba826140a7565b9150613fc5836140a7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ffe57613ffd61419f565b5b828202905092915050565b6000614014826140a7565b915061401f836140a7565b9250828210156140325761403161419f565b5b828203905092915050565b600061404882614087565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156140de5780820151818401526020810190506140c3565b838111156140ed576000848401525b50505050565b6000600282049050600182168061410b57607f821691505b6020821081141561411f5761411e6141fd565b5b50919050565b6000614130826140a7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141635761416261419f565b5b600182019050919050565b6000614179826140a7565b9150614184836140a7565b925082614194576141936141ce565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6142758161403d565b811461428057600080fd5b50565b61428c8161404f565b811461429757600080fd5b50565b6142a38161405b565b81146142ae57600080fd5b50565b6142ba816140a7565b81146142c557600080fd5b5056fea2646970667358221220bf6ce226febb624c58ad9b979b7402713bdef83a4c0a43a50e800de800253a6564736f6c63430008000033

Deployed Bytecode

0x6080604052600436106101f25760003560e01c8063715018a61161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd14610661578063d5abeb011461069e578063e985e9c5146106c9578063eb73900b14610706578063f2fde38b14610743576101f9565b8063a0712d68146105c8578063a22cb465146105e4578063b88d4fde1461060d578063bee6348a14610636576101f9565b806391b7f5ed116100dc57806391b7f5ed1461051e57806395d89b411461054757806399288dbb14610572578063a035b1fe1461059d576101f9565b8063715018a6146104ae5780637d8966e4146104c55780638456cb59146104dc5780638da5cb5b146104f3576101f9565b806340d097c3116101855780636352211e116101545780636352211e146103e05780636b6384db1461041d5780636c0360eb1461044657806370a0823114610471576101f9565b806340d097c31461033a57806342842e0e1461036357806355f804b31461038c5780635c975abb146103b5576101f9565b806323b872dd116101c157806323b872dd146102cc57806334393743146102f55780633ccfd60b1461030c5780633f4ba83a14610323576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3576101f9565b366101f957005b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612f99565b61076c565b6040516102329190613a90565b60405180910390f35b34801561024757600080fd5b5061025061077e565b60405161025d9190613aab565b60405180910390f35b34801561027257600080fd5b5061028d6004803603810190610288919061302c565b610810565b60405161029a9190613a29565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190612f09565b610895565b005b3480156102d857600080fd5b506102f360048036038101906102ee9190612e03565b6109ad565b005b34801561030157600080fd5b5061030a610a0d565b005b34801561031857600080fd5b50610321610ab5565b005b34801561032f57600080fd5b50610338610b87565b005b34801561034657600080fd5b50610361600480360381019061035c9190612d9e565b610c0d565b005b34801561036f57600080fd5b5061038a60048036038101906103859190612e03565b610c95565b005b34801561039857600080fd5b506103b360048036038101906103ae9190612feb565b610cb5565b005b3480156103c157600080fd5b506103ca610d4b565b6040516103d79190613a90565b60405180910390f35b3480156103ec57600080fd5b506104076004803603810190610402919061302c565b610d62565b6040516104149190613a29565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f9190612f45565b610e14565b005b34801561045257600080fd5b5061045b610f38565b6040516104689190613aab565b60405180910390f35b34801561047d57600080fd5b5061049860048036038101906104939190612d9e565b610fc6565b6040516104a59190613e0d565b60405180910390f35b3480156104ba57600080fd5b506104c361107e565b005b3480156104d157600080fd5b506104da611106565b005b3480156104e857600080fd5b506104f16111ae565b005b3480156104ff57600080fd5b50610508611234565b6040516105159190613a29565b60405180910390f35b34801561052a57600080fd5b506105456004803603810190610540919061302c565b61125e565b005b34801561055357600080fd5b5061055c6112e4565b6040516105699190613aab565b60405180910390f35b34801561057e57600080fd5b50610587611376565b6040516105949190613a90565b60405180910390f35b3480156105a957600080fd5b506105b2611389565b6040516105bf9190613e0d565b60405180910390f35b6105e260048036038101906105dd919061302c565b61138f565b005b3480156105f057600080fd5b5061060b60048036038101906106069190612ecd565b611649565b005b34801561061957600080fd5b50610634600480360381019061062f9190612e52565b6117ca565b005b34801561064257600080fd5b5061064b61182c565b6040516106589190613a90565b60405180910390f35b34801561066d57600080fd5b506106886004803603810190610683919061302c565b61183f565b6040516106959190613aab565b60405180910390f35b3480156106aa57600080fd5b506106b3611851565b6040516106c09190613e0d565b60405180910390f35b3480156106d557600080fd5b506106f060048036038101906106eb9190612dc7565b611857565b6040516106fd9190613a90565b60405180910390f35b34801561071257600080fd5b5061072d60048036038101906107289190612d9e565b6118eb565b60405161073a9190613e0d565b60405180910390f35b34801561074f57600080fd5b5061076a60048036038101906107659190612d9e565b611903565b005b6000610777826119fb565b9050919050565b60606000805461078d906140f3565b80601f01602080910402602001604051908101604052809291908181526020018280546107b9906140f3565b80156108065780601f106107db57610100808354040283529160200191610806565b820191906000526020600020905b8154815290600101906020018083116107e957829003601f168201915b5050505050905090565b600061081b82611add565b61085a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085190613cad565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108a082610d62565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090890613d4d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610930611b49565b73ffffffffffffffffffffffffffffffffffffffff16148061095f575061095e81610959611b49565b611857565b5b61099e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099590613bed565b60405180910390fd5b6109a88383611b51565b505050565b6109be6109b8611b49565b82611c0a565b6109fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f490613d8d565b60405180910390fd5b610a08838383611ce8565b505050565b610a15611b49565b73ffffffffffffffffffffffffffffffffffffffff16610a33611234565b73ffffffffffffffffffffffffffffffffffffffff1614610a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8090613ccd565b60405180910390fd5b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b610abd611b49565b73ffffffffffffffffffffffffffffffffffffffff16610adb611234565b73ffffffffffffffffffffffffffffffffffffffff1614610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2890613ccd565b60405180910390fd5b6000479050610b3e611234565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b83573d6000803e3d6000fd5b5050565b610b8f611b49565b73ffffffffffffffffffffffffffffffffffffffff16610bad611234565b73ffffffffffffffffffffffffffffffffffffffff1614610c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfa90613ccd565b60405180910390fd5b610c0b611f44565b565b610c15611b49565b73ffffffffffffffffffffffffffffffffffffffff16610c33611234565b73ffffffffffffffffffffffffffffffffffffffff1614610c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8090613ccd565b60405180910390fd5b610c9281611fe6565b50565b610cb0838383604051806020016040528060008152506117ca565b505050565b610cbd611b49565b73ffffffffffffffffffffffffffffffffffffffff16610cdb611234565b73ffffffffffffffffffffffffffffffffffffffff1614610d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2890613ccd565b60405180910390fd5b80600c9080519060200190610d47929190612b2c565b5050565b6000600760009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0290613c2d565b60405180910390fd5b80915050919050565b610e1c611b49565b73ffffffffffffffffffffffffffffffffffffffff16610e3a611234565b73ffffffffffffffffffffffffffffffffffffffff1614610e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8790613ccd565b60405180910390fd5b60005b8251811015610f335781600d6000858481518110610eda577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080610f2b90614125565b915050610e93565b505050565b600c8054610f45906140f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610f71906140f3565b8015610fbe5780601f10610f9357610100808354040283529160200191610fbe565b820191906000526020600020905b815481529060010190602001808311610fa157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102e90613c0d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611086611b49565b73ffffffffffffffffffffffffffffffffffffffff166110a4611234565b73ffffffffffffffffffffffffffffffffffffffff16146110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190613ccd565b60405180910390fd5b6111046000612053565b565b61110e611b49565b73ffffffffffffffffffffffffffffffffffffffff1661112c611234565b73ffffffffffffffffffffffffffffffffffffffff1614611182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117990613ccd565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6111b6611b49565b73ffffffffffffffffffffffffffffffffffffffff166111d4611234565b73ffffffffffffffffffffffffffffffffffffffff161461122a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122190613ccd565b60405180910390fd5b611232612119565b565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611266611b49565b73ffffffffffffffffffffffffffffffffffffffff16611284611234565b73ffffffffffffffffffffffffffffffffffffffff16146112da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d190613ccd565b60405180910390fd5b80600a8190555050565b6060600180546112f3906140f3565b80601f016020809104026020016040519081016040528092919081815260200182805461131f906140f3565b801561136c5780601f106113415761010080835404028352916020019161136c565b820191906000526020600020905b81548152906001019060200180831161134f57829003601f168201915b5050505050905090565b600b60009054906101000a900460ff1681565b600a5481565b611398336121bc565b156113d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cf90613ded565b60405180910390fd5b80600a546113e69190613faf565b341015611428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141f90613bcd565b60405180910390fd5b600b60009054906101000a900460ff166115d95760011515600b60019054906101000a900460ff16151514611492576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148990613d2d565b60405180910390fd5b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008111611519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151090613dcd565b60405180910390fd5b8082111561155c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155390613dad565b60405180910390fd5b60005b828110156115835761157033611fe6565b808061157b90614125565b91505061155f565b5081816115909190614009565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050611646565b600a81111561161d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161490613c4d565b60405180910390fd5b60005b818110156116445761163133611fe6565b808061163c90614125565b915050611620565b505b50565b611651611b49565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b690613b6d565b60405180910390fd5b80600560006116cc611b49565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611779611b49565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117be9190613a90565b60405180910390a35050565b6117db6117d5611b49565b83611c0a565b61181a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181190613d8d565b60405180910390fd5b611826848484846121cf565b50505050565b600b60019054906101000a900460ff1681565b606061184a8261222b565b9050919050565b60095481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d6020528060005260406000206000915090505481565b61190b611b49565b73ffffffffffffffffffffffffffffffffffffffff16611929611234565b73ffffffffffffffffffffffffffffffffffffffff161461197f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197690613ccd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e690613b0d565b60405180910390fd5b6119f881612053565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ac657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ad65750611ad58261237d565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611bc483610d62565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c1582611add565b611c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4b90613b8d565b60405180910390fd5b6000611c5f83610d62565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611cce57508373ffffffffffffffffffffffffffffffffffffffff16611cb684610810565b73ffffffffffffffffffffffffffffffffffffffff16145b80611cdf5750611cde8185611857565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d0882610d62565b73ffffffffffffffffffffffffffffffffffffffff1614611d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5590613ced565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc590613b4d565b60405180910390fd5b611dd98383836123e7565b611de4600082611b51565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e349190614009565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e8b9190613f28565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611f4c610d4b565b611f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8290613acd565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611fcf611b49565b604051611fdc9190613a29565b60405180910390a1565b600954611ff3600861243f565b10612033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202a90613d6d565b60405180910390fd5b61203d600861244d565b6120508161204b600861243f565b612463565b50565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612121610d4b565b15612161576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215890613bad565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586121a5611b49565b6040516121b29190613a29565b60405180910390a1565b600080823b905060008111915050919050565b6121da848484611ce8565b6121e684848484612481565b612225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221c90613aed565b60405180910390fd5b50505050565b606061223682611add565b612275576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226c90613c8d565b60405180910390fd5b6000600660008481526020019081526020016000208054612295906140f3565b80601f01602080910402602001604051908101604052809291908181526020018280546122c1906140f3565b801561230e5780601f106122e35761010080835404028352916020019161230e565b820191906000526020600020905b8154815290600101906020018083116122f157829003601f168201915b50505050509050600061231f612618565b9050600081511415612335578192505050612378565b60008251111561236a578082604051602001612352929190613a05565b60405160208183030381529060405292505050612378565b612373846126aa565b925050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6123ef610d4b565b1561242f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242690613bad565b60405180910390fd5b61243a838383612751565b505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b61247d828260405180602001604052806000815250612756565b5050565b60006124a28473ffffffffffffffffffffffffffffffffffffffff166121bc565b1561260b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124cb611b49565b8786866040518563ffffffff1660e01b81526004016124ed9493929190613a44565b602060405180830381600087803b15801561250757600080fd5b505af192505050801561253857506040513d601f19601f820116820180604052508101906125359190612fc2565b60015b6125bb573d8060008114612568576040519150601f19603f3d011682016040523d82523d6000602084013e61256d565b606091505b506000815114156125b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125aa90613aed565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612610565b600190505b949350505050565b6060600c8054612627906140f3565b80601f0160208091040260200160405190810160405280929190818152602001828054612653906140f3565b80156126a05780601f10612675576101008083540402835291602001916126a0565b820191906000526020600020905b81548152906001019060200180831161268357829003601f168201915b5050505050905090565b60606126b582611add565b6126f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126eb90613d0d565b60405180910390fd5b60006126fe612618565b9050600081511161271e5760405180602001604052806000815250612749565b80612728846127b1565b604051602001612739929190613a05565b6040516020818303038152906040525b915050919050565b505050565b612760838361295e565b61276d6000848484612481565b6127ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a390613aed565b60405180910390fd5b505050565b606060008214156127f9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612959565b600082905060005b6000821461282b57808061281490614125565b915050600a826128249190613f7e565b9150612801565b60008167ffffffffffffffff81111561286d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561289f5781602001600182028036833780820191505090505b5090505b60008514612952576001826128b89190614009565b9150600a856128c7919061416e565b60306128d39190613f28565b60f81b81838151811061290f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561294b9190613f7e565b94506128a3565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c590613c6d565b60405180910390fd5b6129d781611add565b15612a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0e90613b2d565b60405180910390fd5b612a23600083836123e7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a739190613f28565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612b38906140f3565b90600052602060002090601f016020900481019282612b5a5760008555612ba1565b82601f10612b7357805160ff1916838001178555612ba1565b82800160010185558215612ba1579182015b82811115612ba0578251825591602001919060010190612b85565b5b509050612bae9190612bb2565b5090565b5b80821115612bcb576000816000905550600101612bb3565b5090565b6000612be2612bdd84613e59565b613e28565b90508083825260208201905082856020860282011115612c0157600080fd5b60005b85811015612c315781612c178882612cb7565b845260208401935060208301925050600181019050612c04565b5050509392505050565b6000612c4e612c4984613e85565b613e28565b905082815260208101848484011115612c6657600080fd5b612c718482856140b1565b509392505050565b6000612c8c612c8784613eb5565b613e28565b905082815260208101848484011115612ca457600080fd5b612caf8482856140b1565b509392505050565b600081359050612cc68161426c565b92915050565b600082601f830112612cdd57600080fd5b8135612ced848260208601612bcf565b91505092915050565b600081359050612d0581614283565b92915050565b600081359050612d1a8161429a565b92915050565b600081519050612d2f8161429a565b92915050565b600082601f830112612d4657600080fd5b8135612d56848260208601612c3b565b91505092915050565b600082601f830112612d7057600080fd5b8135612d80848260208601612c79565b91505092915050565b600081359050612d98816142b1565b92915050565b600060208284031215612db057600080fd5b6000612dbe84828501612cb7565b91505092915050565b60008060408385031215612dda57600080fd5b6000612de885828601612cb7565b9250506020612df985828601612cb7565b9150509250929050565b600080600060608486031215612e1857600080fd5b6000612e2686828701612cb7565b9350506020612e3786828701612cb7565b9250506040612e4886828701612d89565b9150509250925092565b60008060008060808587031215612e6857600080fd5b6000612e7687828801612cb7565b9450506020612e8787828801612cb7565b9350506040612e9887828801612d89565b925050606085013567ffffffffffffffff811115612eb557600080fd5b612ec187828801612d35565b91505092959194509250565b60008060408385031215612ee057600080fd5b6000612eee85828601612cb7565b9250506020612eff85828601612cf6565b9150509250929050565b60008060408385031215612f1c57600080fd5b6000612f2a85828601612cb7565b9250506020612f3b85828601612d89565b9150509250929050565b60008060408385031215612f5857600080fd5b600083013567ffffffffffffffff811115612f7257600080fd5b612f7e85828601612ccc565b9250506020612f8f85828601612d89565b9150509250929050565b600060208284031215612fab57600080fd5b6000612fb984828501612d0b565b91505092915050565b600060208284031215612fd457600080fd5b6000612fe284828501612d20565b91505092915050565b600060208284031215612ffd57600080fd5b600082013567ffffffffffffffff81111561301757600080fd5b61302384828501612d5f565b91505092915050565b60006020828403121561303e57600080fd5b600061304c84828501612d89565b91505092915050565b61305e8161403d565b82525050565b61306d8161404f565b82525050565b600061307e82613ee5565b6130888185613efb565b93506130988185602086016140c0565b6130a18161425b565b840191505092915050565b60006130b782613ef0565b6130c18185613f0c565b93506130d18185602086016140c0565b6130da8161425b565b840191505092915050565b60006130f082613ef0565b6130fa8185613f1d565b935061310a8185602086016140c0565b80840191505092915050565b6000613123601483613f0c565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b6000613163603283613f0c565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006131c9602683613f0c565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061322f601c83613f0c565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061326f602483613f0c565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006132d5601983613f0c565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613315602c83613f0c565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061337b601083613f0c565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b60006133bb601383613f0c565b91507f4e6f7420656e6f756768207761732070616964000000000000000000000000006000830152602082019050919050565b60006133fb603883613f0c565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613461602a83613f0c565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006134c7602983613f0c565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061352d601f83613f0c565b91507f4f6e6c7920313020706572207472616e73616374696f6e20616c6c6f776564006000830152602082019050919050565b600061356d602083613f0c565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006135ad603183613f0c565b91507f45524337323155524953746f726167653a2055524920717565727920666f722060008301527f6e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006020830152604082019050919050565b6000613613602c83613f0c565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613679602083613f0c565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006136b9602983613f0c565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061371f602f83613f0c565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613785601383613f0c565b91507f50726573616c65206973206e6f74206f70656e000000000000000000000000006000830152602082019050919050565b60006137c5602183613f0c565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061382b600f83613f0c565b91507f537570706c79206465706c6574656400000000000000000000000000000000006000830152602082019050919050565b600061386b603183613f0c565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006138d1604083613f0c565b91507f546869732061646472657373206973206e6f7420616c6c6f77656420746f206d60008301527f696e742074686174206d616e7920647572696e67207468652070726573616c656020830152604082019050919050565b6000613937602f83613f0c565b91507f546869732061646472657373206973206e6f742077686974656c69737465642060008301527f666f72207468652070726573616c6500000000000000000000000000000000006020830152604082019050919050565b600061399d602183613f0c565b91507f436f6e74726163747320617265206e6f7420616c6c6f77656420746f206d696e60008301527f74000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6139ff816140a7565b82525050565b6000613a1182856130e5565b9150613a1d82846130e5565b91508190509392505050565b6000602082019050613a3e6000830184613055565b92915050565b6000608082019050613a596000830187613055565b613a666020830186613055565b613a7360408301856139f6565b8181036060830152613a858184613073565b905095945050505050565b6000602082019050613aa56000830184613064565b92915050565b60006020820190508181036000830152613ac581846130ac565b905092915050565b60006020820190508181036000830152613ae681613116565b9050919050565b60006020820190508181036000830152613b0681613156565b9050919050565b60006020820190508181036000830152613b26816131bc565b9050919050565b60006020820190508181036000830152613b4681613222565b9050919050565b60006020820190508181036000830152613b6681613262565b9050919050565b60006020820190508181036000830152613b86816132c8565b9050919050565b60006020820190508181036000830152613ba681613308565b9050919050565b60006020820190508181036000830152613bc68161336e565b9050919050565b60006020820190508181036000830152613be6816133ae565b9050919050565b60006020820190508181036000830152613c06816133ee565b9050919050565b60006020820190508181036000830152613c2681613454565b9050919050565b60006020820190508181036000830152613c46816134ba565b9050919050565b60006020820190508181036000830152613c6681613520565b9050919050565b60006020820190508181036000830152613c8681613560565b9050919050565b60006020820190508181036000830152613ca6816135a0565b9050919050565b60006020820190508181036000830152613cc681613606565b9050919050565b60006020820190508181036000830152613ce68161366c565b9050919050565b60006020820190508181036000830152613d06816136ac565b9050919050565b60006020820190508181036000830152613d2681613712565b9050919050565b60006020820190508181036000830152613d4681613778565b9050919050565b60006020820190508181036000830152613d66816137b8565b9050919050565b60006020820190508181036000830152613d868161381e565b9050919050565b60006020820190508181036000830152613da68161385e565b9050919050565b60006020820190508181036000830152613dc6816138c4565b9050919050565b60006020820190508181036000830152613de68161392a565b9050919050565b60006020820190508181036000830152613e0681613990565b9050919050565b6000602082019050613e2260008301846139f6565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613e4f57613e4e61422c565b5b8060405250919050565b600067ffffffffffffffff821115613e7457613e7361422c565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613ea057613e9f61422c565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613ed057613ecf61422c565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f33826140a7565b9150613f3e836140a7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f7357613f7261419f565b5b828201905092915050565b6000613f89826140a7565b9150613f94836140a7565b925082613fa457613fa36141ce565b5b828204905092915050565b6000613fba826140a7565b9150613fc5836140a7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ffe57613ffd61419f565b5b828202905092915050565b6000614014826140a7565b915061401f836140a7565b9250828210156140325761403161419f565b5b828203905092915050565b600061404882614087565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156140de5780820151818401526020810190506140c3565b838111156140ed576000848401525b50505050565b6000600282049050600182168061410b57607f821691505b6020821081141561411f5761411e6141fd565b5b50919050565b6000614130826140a7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141635761416261419f565b5b600182019050919050565b6000614179826140a7565b9150614184836140a7565b925082614194576141936141ce565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6142758161403d565b811461428057600080fd5b50565b61428c8161404f565b811461429757600080fd5b50565b6142a38161405b565b81146142ae57600080fd5b50565b6142ba816140a7565b81146142c557600080fd5b5056fea2646970667358221220bf6ce226febb624c58ad9b979b7402713bdef83a4c0a43a50e800de800253a6564736f6c63430008000033

Deployed Bytecode Sourcemap

41588:3408:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44840:153;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26128:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27687:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27210:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28577:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43768:87;;;;;;;;;;;;;:::i;:::-;;43392:140;;;;;;;;;;;;;:::i;:::-;;43609:65;;;;;;;;;;;;;:::i;:::-;;44177:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28987:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43863:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6261:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25822:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43217:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41939:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25552:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4558:94;;;;;;;;;;;;;:::i;:::-;;43682:78;;;;;;;;;;;;;:::i;:::-;;43540:61;;;;;;;;;;;;;:::i;:::-;;3907:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43973:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26297:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41866:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41819:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42120:864;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27980:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29243:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41901:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44677:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41780:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28346:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41969:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4807:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44840:153;44925:4;44949:36;44973:11;44949:23;:36::i;:::-;44942:43;;44840:153;;;:::o;26128:100::-;26182:13;26215:5;26208:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26128:100;:::o;27687:221::-;27763:7;27791:16;27799:7;27791;:16::i;:::-;27783:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27876:15;:24;27892:7;27876:24;;;;;;;;;;;;;;;;;;;;;27869:31;;27687:221;;;:::o;27210:411::-;27291:13;27307:23;27322:7;27307:14;:23::i;:::-;27291:39;;27355:5;27349:11;;:2;:11;;;;27341:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27449:5;27433:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27458:37;27475:5;27482:12;:10;:12::i;:::-;27458:16;:37::i;:::-;27433:62;27411:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27592:21;27601:2;27605:7;27592:8;:21::i;:::-;27210:411;;;:::o;28577:339::-;28772:41;28791:12;:10;:12::i;:::-;28805:7;28772:18;:41::i;:::-;28764:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28880:28;28890:4;28896:2;28900:7;28880:9;:28::i;:::-;28577:339;;;:::o;43768:87::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43836:11:::1;;;;;;;;;;;43835:12;43821:11;;:26;;;;;;;;;;;;;;;;;;43768:87::o:0;43392:140::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43440:15:::1;43458:21;43440:39;;43498:7;:5;:7::i;:::-;43490:25;;:34;43516:7;43490:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;4198:1;43392:140::o:0;43609:65::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43656:10:::1;:8;:10::i;:::-;43609:65::o:0;44177:82::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44235:16:::1;44248:2;44235:12;:16::i;:::-;44177:82:::0;:::o;28987:185::-;29125:39;29142:4;29148:2;29152:7;29125:39;;;;;;;;;;;;:16;:39::i;:::-;28987:185;;;:::o;43863:102::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43947:10:::1;43937:7;:20;;;;;;;;;;;;:::i;:::-;;43863:102:::0;:::o;6261:86::-;6308:4;6332:7;;;;;;;;;;;6325:14;;6261:86;:::o;25822:239::-;25894:7;25914:13;25930:7;:16;25938:7;25930:16;;;;;;;;;;;;;;;;;;;;;25914:32;;25982:1;25965:19;;:5;:19;;;;25957:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26048:5;26041:12;;;25822:239;;;:::o;43217:167::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43314:9:::1;43309:67;43333:3;:10;43329:1;:14;43309:67;;;43370:6;43350:9;:17;43360:3;43364:1;43360:6;;;;;;;;;;;;;;;;;;;;;;43350:17;;;;;;;;;;;;;;;:26;;;;43345:3;;;;;:::i;:::-;;;;43309:67;;;;43217:167:::0;;:::o;41939:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25552:208::-;25624:7;25669:1;25652:19;;:5;:19;;;;25644:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;25736:9;:16;25746:5;25736:16;;;;;;;;;;;;;;;;25729:23;;25552:208;;;:::o;4558:94::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4623:21:::1;4641:1;4623:9;:21::i;:::-;4558:94::o:0;43682:78::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43744:8:::1;;;;;;;;;;;43743:9;43732:8;;:20;;;;;;;;;;;;;;;;;;43682:78::o:0;43540:61::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43585:8:::1;:6;:8::i;:::-;43540:61::o:0;3907:87::-;3953:7;3980:6;;;;;;;;;;;3973:13;;3907:87;:::o;43973:88::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44045:8:::1;44037:5;:16;;;;43973:88:::0;:::o;26297:104::-;26353:13;26386:7;26379:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26297:104;:::o;41866:28::-;;;;;;;;;;;;;:::o;41819:40::-;;;;:::o;42120:864::-;42185:30;42204:10;42185:18;:30::i;:::-;42184:31;42176:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;42293:6;42285:5;;:14;;;;:::i;:::-;42272:9;:27;;42264:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;42341:8;;;;;;;;;;;42336:500;;42389:4;42374:19;;:11;;;;;;;;;;;:19;;;42366:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;42432:11;42446:9;:21;42456:10;42446:21;;;;;;;;;;;;;;;;42432:35;;42496:1;42490:3;:7;42482:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;42582:3;42572:6;:13;;42564:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;42674:9;42669:79;42693:6;42689:1;:10;42669:79;;;42724:24;42737:10;42724:12;:24::i;:::-;42701:3;;;;;:::i;:::-;;;;42669:79;;;;42797:6;42791:3;:12;;;;:::i;:::-;42767:9;:21;42777:10;42767:21;;;;;;;;;;;;;;;:36;;;;42818:7;;;42336:500;42866:2;42856:6;:12;;42848:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;42920:9;42915:61;42939:6;42935:1;:10;42915:61;;;42952:24;42965:10;42952:12;:24::i;:::-;42947:3;;;;;:::i;:::-;;;;42915:61;;;;42120:864;;:::o;27980:295::-;28095:12;:10;:12::i;:::-;28083:24;;:8;:24;;;;28075:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;28195:8;28150:18;:32;28169:12;:10;:12::i;:::-;28150:32;;;;;;;;;;;;;;;:42;28183:8;28150:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;28248:8;28219:48;;28234:12;:10;:12::i;:::-;28219:48;;;28258:8;28219:48;;;;;;:::i;:::-;;;;;;;;27980:295;;:::o;29243:328::-;29418:41;29437:12;:10;:12::i;:::-;29451:7;29418:18;:41::i;:::-;29410:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29524:39;29538:4;29544:2;29548:7;29557:5;29524:13;:39::i;:::-;29243:328;;;;:::o;41901:31::-;;;;;;;;;;;;;:::o;44677:155::-;44768:13;44801:23;44816:7;44801:14;:23::i;:::-;44794:30;;44677:155;;;:::o;41780:32::-;;;;:::o;28346:164::-;28443:4;28467:18;:25;28486:5;28467:25;;;;;;;;;;;;;;;:35;28493:8;28467:35;;;;;;;;;;;;;;;;;;;;;;;;;28460:42;;28346:164;;;;:::o;41969:44::-;;;;;;;;;;;;;;;;;:::o;4807:192::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4916:1:::1;4896:22;;:8;:22;;;;4888:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4972:19;4982:8;4972:9;:19::i;:::-;4807:192:::0;:::o;25183:305::-;25285:4;25337:25;25322:40;;;:11;:40;;;;:105;;;;25394:33;25379:48;;;:11;:48;;;;25322:105;:158;;;;25444:36;25468:11;25444:23;:36::i;:::-;25322:158;25302:178;;25183:305;;;:::o;31081:127::-;31146:4;31198:1;31170:30;;:7;:16;31178:7;31170:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31163:37;;31081:127;;;:::o;2695:98::-;2748:7;2775:10;2768:17;;2695:98;:::o;35063:174::-;35165:2;35138:15;:24;35154:7;35138:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35221:7;35217:2;35183:46;;35192:23;35207:7;35192:14;:23::i;:::-;35183:46;;;;;;;;;;;;35063:174;;:::o;31375:348::-;31468:4;31493:16;31501:7;31493;:16::i;:::-;31485:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31569:13;31585:23;31600:7;31585:14;:23::i;:::-;31569:39;;31638:5;31627:16;;:7;:16;;;:51;;;;31671:7;31647:31;;:20;31659:7;31647:11;:20::i;:::-;:31;;;31627:51;:87;;;;31682:32;31699:5;31706:7;31682:16;:32::i;:::-;31627:87;31619:96;;;31375:348;;;;:::o;34367:578::-;34526:4;34499:31;;:23;34514:7;34499:14;:23::i;:::-;:31;;;34491:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;34609:1;34595:16;;:2;:16;;;;34587:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34665:39;34686:4;34692:2;34696:7;34665:20;:39::i;:::-;34769:29;34786:1;34790:7;34769:8;:29::i;:::-;34830:1;34811:9;:15;34821:4;34811:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34859:1;34842:9;:13;34852:2;34842:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34890:2;34871:7;:16;34879:7;34871:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34929:7;34925:2;34910:27;;34919:4;34910:27;;;;;;;;;;;;34367:578;;;:::o;7320:120::-;6864:8;:6;:8::i;:::-;6856:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;7389:5:::1;7379:7;;:15;;;;;;;;;;;;;;;;;;7410:22;7419:12;:10;:12::i;:::-;7410:22;;;;;;:::i;:::-;;;;;;;;7320:120::o:0;42992:217::-;43082:9;;43054:25;:15;:23;:25::i;:::-;:37;43046:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;43123:27;:15;:25;:27::i;:::-;43161:40;43171:2;43175:25;:15;:23;:25::i;:::-;43161:9;:40::i;:::-;42992:217;:::o;5007:173::-;5063:16;5082:6;;;;;;;;;;;5063:25;;5108:8;5099:6;;:17;;;;;;;;;;;;;;;;;;5163:8;5132:40;;5153:8;5132:40;;;;;;;;;;;;5007:173;;:::o;7061:118::-;6587:8;:6;:8::i;:::-;6586:9;6578:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;7131:4:::1;7121:7;;:14;;;;;;;;;;;;;;;;;;7151:20;7158:12;:10;:12::i;:::-;7151:20;;;;;;:::i;:::-;;;;;;;;7061:118::o:0;8213:387::-;8273:4;8481:12;8548:7;8536:20;8528:28;;8591:1;8584:4;:8;8577:15;;;8213:387;;;:::o;30453:315::-;30610:28;30620:4;30626:2;30630:7;30610:9;:28::i;:::-;30657:48;30680:4;30686:2;30690:7;30699:5;30657:22;:48::i;:::-;30649:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30453:315;;;;:::o;37736:679::-;37809:13;37843:16;37851:7;37843;:16::i;:::-;37835:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;37926:23;37952:10;:19;37963:7;37952:19;;;;;;;;;;;37926:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37982:18;38003:10;:8;:10::i;:::-;37982:31;;38111:1;38095:4;38089:18;:23;38085:72;;;38136:9;38129:16;;;;;;38085:72;38287:1;38267:9;38261:23;:27;38257:108;;;38336:4;38342:9;38319:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38305:48;;;;;;38257:108;38384:23;38399:7;38384:14;:23::i;:::-;38377:30;;;;37736:679;;;;:::o;18153:157::-;18238:4;18277:25;18262:40;;;:11;:40;;;;18255:47;;18153:157;;;:::o;44335:211::-;6587:8;:6;:8::i;:::-;6586:9;6578:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;44493:45:::1;44520:4;44526:2;44530:7;44493:26;:45::i;:::-;44335:211:::0;;;:::o;40928:114::-;40993:7;41020;:14;;;41013:21;;40928:114;;;:::o;41050:127::-;41157:1;41139:7;:14;;;:19;;;;;;;;;;;41050:127;:::o;32065:110::-;32141:26;32151:2;32155:7;32141:26;;;;;;;;;;;;:9;:26::i;:::-;32065:110;;:::o;35802:799::-;35957:4;35978:15;:2;:13;;;:15::i;:::-;35974:620;;;36030:2;36014:36;;;36051:12;:10;:12::i;:::-;36065:4;36071:7;36080:5;36014:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36010:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36273:1;36256:6;:13;:18;36252:272;;;36299:60;;;;;;;;;;:::i;:::-;;;;;;;;36252:272;36474:6;36468:13;36459:6;36455:2;36451:15;36444:38;36010:529;36147:41;;;36137:51;;;:6;:51;;;;36130:58;;;;;35974:620;36578:4;36571:11;;35802:799;;;;;;;:::o;44069:100::-;44121:13;44154:7;44147:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44069:100;:::o;26472:334::-;26545:13;26579:16;26587:7;26579;:16::i;:::-;26571:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;26660:21;26684:10;:8;:10::i;:::-;26660:34;;26736:1;26718:7;26712:21;:25;:86;;;;;;;;;;;;;;;;;26764:7;26773:18;:7;:16;:18::i;:::-;26747:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26712:86;26705:93;;;26472:334;;;:::o;37173:126::-;;;;:::o;32402:321::-;32532:18;32538:2;32542:7;32532:5;:18::i;:::-;32583:54;32614:1;32618:2;32622:7;32631:5;32583:22;:54::i;:::-;32561:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32402:321;;;:::o;311:723::-;367:13;597:1;588:5;:10;584:53;;;615:10;;;;;;;;;;;;;;;;;;;;;584:53;647:12;662:5;647:20;;678:14;703:78;718:1;710:4;:9;703:78;;736:8;;;;;:::i;:::-;;;;767:2;759:10;;;;;:::i;:::-;;;703:78;;;791:19;823:6;813:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;791:39;;841:154;857:1;848:5;:10;841:154;;885:1;875:11;;;;;:::i;:::-;;;952:2;944:5;:10;;;;:::i;:::-;931:2;:24;;;;:::i;:::-;918:39;;901:6;908;901:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;841:154;;;1019:6;1005:21;;;;;311:723;;;;:::o;33059:382::-;33153:1;33139:16;;:2;:16;;;;33131:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33212:16;33220:7;33212;:16::i;:::-;33211:17;33203:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33274:45;33303:1;33307:2;33311:7;33274:20;:45::i;:::-;33349:1;33332:9;:13;33342:2;33332:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33380:2;33361:7;:16;33369:7;33361:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33425:7;33421:2;33400:33;;33417:1;33400:33;;;;;;;;;;;;33059:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:622:1:-;;145:80;160:64;217:6;160:64;:::i;:::-;145:80;:::i;:::-;136:89;;245:5;273:6;266:5;259:21;299:4;292:5;288:16;281:23;;324:6;374:3;366:4;358:6;354:17;349:3;345:27;342:36;339:2;;;391:1;388;381:12;339:2;419:1;404:236;429:6;426:1;423:13;404:236;;;496:3;524:37;557:3;545:10;524:37;:::i;:::-;519:3;512:50;591:4;586:3;582:14;575:21;;625:4;620:3;616:14;609:21;;464:176;451:1;448;444:9;439:14;;404:236;;;408:14;126:520;;;;;;;:::o;652:342::-;;754:64;769:48;810:6;769:48;:::i;:::-;754:64;:::i;:::-;745:73;;841:6;834:5;827:21;879:4;872:5;868:16;917:3;908:6;903:3;899:16;896:25;893:2;;;934:1;931;924:12;893:2;947:41;981:6;976:3;971;947:41;:::i;:::-;735:259;;;;;;:::o;1000:344::-;;1103:65;1118:49;1160:6;1118:49;:::i;:::-;1103:65;:::i;:::-;1094:74;;1191:6;1184:5;1177:21;1229:4;1222:5;1218:16;1267:3;1258:6;1253:3;1249:16;1246:25;1243:2;;;1284:1;1281;1274:12;1243:2;1297:41;1331:6;1326:3;1321;1297:41;:::i;:::-;1084:260;;;;;;:::o;1350:139::-;;1434:6;1421:20;1412:29;;1450:33;1477:5;1450:33;:::i;:::-;1402:87;;;;:::o;1512:303::-;;1632:3;1625:4;1617:6;1613:17;1609:27;1599:2;;1650:1;1647;1640:12;1599:2;1690:6;1677:20;1715:94;1805:3;1797:6;1790:4;1782:6;1778:17;1715:94;:::i;:::-;1706:103;;1589:226;;;;;:::o;1821:133::-;;1902:6;1889:20;1880:29;;1918:30;1942:5;1918:30;:::i;:::-;1870:84;;;;:::o;1960:137::-;;2043:6;2030:20;2021:29;;2059:32;2085:5;2059:32;:::i;:::-;2011:86;;;;:::o;2103:141::-;;2190:6;2184:13;2175:22;;2206:32;2232:5;2206:32;:::i;:::-;2165:79;;;;:::o;2263:271::-;;2367:3;2360:4;2352:6;2348:17;2344:27;2334:2;;2385:1;2382;2375:12;2334:2;2425:6;2412:20;2450:78;2524:3;2516:6;2509:4;2501:6;2497:17;2450:78;:::i;:::-;2441:87;;2324:210;;;;;:::o;2554:273::-;;2659:3;2652:4;2644:6;2640:17;2636:27;2626:2;;2677:1;2674;2667:12;2626:2;2717:6;2704:20;2742:79;2817:3;2809:6;2802:4;2794:6;2790:17;2742:79;:::i;:::-;2733:88;;2616:211;;;;;:::o;2833:139::-;;2917:6;2904:20;2895:29;;2933:33;2960:5;2933:33;:::i;:::-;2885:87;;;;:::o;2978:262::-;;3086:2;3074:9;3065:7;3061:23;3057:32;3054:2;;;3102:1;3099;3092:12;3054:2;3145:1;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3116:117;3044:196;;;;:::o;3246:407::-;;;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3387:1;3384;3377:12;3339:2;3430:1;3455:53;3500:7;3491:6;3480:9;3476:22;3455:53;:::i;:::-;3445:63;;3401:117;3557:2;3583:53;3628:7;3619:6;3608:9;3604:22;3583:53;:::i;:::-;3573:63;;3528:118;3329:324;;;;;:::o;3659:552::-;;;;3801:2;3789:9;3780:7;3776:23;3772:32;3769:2;;;3817:1;3814;3807:12;3769:2;3860:1;3885:53;3930:7;3921:6;3910:9;3906:22;3885:53;:::i;:::-;3875:63;;3831:117;3987:2;4013:53;4058:7;4049:6;4038:9;4034:22;4013:53;:::i;:::-;4003:63;;3958:118;4115:2;4141:53;4186:7;4177:6;4166:9;4162:22;4141:53;:::i;:::-;4131:63;;4086:118;3759:452;;;;;:::o;4217:809::-;;;;;4385:3;4373:9;4364:7;4360:23;4356:33;4353:2;;;4402:1;4399;4392:12;4353:2;4445:1;4470:53;4515:7;4506:6;4495:9;4491:22;4470:53;:::i;:::-;4460:63;;4416:117;4572:2;4598:53;4643:7;4634:6;4623:9;4619:22;4598:53;:::i;:::-;4588:63;;4543:118;4700:2;4726:53;4771:7;4762:6;4751:9;4747:22;4726:53;:::i;:::-;4716:63;;4671:118;4856:2;4845:9;4841:18;4828:32;4887:18;4879:6;4876:30;4873:2;;;4919:1;4916;4909:12;4873:2;4947:62;5001:7;4992:6;4981:9;4977:22;4947:62;:::i;:::-;4937:72;;4799:220;4343:683;;;;;;;:::o;5032:401::-;;;5154:2;5142:9;5133:7;5129:23;5125:32;5122:2;;;5170:1;5167;5160:12;5122:2;5213:1;5238:53;5283:7;5274:6;5263:9;5259:22;5238:53;:::i;:::-;5228:63;;5184:117;5340:2;5366:50;5408:7;5399:6;5388:9;5384:22;5366:50;:::i;:::-;5356:60;;5311:115;5112:321;;;;;:::o;5439:407::-;;;5564:2;5552:9;5543:7;5539:23;5535:32;5532:2;;;5580:1;5577;5570:12;5532:2;5623:1;5648:53;5693:7;5684:6;5673:9;5669:22;5648:53;:::i;:::-;5638:63;;5594:117;5750:2;5776:53;5821:7;5812:6;5801:9;5797:22;5776:53;:::i;:::-;5766:63;;5721:118;5522:324;;;;;:::o;5852:550::-;;;6002:2;5990:9;5981:7;5977:23;5973:32;5970:2;;;6018:1;6015;6008:12;5970:2;6089:1;6078:9;6074:17;6061:31;6119:18;6111:6;6108:30;6105:2;;;6151:1;6148;6141:12;6105:2;6179:78;6249:7;6240:6;6229:9;6225:22;6179:78;:::i;:::-;6169:88;;6032:235;6306:2;6332:53;6377:7;6368:6;6357:9;6353:22;6332:53;:::i;:::-;6322:63;;6277:118;5960:442;;;;;:::o;6408:260::-;;6515:2;6503:9;6494:7;6490:23;6486:32;6483:2;;;6531:1;6528;6521:12;6483:2;6574:1;6599:52;6643:7;6634:6;6623:9;6619:22;6599:52;:::i;:::-;6589:62;;6545:116;6473:195;;;;:::o;6674:282::-;;6792:2;6780:9;6771:7;6767:23;6763:32;6760:2;;;6808:1;6805;6798:12;6760:2;6851:1;6876:63;6931:7;6922:6;6911:9;6907:22;6876:63;:::i;:::-;6866:73;;6822:127;6750:206;;;;:::o;6962:375::-;;7080:2;7068:9;7059:7;7055:23;7051:32;7048:2;;;7096:1;7093;7086:12;7048:2;7167:1;7156:9;7152:17;7139:31;7197:18;7189:6;7186:30;7183:2;;;7229:1;7226;7219:12;7183:2;7257:63;7312:7;7303:6;7292:9;7288:22;7257:63;:::i;:::-;7247:73;;7110:220;7038:299;;;;:::o;7343:262::-;;7451:2;7439:9;7430:7;7426:23;7422:32;7419:2;;;7467:1;7464;7457:12;7419:2;7510:1;7535:53;7580:7;7571:6;7560:9;7556:22;7535:53;:::i;:::-;7525:63;;7481:117;7409:196;;;;:::o;7611:118::-;7698:24;7716:5;7698:24;:::i;:::-;7693:3;7686:37;7676:53;;:::o;7735:109::-;7816:21;7831:5;7816:21;:::i;:::-;7811:3;7804:34;7794:50;;:::o;7850:360::-;;7964:38;7996:5;7964:38;:::i;:::-;8018:70;8081:6;8076:3;8018:70;:::i;:::-;8011:77;;8097:52;8142:6;8137:3;8130:4;8123:5;8119:16;8097:52;:::i;:::-;8174:29;8196:6;8174:29;:::i;:::-;8169:3;8165:39;8158:46;;7940:270;;;;;:::o;8216:364::-;;8332:39;8365:5;8332:39;:::i;:::-;8387:71;8451:6;8446:3;8387:71;:::i;:::-;8380:78;;8467:52;8512:6;8507:3;8500:4;8493:5;8489:16;8467:52;:::i;:::-;8544:29;8566:6;8544:29;:::i;:::-;8539:3;8535:39;8528:46;;8308:272;;;;;:::o;8586:377::-;;8720:39;8753:5;8720:39;:::i;:::-;8775:89;8857:6;8852:3;8775:89;:::i;:::-;8768:96;;8873:52;8918:6;8913:3;8906:4;8899:5;8895:16;8873:52;:::i;:::-;8950:6;8945:3;8941:16;8934:23;;8696:267;;;;;:::o;8969:318::-;;9132:67;9196:2;9191:3;9132:67;:::i;:::-;9125:74;;9229:22;9225:1;9220:3;9216:11;9209:43;9278:2;9273:3;9269:12;9262:19;;9115:172;;;:::o;9293:382::-;;9456:67;9520:2;9515:3;9456:67;:::i;:::-;9449:74;;9553:34;9549:1;9544:3;9540:11;9533:55;9619:20;9614:2;9609:3;9605:12;9598:42;9666:2;9661:3;9657:12;9650:19;;9439:236;;;:::o;9681:370::-;;9844:67;9908:2;9903:3;9844:67;:::i;:::-;9837:74;;9941:34;9937:1;9932:3;9928:11;9921:55;10007:8;10002:2;9997:3;9993:12;9986:30;10042:2;10037:3;10033:12;10026:19;;9827:224;;;:::o;10057:326::-;;10220:67;10284:2;10279:3;10220:67;:::i;:::-;10213:74;;10317:30;10313:1;10308:3;10304:11;10297:51;10374:2;10369:3;10365:12;10358:19;;10203:180;;;:::o;10389:368::-;;10552:67;10616:2;10611:3;10552:67;:::i;:::-;10545:74;;10649:34;10645:1;10640:3;10636:11;10629:55;10715:6;10710:2;10705:3;10701:12;10694:28;10748:2;10743:3;10739:12;10732:19;;10535:222;;;:::o;10763:323::-;;10926:67;10990:2;10985:3;10926:67;:::i;:::-;10919:74;;11023:27;11019:1;11014:3;11010:11;11003:48;11077:2;11072:3;11068:12;11061:19;;10909:177;;;:::o;11092:376::-;;11255:67;11319:2;11314:3;11255:67;:::i;:::-;11248:74;;11352:34;11348:1;11343:3;11339:11;11332:55;11418:14;11413:2;11408:3;11404:12;11397:36;11459:2;11454:3;11450:12;11443:19;;11238:230;;;:::o;11474:314::-;;11637:67;11701:2;11696:3;11637:67;:::i;:::-;11630:74;;11734:18;11730:1;11725:3;11721:11;11714:39;11779:2;11774:3;11770:12;11763:19;;11620:168;;;:::o;11794:317::-;;11957:67;12021:2;12016:3;11957:67;:::i;:::-;11950:74;;12054:21;12050:1;12045:3;12041:11;12034:42;12102:2;12097:3;12093:12;12086:19;;11940:171;;;:::o;12117:388::-;;12280:67;12344:2;12339:3;12280:67;:::i;:::-;12273:74;;12377:34;12373:1;12368:3;12364:11;12357:55;12443:26;12438:2;12433:3;12429:12;12422:48;12496:2;12491:3;12487:12;12480:19;;12263:242;;;:::o;12511:374::-;;12674:67;12738:2;12733:3;12674:67;:::i;:::-;12667:74;;12771:34;12767:1;12762:3;12758:11;12751:55;12837:12;12832:2;12827:3;12823:12;12816:34;12876:2;12871:3;12867:12;12860:19;;12657:228;;;:::o;12891:373::-;;13054:67;13118:2;13113:3;13054:67;:::i;:::-;13047:74;;13151:34;13147:1;13142:3;13138:11;13131:55;13217:11;13212:2;13207:3;13203:12;13196:33;13255:2;13250:3;13246:12;13239:19;;13037:227;;;:::o;13270:329::-;;13433:67;13497:2;13492:3;13433:67;:::i;:::-;13426:74;;13530:33;13526:1;13521:3;13517:11;13510:54;13590:2;13585:3;13581:12;13574:19;;13416:183;;;:::o;13605:330::-;;13768:67;13832:2;13827:3;13768:67;:::i;:::-;13761:74;;13865:34;13861:1;13856:3;13852:11;13845:55;13926:2;13921:3;13917:12;13910:19;;13751:184;;;:::o;13941:381::-;;14104:67;14168:2;14163:3;14104:67;:::i;:::-;14097:74;;14201:34;14197:1;14192:3;14188:11;14181:55;14267:19;14262:2;14257:3;14253:12;14246:41;14313:2;14308:3;14304:12;14297:19;;14087:235;;;:::o;14328:376::-;;14491:67;14555:2;14550:3;14491:67;:::i;:::-;14484:74;;14588:34;14584:1;14579:3;14575:11;14568:55;14654:14;14649:2;14644:3;14640:12;14633:36;14695:2;14690:3;14686:12;14679:19;;14474:230;;;:::o;14710:330::-;;14873:67;14937:2;14932:3;14873:67;:::i;:::-;14866:74;;14970:34;14966:1;14961:3;14957:11;14950:55;15031:2;15026:3;15022:12;15015:19;;14856:184;;;:::o;15046:373::-;;15209:67;15273:2;15268:3;15209:67;:::i;:::-;15202:74;;15306:34;15302:1;15297:3;15293:11;15286:55;15372:11;15367:2;15362:3;15358:12;15351:33;15410:2;15405:3;15401:12;15394:19;;15192:227;;;:::o;15425:379::-;;15588:67;15652:2;15647:3;15588:67;:::i;:::-;15581:74;;15685:34;15681:1;15676:3;15672:11;15665:55;15751:17;15746:2;15741:3;15737:12;15730:39;15795:2;15790:3;15786:12;15779:19;;15571:233;;;:::o;15810:317::-;;15973:67;16037:2;16032:3;15973:67;:::i;:::-;15966:74;;16070:21;16066:1;16061:3;16057:11;16050:42;16118:2;16113:3;16109:12;16102:19;;15956:171;;;:::o;16133:365::-;;16296:67;16360:2;16355:3;16296:67;:::i;:::-;16289:74;;16393:34;16389:1;16384:3;16380:11;16373:55;16459:3;16454:2;16449:3;16445:12;16438:25;16489:2;16484:3;16480:12;16473:19;;16279:219;;;:::o;16504:313::-;;16667:67;16731:2;16726:3;16667:67;:::i;:::-;16660:74;;16764:17;16760:1;16755:3;16751:11;16744:38;16808:2;16803:3;16799:12;16792:19;;16650:167;;;:::o;16823:381::-;;16986:67;17050:2;17045:3;16986:67;:::i;:::-;16979:74;;17083:34;17079:1;17074:3;17070:11;17063:55;17149:19;17144:2;17139:3;17135:12;17128:41;17195:2;17190:3;17186:12;17179:19;;16969:235;;;:::o;17210:396::-;;17373:67;17437:2;17432:3;17373:67;:::i;:::-;17366:74;;17470:34;17466:1;17461:3;17457:11;17450:55;17536:34;17531:2;17526:3;17522:12;17515:56;17597:2;17592:3;17588:12;17581:19;;17356:250;;;:::o;17612:379::-;;17775:67;17839:2;17834:3;17775:67;:::i;:::-;17768:74;;17872:34;17868:1;17863:3;17859:11;17852:55;17938:17;17933:2;17928:3;17924:12;17917:39;17982:2;17977:3;17973:12;17966:19;;17758:233;;;:::o;17997:365::-;;18160:67;18224:2;18219:3;18160:67;:::i;:::-;18153:74;;18257:34;18253:1;18248:3;18244:11;18237:55;18323:3;18318:2;18313:3;18309:12;18302:25;18353:2;18348:3;18344:12;18337:19;;18143:219;;;:::o;18368:118::-;18455:24;18473:5;18455:24;:::i;:::-;18450:3;18443:37;18433:53;;:::o;18492:435::-;;18694:95;18785:3;18776:6;18694:95;:::i;:::-;18687:102;;18806:95;18897:3;18888:6;18806:95;:::i;:::-;18799:102;;18918:3;18911:10;;18676:251;;;;;:::o;18933:222::-;;19064:2;19053:9;19049:18;19041:26;;19077:71;19145:1;19134:9;19130:17;19121:6;19077:71;:::i;:::-;19031:124;;;;:::o;19161:640::-;;19394:3;19383:9;19379:19;19371:27;;19408:71;19476:1;19465:9;19461:17;19452:6;19408:71;:::i;:::-;19489:72;19557:2;19546:9;19542:18;19533:6;19489:72;:::i;:::-;19571;19639:2;19628:9;19624:18;19615:6;19571:72;:::i;:::-;19690:9;19684:4;19680:20;19675:2;19664:9;19660:18;19653:48;19718:76;19789:4;19780:6;19718:76;:::i;:::-;19710:84;;19361:440;;;;;;;:::o;19807:210::-;;19932:2;19921:9;19917:18;19909:26;;19945:65;20007:1;19996:9;19992:17;19983:6;19945:65;:::i;:::-;19899:118;;;;:::o;20023:313::-;;20174:2;20163:9;20159:18;20151:26;;20223:9;20217:4;20213:20;20209:1;20198:9;20194:17;20187:47;20251:78;20324:4;20315:6;20251:78;:::i;:::-;20243:86;;20141:195;;;;:::o;20342:419::-;;20546:2;20535:9;20531:18;20523:26;;20595:9;20589:4;20585:20;20581:1;20570:9;20566:17;20559:47;20623:131;20749:4;20623:131;:::i;:::-;20615:139;;20513:248;;;:::o;20767:419::-;;20971:2;20960:9;20956:18;20948:26;;21020:9;21014:4;21010:20;21006:1;20995:9;20991:17;20984:47;21048:131;21174:4;21048:131;:::i;:::-;21040:139;;20938:248;;;:::o;21192:419::-;;21396:2;21385:9;21381:18;21373:26;;21445:9;21439:4;21435:20;21431:1;21420:9;21416:17;21409:47;21473:131;21599:4;21473:131;:::i;:::-;21465:139;;21363:248;;;:::o;21617:419::-;;21821:2;21810:9;21806:18;21798:26;;21870:9;21864:4;21860:20;21856:1;21845:9;21841:17;21834:47;21898:131;22024:4;21898:131;:::i;:::-;21890:139;;21788:248;;;:::o;22042:419::-;;22246:2;22235:9;22231:18;22223:26;;22295:9;22289:4;22285:20;22281:1;22270:9;22266:17;22259:47;22323:131;22449:4;22323:131;:::i;:::-;22315:139;;22213:248;;;:::o;22467:419::-;;22671:2;22660:9;22656:18;22648:26;;22720:9;22714:4;22710:20;22706:1;22695:9;22691:17;22684:47;22748:131;22874:4;22748:131;:::i;:::-;22740:139;;22638:248;;;:::o;22892:419::-;;23096:2;23085:9;23081:18;23073:26;;23145:9;23139:4;23135:20;23131:1;23120:9;23116:17;23109:47;23173:131;23299:4;23173:131;:::i;:::-;23165:139;;23063:248;;;:::o;23317:419::-;;23521:2;23510:9;23506:18;23498:26;;23570:9;23564:4;23560:20;23556:1;23545:9;23541:17;23534:47;23598:131;23724:4;23598:131;:::i;:::-;23590:139;;23488:248;;;:::o;23742:419::-;;23946:2;23935:9;23931:18;23923:26;;23995:9;23989:4;23985:20;23981:1;23970:9;23966:17;23959:47;24023:131;24149:4;24023:131;:::i;:::-;24015:139;;23913:248;;;:::o;24167:419::-;;24371:2;24360:9;24356:18;24348:26;;24420:9;24414:4;24410:20;24406:1;24395:9;24391:17;24384:47;24448:131;24574:4;24448:131;:::i;:::-;24440:139;;24338:248;;;:::o;24592:419::-;;24796:2;24785:9;24781:18;24773:26;;24845:9;24839:4;24835:20;24831:1;24820:9;24816:17;24809:47;24873:131;24999:4;24873:131;:::i;:::-;24865:139;;24763:248;;;:::o;25017:419::-;;25221:2;25210:9;25206:18;25198:26;;25270:9;25264:4;25260:20;25256:1;25245:9;25241:17;25234:47;25298:131;25424:4;25298:131;:::i;:::-;25290:139;;25188:248;;;:::o;25442:419::-;;25646:2;25635:9;25631:18;25623:26;;25695:9;25689:4;25685:20;25681:1;25670:9;25666:17;25659:47;25723:131;25849:4;25723:131;:::i;:::-;25715:139;;25613:248;;;:::o;25867:419::-;;26071:2;26060:9;26056:18;26048:26;;26120:9;26114:4;26110:20;26106:1;26095:9;26091:17;26084:47;26148:131;26274:4;26148:131;:::i;:::-;26140:139;;26038:248;;;:::o;26292:419::-;;26496:2;26485:9;26481:18;26473:26;;26545:9;26539:4;26535:20;26531:1;26520:9;26516:17;26509:47;26573:131;26699:4;26573:131;:::i;:::-;26565:139;;26463:248;;;:::o;26717:419::-;;26921:2;26910:9;26906:18;26898:26;;26970:9;26964:4;26960:20;26956:1;26945:9;26941:17;26934:47;26998:131;27124:4;26998:131;:::i;:::-;26990:139;;26888:248;;;:::o;27142:419::-;;27346:2;27335:9;27331:18;27323:26;;27395:9;27389:4;27385:20;27381:1;27370:9;27366:17;27359:47;27423:131;27549:4;27423:131;:::i;:::-;27415:139;;27313:248;;;:::o;27567:419::-;;27771:2;27760:9;27756:18;27748:26;;27820:9;27814:4;27810:20;27806:1;27795:9;27791:17;27784:47;27848:131;27974:4;27848:131;:::i;:::-;27840:139;;27738:248;;;:::o;27992:419::-;;28196:2;28185:9;28181:18;28173:26;;28245:9;28239:4;28235:20;28231:1;28220:9;28216:17;28209:47;28273:131;28399:4;28273:131;:::i;:::-;28265:139;;28163:248;;;:::o;28417:419::-;;28621:2;28610:9;28606:18;28598:26;;28670:9;28664:4;28660:20;28656:1;28645:9;28641:17;28634:47;28698:131;28824:4;28698:131;:::i;:::-;28690:139;;28588:248;;;:::o;28842:419::-;;29046:2;29035:9;29031:18;29023:26;;29095:9;29089:4;29085:20;29081:1;29070:9;29066:17;29059:47;29123:131;29249:4;29123:131;:::i;:::-;29115:139;;29013:248;;;:::o;29267:419::-;;29471:2;29460:9;29456:18;29448:26;;29520:9;29514:4;29510:20;29506:1;29495:9;29491:17;29484:47;29548:131;29674:4;29548:131;:::i;:::-;29540:139;;29438:248;;;:::o;29692:419::-;;29896:2;29885:9;29881:18;29873:26;;29945:9;29939:4;29935:20;29931:1;29920:9;29916:17;29909:47;29973:131;30099:4;29973:131;:::i;:::-;29965:139;;29863:248;;;:::o;30117:419::-;;30321:2;30310:9;30306:18;30298:26;;30370:9;30364:4;30360:20;30356:1;30345:9;30341:17;30334:47;30398:131;30524:4;30398:131;:::i;:::-;30390:139;;30288:248;;;:::o;30542:419::-;;30746:2;30735:9;30731:18;30723:26;;30795:9;30789:4;30785:20;30781:1;30770:9;30766:17;30759:47;30823:131;30949:4;30823:131;:::i;:::-;30815:139;;30713:248;;;:::o;30967:419::-;;31171:2;31160:9;31156:18;31148:26;;31220:9;31214:4;31210:20;31206:1;31195:9;31191:17;31184:47;31248:131;31374:4;31248:131;:::i;:::-;31240:139;;31138:248;;;:::o;31392:222::-;;31523:2;31512:9;31508:18;31500:26;;31536:71;31604:1;31593:9;31589:17;31580:6;31536:71;:::i;:::-;31490:124;;;;:::o;31620:283::-;;31686:2;31680:9;31670:19;;31728:4;31720:6;31716:17;31835:6;31823:10;31820:22;31799:18;31787:10;31784:34;31781:62;31778:2;;;31846:18;;:::i;:::-;31778:2;31886:10;31882:2;31875:22;31660:243;;;;:::o;31909:311::-;;32076:18;32068:6;32065:30;32062:2;;;32098:18;;:::i;:::-;32062:2;32148:4;32140:6;32136:17;32128:25;;32208:4;32202;32198:15;32190:23;;31991:229;;;:::o;32226:331::-;;32377:18;32369:6;32366:30;32363:2;;;32399:18;;:::i;:::-;32363:2;32484:4;32480:9;32473:4;32465:6;32461:17;32457:33;32449:41;;32545:4;32539;32535:15;32527:23;;32292:265;;;:::o;32563:332::-;;32715:18;32707:6;32704:30;32701:2;;;32737:18;;:::i;:::-;32701:2;32822:4;32818:9;32811:4;32803:6;32799:17;32795:33;32787:41;;32883:4;32877;32873:15;32865:23;;32630:265;;;:::o;32901:98::-;;32986:5;32980:12;32970:22;;32959:40;;;:::o;33005:99::-;;33091:5;33085:12;33075:22;;33064:40;;;:::o;33110:168::-;;33227:6;33222:3;33215:19;33267:4;33262:3;33258:14;33243:29;;33205:73;;;;:::o;33284:169::-;;33402:6;33397:3;33390:19;33442:4;33437:3;33433:14;33418:29;;33380:73;;;;:::o;33459:148::-;;33598:3;33583:18;;33573:34;;;;:::o;33613:305::-;;33672:20;33690:1;33672:20;:::i;:::-;33667:25;;33706:20;33724:1;33706:20;:::i;:::-;33701:25;;33860:1;33792:66;33788:74;33785:1;33782:81;33779:2;;;33866:18;;:::i;:::-;33779:2;33910:1;33907;33903:9;33896:16;;33657:261;;;;:::o;33924:185::-;;33981:20;33999:1;33981:20;:::i;:::-;33976:25;;34015:20;34033:1;34015:20;:::i;:::-;34010:25;;34054:1;34044:2;;34059:18;;:::i;:::-;34044:2;34101:1;34098;34094:9;34089:14;;33966:143;;;;:::o;34115:348::-;;34178:20;34196:1;34178:20;:::i;:::-;34173:25;;34212:20;34230:1;34212:20;:::i;:::-;34207:25;;34400:1;34332:66;34328:74;34325:1;34322:81;34317:1;34310:9;34303:17;34299:105;34296:2;;;34407:18;;:::i;:::-;34296:2;34455:1;34452;34448:9;34437:20;;34163:300;;;;:::o;34469:191::-;;34529:20;34547:1;34529:20;:::i;:::-;34524:25;;34563:20;34581:1;34563:20;:::i;:::-;34558:25;;34602:1;34599;34596:8;34593:2;;;34607:18;;:::i;:::-;34593:2;34652:1;34649;34645:9;34637:17;;34514:146;;;;:::o;34666:96::-;;34732:24;34750:5;34732:24;:::i;:::-;34721:35;;34711:51;;;:::o;34768:90::-;;34845:5;34838:13;34831:21;34820:32;;34810:48;;;:::o;34864:149::-;;34940:66;34933:5;34929:78;34918:89;;34908:105;;;:::o;35019:126::-;;35096:42;35089:5;35085:54;35074:65;;35064:81;;;:::o;35151:77::-;;35217:5;35206:16;;35196:32;;;:::o;35234:154::-;35318:6;35313:3;35308;35295:30;35380:1;35371:6;35366:3;35362:16;35355:27;35285:103;;;:::o;35394:307::-;35462:1;35472:113;35486:6;35483:1;35480:13;35472:113;;;35571:1;35566:3;35562:11;35556:18;35552:1;35547:3;35543:11;35536:39;35508:2;35505:1;35501:10;35496:15;;35472:113;;;35603:6;35600:1;35597:13;35594:2;;;35683:1;35674:6;35669:3;35665:16;35658:27;35594:2;35443:258;;;;:::o;35707:320::-;;35788:1;35782:4;35778:12;35768:22;;35835:1;35829:4;35825:12;35856:18;35846:2;;35912:4;35904:6;35900:17;35890:27;;35846:2;35974;35966:6;35963:14;35943:18;35940:38;35937:2;;;35993:18;;:::i;:::-;35937:2;35758:269;;;;:::o;36033:233::-;;36095:24;36113:5;36095:24;:::i;:::-;36086:33;;36141:66;36134:5;36131:77;36128:2;;;36211:18;;:::i;:::-;36128:2;36258:1;36251:5;36247:13;36240:20;;36076:190;;;:::o;36272:176::-;;36321:20;36339:1;36321:20;:::i;:::-;36316:25;;36355:20;36373:1;36355:20;:::i;:::-;36350:25;;36394:1;36384:2;;36399:18;;:::i;:::-;36384:2;36440:1;36437;36433:9;36428:14;;36306:142;;;;:::o;36454:180::-;36502:77;36499:1;36492:88;36599:4;36596:1;36589:15;36623:4;36620:1;36613:15;36640:180;36688:77;36685:1;36678:88;36785:4;36782:1;36775:15;36809:4;36806:1;36799:15;36826:180;36874:77;36871:1;36864:88;36971:4;36968:1;36961:15;36995:4;36992:1;36985:15;37012:180;37060:77;37057:1;37050:88;37157:4;37154:1;37147:15;37181:4;37178:1;37171:15;37198:102;;37290:2;37286:7;37281:2;37274:5;37270:14;37266:28;37256:38;;37246:54;;;:::o;37306:122::-;37379:24;37397:5;37379:24;:::i;:::-;37372:5;37369:35;37359:2;;37418:1;37415;37408:12;37359:2;37349:79;:::o;37434:116::-;37504:21;37519:5;37504:21;:::i;:::-;37497:5;37494:32;37484:2;;37540:1;37537;37530:12;37484:2;37474:76;:::o;37556:120::-;37628:23;37645:5;37628:23;:::i;:::-;37621:5;37618:34;37608:2;;37666:1;37663;37656:12;37608:2;37598:78;:::o;37682:122::-;37755:24;37773:5;37755:24;:::i;:::-;37748:5;37745:35;37735:2;;37794:1;37791;37784:12;37735:2;37725:79;:::o

Swarm Source

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