ETH Price: $3,116.17 (+0.58%)
Gas: 4 Gwei

Token

molecules.wtf (MWETF)
 

Overview

Max Total Supply

4,621 MWETF

Holders

320

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jim9527.eth
Balance
5 MWETF
0x941f211a032ef4680b6b906aa651bf39b0a87b66
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:
MoleculesWTF

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Counters.sol


// OpenZeppelin Contracts v4.4.1 (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: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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


// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts (last updated v4.6.0) (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 overridden 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 {
        _setApprovalForAll(_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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: contracts/MoleculesWTF.sol




pragma solidity >=0.7.0 <0.9.0;




contract MoleculesWTF is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  

  uint256 public maxSupply = 8000;
  uint256 public maxMintAmountPerTx = 1;

  bool public paused = true;
  bool public revealed = false;

  constructor() ERC721("molecules.wtf", "MWETF") {
    setHiddenMetadataUri("ipfs://QmVE5A1wK2tq3S8uiQuCqevA3vgFf3kAYR3GXwZNFokddY/hidden.json");
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");


    _mintLoop(msg.sender, _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _mintLoop(_receiver, _mintAmount);
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    if (revealed == false) {
      return hiddenMetadataUri;
    }

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

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }


  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function withdraw() public onlyOwner {

    // This will transfer the remaining contract balance to the owner.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
    // =============================================================================
  }

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600890805190602001906200002b9291906200035c565b506040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060099080519060200190620000799291906200035c565b50611f40600b556001600c556001600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff021916908315150217905550348015620000c857600080fd5b506040518060400160405280600d81526020017f6d6f6c6563756c65732e777466000000000000000000000000000000000000008152506040518060400160405280600581526020017f4d5745544600000000000000000000000000000000000000000000000000000081525081600090805190602001906200014d9291906200035c565b508060019080519060200190620001669291906200035c565b505050620001896200017d620001b960201b60201c565b620001c160201b60201c565b620001b3604051806080016040528060418152602001620044f3604191396200028760201b60201c565b620004f4565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000297620001b960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002bd6200033260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000316576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200030d9062000433565b60405180910390fd5b80600a90805190602001906200032e9291906200035c565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200036a9062000466565b90600052602060002090601f0160209004810192826200038e5760008555620003da565b82601f10620003a957805160ff1916838001178555620003da565b82800160010185558215620003da579182015b82811115620003d9578251825591602001919060010190620003bc565b5b509050620003e99190620003ed565b5090565b5b8082111562000408576000816000905550600101620003ee565b5090565b60006200041b60208362000455565b91506200042882620004cb565b602082019050919050565b600060208201905081810360008301526200044e816200040c565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200047f57607f821691505b602082108114156200049657620004956200049c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613fef80620005046000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063a45ba8e7116100a0578063d5abeb011161006f578063d5abeb01146106fe578063e0a8085314610729578063e985e9c514610752578063efbd73f41461078f578063f2fde38b146107b8576101f9565b8063a45ba8e714610644578063b071401b1461066f578063b88d4fde14610698578063c87b56dd146106c1576101f9565b806394354fd0116100dc57806394354fd0146105a957806395d89b41146105d4578063a0712d68146105ff578063a22cb4651461061b576101f9565b806370a0823114610501578063715018a61461053e5780637ec4a659146105555780638da5cb5b1461057e576101f9565b80633ccfd60b11610190578063518302271161015f57806351830227146104185780635503a0e8146104435780635c975abb1461046e57806362b99ad4146104995780636352211e146104c4576101f9565b80633ccfd60b1461037257806342842e0e14610389578063438b6300146103b25780634fdd43cb146103ef576101f9565b806316ba10e0116101cc57806316ba10e0146102cc57806316c38b3c146102f557806318160ddd1461031e57806323b872dd14610349576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612cdf565b6107e1565b604051610232919061334e565b60405180910390f35b34801561024757600080fd5b506102506108c3565b60405161025d9190613369565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612d82565b610955565b60405161029a91906132c5565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190612c72565b6109da565b005b3480156102d857600080fd5b506102f360048036038101906102ee9190612d39565b610af2565b005b34801561030157600080fd5b5061031c60048036038101906103179190612cb2565b610b88565b005b34801561032a57600080fd5b50610333610c21565b60405161034091906135eb565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b9190612b5c565b610c32565b005b34801561037e57600080fd5b50610387610c92565b005b34801561039557600080fd5b506103b060048036038101906103ab9190612b5c565b610d8e565b005b3480156103be57600080fd5b506103d960048036038101906103d49190612aef565b610dae565b6040516103e6919061332c565b60405180910390f35b3480156103fb57600080fd5b5061041660048036038101906104119190612d39565b610eb9565b005b34801561042457600080fd5b5061042d610f4f565b60405161043a919061334e565b60405180910390f35b34801561044f57600080fd5b50610458610f62565b6040516104659190613369565b60405180910390f35b34801561047a57600080fd5b50610483610ff0565b604051610490919061334e565b60405180910390f35b3480156104a557600080fd5b506104ae611003565b6040516104bb9190613369565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e69190612d82565b611091565b6040516104f891906132c5565b60405180910390f35b34801561050d57600080fd5b5061052860048036038101906105239190612aef565b611143565b60405161053591906135eb565b60405180910390f35b34801561054a57600080fd5b506105536111fb565b005b34801561056157600080fd5b5061057c60048036038101906105779190612d39565b611283565b005b34801561058a57600080fd5b50610593611319565b6040516105a091906132c5565b60405180910390f35b3480156105b557600080fd5b506105be611343565b6040516105cb91906135eb565b60405180910390f35b3480156105e057600080fd5b506105e9611349565b6040516105f69190613369565b60405180910390f35b61061960048036038101906106149190612d82565b6113db565b005b34801561062757600080fd5b50610642600480360381019061063d9190612c32565b6114e4565b005b34801561065057600080fd5b506106596114fa565b6040516106669190613369565b60405180910390f35b34801561067b57600080fd5b5061069660048036038101906106919190612d82565b611588565b005b3480156106a457600080fd5b506106bf60048036038101906106ba9190612baf565b61160e565b005b3480156106cd57600080fd5b506106e860048036038101906106e39190612d82565b611670565b6040516106f59190613369565b60405180910390f35b34801561070a57600080fd5b506107136117c9565b60405161072091906135eb565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190612cb2565b6117cf565b005b34801561075e57600080fd5b5061077960048036038101906107749190612b1c565b611868565b604051610786919061334e565b60405180910390f35b34801561079b57600080fd5b506107b660048036038101906107b19190612daf565b6118fc565b005b3480156107c457600080fd5b506107df60048036038101906107da9190612aef565b611a32565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ac57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108bc57506108bb82611b2a565b5b9050919050565b6060600080546108d29061389a565b80601f01602080910402602001604051908101604052809291908181526020018280546108fe9061389a565b801561094b5780601f106109205761010080835404028352916020019161094b565b820191906000526020600020905b81548152906001019060200180831161092e57829003601f168201915b5050505050905090565b600061096082611b94565b61099f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109969061350b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e582611091565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4d9061358b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a75611c00565b73ffffffffffffffffffffffffffffffffffffffff161480610aa45750610aa381610a9e611c00565b611868565b5b610ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ada9061348b565b60405180910390fd5b610aed8383611c08565b505050565b610afa611c00565b73ffffffffffffffffffffffffffffffffffffffff16610b18611319565b73ffffffffffffffffffffffffffffffffffffffff1614610b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b659061352b565b60405180910390fd5b8060099080519060200190610b84929190612903565b5050565b610b90611c00565b73ffffffffffffffffffffffffffffffffffffffff16610bae611319565b73ffffffffffffffffffffffffffffffffffffffff1614610c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfb9061352b565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b6000610c2d6007611cc1565b905090565b610c43610c3d611c00565b82611ccf565b610c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c79906135cb565b60405180910390fd5b610c8d838383611dad565b505050565b610c9a611c00565b73ffffffffffffffffffffffffffffffffffffffff16610cb8611319565b73ffffffffffffffffffffffffffffffffffffffff1614610d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d059061352b565b60405180910390fd5b6000610d18611319565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d3b906132b0565b60006040518083038185875af1925050503d8060008114610d78576040519150601f19603f3d011682016040523d82523d6000602084013e610d7d565b606091505b5050905080610d8b57600080fd5b50565b610da98383836040518060200160405280600081525061160e565b505050565b60606000610dbb83611143565b905060008167ffffffffffffffff811115610dd957610dd8613a33565b5b604051908082528060200260200182016040528015610e075781602001602082028036833780820191505090505b50905060006001905060005b8381108015610e245750600b548211155b15610ead576000610e3483611091565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e995782848381518110610e7e57610e7d613a04565b5b6020026020010181815250508180610e95906138fd565b9250505b8280610ea4906138fd565b93505050610e13565b82945050505050919050565b610ec1611c00565b73ffffffffffffffffffffffffffffffffffffffff16610edf611319565b73ffffffffffffffffffffffffffffffffffffffff1614610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c9061352b565b60405180910390fd5b80600a9080519060200190610f4b929190612903565b5050565b600d60019054906101000a900460ff1681565b60098054610f6f9061389a565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9b9061389a565b8015610fe85780601f10610fbd57610100808354040283529160200191610fe8565b820191906000526020600020905b815481529060010190602001808311610fcb57829003601f168201915b505050505081565b600d60009054906101000a900460ff1681565b600880546110109061389a565b80601f016020809104026020016040519081016040528092919081815260200182805461103c9061389a565b80156110895780601f1061105e57610100808354040283529160200191611089565b820191906000526020600020905b81548152906001019060200180831161106c57829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561113a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611131906134cb565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab906134ab565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611203611c00565b73ffffffffffffffffffffffffffffffffffffffff16611221611319565b73ffffffffffffffffffffffffffffffffffffffff1614611277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126e9061352b565b60405180910390fd5b6112816000612014565b565b61128b611c00565b73ffffffffffffffffffffffffffffffffffffffff166112a9611319565b73ffffffffffffffffffffffffffffffffffffffff16146112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f69061352b565b60405180910390fd5b8060089080519060200190611315929190612903565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c5481565b6060600180546113589061389a565b80601f01602080910402602001604051908101604052809291908181526020018280546113849061389a565b80156113d15780601f106113a6576101008083540402835291602001916113d1565b820191906000526020600020905b8154815290600101906020018083116113b457829003601f168201915b5050505050905090565b806000811180156113ee5750600c548111155b61142d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114249061340b565b60405180910390fd5b600b548161143b6007611cc1565b6114459190613729565b1115611486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147d906135ab565b60405180910390fd5b600d60009054906101000a900460ff16156114d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cd9061354b565b60405180910390fd5b6114e033836120da565b5050565b6114f66114ef611c00565b838361211a565b5050565b600a80546115079061389a565b80601f01602080910402602001604051908101604052809291908181526020018280546115339061389a565b80156115805780601f1061155557610100808354040283529160200191611580565b820191906000526020600020905b81548152906001019060200180831161156357829003601f168201915b505050505081565b611590611c00565b73ffffffffffffffffffffffffffffffffffffffff166115ae611319565b73ffffffffffffffffffffffffffffffffffffffff1614611604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fb9061352b565b60405180910390fd5b80600c8190555050565b61161f611619611c00565b83611ccf565b61165e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611655906135cb565b60405180910390fd5b61166a84848484612287565b50505050565b606061167b82611b94565b6116ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b19061356b565b60405180910390fd5b60001515600d60019054906101000a900460ff161515141561176857600a80546116e39061389a565b80601f016020809104026020016040519081016040528092919081815260200182805461170f9061389a565b801561175c5780601f106117315761010080835404028352916020019161175c565b820191906000526020600020905b81548152906001019060200180831161173f57829003601f168201915b505050505090506117c4565b60006117726122e3565b9050600081511161179257604051806020016040528060008152506117c0565b8061179c84612375565b60096040516020016117b09392919061327f565b6040516020818303038152906040525b9150505b919050565b600b5481565b6117d7611c00565b73ffffffffffffffffffffffffffffffffffffffff166117f5611319565b73ffffffffffffffffffffffffffffffffffffffff161461184b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118429061352b565b60405180910390fd5b80600d60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8160008111801561190f5750600c548111155b61194e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119459061340b565b60405180910390fd5b600b548161195c6007611cc1565b6119669190613729565b11156119a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199e906135ab565b60405180910390fd5b6119af611c00565b73ffffffffffffffffffffffffffffffffffffffff166119cd611319565b73ffffffffffffffffffffffffffffffffffffffff1614611a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1a9061352b565b60405180910390fd5b611a2d82846120da565b505050565b611a3a611c00565b73ffffffffffffffffffffffffffffffffffffffff16611a58611319565b73ffffffffffffffffffffffffffffffffffffffff1614611aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa59061352b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b15906133ab565b60405180910390fd5b611b2781612014565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c7b83611091565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611cda82611b94565b611d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d109061346b565b60405180910390fd5b6000611d2483611091565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d665750611d658185611868565b5b80611da457508373ffffffffffffffffffffffffffffffffffffffff16611d8c84610955565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611dcd82611091565b73ffffffffffffffffffffffffffffffffffffffff1614611e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1a906133cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8a9061342b565b60405180910390fd5b611e9e8383836124d6565b611ea9600082611c08565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ef991906137b0565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f509190613729565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461200f8383836124db565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015612115576120ef60076124e0565b612102836120fd6007611cc1565b6124f6565b808061210d906138fd565b9150506120dd565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612189576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121809061344b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161227a919061334e565b60405180910390a3505050565b612292848484611dad565b61229e84848484612514565b6122dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d49061338b565b60405180910390fd5b50505050565b6060600880546122f29061389a565b80601f016020809104026020016040519081016040528092919081815260200182805461231e9061389a565b801561236b5780601f106123405761010080835404028352916020019161236b565b820191906000526020600020905b81548152906001019060200180831161234e57829003601f168201915b5050505050905090565b606060008214156123bd576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124d1565b600082905060005b600082146123ef5780806123d8906138fd565b915050600a826123e8919061377f565b91506123c5565b60008167ffffffffffffffff81111561240b5761240a613a33565b5b6040519080825280601f01601f19166020018201604052801561243d5781602001600182028036833780820191505090505b5090505b600085146124ca5760018261245691906137b0565b9150600a856124659190613946565b60306124719190613729565b60f81b81838151811061248757612486613a04565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124c3919061377f565b9450612441565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b6125108282604051806020016040528060008152506126ab565b5050565b60006125358473ffffffffffffffffffffffffffffffffffffffff16612706565b1561269e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261255e611c00565b8786866040518563ffffffff1660e01b815260040161258094939291906132e0565b602060405180830381600087803b15801561259a57600080fd5b505af19250505080156125cb57506040513d601f19601f820116820180604052508101906125c89190612d0c565b60015b61264e573d80600081146125fb576040519150601f19603f3d011682016040523d82523d6000602084013e612600565b606091505b50600081511415612646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263d9061338b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126a3565b600190505b949350505050565b6126b58383612729565b6126c26000848484612514565b612701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f89061338b565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612799576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612790906134eb565b60405180910390fd5b6127a281611b94565b156127e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d9906133eb565b60405180910390fd5b6127ee600083836124d6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461283e9190613729565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128ff600083836124db565b5050565b82805461290f9061389a565b90600052602060002090601f0160209004810192826129315760008555612978565b82601f1061294a57805160ff1916838001178555612978565b82800160010185558215612978579182015b8281111561297757825182559160200191906001019061295c565b5b5090506129859190612989565b5090565b5b808211156129a257600081600090555060010161298a565b5090565b60006129b96129b48461362b565b613606565b9050828152602081018484840111156129d5576129d4613a67565b5b6129e0848285613858565b509392505050565b60006129fb6129f68461365c565b613606565b905082815260208101848484011115612a1757612a16613a67565b5b612a22848285613858565b509392505050565b600081359050612a3981613f5d565b92915050565b600081359050612a4e81613f74565b92915050565b600081359050612a6381613f8b565b92915050565b600081519050612a7881613f8b565b92915050565b600082601f830112612a9357612a92613a62565b5b8135612aa38482602086016129a6565b91505092915050565b600082601f830112612ac157612ac0613a62565b5b8135612ad18482602086016129e8565b91505092915050565b600081359050612ae981613fa2565b92915050565b600060208284031215612b0557612b04613a71565b5b6000612b1384828501612a2a565b91505092915050565b60008060408385031215612b3357612b32613a71565b5b6000612b4185828601612a2a565b9250506020612b5285828601612a2a565b9150509250929050565b600080600060608486031215612b7557612b74613a71565b5b6000612b8386828701612a2a565b9350506020612b9486828701612a2a565b9250506040612ba586828701612ada565b9150509250925092565b60008060008060808587031215612bc957612bc8613a71565b5b6000612bd787828801612a2a565b9450506020612be887828801612a2a565b9350506040612bf987828801612ada565b925050606085013567ffffffffffffffff811115612c1a57612c19613a6c565b5b612c2687828801612a7e565b91505092959194509250565b60008060408385031215612c4957612c48613a71565b5b6000612c5785828601612a2a565b9250506020612c6885828601612a3f565b9150509250929050565b60008060408385031215612c8957612c88613a71565b5b6000612c9785828601612a2a565b9250506020612ca885828601612ada565b9150509250929050565b600060208284031215612cc857612cc7613a71565b5b6000612cd684828501612a3f565b91505092915050565b600060208284031215612cf557612cf4613a71565b5b6000612d0384828501612a54565b91505092915050565b600060208284031215612d2257612d21613a71565b5b6000612d3084828501612a69565b91505092915050565b600060208284031215612d4f57612d4e613a71565b5b600082013567ffffffffffffffff811115612d6d57612d6c613a6c565b5b612d7984828501612aac565b91505092915050565b600060208284031215612d9857612d97613a71565b5b6000612da684828501612ada565b91505092915050565b60008060408385031215612dc657612dc5613a71565b5b6000612dd485828601612ada565b9250506020612de585828601612a2a565b9150509250929050565b6000612dfb8383613261565b60208301905092915050565b612e10816137e4565b82525050565b6000612e21826136b2565b612e2b81856136e0565b9350612e368361368d565b8060005b83811015612e67578151612e4e8882612def565b9750612e59836136d3565b925050600181019050612e3a565b5085935050505092915050565b612e7d816137f6565b82525050565b6000612e8e826136bd565b612e9881856136f1565b9350612ea8818560208601613867565b612eb181613a76565b840191505092915050565b6000612ec7826136c8565b612ed1818561370d565b9350612ee1818560208601613867565b612eea81613a76565b840191505092915050565b6000612f00826136c8565b612f0a818561371e565b9350612f1a818560208601613867565b80840191505092915050565b60008154612f338161389a565b612f3d818661371e565b94506001821660008114612f585760018114612f6957612f9c565b60ff19831686528186019350612f9c565b612f728561369d565b60005b83811015612f9457815481890152600182019150602081019050612f75565b838801955050505b50505092915050565b6000612fb260328361370d565b9150612fbd82613a87565b604082019050919050565b6000612fd560268361370d565b9150612fe082613ad6565b604082019050919050565b6000612ff860258361370d565b915061300382613b25565b604082019050919050565b600061301b601c8361370d565b915061302682613b74565b602082019050919050565b600061303e60148361370d565b915061304982613b9d565b602082019050919050565b600061306160248361370d565b915061306c82613bc6565b604082019050919050565b600061308460198361370d565b915061308f82613c15565b602082019050919050565b60006130a7602c8361370d565b91506130b282613c3e565b604082019050919050565b60006130ca60388361370d565b91506130d582613c8d565b604082019050919050565b60006130ed602a8361370d565b91506130f882613cdc565b604082019050919050565b600061311060298361370d565b915061311b82613d2b565b604082019050919050565b600061313360208361370d565b915061313e82613d7a565b602082019050919050565b6000613156602c8361370d565b915061316182613da3565b604082019050919050565b600061317960208361370d565b915061318482613df2565b602082019050919050565b600061319c60178361370d565b91506131a782613e1b565b602082019050919050565b60006131bf602f8361370d565b91506131ca82613e44565b604082019050919050565b60006131e260218361370d565b91506131ed82613e93565b604082019050919050565b6000613205600083613702565b915061321082613ee2565b600082019050919050565b600061322860148361370d565b915061323382613ee5565b602082019050919050565b600061324b60318361370d565b915061325682613f0e565b604082019050919050565b61326a8161384e565b82525050565b6132798161384e565b82525050565b600061328b8286612ef5565b91506132978285612ef5565b91506132a38284612f26565b9150819050949350505050565b60006132bb826131f8565b9150819050919050565b60006020820190506132da6000830184612e07565b92915050565b60006080820190506132f56000830187612e07565b6133026020830186612e07565b61330f6040830185613270565b81810360608301526133218184612e83565b905095945050505050565b600060208201905081810360008301526133468184612e16565b905092915050565b60006020820190506133636000830184612e74565b92915050565b600060208201905081810360008301526133838184612ebc565b905092915050565b600060208201905081810360008301526133a481612fa5565b9050919050565b600060208201905081810360008301526133c481612fc8565b9050919050565b600060208201905081810360008301526133e481612feb565b9050919050565b600060208201905081810360008301526134048161300e565b9050919050565b6000602082019050818103600083015261342481613031565b9050919050565b6000602082019050818103600083015261344481613054565b9050919050565b6000602082019050818103600083015261346481613077565b9050919050565b600060208201905081810360008301526134848161309a565b9050919050565b600060208201905081810360008301526134a4816130bd565b9050919050565b600060208201905081810360008301526134c4816130e0565b9050919050565b600060208201905081810360008301526134e481613103565b9050919050565b6000602082019050818103600083015261350481613126565b9050919050565b6000602082019050818103600083015261352481613149565b9050919050565b600060208201905081810360008301526135448161316c565b9050919050565b600060208201905081810360008301526135648161318f565b9050919050565b60006020820190508181036000830152613584816131b2565b9050919050565b600060208201905081810360008301526135a4816131d5565b9050919050565b600060208201905081810360008301526135c48161321b565b9050919050565b600060208201905081810360008301526135e48161323e565b9050919050565b60006020820190506136006000830184613270565b92915050565b6000613610613621565b905061361c82826138cc565b919050565b6000604051905090565b600067ffffffffffffffff82111561364657613645613a33565b5b61364f82613a76565b9050602081019050919050565b600067ffffffffffffffff82111561367757613676613a33565b5b61368082613a76565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006137348261384e565b915061373f8361384e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561377457613773613977565b5b828201905092915050565b600061378a8261384e565b91506137958361384e565b9250826137a5576137a46139a6565b5b828204905092915050565b60006137bb8261384e565b91506137c68361384e565b9250828210156137d9576137d8613977565b5b828203905092915050565b60006137ef8261382e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561388557808201518184015260208101905061386a565b83811115613894576000848401525b50505050565b600060028204905060018216806138b257607f821691505b602082108114156138c6576138c56139d5565b5b50919050565b6138d582613a76565b810181811067ffffffffffffffff821117156138f4576138f3613a33565b5b80604052505050565b60006139088261384e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561393b5761393a613977565b5b600182019050919050565b60006139518261384e565b915061395c8361384e565b92508261396c5761396b6139a6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b613f66816137e4565b8114613f7157600080fd5b50565b613f7d816137f6565b8114613f8857600080fd5b50565b613f9481613802565b8114613f9f57600080fd5b50565b613fab8161384e565b8114613fb657600080fd5b5056fea264697066735822122008bf6321d293f8bcae09e3871195147b44bbeb1f44be286a529fb7fbbaa125d264736f6c63430008070033697066733a2f2f516d5645354131774b3274713353387569517543716576413376674666336b415952334758775a4e466f6b6464592f68696464656e2e6a736f6e

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806370a082311161010d578063a45ba8e7116100a0578063d5abeb011161006f578063d5abeb01146106fe578063e0a8085314610729578063e985e9c514610752578063efbd73f41461078f578063f2fde38b146107b8576101f9565b8063a45ba8e714610644578063b071401b1461066f578063b88d4fde14610698578063c87b56dd146106c1576101f9565b806394354fd0116100dc57806394354fd0146105a957806395d89b41146105d4578063a0712d68146105ff578063a22cb4651461061b576101f9565b806370a0823114610501578063715018a61461053e5780637ec4a659146105555780638da5cb5b1461057e576101f9565b80633ccfd60b11610190578063518302271161015f57806351830227146104185780635503a0e8146104435780635c975abb1461046e57806362b99ad4146104995780636352211e146104c4576101f9565b80633ccfd60b1461037257806342842e0e14610389578063438b6300146103b25780634fdd43cb146103ef576101f9565b806316ba10e0116101cc57806316ba10e0146102cc57806316c38b3c146102f557806318160ddd1461031e57806323b872dd14610349576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612cdf565b6107e1565b604051610232919061334e565b60405180910390f35b34801561024757600080fd5b506102506108c3565b60405161025d9190613369565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612d82565b610955565b60405161029a91906132c5565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190612c72565b6109da565b005b3480156102d857600080fd5b506102f360048036038101906102ee9190612d39565b610af2565b005b34801561030157600080fd5b5061031c60048036038101906103179190612cb2565b610b88565b005b34801561032a57600080fd5b50610333610c21565b60405161034091906135eb565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b9190612b5c565b610c32565b005b34801561037e57600080fd5b50610387610c92565b005b34801561039557600080fd5b506103b060048036038101906103ab9190612b5c565b610d8e565b005b3480156103be57600080fd5b506103d960048036038101906103d49190612aef565b610dae565b6040516103e6919061332c565b60405180910390f35b3480156103fb57600080fd5b5061041660048036038101906104119190612d39565b610eb9565b005b34801561042457600080fd5b5061042d610f4f565b60405161043a919061334e565b60405180910390f35b34801561044f57600080fd5b50610458610f62565b6040516104659190613369565b60405180910390f35b34801561047a57600080fd5b50610483610ff0565b604051610490919061334e565b60405180910390f35b3480156104a557600080fd5b506104ae611003565b6040516104bb9190613369565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e69190612d82565b611091565b6040516104f891906132c5565b60405180910390f35b34801561050d57600080fd5b5061052860048036038101906105239190612aef565b611143565b60405161053591906135eb565b60405180910390f35b34801561054a57600080fd5b506105536111fb565b005b34801561056157600080fd5b5061057c60048036038101906105779190612d39565b611283565b005b34801561058a57600080fd5b50610593611319565b6040516105a091906132c5565b60405180910390f35b3480156105b557600080fd5b506105be611343565b6040516105cb91906135eb565b60405180910390f35b3480156105e057600080fd5b506105e9611349565b6040516105f69190613369565b60405180910390f35b61061960048036038101906106149190612d82565b6113db565b005b34801561062757600080fd5b50610642600480360381019061063d9190612c32565b6114e4565b005b34801561065057600080fd5b506106596114fa565b6040516106669190613369565b60405180910390f35b34801561067b57600080fd5b5061069660048036038101906106919190612d82565b611588565b005b3480156106a457600080fd5b506106bf60048036038101906106ba9190612baf565b61160e565b005b3480156106cd57600080fd5b506106e860048036038101906106e39190612d82565b611670565b6040516106f59190613369565b60405180910390f35b34801561070a57600080fd5b506107136117c9565b60405161072091906135eb565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190612cb2565b6117cf565b005b34801561075e57600080fd5b5061077960048036038101906107749190612b1c565b611868565b604051610786919061334e565b60405180910390f35b34801561079b57600080fd5b506107b660048036038101906107b19190612daf565b6118fc565b005b3480156107c457600080fd5b506107df60048036038101906107da9190612aef565b611a32565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ac57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108bc57506108bb82611b2a565b5b9050919050565b6060600080546108d29061389a565b80601f01602080910402602001604051908101604052809291908181526020018280546108fe9061389a565b801561094b5780601f106109205761010080835404028352916020019161094b565b820191906000526020600020905b81548152906001019060200180831161092e57829003601f168201915b5050505050905090565b600061096082611b94565b61099f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109969061350b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e582611091565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4d9061358b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a75611c00565b73ffffffffffffffffffffffffffffffffffffffff161480610aa45750610aa381610a9e611c00565b611868565b5b610ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ada9061348b565b60405180910390fd5b610aed8383611c08565b505050565b610afa611c00565b73ffffffffffffffffffffffffffffffffffffffff16610b18611319565b73ffffffffffffffffffffffffffffffffffffffff1614610b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b659061352b565b60405180910390fd5b8060099080519060200190610b84929190612903565b5050565b610b90611c00565b73ffffffffffffffffffffffffffffffffffffffff16610bae611319565b73ffffffffffffffffffffffffffffffffffffffff1614610c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfb9061352b565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b6000610c2d6007611cc1565b905090565b610c43610c3d611c00565b82611ccf565b610c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c79906135cb565b60405180910390fd5b610c8d838383611dad565b505050565b610c9a611c00565b73ffffffffffffffffffffffffffffffffffffffff16610cb8611319565b73ffffffffffffffffffffffffffffffffffffffff1614610d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d059061352b565b60405180910390fd5b6000610d18611319565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d3b906132b0565b60006040518083038185875af1925050503d8060008114610d78576040519150601f19603f3d011682016040523d82523d6000602084013e610d7d565b606091505b5050905080610d8b57600080fd5b50565b610da98383836040518060200160405280600081525061160e565b505050565b60606000610dbb83611143565b905060008167ffffffffffffffff811115610dd957610dd8613a33565b5b604051908082528060200260200182016040528015610e075781602001602082028036833780820191505090505b50905060006001905060005b8381108015610e245750600b548211155b15610ead576000610e3483611091565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e995782848381518110610e7e57610e7d613a04565b5b6020026020010181815250508180610e95906138fd565b9250505b8280610ea4906138fd565b93505050610e13565b82945050505050919050565b610ec1611c00565b73ffffffffffffffffffffffffffffffffffffffff16610edf611319565b73ffffffffffffffffffffffffffffffffffffffff1614610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c9061352b565b60405180910390fd5b80600a9080519060200190610f4b929190612903565b5050565b600d60019054906101000a900460ff1681565b60098054610f6f9061389a565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9b9061389a565b8015610fe85780601f10610fbd57610100808354040283529160200191610fe8565b820191906000526020600020905b815481529060010190602001808311610fcb57829003601f168201915b505050505081565b600d60009054906101000a900460ff1681565b600880546110109061389a565b80601f016020809104026020016040519081016040528092919081815260200182805461103c9061389a565b80156110895780601f1061105e57610100808354040283529160200191611089565b820191906000526020600020905b81548152906001019060200180831161106c57829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561113a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611131906134cb565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab906134ab565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611203611c00565b73ffffffffffffffffffffffffffffffffffffffff16611221611319565b73ffffffffffffffffffffffffffffffffffffffff1614611277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126e9061352b565b60405180910390fd5b6112816000612014565b565b61128b611c00565b73ffffffffffffffffffffffffffffffffffffffff166112a9611319565b73ffffffffffffffffffffffffffffffffffffffff16146112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f69061352b565b60405180910390fd5b8060089080519060200190611315929190612903565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c5481565b6060600180546113589061389a565b80601f01602080910402602001604051908101604052809291908181526020018280546113849061389a565b80156113d15780601f106113a6576101008083540402835291602001916113d1565b820191906000526020600020905b8154815290600101906020018083116113b457829003601f168201915b5050505050905090565b806000811180156113ee5750600c548111155b61142d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114249061340b565b60405180910390fd5b600b548161143b6007611cc1565b6114459190613729565b1115611486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147d906135ab565b60405180910390fd5b600d60009054906101000a900460ff16156114d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cd9061354b565b60405180910390fd5b6114e033836120da565b5050565b6114f66114ef611c00565b838361211a565b5050565b600a80546115079061389a565b80601f01602080910402602001604051908101604052809291908181526020018280546115339061389a565b80156115805780601f1061155557610100808354040283529160200191611580565b820191906000526020600020905b81548152906001019060200180831161156357829003601f168201915b505050505081565b611590611c00565b73ffffffffffffffffffffffffffffffffffffffff166115ae611319565b73ffffffffffffffffffffffffffffffffffffffff1614611604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fb9061352b565b60405180910390fd5b80600c8190555050565b61161f611619611c00565b83611ccf565b61165e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611655906135cb565b60405180910390fd5b61166a84848484612287565b50505050565b606061167b82611b94565b6116ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b19061356b565b60405180910390fd5b60001515600d60019054906101000a900460ff161515141561176857600a80546116e39061389a565b80601f016020809104026020016040519081016040528092919081815260200182805461170f9061389a565b801561175c5780601f106117315761010080835404028352916020019161175c565b820191906000526020600020905b81548152906001019060200180831161173f57829003601f168201915b505050505090506117c4565b60006117726122e3565b9050600081511161179257604051806020016040528060008152506117c0565b8061179c84612375565b60096040516020016117b09392919061327f565b6040516020818303038152906040525b9150505b919050565b600b5481565b6117d7611c00565b73ffffffffffffffffffffffffffffffffffffffff166117f5611319565b73ffffffffffffffffffffffffffffffffffffffff161461184b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118429061352b565b60405180910390fd5b80600d60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8160008111801561190f5750600c548111155b61194e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119459061340b565b60405180910390fd5b600b548161195c6007611cc1565b6119669190613729565b11156119a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199e906135ab565b60405180910390fd5b6119af611c00565b73ffffffffffffffffffffffffffffffffffffffff166119cd611319565b73ffffffffffffffffffffffffffffffffffffffff1614611a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1a9061352b565b60405180910390fd5b611a2d82846120da565b505050565b611a3a611c00565b73ffffffffffffffffffffffffffffffffffffffff16611a58611319565b73ffffffffffffffffffffffffffffffffffffffff1614611aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa59061352b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b15906133ab565b60405180910390fd5b611b2781612014565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c7b83611091565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611cda82611b94565b611d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d109061346b565b60405180910390fd5b6000611d2483611091565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d665750611d658185611868565b5b80611da457508373ffffffffffffffffffffffffffffffffffffffff16611d8c84610955565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611dcd82611091565b73ffffffffffffffffffffffffffffffffffffffff1614611e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1a906133cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8a9061342b565b60405180910390fd5b611e9e8383836124d6565b611ea9600082611c08565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ef991906137b0565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f509190613729565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461200f8383836124db565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015612115576120ef60076124e0565b612102836120fd6007611cc1565b6124f6565b808061210d906138fd565b9150506120dd565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612189576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121809061344b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161227a919061334e565b60405180910390a3505050565b612292848484611dad565b61229e84848484612514565b6122dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d49061338b565b60405180910390fd5b50505050565b6060600880546122f29061389a565b80601f016020809104026020016040519081016040528092919081815260200182805461231e9061389a565b801561236b5780601f106123405761010080835404028352916020019161236b565b820191906000526020600020905b81548152906001019060200180831161234e57829003601f168201915b5050505050905090565b606060008214156123bd576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124d1565b600082905060005b600082146123ef5780806123d8906138fd565b915050600a826123e8919061377f565b91506123c5565b60008167ffffffffffffffff81111561240b5761240a613a33565b5b6040519080825280601f01601f19166020018201604052801561243d5781602001600182028036833780820191505090505b5090505b600085146124ca5760018261245691906137b0565b9150600a856124659190613946565b60306124719190613729565b60f81b81838151811061248757612486613a04565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124c3919061377f565b9450612441565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b6125108282604051806020016040528060008152506126ab565b5050565b60006125358473ffffffffffffffffffffffffffffffffffffffff16612706565b1561269e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261255e611c00565b8786866040518563ffffffff1660e01b815260040161258094939291906132e0565b602060405180830381600087803b15801561259a57600080fd5b505af19250505080156125cb57506040513d601f19601f820116820180604052508101906125c89190612d0c565b60015b61264e573d80600081146125fb576040519150601f19603f3d011682016040523d82523d6000602084013e612600565b606091505b50600081511415612646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263d9061338b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126a3565b600190505b949350505050565b6126b58383612729565b6126c26000848484612514565b612701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f89061338b565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612799576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612790906134eb565b60405180910390fd5b6127a281611b94565b156127e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d9906133eb565b60405180910390fd5b6127ee600083836124d6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461283e9190613729565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128ff600083836124db565b5050565b82805461290f9061389a565b90600052602060002090601f0160209004810192826129315760008555612978565b82601f1061294a57805160ff1916838001178555612978565b82800160010185558215612978579182015b8281111561297757825182559160200191906001019061295c565b5b5090506129859190612989565b5090565b5b808211156129a257600081600090555060010161298a565b5090565b60006129b96129b48461362b565b613606565b9050828152602081018484840111156129d5576129d4613a67565b5b6129e0848285613858565b509392505050565b60006129fb6129f68461365c565b613606565b905082815260208101848484011115612a1757612a16613a67565b5b612a22848285613858565b509392505050565b600081359050612a3981613f5d565b92915050565b600081359050612a4e81613f74565b92915050565b600081359050612a6381613f8b565b92915050565b600081519050612a7881613f8b565b92915050565b600082601f830112612a9357612a92613a62565b5b8135612aa38482602086016129a6565b91505092915050565b600082601f830112612ac157612ac0613a62565b5b8135612ad18482602086016129e8565b91505092915050565b600081359050612ae981613fa2565b92915050565b600060208284031215612b0557612b04613a71565b5b6000612b1384828501612a2a565b91505092915050565b60008060408385031215612b3357612b32613a71565b5b6000612b4185828601612a2a565b9250506020612b5285828601612a2a565b9150509250929050565b600080600060608486031215612b7557612b74613a71565b5b6000612b8386828701612a2a565b9350506020612b9486828701612a2a565b9250506040612ba586828701612ada565b9150509250925092565b60008060008060808587031215612bc957612bc8613a71565b5b6000612bd787828801612a2a565b9450506020612be887828801612a2a565b9350506040612bf987828801612ada565b925050606085013567ffffffffffffffff811115612c1a57612c19613a6c565b5b612c2687828801612a7e565b91505092959194509250565b60008060408385031215612c4957612c48613a71565b5b6000612c5785828601612a2a565b9250506020612c6885828601612a3f565b9150509250929050565b60008060408385031215612c8957612c88613a71565b5b6000612c9785828601612a2a565b9250506020612ca885828601612ada565b9150509250929050565b600060208284031215612cc857612cc7613a71565b5b6000612cd684828501612a3f565b91505092915050565b600060208284031215612cf557612cf4613a71565b5b6000612d0384828501612a54565b91505092915050565b600060208284031215612d2257612d21613a71565b5b6000612d3084828501612a69565b91505092915050565b600060208284031215612d4f57612d4e613a71565b5b600082013567ffffffffffffffff811115612d6d57612d6c613a6c565b5b612d7984828501612aac565b91505092915050565b600060208284031215612d9857612d97613a71565b5b6000612da684828501612ada565b91505092915050565b60008060408385031215612dc657612dc5613a71565b5b6000612dd485828601612ada565b9250506020612de585828601612a2a565b9150509250929050565b6000612dfb8383613261565b60208301905092915050565b612e10816137e4565b82525050565b6000612e21826136b2565b612e2b81856136e0565b9350612e368361368d565b8060005b83811015612e67578151612e4e8882612def565b9750612e59836136d3565b925050600181019050612e3a565b5085935050505092915050565b612e7d816137f6565b82525050565b6000612e8e826136bd565b612e9881856136f1565b9350612ea8818560208601613867565b612eb181613a76565b840191505092915050565b6000612ec7826136c8565b612ed1818561370d565b9350612ee1818560208601613867565b612eea81613a76565b840191505092915050565b6000612f00826136c8565b612f0a818561371e565b9350612f1a818560208601613867565b80840191505092915050565b60008154612f338161389a565b612f3d818661371e565b94506001821660008114612f585760018114612f6957612f9c565b60ff19831686528186019350612f9c565b612f728561369d565b60005b83811015612f9457815481890152600182019150602081019050612f75565b838801955050505b50505092915050565b6000612fb260328361370d565b9150612fbd82613a87565b604082019050919050565b6000612fd560268361370d565b9150612fe082613ad6565b604082019050919050565b6000612ff860258361370d565b915061300382613b25565b604082019050919050565b600061301b601c8361370d565b915061302682613b74565b602082019050919050565b600061303e60148361370d565b915061304982613b9d565b602082019050919050565b600061306160248361370d565b915061306c82613bc6565b604082019050919050565b600061308460198361370d565b915061308f82613c15565b602082019050919050565b60006130a7602c8361370d565b91506130b282613c3e565b604082019050919050565b60006130ca60388361370d565b91506130d582613c8d565b604082019050919050565b60006130ed602a8361370d565b91506130f882613cdc565b604082019050919050565b600061311060298361370d565b915061311b82613d2b565b604082019050919050565b600061313360208361370d565b915061313e82613d7a565b602082019050919050565b6000613156602c8361370d565b915061316182613da3565b604082019050919050565b600061317960208361370d565b915061318482613df2565b602082019050919050565b600061319c60178361370d565b91506131a782613e1b565b602082019050919050565b60006131bf602f8361370d565b91506131ca82613e44565b604082019050919050565b60006131e260218361370d565b91506131ed82613e93565b604082019050919050565b6000613205600083613702565b915061321082613ee2565b600082019050919050565b600061322860148361370d565b915061323382613ee5565b602082019050919050565b600061324b60318361370d565b915061325682613f0e565b604082019050919050565b61326a8161384e565b82525050565b6132798161384e565b82525050565b600061328b8286612ef5565b91506132978285612ef5565b91506132a38284612f26565b9150819050949350505050565b60006132bb826131f8565b9150819050919050565b60006020820190506132da6000830184612e07565b92915050565b60006080820190506132f56000830187612e07565b6133026020830186612e07565b61330f6040830185613270565b81810360608301526133218184612e83565b905095945050505050565b600060208201905081810360008301526133468184612e16565b905092915050565b60006020820190506133636000830184612e74565b92915050565b600060208201905081810360008301526133838184612ebc565b905092915050565b600060208201905081810360008301526133a481612fa5565b9050919050565b600060208201905081810360008301526133c481612fc8565b9050919050565b600060208201905081810360008301526133e481612feb565b9050919050565b600060208201905081810360008301526134048161300e565b9050919050565b6000602082019050818103600083015261342481613031565b9050919050565b6000602082019050818103600083015261344481613054565b9050919050565b6000602082019050818103600083015261346481613077565b9050919050565b600060208201905081810360008301526134848161309a565b9050919050565b600060208201905081810360008301526134a4816130bd565b9050919050565b600060208201905081810360008301526134c4816130e0565b9050919050565b600060208201905081810360008301526134e481613103565b9050919050565b6000602082019050818103600083015261350481613126565b9050919050565b6000602082019050818103600083015261352481613149565b9050919050565b600060208201905081810360008301526135448161316c565b9050919050565b600060208201905081810360008301526135648161318f565b9050919050565b60006020820190508181036000830152613584816131b2565b9050919050565b600060208201905081810360008301526135a4816131d5565b9050919050565b600060208201905081810360008301526135c48161321b565b9050919050565b600060208201905081810360008301526135e48161323e565b9050919050565b60006020820190506136006000830184613270565b92915050565b6000613610613621565b905061361c82826138cc565b919050565b6000604051905090565b600067ffffffffffffffff82111561364657613645613a33565b5b61364f82613a76565b9050602081019050919050565b600067ffffffffffffffff82111561367757613676613a33565b5b61368082613a76565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006137348261384e565b915061373f8361384e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561377457613773613977565b5b828201905092915050565b600061378a8261384e565b91506137958361384e565b9250826137a5576137a46139a6565b5b828204905092915050565b60006137bb8261384e565b91506137c68361384e565b9250828210156137d9576137d8613977565b5b828203905092915050565b60006137ef8261382e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561388557808201518184015260208101905061386a565b83811115613894576000848401525b50505050565b600060028204905060018216806138b257607f821691505b602082108114156138c6576138c56139d5565b5b50919050565b6138d582613a76565b810181811067ffffffffffffffff821117156138f4576138f3613a33565b5b80604052505050565b60006139088261384e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561393b5761393a613977565b5b600182019050919050565b60006139518261384e565b915061395c8361384e565b92508261396c5761396b6139a6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b613f66816137e4565b8114613f7157600080fd5b50565b613f7d816137f6565b8114613f8857600080fd5b50565b613f9481613802565b8114613f9f57600080fd5b50565b613fab8161384e565b8114613fb657600080fd5b5056fea264697066735822122008bf6321d293f8bcae09e3871195147b44bbeb1f44be286a529fb7fbbaa125d264736f6c63430008070033

Deployed Bytecode Sourcemap

38846:3838:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25645:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26590:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28150:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27673:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41708:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41814:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39655:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28900:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41897:464;;;;;;;;;;;;;:::i;:::-;;29310:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40098:635;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41464:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39225:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39035:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39195:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39002:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26284:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26014:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6228:103;;;;;;;;;;;;;:::i;:::-;;41602:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5577:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39151:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26759:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39750:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28443:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39073:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41328:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29566:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40739:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39115:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41239:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28669:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39937:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6486:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25645:305;25747:4;25799:25;25784:40;;;:11;:40;;;;:105;;;;25856:33;25841:48;;;:11;:48;;;;25784:105;:158;;;;25906:36;25930:11;25906:23;:36::i;:::-;25784:158;25764:178;;25645:305;;;:::o;26590:100::-;26644:13;26677:5;26670:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26590:100;:::o;28150:221::-;28226:7;28254:16;28262:7;28254;:16::i;:::-;28246:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28339:15;:24;28355:7;28339:24;;;;;;;;;;;;;;;;;;;;;28332:31;;28150:221;;;:::o;27673:411::-;27754:13;27770:23;27785:7;27770:14;:23::i;:::-;27754:39;;27818:5;27812:11;;:2;:11;;;;27804:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27912:5;27896:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27921:37;27938:5;27945:12;:10;:12::i;:::-;27921:16;:37::i;:::-;27896:62;27874:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;28055:21;28064:2;28068:7;28055:8;:21::i;:::-;27743:341;27673:411;;:::o;41708:100::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41792:10:::1;41780:9;:22;;;;;;;;;;;;:::i;:::-;;41708:100:::0;:::o;41814:77::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41879:6:::1;41870;;:15;;;;;;;;;;;;;;;;;;41814:77:::0;:::o;39655:89::-;39699:7;39722:16;:6;:14;:16::i;:::-;39715:23;;39655:89;:::o;28900:339::-;29095:41;29114:12;:10;:12::i;:::-;29128:7;29095:18;:41::i;:::-;29087:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29203:28;29213:4;29219:2;29223:7;29203:9;:28::i;:::-;28900:339;;;:::o;41897:464::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42183:7:::1;42204;:5;:7::i;:::-;42196:21;;42225;42196:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42182:69;;;42266:2;42258:11;;;::::0;::::1;;41934:427;41897:464::o:0;29310:185::-;29448:39;29465:4;29471:2;29475:7;29448:39;;;;;;;;;;;;:16;:39::i;:::-;29310:185;;;:::o;40098:635::-;40173:16;40201:23;40227:17;40237:6;40227:9;:17::i;:::-;40201:43;;40251:30;40298:15;40284:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40251:63;;40321:22;40346:1;40321:26;;40354:23;40390:309;40415:15;40397;:33;:64;;;;;40452:9;;40434:14;:27;;40397:64;40390:309;;;40472:25;40500:23;40508:14;40500:7;:23::i;:::-;40472:51;;40559:6;40538:27;;:17;:27;;;40534:131;;;40611:14;40578:13;40592:15;40578:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;40638:17;;;;;:::i;:::-;;;;40534:131;40675:16;;;;;:::i;:::-;;;;40463:236;40390:309;;;40714:13;40707:20;;;;;;40098:635;;;:::o;41464:132::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41572:18:::1;41552:17;:38;;;;;;;;;;;;:::i;:::-;;41464:132:::0;:::o;39225:28::-;;;;;;;;;;;;;:::o;39035:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39195:25::-;;;;;;;;;;;;;:::o;39002:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26284:239::-;26356:7;26376:13;26392:7;:16;26400:7;26392:16;;;;;;;;;;;;;;;;;;;;;26376:32;;26444:1;26427:19;;:5;:19;;;;26419:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26510:5;26503:12;;;26284:239;;;:::o;26014:208::-;26086:7;26131:1;26114:19;;:5;:19;;;;26106:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;26198:9;:16;26208:5;26198:16;;;;;;;;;;;;;;;;26191:23;;26014:208;;;:::o;6228:103::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6293:30:::1;6320:1;6293:18;:30::i;:::-;6228:103::o:0;41602:100::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41686:10:::1;41674:9;:22;;;;;;;;;;;;:::i;:::-;;41602:100:::0;:::o;5577:87::-;5623:7;5650:6;;;;;;;;;;;5643:13;;5577:87;:::o;39151:37::-;;;;:::o;26759:104::-;26815:13;26848:7;26841:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26759:104;:::o;39750:179::-;39815:11;39489:1;39475:11;:15;:52;;;;;39509:18;;39494:11;:33;;39475:52;39467:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39601:9;;39586:11;39567:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;39559:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;39844:6:::1;;;;;;;;;;;39843:7;39835:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;39889:34;39899:10;39911:11;39889:9;:34::i;:::-;39750:179:::0;;:::o;28443:155::-;28538:52;28557:12;:10;:12::i;:::-;28571:8;28581;28538:18;:52::i;:::-;28443:155;;:::o;39073:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41328:130::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41433:19:::1;41412:18;:40;;;;41328:130:::0;:::o;29566:328::-;29741:41;29760:12;:10;:12::i;:::-;29774:7;29741:18;:41::i;:::-;29733:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29847:39;29861:4;29867:2;29871:7;29880:5;29847:13;:39::i;:::-;29566:328;;;;:::o;40739:494::-;40838:13;40879:17;40887:8;40879:7;:17::i;:::-;40863:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;40986:5;40974:17;;:8;;;;;;;;;;;:17;;;40970:64;;;41009:17;41002:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40970:64;41042:28;41073:10;:8;:10::i;:::-;41042:41;;41128:1;41103:14;41097:28;:32;:130;;;;;;;;;;;;;;;;;41165:14;41181:19;:8;:17;:19::i;:::-;41202:9;41148:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41097:130;41090:137;;;40739:494;;;;:::o;39115:31::-;;;;:::o;41239:81::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41308:6:::1;41297:8;;:17;;;;;;;;;;;;;;;;;;41239:81:::0;:::o;28669:164::-;28766:4;28790:18;:25;28809:5;28790:25;;;;;;;;;;;;;;;:35;28816:8;28790:35;;;;;;;;;;;;;;;;;;;;;;;;;28783:42;;28669:164;;;;:::o;39937:155::-;40023:11;39489:1;39475:11;:15;:52;;;;;39509:18;;39494:11;:33;;39475:52;39467:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39601:9;;39586:11;39567:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;39559:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;5808:12:::1;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40053:33:::2;40063:9;40074:11;40053:9;:33::i;:::-;39937:155:::0;;;:::o;6486:201::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6595:1:::1;6575:22;;:8;:22;;;;6567:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6651:28;6670:8;6651:18;:28::i;:::-;6486:201:::0;:::o;18384:157::-;18469:4;18508:25;18493:40;;;:11;:40;;;;18486:47;;18384:157;;;:::o;31404:127::-;31469:4;31521:1;31493:30;;:7;:16;31501:7;31493:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31486:37;;31404:127;;;:::o;4301:98::-;4354:7;4381:10;4374:17;;4301:98;:::o;35550:174::-;35652:2;35625:15;:24;35641:7;35625:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35708:7;35704:2;35670:46;;35679:23;35694:7;35679:14;:23::i;:::-;35670:46;;;;;;;;;;;;35550:174;;:::o;905:114::-;970:7;997;:14;;;990:21;;905:114;;;:::o;31698:348::-;31791:4;31816:16;31824:7;31816;:16::i;:::-;31808:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31892:13;31908:23;31923:7;31908:14;:23::i;:::-;31892:39;;31961:5;31950:16;;:7;:16;;;:52;;;;31970:32;31987:5;31994:7;31970:16;:32::i;:::-;31950:52;:87;;;;32030:7;32006:31;;:20;32018:7;32006:11;:20::i;:::-;:31;;;31950:87;31942:96;;;31698:348;;;;:::o;34807:625::-;34966:4;34939:31;;:23;34954:7;34939:14;:23::i;:::-;:31;;;34931:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;35045:1;35031:16;;:2;:16;;;;35023:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35101:39;35122:4;35128:2;35132:7;35101:20;:39::i;:::-;35205:29;35222:1;35226:7;35205:8;:29::i;:::-;35266:1;35247:9;:15;35257:4;35247:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35295:1;35278:9;:13;35288:2;35278:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35326:2;35307:7;:16;35315:7;35307:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35365:7;35361:2;35346:27;;35355:4;35346:27;;;;;;;;;;;;35386:38;35406:4;35412:2;35416:7;35386:19;:38::i;:::-;34807:625;;;:::o;6847:191::-;6921:16;6940:6;;;;;;;;;;;6921:25;;6966:8;6957:6;;:17;;;;;;;;;;;;;;;;;;7021:8;6990:40;;7011:8;6990:40;;;;;;;;;;;;6910:128;6847:191;:::o;42367:204::-;42447:9;42442:124;42466:11;42462:1;:15;42442:124;;;42493:18;:6;:16;:18::i;:::-;42520:38;42530:9;42541:16;:6;:14;:16::i;:::-;42520:9;:38::i;:::-;42479:3;;;;;:::i;:::-;;;;42442:124;;;;42367:204;;:::o;35866:315::-;36021:8;36012:17;;:5;:17;;;;36004:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36108:8;36070:18;:25;36089:5;36070:25;;;;;;;;;;;;;;;:35;36096:8;36070:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36154:8;36132:41;;36147:5;36132:41;;;36164:8;36132:41;;;;;;:::i;:::-;;;;;;;;35866:315;;;:::o;30776:::-;30933:28;30943:4;30949:2;30953:7;30933:9;:28::i;:::-;30980:48;31003:4;31009:2;31013:7;31022:5;30980:22;:48::i;:::-;30972:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30776:315;;;;:::o;42577:104::-;42637:13;42666:9;42659:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42577:104;:::o;1863:723::-;1919:13;2149:1;2140:5;:10;2136:53;;;2167:10;;;;;;;;;;;;;;;;;;;;;2136:53;2199:12;2214:5;2199:20;;2230:14;2255:78;2270:1;2262:4;:9;2255:78;;2288:8;;;;;:::i;:::-;;;;2319:2;2311:10;;;;;:::i;:::-;;;2255:78;;;2343:19;2375:6;2365:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2343:39;;2393:154;2409:1;2400:5;:10;2393:154;;2437:1;2427:11;;;;;:::i;:::-;;;2504:2;2496:5;:10;;;;:::i;:::-;2483:2;:24;;;;:::i;:::-;2470:39;;2453:6;2460;2453:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2533:2;2524:11;;;;;:::i;:::-;;;2393:154;;;2571:6;2557:21;;;;;1863:723;;;;:::o;38117:126::-;;;;:::o;38628:125::-;;;;:::o;1027:127::-;1134:1;1116:7;:14;;;:19;;;;;;;;;;;1027:127;:::o;32388:110::-;32464:26;32474:2;32478:7;32464:26;;;;;;;;;;;;:9;:26::i;:::-;32388:110;;:::o;36746:799::-;36901:4;36922:15;:2;:13;;;:15::i;:::-;36918:620;;;36974:2;36958:36;;;36995:12;:10;:12::i;:::-;37009:4;37015:7;37024:5;36958:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36954:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37217:1;37200:6;:13;:18;37196:272;;;37243:60;;;;;;;;;;:::i;:::-;;;;;;;;37196:272;37418:6;37412:13;37403:6;37399:2;37395:15;37388:38;36954:529;37091:41;;;37081:51;;;:6;:51;;;;37074:58;;;;;36918:620;37522:4;37515:11;;36746:799;;;;;;;:::o;32725:321::-;32855:18;32861:2;32865:7;32855:5;:18::i;:::-;32906:54;32937:1;32941:2;32945:7;32954:5;32906:22;:54::i;:::-;32884:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32725:321;;;:::o;8278:326::-;8338:4;8595:1;8573:7;:19;;;:23;8566:30;;8278:326;;;:::o;33382:439::-;33476:1;33462:16;;:2;:16;;;;33454:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33535:16;33543:7;33535;:16::i;:::-;33534:17;33526:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33597:45;33626:1;33630:2;33634:7;33597:20;:45::i;:::-;33672:1;33655:9;:13;33665:2;33655:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33703:2;33684:7;:16;33692:7;33684:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33748:7;33744:2;33723:33;;33740:1;33723:33;;;;;;;;;;;;33769:44;33797:1;33801:2;33805:7;33769:19;:44::i;:::-;33382:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:179::-;8036:10;8057:46;8099:3;8091:6;8057:46;:::i;:::-;8135:4;8130:3;8126:14;8112:28;;7967:179;;;;:::o;8152:118::-;8239:24;8257:5;8239:24;:::i;:::-;8234:3;8227:37;8152:118;;:::o;8306:732::-;8425:3;8454:54;8502:5;8454:54;:::i;:::-;8524:86;8603:6;8598:3;8524:86;:::i;:::-;8517:93;;8634:56;8684:5;8634:56;:::i;:::-;8713:7;8744:1;8729:284;8754:6;8751:1;8748:13;8729:284;;;8830:6;8824:13;8857:63;8916:3;8901:13;8857:63;:::i;:::-;8850:70;;8943:60;8996:6;8943:60;:::i;:::-;8933:70;;8789:224;8776:1;8773;8769:9;8764:14;;8729:284;;;8733:14;9029:3;9022:10;;8430:608;;;8306:732;;;;:::o;9044:109::-;9125:21;9140:5;9125:21;:::i;:::-;9120:3;9113:34;9044:109;;:::o;9159:360::-;9245:3;9273:38;9305:5;9273:38;:::i;:::-;9327:70;9390:6;9385:3;9327:70;:::i;:::-;9320:77;;9406:52;9451:6;9446:3;9439:4;9432:5;9428:16;9406:52;:::i;:::-;9483:29;9505:6;9483:29;:::i;:::-;9478:3;9474:39;9467:46;;9249:270;9159:360;;;;:::o;9525:364::-;9613:3;9641:39;9674:5;9641:39;:::i;:::-;9696:71;9760:6;9755:3;9696:71;:::i;:::-;9689:78;;9776:52;9821:6;9816:3;9809:4;9802:5;9798:16;9776:52;:::i;:::-;9853:29;9875:6;9853:29;:::i;:::-;9848:3;9844:39;9837:46;;9617:272;9525:364;;;;:::o;9895:377::-;10001:3;10029:39;10062:5;10029:39;:::i;:::-;10084:89;10166:6;10161:3;10084:89;:::i;:::-;10077:96;;10182:52;10227:6;10222:3;10215:4;10208:5;10204:16;10182:52;:::i;:::-;10259:6;10254:3;10250:16;10243:23;;10005:267;9895:377;;;;:::o;10302:845::-;10405:3;10442:5;10436:12;10471:36;10497:9;10471:36;:::i;:::-;10523:89;10605:6;10600:3;10523:89;:::i;:::-;10516:96;;10643:1;10632:9;10628:17;10659:1;10654:137;;;;10805:1;10800:341;;;;10621:520;;10654:137;10738:4;10734:9;10723;10719:25;10714:3;10707:38;10774:6;10769:3;10765:16;10758:23;;10654:137;;10800:341;10867:38;10899:5;10867:38;:::i;:::-;10927:1;10941:154;10955:6;10952:1;10949:13;10941:154;;;11029:7;11023:14;11019:1;11014:3;11010:11;11003:35;11079:1;11070:7;11066:15;11055:26;;10977:4;10974:1;10970:12;10965:17;;10941:154;;;11124:6;11119:3;11115:16;11108:23;;10807:334;;10621:520;;10409:738;;10302:845;;;;:::o;11153:366::-;11295:3;11316:67;11380:2;11375:3;11316:67;:::i;:::-;11309:74;;11392:93;11481:3;11392:93;:::i;:::-;11510:2;11505:3;11501:12;11494:19;;11153:366;;;:::o;11525:::-;11667:3;11688:67;11752:2;11747:3;11688:67;:::i;:::-;11681:74;;11764:93;11853:3;11764:93;:::i;:::-;11882:2;11877:3;11873:12;11866:19;;11525:366;;;:::o;11897:::-;12039:3;12060:67;12124:2;12119:3;12060:67;:::i;:::-;12053:74;;12136:93;12225:3;12136:93;:::i;:::-;12254:2;12249:3;12245:12;12238:19;;11897:366;;;:::o;12269:::-;12411:3;12432:67;12496:2;12491:3;12432:67;:::i;:::-;12425:74;;12508:93;12597:3;12508:93;:::i;:::-;12626:2;12621:3;12617:12;12610:19;;12269:366;;;:::o;12641:::-;12783:3;12804:67;12868:2;12863:3;12804:67;:::i;:::-;12797:74;;12880:93;12969:3;12880:93;:::i;:::-;12998:2;12993:3;12989:12;12982:19;;12641:366;;;:::o;13013:::-;13155:3;13176:67;13240:2;13235:3;13176:67;:::i;:::-;13169:74;;13252:93;13341:3;13252:93;:::i;:::-;13370:2;13365:3;13361:12;13354:19;;13013:366;;;:::o;13385:::-;13527:3;13548:67;13612:2;13607:3;13548:67;:::i;:::-;13541:74;;13624:93;13713:3;13624:93;:::i;:::-;13742:2;13737:3;13733:12;13726:19;;13385:366;;;:::o;13757:::-;13899:3;13920:67;13984:2;13979:3;13920:67;:::i;:::-;13913:74;;13996:93;14085:3;13996:93;:::i;:::-;14114:2;14109:3;14105:12;14098:19;;13757:366;;;:::o;14129:::-;14271:3;14292:67;14356:2;14351:3;14292:67;:::i;:::-;14285:74;;14368:93;14457:3;14368:93;:::i;:::-;14486:2;14481:3;14477:12;14470:19;;14129:366;;;:::o;14501:::-;14643:3;14664:67;14728:2;14723:3;14664:67;:::i;:::-;14657:74;;14740:93;14829:3;14740:93;:::i;:::-;14858:2;14853:3;14849:12;14842:19;;14501:366;;;:::o;14873:::-;15015:3;15036:67;15100:2;15095:3;15036:67;:::i;:::-;15029:74;;15112:93;15201:3;15112:93;:::i;:::-;15230:2;15225:3;15221:12;15214:19;;14873:366;;;:::o;15245:::-;15387:3;15408:67;15472:2;15467:3;15408:67;:::i;:::-;15401:74;;15484:93;15573:3;15484:93;:::i;:::-;15602:2;15597:3;15593:12;15586:19;;15245:366;;;:::o;15617:::-;15759:3;15780:67;15844:2;15839:3;15780:67;:::i;:::-;15773:74;;15856:93;15945:3;15856:93;:::i;:::-;15974:2;15969:3;15965:12;15958:19;;15617:366;;;:::o;15989:::-;16131:3;16152:67;16216:2;16211:3;16152:67;:::i;:::-;16145:74;;16228:93;16317:3;16228:93;:::i;:::-;16346:2;16341:3;16337:12;16330:19;;15989:366;;;:::o;16361:::-;16503:3;16524:67;16588:2;16583:3;16524:67;:::i;:::-;16517:74;;16600:93;16689:3;16600:93;:::i;:::-;16718:2;16713:3;16709:12;16702:19;;16361:366;;;:::o;16733:::-;16875:3;16896:67;16960:2;16955:3;16896:67;:::i;:::-;16889:74;;16972:93;17061:3;16972:93;:::i;:::-;17090:2;17085:3;17081:12;17074:19;;16733:366;;;:::o;17105:::-;17247:3;17268:67;17332:2;17327:3;17268:67;:::i;:::-;17261:74;;17344:93;17433:3;17344:93;:::i;:::-;17462:2;17457:3;17453:12;17446:19;;17105:366;;;:::o;17477:398::-;17636:3;17657:83;17738:1;17733:3;17657:83;:::i;:::-;17650:90;;17749:93;17838:3;17749:93;:::i;:::-;17867:1;17862:3;17858:11;17851:18;;17477:398;;;:::o;17881:366::-;18023:3;18044:67;18108:2;18103:3;18044:67;:::i;:::-;18037:74;;18120:93;18209:3;18120:93;:::i;:::-;18238:2;18233:3;18229:12;18222:19;;17881:366;;;:::o;18253:::-;18395:3;18416:67;18480:2;18475:3;18416:67;:::i;:::-;18409:74;;18492:93;18581:3;18492:93;:::i;:::-;18610:2;18605:3;18601:12;18594:19;;18253:366;;;:::o;18625:108::-;18702:24;18720:5;18702:24;:::i;:::-;18697:3;18690:37;18625:108;;:::o;18739:118::-;18826:24;18844:5;18826:24;:::i;:::-;18821:3;18814:37;18739:118;;:::o;18863:589::-;19088:3;19110:95;19201:3;19192:6;19110:95;:::i;:::-;19103:102;;19222:95;19313:3;19304:6;19222:95;:::i;:::-;19215:102;;19334:92;19422:3;19413:6;19334:92;:::i;:::-;19327:99;;19443:3;19436:10;;18863:589;;;;;;:::o;19458:379::-;19642:3;19664:147;19807:3;19664:147;:::i;:::-;19657:154;;19828:3;19821:10;;19458:379;;;:::o;19843:222::-;19936:4;19974:2;19963:9;19959:18;19951:26;;19987:71;20055:1;20044:9;20040:17;20031:6;19987:71;:::i;:::-;19843:222;;;;:::o;20071:640::-;20266:4;20304:3;20293:9;20289:19;20281:27;;20318:71;20386:1;20375:9;20371:17;20362:6;20318:71;:::i;:::-;20399:72;20467:2;20456:9;20452:18;20443:6;20399:72;:::i;:::-;20481;20549:2;20538:9;20534:18;20525:6;20481:72;:::i;:::-;20600:9;20594:4;20590:20;20585:2;20574:9;20570:18;20563:48;20628:76;20699:4;20690:6;20628:76;:::i;:::-;20620:84;;20071:640;;;;;;;:::o;20717:373::-;20860:4;20898:2;20887:9;20883:18;20875:26;;20947:9;20941:4;20937:20;20933:1;20922:9;20918:17;20911:47;20975:108;21078:4;21069:6;20975:108;:::i;:::-;20967:116;;20717:373;;;;:::o;21096:210::-;21183:4;21221:2;21210:9;21206:18;21198:26;;21234:65;21296:1;21285:9;21281:17;21272:6;21234:65;:::i;:::-;21096:210;;;;:::o;21312:313::-;21425:4;21463:2;21452:9;21448:18;21440:26;;21512:9;21506:4;21502:20;21498:1;21487:9;21483:17;21476:47;21540:78;21613:4;21604:6;21540:78;:::i;:::-;21532:86;;21312:313;;;;:::o;21631:419::-;21797:4;21835:2;21824:9;21820:18;21812:26;;21884:9;21878:4;21874:20;21870:1;21859:9;21855:17;21848:47;21912:131;22038:4;21912:131;:::i;:::-;21904:139;;21631:419;;;:::o;22056:::-;22222:4;22260:2;22249:9;22245:18;22237:26;;22309:9;22303:4;22299:20;22295:1;22284:9;22280:17;22273:47;22337:131;22463:4;22337:131;:::i;:::-;22329:139;;22056:419;;;:::o;22481:::-;22647:4;22685:2;22674:9;22670:18;22662:26;;22734:9;22728:4;22724:20;22720:1;22709:9;22705:17;22698:47;22762:131;22888:4;22762:131;:::i;:::-;22754:139;;22481:419;;;:::o;22906:::-;23072:4;23110:2;23099:9;23095:18;23087:26;;23159:9;23153:4;23149:20;23145:1;23134:9;23130:17;23123:47;23187:131;23313:4;23187:131;:::i;:::-;23179:139;;22906:419;;;:::o;23331:::-;23497:4;23535:2;23524:9;23520:18;23512:26;;23584:9;23578:4;23574:20;23570:1;23559:9;23555:17;23548:47;23612:131;23738:4;23612:131;:::i;:::-;23604:139;;23331:419;;;:::o;23756:::-;23922:4;23960:2;23949:9;23945:18;23937:26;;24009:9;24003:4;23999:20;23995:1;23984:9;23980:17;23973:47;24037:131;24163:4;24037:131;:::i;:::-;24029:139;;23756:419;;;:::o;24181:::-;24347:4;24385:2;24374:9;24370:18;24362:26;;24434:9;24428:4;24424:20;24420:1;24409:9;24405:17;24398:47;24462:131;24588:4;24462:131;:::i;:::-;24454:139;;24181:419;;;:::o;24606:::-;24772:4;24810:2;24799:9;24795:18;24787:26;;24859:9;24853:4;24849:20;24845:1;24834:9;24830:17;24823:47;24887:131;25013:4;24887:131;:::i;:::-;24879:139;;24606:419;;;:::o;25031:::-;25197:4;25235:2;25224:9;25220:18;25212:26;;25284:9;25278:4;25274:20;25270:1;25259:9;25255:17;25248:47;25312:131;25438:4;25312:131;:::i;:::-;25304:139;;25031:419;;;:::o;25456:::-;25622:4;25660:2;25649:9;25645:18;25637:26;;25709:9;25703:4;25699:20;25695:1;25684:9;25680:17;25673:47;25737:131;25863:4;25737:131;:::i;:::-;25729:139;;25456:419;;;:::o;25881:::-;26047:4;26085:2;26074:9;26070:18;26062:26;;26134:9;26128:4;26124:20;26120:1;26109:9;26105:17;26098:47;26162:131;26288:4;26162:131;:::i;:::-;26154:139;;25881:419;;;:::o;26306:::-;26472:4;26510:2;26499:9;26495:18;26487:26;;26559:9;26553:4;26549:20;26545:1;26534:9;26530:17;26523:47;26587:131;26713:4;26587:131;:::i;:::-;26579:139;;26306:419;;;:::o;26731:::-;26897:4;26935:2;26924:9;26920:18;26912:26;;26984:9;26978:4;26974:20;26970:1;26959:9;26955:17;26948:47;27012:131;27138:4;27012:131;:::i;:::-;27004:139;;26731:419;;;:::o;27156:::-;27322:4;27360:2;27349:9;27345:18;27337:26;;27409:9;27403:4;27399:20;27395:1;27384:9;27380:17;27373:47;27437:131;27563:4;27437:131;:::i;:::-;27429:139;;27156:419;;;:::o;27581:::-;27747:4;27785:2;27774:9;27770:18;27762:26;;27834:9;27828:4;27824:20;27820:1;27809:9;27805:17;27798:47;27862:131;27988:4;27862:131;:::i;:::-;27854:139;;27581:419;;;:::o;28006:::-;28172:4;28210:2;28199:9;28195:18;28187:26;;28259:9;28253:4;28249:20;28245:1;28234:9;28230:17;28223:47;28287:131;28413:4;28287:131;:::i;:::-;28279:139;;28006:419;;;:::o;28431:::-;28597:4;28635:2;28624:9;28620:18;28612:26;;28684:9;28678:4;28674:20;28670:1;28659:9;28655:17;28648:47;28712:131;28838:4;28712:131;:::i;:::-;28704:139;;28431:419;;;:::o;28856:::-;29022:4;29060:2;29049:9;29045:18;29037:26;;29109:9;29103:4;29099:20;29095:1;29084:9;29080:17;29073:47;29137:131;29263:4;29137:131;:::i;:::-;29129:139;;28856:419;;;:::o;29281:::-;29447:4;29485:2;29474:9;29470:18;29462:26;;29534:9;29528:4;29524:20;29520:1;29509:9;29505:17;29498:47;29562:131;29688:4;29562:131;:::i;:::-;29554:139;;29281:419;;;:::o;29706:222::-;29799:4;29837:2;29826:9;29822:18;29814:26;;29850:71;29918:1;29907:9;29903:17;29894:6;29850:71;:::i;:::-;29706:222;;;;:::o;29934:129::-;29968:6;29995:20;;:::i;:::-;29985:30;;30024:33;30052:4;30044:6;30024:33;:::i;:::-;29934:129;;;:::o;30069:75::-;30102:6;30135:2;30129:9;30119:19;;30069:75;:::o;30150:307::-;30211:4;30301:18;30293:6;30290:30;30287:56;;;30323:18;;:::i;:::-;30287:56;30361:29;30383:6;30361:29;:::i;:::-;30353:37;;30445:4;30439;30435:15;30427:23;;30150:307;;;:::o;30463:308::-;30525:4;30615:18;30607:6;30604:30;30601:56;;;30637:18;;:::i;:::-;30601:56;30675:29;30697:6;30675:29;:::i;:::-;30667:37;;30759:4;30753;30749:15;30741:23;;30463:308;;;:::o;30777:132::-;30844:4;30867:3;30859:11;;30897:4;30892:3;30888:14;30880:22;;30777:132;;;:::o;30915:141::-;30964:4;30987:3;30979:11;;31010:3;31007:1;31000:14;31044:4;31041:1;31031:18;31023:26;;30915:141;;;:::o;31062:114::-;31129:6;31163:5;31157:12;31147:22;;31062:114;;;:::o;31182:98::-;31233:6;31267:5;31261:12;31251:22;;31182:98;;;:::o;31286:99::-;31338:6;31372:5;31366:12;31356:22;;31286:99;;;:::o;31391:113::-;31461:4;31493;31488:3;31484:14;31476:22;;31391:113;;;:::o;31510:184::-;31609:11;31643:6;31638:3;31631:19;31683:4;31678:3;31674:14;31659:29;;31510:184;;;;:::o;31700:168::-;31783:11;31817:6;31812:3;31805:19;31857:4;31852:3;31848:14;31833:29;;31700:168;;;;:::o;31874:147::-;31975:11;32012:3;31997:18;;31874:147;;;;:::o;32027:169::-;32111:11;32145:6;32140:3;32133:19;32185:4;32180:3;32176:14;32161:29;;32027:169;;;;:::o;32202:148::-;32304:11;32341:3;32326:18;;32202:148;;;;:::o;32356:305::-;32396:3;32415:20;32433:1;32415:20;:::i;:::-;32410:25;;32449:20;32467:1;32449:20;:::i;:::-;32444:25;;32603:1;32535:66;32531:74;32528:1;32525:81;32522:107;;;32609:18;;:::i;:::-;32522:107;32653:1;32650;32646:9;32639:16;;32356:305;;;;:::o;32667:185::-;32707:1;32724:20;32742:1;32724:20;:::i;:::-;32719:25;;32758:20;32776:1;32758:20;:::i;:::-;32753:25;;32797:1;32787:35;;32802:18;;:::i;:::-;32787:35;32844:1;32841;32837:9;32832:14;;32667:185;;;;:::o;32858:191::-;32898:4;32918:20;32936:1;32918:20;:::i;:::-;32913:25;;32952:20;32970:1;32952:20;:::i;:::-;32947:25;;32991:1;32988;32985:8;32982:34;;;32996:18;;:::i;:::-;32982:34;33041:1;33038;33034:9;33026:17;;32858:191;;;;:::o;33055:96::-;33092:7;33121:24;33139:5;33121:24;:::i;:::-;33110:35;;33055:96;;;:::o;33157:90::-;33191:7;33234:5;33227:13;33220:21;33209:32;;33157:90;;;:::o;33253:149::-;33289:7;33329:66;33322:5;33318:78;33307:89;;33253:149;;;:::o;33408:126::-;33445:7;33485:42;33478:5;33474:54;33463:65;;33408:126;;;:::o;33540:77::-;33577:7;33606:5;33595:16;;33540:77;;;:::o;33623:154::-;33707:6;33702:3;33697;33684:30;33769:1;33760:6;33755:3;33751:16;33744:27;33623:154;;;:::o;33783:307::-;33851:1;33861:113;33875:6;33872:1;33869:13;33861:113;;;33960:1;33955:3;33951:11;33945:18;33941:1;33936:3;33932:11;33925:39;33897:2;33894:1;33890:10;33885:15;;33861:113;;;33992:6;33989:1;33986:13;33983:101;;;34072:1;34063:6;34058:3;34054:16;34047:27;33983:101;33832:258;33783:307;;;:::o;34096:320::-;34140:6;34177:1;34171:4;34167:12;34157:22;;34224:1;34218:4;34214:12;34245:18;34235:81;;34301:4;34293:6;34289:17;34279:27;;34235:81;34363:2;34355:6;34352:14;34332:18;34329:38;34326:84;;;34382:18;;:::i;:::-;34326:84;34147:269;34096:320;;;:::o;34422:281::-;34505:27;34527:4;34505:27;:::i;:::-;34497:6;34493:40;34635:6;34623:10;34620:22;34599:18;34587:10;34584:34;34581:62;34578:88;;;34646:18;;:::i;:::-;34578:88;34686:10;34682:2;34675:22;34465:238;34422:281;;:::o;34709:233::-;34748:3;34771:24;34789:5;34771:24;:::i;:::-;34762:33;;34817:66;34810:5;34807:77;34804:103;;;34887:18;;:::i;:::-;34804:103;34934:1;34927:5;34923:13;34916:20;;34709:233;;;:::o;34948:176::-;34980:1;34997:20;35015:1;34997:20;:::i;:::-;34992:25;;35031:20;35049:1;35031:20;:::i;:::-;35026:25;;35070:1;35060:35;;35075:18;;:::i;:::-;35060:35;35116:1;35113;35109:9;35104:14;;34948:176;;;;:::o;35130:180::-;35178:77;35175:1;35168:88;35275:4;35272:1;35265:15;35299:4;35296:1;35289:15;35316:180;35364:77;35361:1;35354:88;35461:4;35458:1;35451:15;35485:4;35482:1;35475:15;35502:180;35550:77;35547:1;35540:88;35647:4;35644:1;35637:15;35671:4;35668:1;35661:15;35688:180;35736:77;35733:1;35726:88;35833:4;35830:1;35823:15;35857:4;35854:1;35847:15;35874:180;35922:77;35919:1;35912:88;36019:4;36016:1;36009:15;36043:4;36040:1;36033:15;36060:117;36169:1;36166;36159:12;36183:117;36292:1;36289;36282:12;36306:117;36415:1;36412;36405:12;36429:117;36538:1;36535;36528:12;36552:102;36593:6;36644:2;36640:7;36635:2;36628:5;36624:14;36620:28;36610:38;;36552:102;;;:::o;36660:237::-;36800:34;36796:1;36788:6;36784:14;36777:58;36869:20;36864:2;36856:6;36852:15;36845:45;36660:237;:::o;36903:225::-;37043:34;37039:1;37031:6;37027:14;37020:58;37112:8;37107:2;37099:6;37095:15;37088:33;36903:225;:::o;37134:224::-;37274:34;37270:1;37262:6;37258:14;37251:58;37343:7;37338:2;37330:6;37326:15;37319:32;37134:224;:::o;37364:178::-;37504:30;37500:1;37492:6;37488:14;37481:54;37364:178;:::o;37548:170::-;37688:22;37684:1;37676:6;37672:14;37665:46;37548:170;:::o;37724:223::-;37864:34;37860:1;37852:6;37848:14;37841:58;37933:6;37928:2;37920:6;37916:15;37909:31;37724:223;:::o;37953:175::-;38093:27;38089:1;38081:6;38077:14;38070:51;37953:175;:::o;38134:231::-;38274:34;38270:1;38262:6;38258:14;38251:58;38343:14;38338:2;38330:6;38326:15;38319:39;38134:231;:::o;38371:243::-;38511:34;38507:1;38499:6;38495:14;38488:58;38580:26;38575:2;38567:6;38563:15;38556:51;38371:243;:::o;38620:229::-;38760:34;38756:1;38748:6;38744:14;38737:58;38829:12;38824:2;38816:6;38812:15;38805:37;38620:229;:::o;38855:228::-;38995:34;38991:1;38983:6;38979:14;38972:58;39064:11;39059:2;39051:6;39047:15;39040:36;38855:228;:::o;39089:182::-;39229:34;39225:1;39217:6;39213:14;39206:58;39089:182;:::o;39277:231::-;39417:34;39413:1;39405:6;39401:14;39394:58;39486:14;39481:2;39473:6;39469:15;39462:39;39277:231;:::o;39514:182::-;39654:34;39650:1;39642:6;39638:14;39631:58;39514:182;:::o;39702:173::-;39842:25;39838:1;39830:6;39826:14;39819:49;39702:173;:::o;39881:234::-;40021:34;40017:1;40009:6;40005:14;39998:58;40090:17;40085:2;40077:6;40073:15;40066:42;39881:234;:::o;40121:220::-;40261:34;40257:1;40249:6;40245:14;40238:58;40330:3;40325:2;40317:6;40313:15;40306:28;40121:220;:::o;40347:114::-;;:::o;40467:170::-;40607:22;40603:1;40595:6;40591:14;40584:46;40467:170;:::o;40643:236::-;40783:34;40779:1;40771:6;40767:14;40760:58;40852:19;40847:2;40839:6;40835:15;40828:44;40643:236;:::o;40885:122::-;40958:24;40976:5;40958:24;:::i;:::-;40951:5;40948:35;40938:63;;40997:1;40994;40987:12;40938:63;40885:122;:::o;41013:116::-;41083:21;41098:5;41083:21;:::i;:::-;41076:5;41073:32;41063:60;;41119:1;41116;41109:12;41063:60;41013:116;:::o;41135:120::-;41207:23;41224:5;41207:23;:::i;:::-;41200:5;41197:34;41187:62;;41245:1;41242;41235:12;41187:62;41135:120;:::o;41261:122::-;41334:24;41352:5;41334:24;:::i;:::-;41327:5;41324:35;41314:63;;41373:1;41370;41363:12;41314:63;41261:122;:::o

Swarm Source

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