ERC-721
Overview
Max Total Supply
999 MMSML
Holders
462
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 MMSMLLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
meowmeowsml
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-26 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) // Thanks Azuki for 721A contract // MeOwMeoW Save My Life pragma solidity ^0.8.0; interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // 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/ERC20/utils/SafeERC20.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // 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 v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/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: contracts/TwistedToonz.sol // Creator: Chiru Labs pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), "ERC721A: number minted query for the zero address"); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _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 override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: 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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); require(quantity != 0, "ERC721A: quantity must be greater than 0"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } updatedIndex++; } currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved"); require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner"); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } //MeOwMeoW Save My Life contract meowmeowsml is ERC721A, Ownable, ReentrancyGuard { uint public price = 0; //FREE MINT uint public maxPerTx = 2; uint public maxPerWallet = 2; uint public totalFree = 999; uint public maxSupply = 999; uint public nextOwnerToExplicitlySet; bool public mintEnabled; string public baseURI; constructor() ERC721A("MeOwMeoW Save My Life", "MMSML"){} function mint(uint256 count) external payable { uint cost = price; if(totalSupply() + count < totalFree + 1) { cost = 0; } require(msg.sender == tx.origin,""); require(msg.value == count * cost,""); require(totalSupply() + count < maxSupply + 1,""); require(mintEnabled, ""); require(numberMinted(msg.sender) + count <= maxPerWallet,""); require( count < maxPerTx + 1, ""); _safeMint(msg.sender, count); } function ownerBatchMint(uint256 count) external onlyOwner { require(totalSupply() + count < maxSupply + 1,""); _safeMint(msg.sender, count); } function enableMinting() external onlyOwner { mintEnabled = !mintEnabled; } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function setBaseURI(string calldata baseURI_) external onlyOwner { baseURI = baseURI_; } function setPrice(uint256 price_) external onlyOwner { price = price_; } function setTotalFree(uint256 totalFree_) external onlyOwner { totalFree = totalFree_; } function setMaxPerTx(uint256 maxPerTx_) external onlyOwner { maxPerTx = maxPerTx_; } function setMaxPerWallet(uint256 maxPerWallet_) external onlyOwner { maxPerWallet = maxPerWallet_; } function setmaxSupply(uint256 maxSupply_) external onlyOwner { maxSupply = maxSupply_; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function withdraw() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant { _setOwnersExplicit(quantity); } function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return ownershipOf(tokenId); } /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { require(quantity != 0, ""); require(currentIndex != 0, ""); uint256 _nextOwnerToExplicitlySet = nextOwnerToExplicitlySet; require(_nextOwnerToExplicitlySet < currentIndex, ""); // Index underflow is impossible. // Counter or index overflow is incredibly unrealistic. unchecked { uint256 endIndex = _nextOwnerToExplicitlySet + quantity - 1; // Set the end index to be the last token index if (endIndex + 1 > currentIndex) { endIndex = currentIndex - 1; } for (uint256 i = _nextOwnerToExplicitlySet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i].addr = ownership.addr; _ownerships[i].startTimestamp = ownership.startTimestamp; } } nextOwnerToExplicitlySet = endIndex + 1; } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","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":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"ownerBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx_","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerWallet_","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"totalFree_","type":"uint256"}],"name":"setTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260006009556002600a556002600b556103e7600c556103e7600d553480156200002c57600080fd5b506040518060400160405280601581526020017f4d654f774d656f572053617665204d79204c69666500000000000000000000008152506040518060400160405280600581526020017f4d4d534d4c0000000000000000000000000000000000000000000000000000008152508160019080519060200190620000b1929190620001c9565b508060029080519060200190620000ca929190620001c9565b505050620000ed620000e1620000fb60201b60201c565b6200010360201b60201c565b6001600881905550620002de565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001d79062000279565b90600052602060002090601f016020900481019282620001fb576000855562000247565b82601f106200021657805160ff191683800117855562000247565b8280016001018555821562000247579182015b828111156200024657825182559160200191906001019062000229565b5b5090506200025691906200025a565b5090565b5b80821115620002755760008160009055506001016200025b565b5090565b600060028204905060018216806200029257607f821691505b60208210811415620002a957620002a8620002af565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614b8780620002ee6000396000f3fe60806040526004361061023b5760003560e01c80638da5cb5b1161012e578063c87b56dd116100ab578063e268e4d31161006f578063e268e4d314610874578063e797ec1b1461089d578063e985e9c5146108b4578063f2fde38b146108f1578063f968adbe1461091a5761023b565b8063c87b56dd14610779578063d1239730146107b6578063d5abeb01146107e1578063d7224ba01461080c578063dc33e681146108375761023b565b8063a035b1fe116100f2578063a035b1fe146106b7578063a0712d68146106e2578063a22cb465146106fe578063b88d4fde14610727578063c6f6f216146107505761023b565b80638da5cb5b146105d25780638db89f07146105fd57806391b7f5ed146106265780639231ab2a1461064f57806395d89b411461068c5761023b565b80633ccfd60b116101bc578063563aaf1111610180578063563aaf11146104ed5780636352211e146105165780636c0360eb1461055357806370a082311461057e578063715018a6146105bb5761023b565b80633ccfd60b1461041c57806342842e0e14610433578063453c23101461045c5780634f6ccce71461048757806355f804b3146104c45761023b565b8063228025e811610203578063228025e81461033957806323b872dd146103625780632d20fb601461038b5780632f745c59146103b4578063333e44e6146103f15761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806318160ddd1461030e575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061371a565b610945565b6040516102749190613cf3565b60405180910390f35b34801561028957600080fd5b50610292610a8f565b60405161029f9190613d0e565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906137c1565b610b21565b6040516102dc9190613c8c565b60405180910390f35b3480156102f157600080fd5b5061030c600480360381019061030791906136da565b610ba6565b005b34801561031a57600080fd5b50610323610cbf565b604051610330919061402b565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b91906137c1565b610cc8565b005b34801561036e57600080fd5b50610389600480360381019061038491906135c4565b610d4e565b005b34801561039757600080fd5b506103b260048036038101906103ad91906137c1565b610d5e565b005b3480156103c057600080fd5b506103db60048036038101906103d691906136da565b610e3c565b6040516103e8919061402b565b60405180910390f35b3480156103fd57600080fd5b5061040661102e565b604051610413919061402b565b60405180910390f35b34801561042857600080fd5b50610431611034565b005b34801561043f57600080fd5b5061045a600480360381019061045591906135c4565b6111b5565b005b34801561046857600080fd5b506104716111d5565b60405161047e919061402b565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a991906137c1565b6111db565b6040516104bb919061402b565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e69190613774565b61122e565b005b3480156104f957600080fd5b50610514600480360381019061050f91906137c1565b6112c0565b005b34801561052257600080fd5b5061053d600480360381019061053891906137c1565b611346565b60405161054a9190613c8c565b60405180910390f35b34801561055f57600080fd5b5061056861135c565b6040516105759190613d0e565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a09190613557565b6113ea565b6040516105b2919061402b565b60405180910390f35b3480156105c757600080fd5b506105d06114d3565b005b3480156105de57600080fd5b506105e761155b565b6040516105f49190613c8c565b60405180910390f35b34801561060957600080fd5b50610624600480360381019061061f91906137c1565b611585565b005b34801561063257600080fd5b5061064d600480360381019061064891906137c1565b611670565b005b34801561065b57600080fd5b50610676600480360381019061067191906137c1565b6116f6565b6040516106839190614010565b60405180910390f35b34801561069857600080fd5b506106a161170e565b6040516106ae9190613d0e565b60405180910390f35b3480156106c357600080fd5b506106cc6117a0565b6040516106d9919061402b565b60405180910390f35b6106fc60048036038101906106f791906137c1565b6117a6565b005b34801561070a57600080fd5b506107256004803603810190610720919061369a565b6119fc565b005b34801561073357600080fd5b5061074e60048036038101906107499190613617565b611b7d565b005b34801561075c57600080fd5b50610777600480360381019061077291906137c1565b611bd9565b005b34801561078557600080fd5b506107a0600480360381019061079b91906137c1565b611c5f565b6040516107ad9190613d0e565b60405180910390f35b3480156107c257600080fd5b506107cb611d07565b6040516107d89190613cf3565b60405180910390f35b3480156107ed57600080fd5b506107f6611d1a565b604051610803919061402b565b60405180910390f35b34801561081857600080fd5b50610821611d20565b60405161082e919061402b565b60405180910390f35b34801561084357600080fd5b5061085e60048036038101906108599190613557565b611d26565b60405161086b919061402b565b60405180910390f35b34801561088057600080fd5b5061089b600480360381019061089691906137c1565b611d38565b005b3480156108a957600080fd5b506108b2611dbe565b005b3480156108c057600080fd5b506108db60048036038101906108d69190613584565b611e66565b6040516108e89190613cf3565b60405180910390f35b3480156108fd57600080fd5b5061091860048036038101906109139190613557565b611efa565b005b34801561092657600080fd5b5061092f611ff2565b60405161093c919061402b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a7857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a885750610a8782611ff8565b5b9050919050565b606060018054610a9e906142c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610aca906142c9565b8015610b175780601f10610aec57610100808354040283529160200191610b17565b820191906000526020600020905b815481529060010190602001808311610afa57829003601f168201915b5050505050905090565b6000610b2c82612062565b610b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6290613ff0565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bb182611346565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1990613ed0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c4161206f565b73ffffffffffffffffffffffffffffffffffffffff161480610c705750610c6f81610c6a61206f565b611e66565b5b610caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca690613df0565b60405180910390fd5b610cba838383612077565b505050565b60008054905090565b610cd061206f565b73ffffffffffffffffffffffffffffffffffffffff16610cee61155b565b73ffffffffffffffffffffffffffffffffffffffff1614610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b90613e50565b60405180910390fd5b80600d8190555050565b610d59838383612129565b505050565b610d6661206f565b73ffffffffffffffffffffffffffffffffffffffff16610d8461155b565b73ffffffffffffffffffffffffffffffffffffffff1614610dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd190613e50565b60405180910390fd5b60026008541415610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1790613fb0565b60405180910390fd5b6002600881905550610e3181612669565b600160088190555050565b6000610e47836113ea565b8210610e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7f90613d30565b60405180910390fd5b6000610e92610cbf565b905060008060005b83811015610fec576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f8c57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fde5786841415610fd5578195505050505050611028565b83806001019450505b508080600101915050610e9a565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101f90613f90565b60405180910390fd5b92915050565b600c5481565b61103c61206f565b73ffffffffffffffffffffffffffffffffffffffff1661105a61155b565b73ffffffffffffffffffffffffffffffffffffffff16146110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a790613e50565b60405180910390fd5b600260085414156110f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ed90613fb0565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161112490613c77565b60006040518083038185875af1925050503d8060008114611161576040519150601f19603f3d011682016040523d82523d6000602084013e611166565b606091505b50509050806111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a190613f10565b60405180910390fd5b506001600881905550565b6111d083838360405180602001604052806000815250611b7d565b505050565b600b5481565b60006111e5610cbf565b8210611226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121d90613d90565b60405180910390fd5b819050919050565b61123661206f565b73ffffffffffffffffffffffffffffffffffffffff1661125461155b565b73ffffffffffffffffffffffffffffffffffffffff16146112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a190613e50565b60405180910390fd5b8181601091906112bb92919061334b565b505050565b6112c861206f565b73ffffffffffffffffffffffffffffffffffffffff166112e661155b565b73ffffffffffffffffffffffffffffffffffffffff161461133c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133390613e50565b60405180910390fd5b80600c8190555050565b60006113518261289b565b600001519050919050565b60108054611369906142c9565b80601f0160208091040260200160405190810160405280929190818152602001828054611395906142c9565b80156113e25780601f106113b7576101008083540402835291602001916113e2565b820191906000526020600020905b8154815290600101906020018083116113c557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561145b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145290613e10565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6114db61206f565b73ffffffffffffffffffffffffffffffffffffffff166114f961155b565b73ffffffffffffffffffffffffffffffffffffffff161461154f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154690613e50565b60405180910390fd5b6115596000612a35565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61158d61206f565b73ffffffffffffffffffffffffffffffffffffffff166115ab61155b565b73ffffffffffffffffffffffffffffffffffffffff1614611601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f890613e50565b60405180910390fd5b6001600d5461161091906140ea565b81611619610cbf565b61162391906140ea565b10611663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165a90613ef0565b60405180910390fd5b61166d3382612afb565b50565b61167861206f565b73ffffffffffffffffffffffffffffffffffffffff1661169661155b565b73ffffffffffffffffffffffffffffffffffffffff16146116ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e390613e50565b60405180910390fd5b8060098190555050565b6116fe6133d1565b6117078261289b565b9050919050565b60606002805461171d906142c9565b80601f0160208091040260200160405190810160405280929190818152602001828054611749906142c9565b80156117965780601f1061176b57610100808354040283529160200191611796565b820191906000526020600020905b81548152906001019060200180831161177957829003601f168201915b5050505050905090565b60095481565b600060095490506001600c546117bc91906140ea565b826117c5610cbf565b6117cf91906140ea565b10156117da57600090505b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183f90613ef0565b60405180910390fd5b80826118549190614171565b3414611895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188c90613ef0565b60405180910390fd5b6001600d546118a491906140ea565b826118ad610cbf565b6118b791906140ea565b106118f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ee90613ef0565b60405180910390fd5b600f60009054906101000a900460ff16611946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193d90613ef0565b60405180910390fd5b600b548261195333611d26565b61195d91906140ea565b111561199e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199590613ef0565b60405180910390fd5b6001600a546119ad91906140ea565b82106119ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e590613ef0565b60405180910390fd5b6119f83383612afb565b5050565b611a0461206f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6990613e90565b60405180910390fd5b8060066000611a7f61206f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b2c61206f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b719190613cf3565b60405180910390a35050565b611b88848484612129565b611b9484848484612b19565b611bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bca90613f30565b60405180910390fd5b50505050565b611be161206f565b73ffffffffffffffffffffffffffffffffffffffff16611bff61155b565b73ffffffffffffffffffffffffffffffffffffffff1614611c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4c90613e50565b60405180910390fd5b80600a8190555050565b6060611c6a82612062565b611ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca090613e70565b60405180910390fd5b6000611cb3612cb0565b9050600081511415611cd45760405180602001604052806000815250611cff565b80611cde84612d42565b604051602001611cef929190613c53565b6040516020818303038152906040525b915050919050565b600f60009054906101000a900460ff1681565b600d5481565b600e5481565b6000611d3182612ea3565b9050919050565b611d4061206f565b73ffffffffffffffffffffffffffffffffffffffff16611d5e61155b565b73ffffffffffffffffffffffffffffffffffffffff1614611db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dab90613e50565b60405180910390fd5b80600b8190555050565b611dc661206f565b73ffffffffffffffffffffffffffffffffffffffff16611de461155b565b73ffffffffffffffffffffffffffffffffffffffff1614611e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3190613e50565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f0261206f565b73ffffffffffffffffffffffffffffffffffffffff16611f2061155b565b73ffffffffffffffffffffffffffffffffffffffff1614611f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6d90613e50565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdd90613d50565b60405180910390fd5b611fef81612a35565b50565b600a5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006121348261289b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661215b61206f565b73ffffffffffffffffffffffffffffffffffffffff1614806121b7575061218061206f565b73ffffffffffffffffffffffffffffffffffffffff1661219f84610b21565b73ffffffffffffffffffffffffffffffffffffffff16145b806121d357506121d282600001516121cd61206f565b611e66565b5b905080612215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220c90613eb0565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227e90613e30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ee90613db0565b60405180910390fd5b6123048585856001612f8c565b6123146000848460000151612077565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125f95761255881612062565b156125f85782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126628585856001612f92565b5050505050565b60008114156126ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a490613ef0565b60405180910390fd5b6000805414156126f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e990613ef0565b60405180910390fd5b6000600e549050600054811061273d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273490613ef0565b60405180910390fd5b6000600183830103905060005460018201111561275d5760016000540390505b60008290505b81811161288b57600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561287e5760006127e08261289b565b905080600001516003600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080602001516003600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550505b8080600101915050612763565b5060018101600e81905550505050565b6128a36133d1565b6128ac82612062565b6128eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e290613d70565b60405180910390fd5b60008290505b600081106129f4576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129e5578092505050612a30565b508080600190039150506128f1565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2790613fd0565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612b15828260405180602001604052806000815250612f98565b5050565b6000612b3a8473ffffffffffffffffffffffffffffffffffffffff16612faa565b15612ca3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b6361206f565b8786866040518563ffffffff1660e01b8152600401612b859493929190613ca7565b602060405180830381600087803b158015612b9f57600080fd5b505af1925050508015612bd057506040513d601f19601f82011682018060405250810190612bcd9190613747565b60015b612c53573d8060008114612c00576040519150601f19603f3d011682016040523d82523d6000602084013e612c05565b606091505b50600081511415612c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4290613f30565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ca8565b600190505b949350505050565b606060108054612cbf906142c9565b80601f0160208091040260200160405190810160405280929190818152602001828054612ceb906142c9565b8015612d385780601f10612d0d57610100808354040283529160200191612d38565b820191906000526020600020905b815481529060010190602001808311612d1b57829003601f168201915b5050505050905090565b60606000821415612d8a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e9e565b600082905060005b60008214612dbc578080612da59061432c565b915050600a82612db59190614140565b9150612d92565b60008167ffffffffffffffff811115612dd857612dd7614462565b5b6040519080825280601f01601f191660200182016040528015612e0a5781602001600182028036833780820191505090505b5090505b60008514612e9757600182612e2391906141cb565b9150600a85612e329190614375565b6030612e3e91906140ea565b60f81b818381518110612e5457612e53614433565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e909190614140565b9450612e0e565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0b90613dd0565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b612fa58383836001612fcd565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303a90613f50565b60405180910390fd5b6000841415613087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307e90613f70565b60405180910390fd5b6130946000868387612f8c565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561332e57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613319576132d96000888488612b19565b613318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330f90613f30565b60405180910390fd5b5b81806001019250508080600101915050613262565b5080600081905550506133446000868387612f92565b5050505050565b828054613357906142c9565b90600052602060002090601f01602090048101928261337957600085556133c0565b82601f1061339257803560ff19168380011785556133c0565b828001600101855582156133c0579182015b828111156133bf5782358255916020019190600101906133a4565b5b5090506133cd919061340b565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561342457600081600090555060010161340c565b5090565b600061343b6134368461406b565b614046565b905082815260208101848484011115613457576134566144a0565b5b613462848285614287565b509392505050565b60008135905061347981614af5565b92915050565b60008135905061348e81614b0c565b92915050565b6000813590506134a381614b23565b92915050565b6000815190506134b881614b23565b92915050565b600082601f8301126134d3576134d2614496565b5b81356134e3848260208601613428565b91505092915050565b60008083601f84011261350257613501614496565b5b8235905067ffffffffffffffff81111561351f5761351e614491565b5b60208301915083600182028301111561353b5761353a61449b565b5b9250929050565b60008135905061355181614b3a565b92915050565b60006020828403121561356d5761356c6144aa565b5b600061357b8482850161346a565b91505092915050565b6000806040838503121561359b5761359a6144aa565b5b60006135a98582860161346a565b92505060206135ba8582860161346a565b9150509250929050565b6000806000606084860312156135dd576135dc6144aa565b5b60006135eb8682870161346a565b93505060206135fc8682870161346a565b925050604061360d86828701613542565b9150509250925092565b60008060008060808587031215613631576136306144aa565b5b600061363f8782880161346a565b94505060206136508782880161346a565b935050604061366187828801613542565b925050606085013567ffffffffffffffff811115613682576136816144a5565b5b61368e878288016134be565b91505092959194509250565b600080604083850312156136b1576136b06144aa565b5b60006136bf8582860161346a565b92505060206136d08582860161347f565b9150509250929050565b600080604083850312156136f1576136f06144aa565b5b60006136ff8582860161346a565b925050602061371085828601613542565b9150509250929050565b6000602082840312156137305761372f6144aa565b5b600061373e84828501613494565b91505092915050565b60006020828403121561375d5761375c6144aa565b5b600061376b848285016134a9565b91505092915050565b6000806020838503121561378b5761378a6144aa565b5b600083013567ffffffffffffffff8111156137a9576137a86144a5565b5b6137b5858286016134ec565b92509250509250929050565b6000602082840312156137d7576137d66144aa565b5b60006137e584828501613542565b91505092915050565b6137f7816141ff565b82525050565b613806816141ff565b82525050565b61381581614211565b82525050565b60006138268261409c565b61383081856140b2565b9350613840818560208601614296565b613849816144af565b840191505092915050565b600061385f826140a7565b61386981856140ce565b9350613879818560208601614296565b613882816144af565b840191505092915050565b6000613898826140a7565b6138a281856140df565b93506138b2818560208601614296565b80840191505092915050565b60006138cb6022836140ce565b91506138d6826144c0565b604082019050919050565b60006138ee6026836140ce565b91506138f98261450f565b604082019050919050565b6000613911602a836140ce565b915061391c8261455e565b604082019050919050565b60006139346023836140ce565b915061393f826145ad565b604082019050919050565b60006139576025836140ce565b9150613962826145fc565b604082019050919050565b600061397a6031836140ce565b91506139858261464b565b604082019050919050565b600061399d6039836140ce565b91506139a88261469a565b604082019050919050565b60006139c0602b836140ce565b91506139cb826146e9565b604082019050919050565b60006139e36026836140ce565b91506139ee82614738565b604082019050919050565b6000613a066020836140ce565b9150613a1182614787565b602082019050919050565b6000613a29602f836140ce565b9150613a34826147b0565b604082019050919050565b6000613a4c601a836140ce565b9150613a57826147ff565b602082019050919050565b6000613a6f6032836140ce565b9150613a7a82614828565b604082019050919050565b6000613a926022836140ce565b9150613a9d82614877565b604082019050919050565b6000613ab56000836140c3565b9150613ac0826148c6565b600082019050919050565b6000613ad86000836140ce565b9150613ae3826148c6565b600082019050919050565b6000613afb6010836140ce565b9150613b06826148c9565b602082019050919050565b6000613b1e6033836140ce565b9150613b29826148f2565b604082019050919050565b6000613b416021836140ce565b9150613b4c82614941565b604082019050919050565b6000613b646028836140ce565b9150613b6f82614990565b604082019050919050565b6000613b87602e836140ce565b9150613b92826149df565b604082019050919050565b6000613baa601f836140ce565b9150613bb582614a2e565b602082019050919050565b6000613bcd602f836140ce565b9150613bd882614a57565b604082019050919050565b6000613bf0602d836140ce565b9150613bfb82614aa6565b604082019050919050565b604082016000820151613c1c60008501826137ee565b506020820151613c2f6020850182613c44565b50505050565b613c3e81614269565b82525050565b613c4d81614273565b82525050565b6000613c5f828561388d565b9150613c6b828461388d565b91508190509392505050565b6000613c8282613aa8565b9150819050919050565b6000602082019050613ca160008301846137fd565b92915050565b6000608082019050613cbc60008301876137fd565b613cc960208301866137fd565b613cd66040830185613c35565b8181036060830152613ce8818461381b565b905095945050505050565b6000602082019050613d08600083018461380c565b92915050565b60006020820190508181036000830152613d288184613854565b905092915050565b60006020820190508181036000830152613d49816138be565b9050919050565b60006020820190508181036000830152613d69816138e1565b9050919050565b60006020820190508181036000830152613d8981613904565b9050919050565b60006020820190508181036000830152613da981613927565b9050919050565b60006020820190508181036000830152613dc98161394a565b9050919050565b60006020820190508181036000830152613de98161396d565b9050919050565b60006020820190508181036000830152613e0981613990565b9050919050565b60006020820190508181036000830152613e29816139b3565b9050919050565b60006020820190508181036000830152613e49816139d6565b9050919050565b60006020820190508181036000830152613e69816139f9565b9050919050565b60006020820190508181036000830152613e8981613a1c565b9050919050565b60006020820190508181036000830152613ea981613a3f565b9050919050565b60006020820190508181036000830152613ec981613a62565b9050919050565b60006020820190508181036000830152613ee981613a85565b9050919050565b60006020820190508181036000830152613f0981613acb565b9050919050565b60006020820190508181036000830152613f2981613aee565b9050919050565b60006020820190508181036000830152613f4981613b11565b9050919050565b60006020820190508181036000830152613f6981613b34565b9050919050565b60006020820190508181036000830152613f8981613b57565b9050919050565b60006020820190508181036000830152613fa981613b7a565b9050919050565b60006020820190508181036000830152613fc981613b9d565b9050919050565b60006020820190508181036000830152613fe981613bc0565b9050919050565b6000602082019050818103600083015261400981613be3565b9050919050565b60006040820190506140256000830184613c06565b92915050565b60006020820190506140406000830184613c35565b92915050565b6000614050614061565b905061405c82826142fb565b919050565b6000604051905090565b600067ffffffffffffffff82111561408657614085614462565b5b61408f826144af565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006140f582614269565b915061410083614269565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614135576141346143a6565b5b828201905092915050565b600061414b82614269565b915061415683614269565b925082614166576141656143d5565b5b828204905092915050565b600061417c82614269565b915061418783614269565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141c0576141bf6143a6565b5b828202905092915050565b60006141d682614269565b91506141e183614269565b9250828210156141f4576141f36143a6565b5b828203905092915050565b600061420a82614249565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156142b4578082015181840152602081019050614299565b838111156142c3576000848401525b50505050565b600060028204905060018216806142e157607f821691505b602082108114156142f5576142f4614404565b5b50919050565b614304826144af565b810181811067ffffffffffffffff8211171561432357614322614462565b5b80604052505050565b600061433782614269565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561436a576143696143a6565b5b600182019050919050565b600061438082614269565b915061438b83614269565b92508261439b5761439a6143d5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b614afe816141ff565b8114614b0957600080fd5b50565b614b1581614211565b8114614b2057600080fd5b50565b614b2c8161421d565b8114614b3757600080fd5b50565b614b4381614269565b8114614b4e57600080fd5b5056fea2646970667358221220930e7268c25691acb1f70077d76e89bb2353ee7467774f6a30062dea28de345164736f6c63430008070033
Deployed Bytecode
0x60806040526004361061023b5760003560e01c80638da5cb5b1161012e578063c87b56dd116100ab578063e268e4d31161006f578063e268e4d314610874578063e797ec1b1461089d578063e985e9c5146108b4578063f2fde38b146108f1578063f968adbe1461091a5761023b565b8063c87b56dd14610779578063d1239730146107b6578063d5abeb01146107e1578063d7224ba01461080c578063dc33e681146108375761023b565b8063a035b1fe116100f2578063a035b1fe146106b7578063a0712d68146106e2578063a22cb465146106fe578063b88d4fde14610727578063c6f6f216146107505761023b565b80638da5cb5b146105d25780638db89f07146105fd57806391b7f5ed146106265780639231ab2a1461064f57806395d89b411461068c5761023b565b80633ccfd60b116101bc578063563aaf1111610180578063563aaf11146104ed5780636352211e146105165780636c0360eb1461055357806370a082311461057e578063715018a6146105bb5761023b565b80633ccfd60b1461041c57806342842e0e14610433578063453c23101461045c5780634f6ccce71461048757806355f804b3146104c45761023b565b8063228025e811610203578063228025e81461033957806323b872dd146103625780632d20fb601461038b5780632f745c59146103b4578063333e44e6146103f15761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806318160ddd1461030e575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061371a565b610945565b6040516102749190613cf3565b60405180910390f35b34801561028957600080fd5b50610292610a8f565b60405161029f9190613d0e565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906137c1565b610b21565b6040516102dc9190613c8c565b60405180910390f35b3480156102f157600080fd5b5061030c600480360381019061030791906136da565b610ba6565b005b34801561031a57600080fd5b50610323610cbf565b604051610330919061402b565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b91906137c1565b610cc8565b005b34801561036e57600080fd5b50610389600480360381019061038491906135c4565b610d4e565b005b34801561039757600080fd5b506103b260048036038101906103ad91906137c1565b610d5e565b005b3480156103c057600080fd5b506103db60048036038101906103d691906136da565b610e3c565b6040516103e8919061402b565b60405180910390f35b3480156103fd57600080fd5b5061040661102e565b604051610413919061402b565b60405180910390f35b34801561042857600080fd5b50610431611034565b005b34801561043f57600080fd5b5061045a600480360381019061045591906135c4565b6111b5565b005b34801561046857600080fd5b506104716111d5565b60405161047e919061402b565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a991906137c1565b6111db565b6040516104bb919061402b565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e69190613774565b61122e565b005b3480156104f957600080fd5b50610514600480360381019061050f91906137c1565b6112c0565b005b34801561052257600080fd5b5061053d600480360381019061053891906137c1565b611346565b60405161054a9190613c8c565b60405180910390f35b34801561055f57600080fd5b5061056861135c565b6040516105759190613d0e565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a09190613557565b6113ea565b6040516105b2919061402b565b60405180910390f35b3480156105c757600080fd5b506105d06114d3565b005b3480156105de57600080fd5b506105e761155b565b6040516105f49190613c8c565b60405180910390f35b34801561060957600080fd5b50610624600480360381019061061f91906137c1565b611585565b005b34801561063257600080fd5b5061064d600480360381019061064891906137c1565b611670565b005b34801561065b57600080fd5b50610676600480360381019061067191906137c1565b6116f6565b6040516106839190614010565b60405180910390f35b34801561069857600080fd5b506106a161170e565b6040516106ae9190613d0e565b60405180910390f35b3480156106c357600080fd5b506106cc6117a0565b6040516106d9919061402b565b60405180910390f35b6106fc60048036038101906106f791906137c1565b6117a6565b005b34801561070a57600080fd5b506107256004803603810190610720919061369a565b6119fc565b005b34801561073357600080fd5b5061074e60048036038101906107499190613617565b611b7d565b005b34801561075c57600080fd5b50610777600480360381019061077291906137c1565b611bd9565b005b34801561078557600080fd5b506107a0600480360381019061079b91906137c1565b611c5f565b6040516107ad9190613d0e565b60405180910390f35b3480156107c257600080fd5b506107cb611d07565b6040516107d89190613cf3565b60405180910390f35b3480156107ed57600080fd5b506107f6611d1a565b604051610803919061402b565b60405180910390f35b34801561081857600080fd5b50610821611d20565b60405161082e919061402b565b60405180910390f35b34801561084357600080fd5b5061085e60048036038101906108599190613557565b611d26565b60405161086b919061402b565b60405180910390f35b34801561088057600080fd5b5061089b600480360381019061089691906137c1565b611d38565b005b3480156108a957600080fd5b506108b2611dbe565b005b3480156108c057600080fd5b506108db60048036038101906108d69190613584565b611e66565b6040516108e89190613cf3565b60405180910390f35b3480156108fd57600080fd5b5061091860048036038101906109139190613557565b611efa565b005b34801561092657600080fd5b5061092f611ff2565b60405161093c919061402b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a7857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a885750610a8782611ff8565b5b9050919050565b606060018054610a9e906142c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610aca906142c9565b8015610b175780601f10610aec57610100808354040283529160200191610b17565b820191906000526020600020905b815481529060010190602001808311610afa57829003601f168201915b5050505050905090565b6000610b2c82612062565b610b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6290613ff0565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bb182611346565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1990613ed0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c4161206f565b73ffffffffffffffffffffffffffffffffffffffff161480610c705750610c6f81610c6a61206f565b611e66565b5b610caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca690613df0565b60405180910390fd5b610cba838383612077565b505050565b60008054905090565b610cd061206f565b73ffffffffffffffffffffffffffffffffffffffff16610cee61155b565b73ffffffffffffffffffffffffffffffffffffffff1614610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b90613e50565b60405180910390fd5b80600d8190555050565b610d59838383612129565b505050565b610d6661206f565b73ffffffffffffffffffffffffffffffffffffffff16610d8461155b565b73ffffffffffffffffffffffffffffffffffffffff1614610dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd190613e50565b60405180910390fd5b60026008541415610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1790613fb0565b60405180910390fd5b6002600881905550610e3181612669565b600160088190555050565b6000610e47836113ea565b8210610e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7f90613d30565b60405180910390fd5b6000610e92610cbf565b905060008060005b83811015610fec576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f8c57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fde5786841415610fd5578195505050505050611028565b83806001019450505b508080600101915050610e9a565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101f90613f90565b60405180910390fd5b92915050565b600c5481565b61103c61206f565b73ffffffffffffffffffffffffffffffffffffffff1661105a61155b565b73ffffffffffffffffffffffffffffffffffffffff16146110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a790613e50565b60405180910390fd5b600260085414156110f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ed90613fb0565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161112490613c77565b60006040518083038185875af1925050503d8060008114611161576040519150601f19603f3d011682016040523d82523d6000602084013e611166565b606091505b50509050806111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a190613f10565b60405180910390fd5b506001600881905550565b6111d083838360405180602001604052806000815250611b7d565b505050565b600b5481565b60006111e5610cbf565b8210611226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121d90613d90565b60405180910390fd5b819050919050565b61123661206f565b73ffffffffffffffffffffffffffffffffffffffff1661125461155b565b73ffffffffffffffffffffffffffffffffffffffff16146112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a190613e50565b60405180910390fd5b8181601091906112bb92919061334b565b505050565b6112c861206f565b73ffffffffffffffffffffffffffffffffffffffff166112e661155b565b73ffffffffffffffffffffffffffffffffffffffff161461133c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133390613e50565b60405180910390fd5b80600c8190555050565b60006113518261289b565b600001519050919050565b60108054611369906142c9565b80601f0160208091040260200160405190810160405280929190818152602001828054611395906142c9565b80156113e25780601f106113b7576101008083540402835291602001916113e2565b820191906000526020600020905b8154815290600101906020018083116113c557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561145b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145290613e10565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6114db61206f565b73ffffffffffffffffffffffffffffffffffffffff166114f961155b565b73ffffffffffffffffffffffffffffffffffffffff161461154f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154690613e50565b60405180910390fd5b6115596000612a35565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61158d61206f565b73ffffffffffffffffffffffffffffffffffffffff166115ab61155b565b73ffffffffffffffffffffffffffffffffffffffff1614611601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f890613e50565b60405180910390fd5b6001600d5461161091906140ea565b81611619610cbf565b61162391906140ea565b10611663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165a90613ef0565b60405180910390fd5b61166d3382612afb565b50565b61167861206f565b73ffffffffffffffffffffffffffffffffffffffff1661169661155b565b73ffffffffffffffffffffffffffffffffffffffff16146116ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e390613e50565b60405180910390fd5b8060098190555050565b6116fe6133d1565b6117078261289b565b9050919050565b60606002805461171d906142c9565b80601f0160208091040260200160405190810160405280929190818152602001828054611749906142c9565b80156117965780601f1061176b57610100808354040283529160200191611796565b820191906000526020600020905b81548152906001019060200180831161177957829003601f168201915b5050505050905090565b60095481565b600060095490506001600c546117bc91906140ea565b826117c5610cbf565b6117cf91906140ea565b10156117da57600090505b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183f90613ef0565b60405180910390fd5b80826118549190614171565b3414611895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188c90613ef0565b60405180910390fd5b6001600d546118a491906140ea565b826118ad610cbf565b6118b791906140ea565b106118f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ee90613ef0565b60405180910390fd5b600f60009054906101000a900460ff16611946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193d90613ef0565b60405180910390fd5b600b548261195333611d26565b61195d91906140ea565b111561199e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199590613ef0565b60405180910390fd5b6001600a546119ad91906140ea565b82106119ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e590613ef0565b60405180910390fd5b6119f83383612afb565b5050565b611a0461206f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6990613e90565b60405180910390fd5b8060066000611a7f61206f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b2c61206f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b719190613cf3565b60405180910390a35050565b611b88848484612129565b611b9484848484612b19565b611bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bca90613f30565b60405180910390fd5b50505050565b611be161206f565b73ffffffffffffffffffffffffffffffffffffffff16611bff61155b565b73ffffffffffffffffffffffffffffffffffffffff1614611c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4c90613e50565b60405180910390fd5b80600a8190555050565b6060611c6a82612062565b611ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca090613e70565b60405180910390fd5b6000611cb3612cb0565b9050600081511415611cd45760405180602001604052806000815250611cff565b80611cde84612d42565b604051602001611cef929190613c53565b6040516020818303038152906040525b915050919050565b600f60009054906101000a900460ff1681565b600d5481565b600e5481565b6000611d3182612ea3565b9050919050565b611d4061206f565b73ffffffffffffffffffffffffffffffffffffffff16611d5e61155b565b73ffffffffffffffffffffffffffffffffffffffff1614611db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dab90613e50565b60405180910390fd5b80600b8190555050565b611dc661206f565b73ffffffffffffffffffffffffffffffffffffffff16611de461155b565b73ffffffffffffffffffffffffffffffffffffffff1614611e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3190613e50565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f0261206f565b73ffffffffffffffffffffffffffffffffffffffff16611f2061155b565b73ffffffffffffffffffffffffffffffffffffffff1614611f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6d90613e50565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdd90613d50565b60405180910390fd5b611fef81612a35565b50565b600a5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006121348261289b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661215b61206f565b73ffffffffffffffffffffffffffffffffffffffff1614806121b7575061218061206f565b73ffffffffffffffffffffffffffffffffffffffff1661219f84610b21565b73ffffffffffffffffffffffffffffffffffffffff16145b806121d357506121d282600001516121cd61206f565b611e66565b5b905080612215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220c90613eb0565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227e90613e30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ee90613db0565b60405180910390fd5b6123048585856001612f8c565b6123146000848460000151612077565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125f95761255881612062565b156125f85782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126628585856001612f92565b5050505050565b60008114156126ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a490613ef0565b60405180910390fd5b6000805414156126f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e990613ef0565b60405180910390fd5b6000600e549050600054811061273d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273490613ef0565b60405180910390fd5b6000600183830103905060005460018201111561275d5760016000540390505b60008290505b81811161288b57600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561287e5760006127e08261289b565b905080600001516003600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080602001516003600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550505b8080600101915050612763565b5060018101600e81905550505050565b6128a36133d1565b6128ac82612062565b6128eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e290613d70565b60405180910390fd5b60008290505b600081106129f4576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129e5578092505050612a30565b508080600190039150506128f1565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2790613fd0565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612b15828260405180602001604052806000815250612f98565b5050565b6000612b3a8473ffffffffffffffffffffffffffffffffffffffff16612faa565b15612ca3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b6361206f565b8786866040518563ffffffff1660e01b8152600401612b859493929190613ca7565b602060405180830381600087803b158015612b9f57600080fd5b505af1925050508015612bd057506040513d601f19601f82011682018060405250810190612bcd9190613747565b60015b612c53573d8060008114612c00576040519150601f19603f3d011682016040523d82523d6000602084013e612c05565b606091505b50600081511415612c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4290613f30565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ca8565b600190505b949350505050565b606060108054612cbf906142c9565b80601f0160208091040260200160405190810160405280929190818152602001828054612ceb906142c9565b8015612d385780601f10612d0d57610100808354040283529160200191612d38565b820191906000526020600020905b815481529060010190602001808311612d1b57829003601f168201915b5050505050905090565b60606000821415612d8a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e9e565b600082905060005b60008214612dbc578080612da59061432c565b915050600a82612db59190614140565b9150612d92565b60008167ffffffffffffffff811115612dd857612dd7614462565b5b6040519080825280601f01601f191660200182016040528015612e0a5781602001600182028036833780820191505090505b5090505b60008514612e9757600182612e2391906141cb565b9150600a85612e329190614375565b6030612e3e91906140ea565b60f81b818381518110612e5457612e53614433565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e909190614140565b9450612e0e565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0b90613dd0565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b612fa58383836001612fcd565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303a90613f50565b60405180910390fd5b6000841415613087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307e90613f70565b60405180910390fd5b6130946000868387612f8c565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561332e57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315613319576132d96000888488612b19565b613318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330f90613f30565b60405180910390fd5b5b81806001019250508080600101915050613262565b5080600081905550506133446000868387612f92565b5050505050565b828054613357906142c9565b90600052602060002090601f01602090048101928261337957600085556133c0565b82601f1061339257803560ff19168380011785556133c0565b828001600101855582156133c0579182015b828111156133bf5782358255916020019190600101906133a4565b5b5090506133cd919061340b565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561342457600081600090555060010161340c565b5090565b600061343b6134368461406b565b614046565b905082815260208101848484011115613457576134566144a0565b5b613462848285614287565b509392505050565b60008135905061347981614af5565b92915050565b60008135905061348e81614b0c565b92915050565b6000813590506134a381614b23565b92915050565b6000815190506134b881614b23565b92915050565b600082601f8301126134d3576134d2614496565b5b81356134e3848260208601613428565b91505092915050565b60008083601f84011261350257613501614496565b5b8235905067ffffffffffffffff81111561351f5761351e614491565b5b60208301915083600182028301111561353b5761353a61449b565b5b9250929050565b60008135905061355181614b3a565b92915050565b60006020828403121561356d5761356c6144aa565b5b600061357b8482850161346a565b91505092915050565b6000806040838503121561359b5761359a6144aa565b5b60006135a98582860161346a565b92505060206135ba8582860161346a565b9150509250929050565b6000806000606084860312156135dd576135dc6144aa565b5b60006135eb8682870161346a565b93505060206135fc8682870161346a565b925050604061360d86828701613542565b9150509250925092565b60008060008060808587031215613631576136306144aa565b5b600061363f8782880161346a565b94505060206136508782880161346a565b935050604061366187828801613542565b925050606085013567ffffffffffffffff811115613682576136816144a5565b5b61368e878288016134be565b91505092959194509250565b600080604083850312156136b1576136b06144aa565b5b60006136bf8582860161346a565b92505060206136d08582860161347f565b9150509250929050565b600080604083850312156136f1576136f06144aa565b5b60006136ff8582860161346a565b925050602061371085828601613542565b9150509250929050565b6000602082840312156137305761372f6144aa565b5b600061373e84828501613494565b91505092915050565b60006020828403121561375d5761375c6144aa565b5b600061376b848285016134a9565b91505092915050565b6000806020838503121561378b5761378a6144aa565b5b600083013567ffffffffffffffff8111156137a9576137a86144a5565b5b6137b5858286016134ec565b92509250509250929050565b6000602082840312156137d7576137d66144aa565b5b60006137e584828501613542565b91505092915050565b6137f7816141ff565b82525050565b613806816141ff565b82525050565b61381581614211565b82525050565b60006138268261409c565b61383081856140b2565b9350613840818560208601614296565b613849816144af565b840191505092915050565b600061385f826140a7565b61386981856140ce565b9350613879818560208601614296565b613882816144af565b840191505092915050565b6000613898826140a7565b6138a281856140df565b93506138b2818560208601614296565b80840191505092915050565b60006138cb6022836140ce565b91506138d6826144c0565b604082019050919050565b60006138ee6026836140ce565b91506138f98261450f565b604082019050919050565b6000613911602a836140ce565b915061391c8261455e565b604082019050919050565b60006139346023836140ce565b915061393f826145ad565b604082019050919050565b60006139576025836140ce565b9150613962826145fc565b604082019050919050565b600061397a6031836140ce565b91506139858261464b565b604082019050919050565b600061399d6039836140ce565b91506139a88261469a565b604082019050919050565b60006139c0602b836140ce565b91506139cb826146e9565b604082019050919050565b60006139e36026836140ce565b91506139ee82614738565b604082019050919050565b6000613a066020836140ce565b9150613a1182614787565b602082019050919050565b6000613a29602f836140ce565b9150613a34826147b0565b604082019050919050565b6000613a4c601a836140ce565b9150613a57826147ff565b602082019050919050565b6000613a6f6032836140ce565b9150613a7a82614828565b604082019050919050565b6000613a926022836140ce565b9150613a9d82614877565b604082019050919050565b6000613ab56000836140c3565b9150613ac0826148c6565b600082019050919050565b6000613ad86000836140ce565b9150613ae3826148c6565b600082019050919050565b6000613afb6010836140ce565b9150613b06826148c9565b602082019050919050565b6000613b1e6033836140ce565b9150613b29826148f2565b604082019050919050565b6000613b416021836140ce565b9150613b4c82614941565b604082019050919050565b6000613b646028836140ce565b9150613b6f82614990565b604082019050919050565b6000613b87602e836140ce565b9150613b92826149df565b604082019050919050565b6000613baa601f836140ce565b9150613bb582614a2e565b602082019050919050565b6000613bcd602f836140ce565b9150613bd882614a57565b604082019050919050565b6000613bf0602d836140ce565b9150613bfb82614aa6565b604082019050919050565b604082016000820151613c1c60008501826137ee565b506020820151613c2f6020850182613c44565b50505050565b613c3e81614269565b82525050565b613c4d81614273565b82525050565b6000613c5f828561388d565b9150613c6b828461388d565b91508190509392505050565b6000613c8282613aa8565b9150819050919050565b6000602082019050613ca160008301846137fd565b92915050565b6000608082019050613cbc60008301876137fd565b613cc960208301866137fd565b613cd66040830185613c35565b8181036060830152613ce8818461381b565b905095945050505050565b6000602082019050613d08600083018461380c565b92915050565b60006020820190508181036000830152613d288184613854565b905092915050565b60006020820190508181036000830152613d49816138be565b9050919050565b60006020820190508181036000830152613d69816138e1565b9050919050565b60006020820190508181036000830152613d8981613904565b9050919050565b60006020820190508181036000830152613da981613927565b9050919050565b60006020820190508181036000830152613dc98161394a565b9050919050565b60006020820190508181036000830152613de98161396d565b9050919050565b60006020820190508181036000830152613e0981613990565b9050919050565b60006020820190508181036000830152613e29816139b3565b9050919050565b60006020820190508181036000830152613e49816139d6565b9050919050565b60006020820190508181036000830152613e69816139f9565b9050919050565b60006020820190508181036000830152613e8981613a1c565b9050919050565b60006020820190508181036000830152613ea981613a3f565b9050919050565b60006020820190508181036000830152613ec981613a62565b9050919050565b60006020820190508181036000830152613ee981613a85565b9050919050565b60006020820190508181036000830152613f0981613acb565b9050919050565b60006020820190508181036000830152613f2981613aee565b9050919050565b60006020820190508181036000830152613f4981613b11565b9050919050565b60006020820190508181036000830152613f6981613b34565b9050919050565b60006020820190508181036000830152613f8981613b57565b9050919050565b60006020820190508181036000830152613fa981613b7a565b9050919050565b60006020820190508181036000830152613fc981613b9d565b9050919050565b60006020820190508181036000830152613fe981613bc0565b9050919050565b6000602082019050818103600083015261400981613be3565b9050919050565b60006040820190506140256000830184613c06565b92915050565b60006020820190506140406000830184613c35565b92915050565b6000614050614061565b905061405c82826142fb565b919050565b6000604051905090565b600067ffffffffffffffff82111561408657614085614462565b5b61408f826144af565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006140f582614269565b915061410083614269565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614135576141346143a6565b5b828201905092915050565b600061414b82614269565b915061415683614269565b925082614166576141656143d5565b5b828204905092915050565b600061417c82614269565b915061418783614269565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141c0576141bf6143a6565b5b828202905092915050565b60006141d682614269565b91506141e183614269565b9250828210156141f4576141f36143a6565b5b828203905092915050565b600061420a82614249565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156142b4578082015181840152602081019050614299565b838111156142c3576000848401525b50505050565b600060028204905060018216806142e157607f821691505b602082108114156142f5576142f4614404565b5b50919050565b614304826144af565b810181811067ffffffffffffffff8211171561432357614322614462565b5b80604052505050565b600061433782614269565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561436a576143696143a6565b5b600182019050919050565b600061438082614269565b915061438b83614269565b92508261439b5761439a6143d5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b614afe816141ff565b8114614b0957600080fd5b50565b614b1581614211565b8114614b2057600080fd5b50565b614b2c8161421d565b8114614b3757600080fd5b50565b614b4381614269565b8114614b4e57600080fd5b5056fea2646970667358221220930e7268c25691acb1f70077d76e89bb2353ee7467774f6a30062dea28de345164736f6c63430008070033
Deployed Bytecode Sourcemap
50171:3580:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37003:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38889:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40451:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39972:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35260:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51932:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41327:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52326:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35924:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50344:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52144:176;;;;;;;;;;;;;:::i;:::-;;41568:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50309:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35437:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51422:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51612:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38698:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50485:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37439:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10395:103;;;;;;;;;;;;;:::i;:::-;;9744:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51052:160;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51524:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52450:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39058:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50238:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50576:470;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40737:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41824:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51716:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39233:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50455:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50378:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50412:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51309:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51816:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51218:85;;;;;;;;;;;;;:::i;:::-;;41096:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10653:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50278:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37003:372;37105:4;37157:25;37142:40;;;:11;:40;;;;:105;;;;37214:33;37199:48;;;:11;:48;;;;37142:105;:172;;;;37279:35;37264:50;;;:11;:50;;;;37142:172;:225;;;;37331:36;37355:11;37331:23;:36::i;:::-;37142:225;37122:245;;37003:372;;;:::o;38889:100::-;38943:13;38976:5;38969:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38889:100;:::o;40451:214::-;40519:7;40547:16;40555:7;40547;:16::i;:::-;40539:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;40633:15;:24;40649:7;40633:24;;;;;;;;;;;;;;;;;;;;;40626:31;;40451:214;;;:::o;39972:413::-;40045:13;40061:24;40077:7;40061:15;:24::i;:::-;40045:40;;40110:5;40104:11;;:2;:11;;;;40096:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;40205:5;40189:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;40214:37;40231:5;40238:12;:10;:12::i;:::-;40214:16;:37::i;:::-;40189:62;40167:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;40349:28;40358:2;40362:7;40371:5;40349:8;:28::i;:::-;40034:351;39972:413;;:::o;35260:100::-;35313:7;35340:12;;35333:19;;35260:100;:::o;51932:98::-;9975:12;:10;:12::i;:::-;9964:23;;:7;:5;:7::i;:::-;:23;;;9956:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52014:10:::1;52002:9;:22;;;;51932:98:::0;:::o;41327:170::-;41461:28;41471:4;41477:2;41481:7;41461:9;:28::i;:::-;41327:170;;;:::o;52326:118::-;9975:12;:10;:12::i;:::-;9964:23;;:7;:5;:7::i;:::-;:23;;;9956:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4718:1:::1;5316:7;;:19;;5308:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4718:1;5449:7;:18;;;;52410:28:::2;52429:8;52410:18;:28::i;:::-;4674:1:::1;5628:7;:22;;;;52326:118:::0;:::o;35924:1007::-;36013:7;36049:16;36059:5;36049:9;:16::i;:::-;36041:5;:24;36033:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;36115:22;36140:13;:11;:13::i;:::-;36115:38;;36164:19;36194:25;36383:9;36378:466;36398:14;36394:1;:18;36378:466;;;36438:31;36472:11;:14;36484:1;36472:14;;;;;;;;;;;36438:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36535:1;36509:28;;:9;:14;;;:28;;;36505:111;;36582:9;:14;;;36562:34;;36505:111;36659:5;36638:26;;:17;:26;;;36634:195;;;36708:5;36693:11;:20;36689:85;;;36749:1;36742:8;;;;;;;;;36689:85;36796:13;;;;;;;36634:195;36419:425;36414:3;;;;;;;36378:466;;;;36867:56;;;;;;;;;;:::i;:::-;;;;;;;;35924:1007;;;;;:::o;50344:27::-;;;;:::o;52144:176::-;9975:12;:10;:12::i;:::-;9964:23;;:7;:5;:7::i;:::-;:23;;;9956:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4718:1:::1;5316:7;;:19;;5308:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4718:1;5449:7;:18;;;;52204:12:::2;52222:10;:15;;52245:21;52222:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52203:68;;;52286:7;52278:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;52196:124;4674:1:::1;5628:7;:22;;;;52144:176::o:0;41568:185::-;41706:39;41723:4;41729:2;41733:7;41706:39;;;;;;;;;;;;:16;:39::i;:::-;41568:185;;;:::o;50309:28::-;;;;:::o;35437:187::-;35504:7;35540:13;:11;:13::i;:::-;35532:5;:21;35524:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;35611:5;35604:12;;35437:187;;;:::o;51422:96::-;9975:12;:10;:12::i;:::-;9964:23;;:7;:5;:7::i;:::-;:23;;;9956:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51504:8:::1;;51494:7;:18;;;;;;;:::i;:::-;;51422:96:::0;;:::o;51612:98::-;9975:12;:10;:12::i;:::-;9964:23;;:7;:5;:7::i;:::-;:23;;;9956:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51694:10:::1;51682:9;:22;;;;51612:98:::0;:::o;38698:124::-;38762:7;38789:20;38801:7;38789:11;:20::i;:::-;:25;;;38782:32;;38698:124;;;:::o;50485:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37439:221::-;37503:7;37548:1;37531:19;;:5;:19;;;;37523:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;37624:12;:19;37637:5;37624:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;37616:36;;37609:43;;37439:221;;;:::o;10395:103::-;9975:12;:10;:12::i;:::-;9964:23;;:7;:5;:7::i;:::-;:23;;;9956:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10460:30:::1;10487:1;10460:18;:30::i;:::-;10395:103::o:0;9744:87::-;9790:7;9817:6;;;;;;;;;;;9810:13;;9744:87;:::o;51052:160::-;9975:12;:10;:12::i;:::-;9964:23;;:7;:5;:7::i;:::-;:23;;;9956:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51164:1:::1;51152:9;;:13;;;;:::i;:::-;51144:5;51128:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;51120:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;51178:28;51188:10;51200:5;51178:9;:28::i;:::-;51052:160:::0;:::o;51524:82::-;9975:12;:10;:12::i;:::-;9964:23;;:7;:5;:7::i;:::-;:23;;;9956:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51594:6:::1;51586:5;:14;;;;51524:82:::0;:::o;52450:132::-;52516:21;;:::i;:::-;52556:20;52568:7;52556:11;:20::i;:::-;52549:27;;52450:132;;;:::o;39058:104::-;39114:13;39147:7;39140:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39058:104;:::o;50238:21::-;;;;:::o;50576:470::-;50632:9;50644:5;;50632:17;;50695:1;50683:9;;:13;;;;:::i;:::-;50675:5;50659:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;50656:67;;;50714:1;50707:8;;50656:67;50751:9;50737:23;;:10;:23;;;50729:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;50800:4;50792:5;:12;;;;:::i;:::-;50779:9;:25;50771:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;50859:1;50847:9;;:13;;;;:::i;:::-;50839:5;50823:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;50815:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;50879:11;;;;;;;;;;;50871:24;;;;;;;;;;;;:::i;:::-;;;;;;;;;50946:12;;50937:5;50910:24;50923:10;50910:12;:24::i;:::-;:32;;;;:::i;:::-;:48;;50902:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;50997:1;50986:8;;:12;;;;:::i;:::-;50978:5;:20;50969:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;51012:28;51022:10;51034:5;51012:9;:28::i;:::-;50625:421;50576:470;:::o;40737:288::-;40844:12;:10;:12::i;:::-;40832:24;;:8;:24;;;;40824:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;40945:8;40900:18;:32;40919:12;:10;:12::i;:::-;40900:32;;;;;;;;;;;;;;;:42;40933:8;40900:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;40998:8;40969:48;;40984:12;:10;:12::i;:::-;40969:48;;;41008:8;40969:48;;;;;;:::i;:::-;;;;;;;;40737:288;;:::o;41824:355::-;41983:28;41993:4;41999:2;42003:7;41983:9;:28::i;:::-;42044:48;42067:4;42073:2;42077:7;42086:5;42044:22;:48::i;:::-;42022:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;41824:355;;;;:::o;51716:94::-;9975:12;:10;:12::i;:::-;9964:23;;:7;:5;:7::i;:::-;:23;;;9956:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51795:9:::1;51784:8;:20;;;;51716:94:::0;:::o;39233:335::-;39306:13;39340:16;39348:7;39340;:16::i;:::-;39332:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;39421:21;39445:10;:8;:10::i;:::-;39421:34;;39498:1;39479:7;39473:21;:26;;:87;;;;;;;;;;;;;;;;;39526:7;39535:18;:7;:16;:18::i;:::-;39509:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39473:87;39466:94;;;39233:335;;;:::o;50455:23::-;;;;;;;;;;;;;:::o;50378:27::-;;;;:::o;50412:36::-;;;;:::o;51309:107::-;51367:7;51390:20;51404:5;51390:13;:20::i;:::-;51383:27;;51309:107;;;:::o;51816:110::-;9975:12;:10;:12::i;:::-;9964:23;;:7;:5;:7::i;:::-;:23;;;9956:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51907:13:::1;51892:12;:28;;;;51816:110:::0;:::o;51218:85::-;9975:12;:10;:12::i;:::-;9964:23;;:7;:5;:7::i;:::-;:23;;;9956:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51286:11:::1;;;;;;;;;;;51285:12;51271:11;;:26;;;;;;;;;;;;;;;;;;51218:85::o:0;41096:164::-;41193:4;41217:18;:25;41236:5;41217:25;;;;;;;;;;;;;;;:35;41243:8;41217:35;;;;;;;;;;;;;;;;;;;;;;;;;41210:42;;41096:164;;;;:::o;10653:201::-;9975:12;:10;:12::i;:::-;9964:23;;:7;:5;:7::i;:::-;:23;;;9956:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10762:1:::1;10742:22;;:8;:22;;;;10734:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10818:28;10837:8;10818:18;:28::i;:::-;10653:201:::0;:::o;50278:24::-;;;;:::o;26523:157::-;26608:4;26647:25;26632:40;;;:11;:40;;;;26625:47;;26523:157;;;:::o;42434:111::-;42491:4;42525:12;;42515:7;:22;42508:29;;42434:111;;;:::o;8468:98::-;8521:7;8548:10;8541:17;;8468:98;:::o;47354:196::-;47496:2;47469:15;:24;47485:7;47469:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47534:7;47530:2;47514:28;;47523:5;47514:28;;;;;;;;;;;;47354:196;;;:::o;45234:2002::-;45349:35;45387:20;45399:7;45387:11;:20::i;:::-;45349:58;;45420:22;45462:13;:18;;;45446:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;45521:12;:10;:12::i;:::-;45497:36;;:20;45509:7;45497:11;:20::i;:::-;:36;;;45446:87;:154;;;;45550:50;45567:13;:18;;;45587:12;:10;:12::i;:::-;45550:16;:50::i;:::-;45446:154;45420:181;;45622:17;45614:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;45737:4;45715:26;;:13;:18;;;:26;;;45707:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;45817:1;45803:16;;:2;:16;;;;45795:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;45874:43;45896:4;45902:2;45906:7;45915:1;45874:21;:43::i;:::-;45982:49;45999:1;46003:7;46012:13;:18;;;45982:8;:49::i;:::-;46357:1;46327:12;:18;46340:4;46327:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46401:1;46373:12;:16;46386:2;46373:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46447:2;46419:11;:20;46431:7;46419:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;46509:15;46464:11;:20;46476:7;46464:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;46777:19;46809:1;46799:7;:11;46777:33;;46870:1;46829:43;;:11;:24;46841:11;46829:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;46825:295;;;46897:20;46905:11;46897:7;:20::i;:::-;46893:212;;;46974:13;:18;;;46942:11;:24;46954:11;46942:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;47057:13;:28;;;47015:11;:24;47027:11;47015:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;46893:212;46825:295;46302:829;47167:7;47163:2;47148:27;;47157:4;47148:27;;;;;;;;;;;;47186:42;47207:4;47213:2;47217:7;47226:1;47186:20;:42::i;:::-;45338:1898;;45234:2002;;;:::o;52690:1058::-;52774:1;52762:8;:13;;52754:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;52813:1;52797:12;;:17;;52789:30;;;;;;;;;;;;:::i;:::-;;;;;;;;;52828:33;52864:24;;52828:60;;52933:12;;52905:25;:40;52897:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;53088:16;53146:1;53135:8;53107:25;:36;:40;53088:59;;53240:12;;53236:1;53225:8;:12;:27;53221:91;;;53297:1;53282:12;;:16;53271:27;;53221:91;53331:9;53343:25;53331:37;;53326:354;53375:8;53370:1;:13;53326:354;;53442:1;53411:33;;:11;:14;53423:1;53411:14;;;;;;;;;;;:19;;;;;;;;;;;;:33;;;53407:260;;;53467:31;53501:14;53513:1;53501:11;:14::i;:::-;53467:48;;53558:9;:14;;;53536:11;:14;53548:1;53536:14;;;;;;;;;;;:19;;;:36;;;;;;;;;;;;;;;;;;53625:9;:24;;;53593:11;:14;53605:1;53593:14;;;;;;;;;;;:29;;;:56;;;;;;;;;;;;;;;;;;53446:221;53407:260;53385:3;;;;;;;53326:354;;;;53732:1;53721:8;:12;53694:24;:39;;;;53065:678;52745:1003;52690:1058;:::o;38099:537::-;38160:21;;:::i;:::-;38202:16;38210:7;38202;:16::i;:::-;38194:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;38308:12;38323:7;38308:22;;38303:245;38340:1;38332:4;:9;38303:245;;38370:31;38404:11;:17;38416:4;38404:17;;;;;;;;;;;38370:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38470:1;38444:28;;:9;:14;;;:28;;;38440:93;;38504:9;38497:16;;;;;;38440:93;38351:197;38343:6;;;;;;;;38303:245;;;;38571:57;;;;;;;;;;:::i;:::-;;;;;;;;38099:537;;;;:::o;11014:191::-;11088:16;11107:6;;;;;;;;;;;11088:25;;11133:8;11124:6;;:17;;;;;;;;;;;;;;;;;;11188:8;11157:40;;11178:8;11157:40;;;;;;;;;;;;11077:128;11014:191;:::o;42553:104::-;42622:27;42632:2;42636:8;42622:27;;;;;;;;;;;;:9;:27::i;:::-;42553:104;;:::o;48115:804::-;48270:4;48291:15;:2;:13;;;:15::i;:::-;48287:625;;;48343:2;48327:36;;;48364:12;:10;:12::i;:::-;48378:4;48384:7;48393:5;48327:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48323:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48590:1;48573:6;:13;:18;48569:273;;;48616:61;;;;;;;;;;:::i;:::-;;;;;;;;48569:273;48792:6;48786:13;48777:6;48773:2;48769:15;48762:38;48323:534;48460:45;;;48450:55;;;:6;:55;;;;48443:62;;;;;48287:625;48896:4;48889:11;;48115:804;;;;;;;:::o;52036:102::-;52096:13;52125:7;52118:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52036:102;:::o;6030:723::-;6086:13;6316:1;6307:5;:10;6303:53;;;6334:10;;;;;;;;;;;;;;;;;;;;;6303:53;6366:12;6381:5;6366:20;;6397:14;6422:78;6437:1;6429:4;:9;6422:78;;6455:8;;;;;:::i;:::-;;;;6486:2;6478:10;;;;;:::i;:::-;;;6422:78;;;6510:19;6542:6;6532:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6510:39;;6560:154;6576:1;6567:5;:10;6560:154;;6604:1;6594:11;;;;;:::i;:::-;;;6671:2;6663:5;:10;;;;:::i;:::-;6650:2;:24;;;;:::i;:::-;6637:39;;6620:6;6627;6620:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6700:2;6691:11;;;;;:::i;:::-;;;6560:154;;;6738:6;6724:21;;;;;6030:723;;;;:::o;37668:229::-;37729:7;37774:1;37757:19;;:5;:19;;;;37749:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;37856:12;:19;37869:5;37856:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;37848:41;;37841:48;;37668:229;;;:::o;49407:159::-;;;;;:::o;49978:158::-;;;;;:::o;43020:163::-;43143:32;43149:2;43153:8;43163:5;43170:4;43143:5;:32::i;:::-;43020:163;;;:::o;12445:326::-;12505:4;12762:1;12740:7;:19;;;:23;12733:30;;12445:326;;;:::o;43442:1538::-;43581:20;43604:12;;43581:35;;43649:1;43635:16;;:2;:16;;;;43627:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;43720:1;43708:8;:13;;43700:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;43779:61;43809:1;43813:2;43817:12;43831:8;43779:21;:61::i;:::-;44154:8;44118:12;:16;44131:2;44118:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44219:8;44178:12;:16;44191:2;44178:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44278:2;44245:11;:25;44257:12;44245:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;44345:15;44295:11;:25;44307:12;44295:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;44378:20;44401:12;44378:35;;44435:9;44430:415;44450:8;44446:1;:12;44430:415;;;44514:12;44510:2;44489:38;;44506:1;44489:38;;;;;;;;;;;;44550:4;44546:249;;;44613:59;44644:1;44648:2;44652:12;44666:5;44613:22;:59::i;:::-;44579:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;44546:249;44815:14;;;;;;;44460:3;;;;;;;44430:415;;;;44876:12;44861;:27;;;;44093:807;44912:60;44941:1;44945:2;44949:12;44963:8;44912:20;:60::i;:::-;43570:1410;43442:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::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:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:108::-;7050:24;7068:5;7050:24;:::i;:::-;7045:3;7038:37;6973:108;;:::o;7087:118::-;7174:24;7192:5;7174:24;:::i;:::-;7169:3;7162:37;7087:118;;:::o;7211:109::-;7292:21;7307:5;7292:21;:::i;:::-;7287:3;7280:34;7211:109;;:::o;7326:360::-;7412:3;7440:38;7472:5;7440:38;:::i;:::-;7494:70;7557:6;7552:3;7494:70;:::i;:::-;7487:77;;7573:52;7618:6;7613:3;7606:4;7599:5;7595:16;7573:52;:::i;:::-;7650:29;7672:6;7650:29;:::i;:::-;7645:3;7641:39;7634:46;;7416:270;7326:360;;;;:::o;7692:364::-;7780:3;7808:39;7841:5;7808:39;:::i;:::-;7863:71;7927:6;7922:3;7863:71;:::i;:::-;7856:78;;7943:52;7988:6;7983:3;7976:4;7969:5;7965:16;7943:52;:::i;:::-;8020:29;8042:6;8020:29;:::i;:::-;8015:3;8011:39;8004:46;;7784:272;7692:364;;;;:::o;8062:377::-;8168:3;8196:39;8229:5;8196:39;:::i;:::-;8251:89;8333:6;8328:3;8251:89;:::i;:::-;8244:96;;8349:52;8394:6;8389:3;8382:4;8375:5;8371:16;8349:52;:::i;:::-;8426:6;8421:3;8417:16;8410:23;;8172:267;8062:377;;;;:::o;8445:366::-;8587:3;8608:67;8672:2;8667:3;8608:67;:::i;:::-;8601:74;;8684:93;8773:3;8684:93;:::i;:::-;8802:2;8797:3;8793:12;8786:19;;8445:366;;;:::o;8817:::-;8959:3;8980:67;9044:2;9039:3;8980:67;:::i;:::-;8973:74;;9056:93;9145:3;9056:93;:::i;:::-;9174:2;9169:3;9165:12;9158:19;;8817:366;;;:::o;9189:::-;9331:3;9352:67;9416:2;9411:3;9352:67;:::i;:::-;9345:74;;9428:93;9517:3;9428:93;:::i;:::-;9546:2;9541:3;9537:12;9530:19;;9189:366;;;:::o;9561:::-;9703:3;9724:67;9788:2;9783:3;9724:67;:::i;:::-;9717:74;;9800:93;9889:3;9800:93;:::i;:::-;9918:2;9913:3;9909:12;9902:19;;9561:366;;;:::o;9933:::-;10075:3;10096:67;10160:2;10155:3;10096:67;:::i;:::-;10089:74;;10172:93;10261:3;10172:93;:::i;:::-;10290:2;10285:3;10281:12;10274:19;;9933:366;;;:::o;10305:::-;10447:3;10468:67;10532:2;10527:3;10468:67;:::i;:::-;10461:74;;10544:93;10633:3;10544:93;:::i;:::-;10662:2;10657:3;10653:12;10646:19;;10305:366;;;:::o;10677:::-;10819:3;10840:67;10904:2;10899:3;10840:67;:::i;:::-;10833:74;;10916:93;11005:3;10916:93;:::i;:::-;11034:2;11029:3;11025:12;11018:19;;10677:366;;;:::o;11049:::-;11191:3;11212:67;11276:2;11271:3;11212:67;:::i;:::-;11205:74;;11288:93;11377:3;11288:93;:::i;:::-;11406:2;11401:3;11397:12;11390:19;;11049:366;;;:::o;11421:::-;11563:3;11584:67;11648:2;11643:3;11584:67;:::i;:::-;11577:74;;11660:93;11749:3;11660:93;:::i;:::-;11778:2;11773:3;11769:12;11762:19;;11421:366;;;:::o;11793:::-;11935:3;11956:67;12020:2;12015:3;11956:67;:::i;:::-;11949:74;;12032:93;12121:3;12032:93;:::i;:::-;12150:2;12145:3;12141:12;12134:19;;11793:366;;;:::o;12165:::-;12307:3;12328:67;12392:2;12387:3;12328:67;:::i;:::-;12321:74;;12404:93;12493:3;12404:93;:::i;:::-;12522:2;12517:3;12513:12;12506:19;;12165:366;;;:::o;12537:::-;12679:3;12700:67;12764:2;12759:3;12700:67;:::i;:::-;12693:74;;12776:93;12865:3;12776:93;:::i;:::-;12894:2;12889:3;12885:12;12878:19;;12537:366;;;:::o;12909:::-;13051:3;13072:67;13136:2;13131:3;13072:67;:::i;:::-;13065:74;;13148:93;13237:3;13148:93;:::i;:::-;13266:2;13261:3;13257:12;13250:19;;12909:366;;;:::o;13281:::-;13423:3;13444:67;13508:2;13503:3;13444:67;:::i;:::-;13437:74;;13520:93;13609:3;13520:93;:::i;:::-;13638:2;13633:3;13629:12;13622:19;;13281:366;;;:::o;13653:398::-;13812:3;13833:83;13914:1;13909:3;13833:83;:::i;:::-;13826:90;;13925:93;14014:3;13925:93;:::i;:::-;14043:1;14038:3;14034:11;14027:18;;13653:398;;;:::o;14057:364::-;14199:3;14220:66;14284:1;14279:3;14220:66;:::i;:::-;14213:73;;14295:93;14384:3;14295:93;:::i;:::-;14413:1;14408:3;14404:11;14397:18;;14057:364;;;:::o;14427:366::-;14569:3;14590:67;14654:2;14649:3;14590:67;:::i;:::-;14583:74;;14666:93;14755:3;14666:93;:::i;:::-;14784:2;14779:3;14775:12;14768:19;;14427:366;;;:::o;14799:::-;14941:3;14962:67;15026:2;15021:3;14962:67;:::i;:::-;14955:74;;15038:93;15127:3;15038:93;:::i;:::-;15156:2;15151:3;15147:12;15140:19;;14799:366;;;:::o;15171:::-;15313:3;15334:67;15398:2;15393:3;15334:67;:::i;:::-;15327:74;;15410:93;15499:3;15410:93;:::i;:::-;15528:2;15523:3;15519:12;15512:19;;15171:366;;;:::o;15543:::-;15685:3;15706:67;15770:2;15765:3;15706:67;:::i;:::-;15699:74;;15782:93;15871:3;15782:93;:::i;:::-;15900:2;15895:3;15891:12;15884:19;;15543:366;;;:::o;15915:::-;16057:3;16078:67;16142:2;16137:3;16078:67;:::i;:::-;16071:74;;16154:93;16243:3;16154:93;:::i;:::-;16272:2;16267:3;16263:12;16256:19;;15915:366;;;:::o;16287:::-;16429:3;16450:67;16514:2;16509:3;16450:67;:::i;:::-;16443:74;;16526:93;16615:3;16526:93;:::i;:::-;16644:2;16639:3;16635:12;16628:19;;16287:366;;;:::o;16659:::-;16801:3;16822:67;16886:2;16881:3;16822:67;:::i;:::-;16815:74;;16898:93;16987:3;16898:93;:::i;:::-;17016:2;17011:3;17007:12;17000:19;;16659:366;;;:::o;17031:::-;17173:3;17194:67;17258:2;17253:3;17194:67;:::i;:::-;17187:74;;17270:93;17359:3;17270:93;:::i;:::-;17388:2;17383:3;17379:12;17372:19;;17031:366;;;:::o;17473:529::-;17634:4;17629:3;17625:14;17721:4;17714:5;17710:16;17704:23;17740:63;17797:4;17792:3;17788:14;17774:12;17740:63;:::i;:::-;17649:164;17905:4;17898:5;17894:16;17888:23;17924:61;17979:4;17974:3;17970:14;17956:12;17924:61;:::i;:::-;17823:172;17603:399;17473:529;;:::o;18008:118::-;18095:24;18113:5;18095:24;:::i;:::-;18090:3;18083:37;18008:118;;:::o;18132:105::-;18207:23;18224:5;18207:23;:::i;:::-;18202:3;18195:36;18132:105;;:::o;18243:435::-;18423:3;18445:95;18536:3;18527:6;18445:95;:::i;:::-;18438:102;;18557:95;18648:3;18639:6;18557:95;:::i;:::-;18550:102;;18669:3;18662:10;;18243:435;;;;;:::o;18684:379::-;18868:3;18890:147;19033:3;18890:147;:::i;:::-;18883:154;;19054:3;19047:10;;18684:379;;;:::o;19069:222::-;19162:4;19200:2;19189:9;19185:18;19177:26;;19213:71;19281:1;19270:9;19266:17;19257:6;19213:71;:::i;:::-;19069:222;;;;:::o;19297:640::-;19492:4;19530:3;19519:9;19515:19;19507:27;;19544:71;19612:1;19601:9;19597:17;19588:6;19544:71;:::i;:::-;19625:72;19693:2;19682:9;19678:18;19669:6;19625:72;:::i;:::-;19707;19775:2;19764:9;19760:18;19751:6;19707:72;:::i;:::-;19826:9;19820:4;19816:20;19811:2;19800:9;19796:18;19789:48;19854:76;19925:4;19916:6;19854:76;:::i;:::-;19846:84;;19297:640;;;;;;;:::o;19943:210::-;20030:4;20068:2;20057:9;20053:18;20045:26;;20081:65;20143:1;20132:9;20128:17;20119:6;20081:65;:::i;:::-;19943:210;;;;:::o;20159:313::-;20272:4;20310:2;20299:9;20295:18;20287:26;;20359:9;20353:4;20349:20;20345:1;20334:9;20330:17;20323:47;20387:78;20460:4;20451:6;20387:78;:::i;:::-;20379:86;;20159:313;;;;:::o;20478:419::-;20644:4;20682:2;20671:9;20667:18;20659:26;;20731:9;20725:4;20721:20;20717:1;20706:9;20702:17;20695:47;20759:131;20885:4;20759:131;:::i;:::-;20751:139;;20478:419;;;:::o;20903:::-;21069:4;21107:2;21096:9;21092:18;21084:26;;21156:9;21150:4;21146:20;21142:1;21131:9;21127:17;21120:47;21184:131;21310:4;21184:131;:::i;:::-;21176:139;;20903:419;;;:::o;21328:::-;21494:4;21532:2;21521:9;21517:18;21509:26;;21581:9;21575:4;21571:20;21567:1;21556:9;21552:17;21545:47;21609:131;21735:4;21609:131;:::i;:::-;21601:139;;21328:419;;;:::o;21753:::-;21919:4;21957:2;21946:9;21942:18;21934:26;;22006:9;22000:4;21996:20;21992:1;21981:9;21977:17;21970:47;22034:131;22160:4;22034:131;:::i;:::-;22026:139;;21753:419;;;:::o;22178:::-;22344:4;22382:2;22371:9;22367:18;22359:26;;22431:9;22425:4;22421:20;22417:1;22406:9;22402:17;22395:47;22459:131;22585:4;22459:131;:::i;:::-;22451:139;;22178:419;;;:::o;22603:::-;22769:4;22807:2;22796:9;22792:18;22784:26;;22856:9;22850:4;22846:20;22842:1;22831:9;22827:17;22820:47;22884:131;23010:4;22884:131;:::i;:::-;22876:139;;22603:419;;;:::o;23028:::-;23194:4;23232:2;23221:9;23217:18;23209:26;;23281:9;23275:4;23271:20;23267:1;23256:9;23252:17;23245:47;23309:131;23435:4;23309:131;:::i;:::-;23301:139;;23028:419;;;:::o;23453:::-;23619:4;23657:2;23646:9;23642:18;23634:26;;23706:9;23700:4;23696:20;23692:1;23681:9;23677:17;23670:47;23734:131;23860:4;23734:131;:::i;:::-;23726:139;;23453:419;;;:::o;23878:::-;24044:4;24082:2;24071:9;24067:18;24059:26;;24131:9;24125:4;24121:20;24117:1;24106:9;24102:17;24095:47;24159:131;24285:4;24159:131;:::i;:::-;24151:139;;23878:419;;;:::o;24303:::-;24469:4;24507:2;24496:9;24492:18;24484:26;;24556:9;24550:4;24546:20;24542:1;24531:9;24527:17;24520:47;24584:131;24710:4;24584:131;:::i;:::-;24576:139;;24303:419;;;:::o;24728:::-;24894:4;24932:2;24921:9;24917:18;24909:26;;24981:9;24975:4;24971:20;24967:1;24956:9;24952:17;24945:47;25009:131;25135:4;25009:131;:::i;:::-;25001:139;;24728:419;;;:::o;25153:::-;25319:4;25357:2;25346:9;25342:18;25334:26;;25406:9;25400:4;25396:20;25392:1;25381:9;25377:17;25370:47;25434:131;25560:4;25434:131;:::i;:::-;25426:139;;25153:419;;;:::o;25578:::-;25744:4;25782:2;25771:9;25767:18;25759:26;;25831:9;25825:4;25821:20;25817:1;25806:9;25802:17;25795:47;25859:131;25985:4;25859:131;:::i;:::-;25851:139;;25578:419;;;:::o;26003:::-;26169:4;26207:2;26196:9;26192:18;26184:26;;26256:9;26250:4;26246:20;26242:1;26231:9;26227:17;26220:47;26284:131;26410:4;26284:131;:::i;:::-;26276:139;;26003:419;;;:::o;26428:::-;26594:4;26632:2;26621:9;26617:18;26609:26;;26681:9;26675:4;26671:20;26667:1;26656:9;26652:17;26645:47;26709:131;26835:4;26709:131;:::i;:::-;26701:139;;26428:419;;;:::o;26853:::-;27019:4;27057:2;27046:9;27042:18;27034:26;;27106:9;27100:4;27096:20;27092:1;27081:9;27077:17;27070:47;27134:131;27260:4;27134:131;:::i;:::-;27126:139;;26853:419;;;:::o;27278:::-;27444:4;27482:2;27471:9;27467:18;27459:26;;27531:9;27525:4;27521:20;27517:1;27506:9;27502:17;27495:47;27559:131;27685:4;27559:131;:::i;:::-;27551:139;;27278:419;;;:::o;27703:::-;27869:4;27907:2;27896:9;27892:18;27884:26;;27956:9;27950:4;27946:20;27942:1;27931:9;27927:17;27920:47;27984:131;28110:4;27984:131;:::i;:::-;27976:139;;27703:419;;;:::o;28128:::-;28294:4;28332:2;28321:9;28317:18;28309:26;;28381:9;28375:4;28371:20;28367:1;28356:9;28352:17;28345:47;28409:131;28535:4;28409:131;:::i;:::-;28401:139;;28128:419;;;:::o;28553:::-;28719:4;28757:2;28746:9;28742:18;28734:26;;28806:9;28800:4;28796:20;28792:1;28781:9;28777:17;28770:47;28834:131;28960:4;28834:131;:::i;:::-;28826:139;;28553:419;;;:::o;28978:::-;29144:4;29182:2;29171:9;29167:18;29159:26;;29231:9;29225:4;29221:20;29217:1;29206:9;29202:17;29195:47;29259:131;29385:4;29259:131;:::i;:::-;29251:139;;28978:419;;;:::o;29403:::-;29569:4;29607:2;29596:9;29592:18;29584:26;;29656:9;29650:4;29646:20;29642:1;29631:9;29627:17;29620:47;29684:131;29810:4;29684:131;:::i;:::-;29676:139;;29403:419;;;:::o;29828:::-;29994:4;30032:2;30021:9;30017:18;30009:26;;30081:9;30075:4;30071:20;30067:1;30056:9;30052:17;30045:47;30109:131;30235:4;30109:131;:::i;:::-;30101:139;;29828:419;;;:::o;30253:350::-;30410:4;30448:2;30437:9;30433:18;30425:26;;30461:135;30593:1;30582:9;30578:17;30569:6;30461:135;:::i;:::-;30253:350;;;;:::o;30609:222::-;30702:4;30740:2;30729:9;30725:18;30717:26;;30753:71;30821:1;30810:9;30806:17;30797:6;30753:71;:::i;:::-;30609:222;;;;:::o;30837:129::-;30871:6;30898:20;;:::i;:::-;30888:30;;30927:33;30955:4;30947:6;30927:33;:::i;:::-;30837:129;;;:::o;30972:75::-;31005:6;31038:2;31032:9;31022:19;;30972:75;:::o;31053:307::-;31114:4;31204:18;31196:6;31193:30;31190:56;;;31226:18;;:::i;:::-;31190:56;31264:29;31286:6;31264:29;:::i;:::-;31256:37;;31348:4;31342;31338:15;31330:23;;31053:307;;;:::o;31366:98::-;31417:6;31451:5;31445:12;31435:22;;31366:98;;;:::o;31470:99::-;31522:6;31556:5;31550:12;31540:22;;31470:99;;;:::o;31575:168::-;31658:11;31692:6;31687:3;31680:19;31732:4;31727:3;31723:14;31708:29;;31575:168;;;;:::o;31749:147::-;31850:11;31887:3;31872:18;;31749:147;;;;:::o;31902:169::-;31986:11;32020:6;32015:3;32008:19;32060:4;32055:3;32051:14;32036:29;;31902:169;;;;:::o;32077:148::-;32179:11;32216:3;32201:18;;32077:148;;;;:::o;32231:305::-;32271:3;32290:20;32308:1;32290:20;:::i;:::-;32285:25;;32324:20;32342:1;32324:20;:::i;:::-;32319:25;;32478:1;32410:66;32406:74;32403:1;32400:81;32397:107;;;32484:18;;:::i;:::-;32397:107;32528:1;32525;32521:9;32514:16;;32231:305;;;;:::o;32542:185::-;32582:1;32599:20;32617:1;32599:20;:::i;:::-;32594:25;;32633:20;32651:1;32633:20;:::i;:::-;32628:25;;32672:1;32662:35;;32677:18;;:::i;:::-;32662:35;32719:1;32716;32712:9;32707:14;;32542:185;;;;:::o;32733:348::-;32773:7;32796:20;32814:1;32796:20;:::i;:::-;32791:25;;32830:20;32848:1;32830:20;:::i;:::-;32825:25;;33018:1;32950:66;32946:74;32943:1;32940:81;32935:1;32928:9;32921:17;32917:105;32914:131;;;33025:18;;:::i;:::-;32914:131;33073:1;33070;33066:9;33055:20;;32733:348;;;;:::o;33087:191::-;33127:4;33147:20;33165:1;33147:20;:::i;:::-;33142:25;;33181:20;33199:1;33181:20;:::i;:::-;33176:25;;33220:1;33217;33214:8;33211:34;;;33225:18;;:::i;:::-;33211:34;33270:1;33267;33263:9;33255:17;;33087:191;;;;:::o;33284:96::-;33321:7;33350:24;33368:5;33350:24;:::i;:::-;33339:35;;33284:96;;;:::o;33386:90::-;33420:7;33463:5;33456:13;33449:21;33438:32;;33386:90;;;:::o;33482:149::-;33518:7;33558:66;33551:5;33547:78;33536:89;;33482:149;;;:::o;33637:126::-;33674:7;33714:42;33707:5;33703:54;33692:65;;33637:126;;;:::o;33769:77::-;33806:7;33835:5;33824:16;;33769:77;;;:::o;33852:101::-;33888:7;33928:18;33921:5;33917:30;33906:41;;33852:101;;;:::o;33959:154::-;34043:6;34038:3;34033;34020:30;34105:1;34096:6;34091:3;34087:16;34080:27;33959:154;;;:::o;34119:307::-;34187:1;34197:113;34211:6;34208:1;34205:13;34197:113;;;34296:1;34291:3;34287:11;34281:18;34277:1;34272:3;34268:11;34261:39;34233:2;34230:1;34226:10;34221:15;;34197:113;;;34328:6;34325:1;34322:13;34319:101;;;34408:1;34399:6;34394:3;34390:16;34383:27;34319:101;34168:258;34119:307;;;:::o;34432:320::-;34476:6;34513:1;34507:4;34503:12;34493:22;;34560:1;34554:4;34550:12;34581:18;34571:81;;34637:4;34629:6;34625:17;34615:27;;34571:81;34699:2;34691:6;34688:14;34668:18;34665:38;34662:84;;;34718:18;;:::i;:::-;34662:84;34483:269;34432:320;;;:::o;34758:281::-;34841:27;34863:4;34841:27;:::i;:::-;34833:6;34829:40;34971:6;34959:10;34956:22;34935:18;34923:10;34920:34;34917:62;34914:88;;;34982:18;;:::i;:::-;34914:88;35022:10;35018:2;35011:22;34801:238;34758:281;;:::o;35045:233::-;35084:3;35107:24;35125:5;35107:24;:::i;:::-;35098:33;;35153:66;35146:5;35143:77;35140:103;;;35223:18;;:::i;:::-;35140:103;35270:1;35263:5;35259:13;35252:20;;35045:233;;;:::o;35284:176::-;35316:1;35333:20;35351:1;35333:20;:::i;:::-;35328:25;;35367:20;35385:1;35367:20;:::i;:::-;35362:25;;35406:1;35396:35;;35411:18;;:::i;:::-;35396:35;35452:1;35449;35445:9;35440:14;;35284:176;;;;:::o;35466:180::-;35514:77;35511:1;35504:88;35611:4;35608:1;35601:15;35635:4;35632:1;35625:15;35652:180;35700:77;35697:1;35690:88;35797:4;35794:1;35787:15;35821:4;35818:1;35811:15;35838:180;35886:77;35883:1;35876:88;35983:4;35980:1;35973:15;36007:4;36004:1;35997:15;36024:180;36072:77;36069:1;36062:88;36169:4;36166:1;36159:15;36193:4;36190:1;36183:15;36210:180;36258:77;36255:1;36248:88;36355:4;36352:1;36345:15;36379:4;36376:1;36369:15;36396:117;36505:1;36502;36495:12;36519:117;36628:1;36625;36618:12;36642:117;36751:1;36748;36741:12;36765:117;36874:1;36871;36864:12;36888:117;36997:1;36994;36987:12;37011:117;37120:1;37117;37110:12;37134:102;37175:6;37226:2;37222:7;37217:2;37210:5;37206:14;37202:28;37192:38;;37134:102;;;:::o;37242:221::-;37382:34;37378:1;37370:6;37366:14;37359:58;37451:4;37446:2;37438:6;37434:15;37427:29;37242:221;:::o;37469:225::-;37609:34;37605:1;37597:6;37593:14;37586:58;37678:8;37673:2;37665:6;37661:15;37654:33;37469:225;:::o;37700:229::-;37840:34;37836:1;37828:6;37824:14;37817:58;37909:12;37904:2;37896:6;37892:15;37885:37;37700:229;:::o;37935:222::-;38075:34;38071:1;38063:6;38059:14;38052:58;38144:5;38139:2;38131:6;38127:15;38120:30;37935:222;:::o;38163:224::-;38303:34;38299:1;38291:6;38287:14;38280:58;38372:7;38367:2;38359:6;38355:15;38348:32;38163:224;:::o;38393:236::-;38533:34;38529:1;38521:6;38517:14;38510:58;38602:19;38597:2;38589:6;38585:15;38578:44;38393:236;:::o;38635:244::-;38775:34;38771:1;38763:6;38759:14;38752:58;38844:27;38839:2;38831:6;38827:15;38820:52;38635:244;:::o;38885:230::-;39025:34;39021:1;39013:6;39009:14;39002:58;39094:13;39089:2;39081:6;39077:15;39070:38;38885:230;:::o;39121:225::-;39261:34;39257:1;39249:6;39245:14;39238:58;39330:8;39325:2;39317:6;39313:15;39306:33;39121:225;:::o;39352:182::-;39492:34;39488:1;39480:6;39476:14;39469:58;39352:182;:::o;39540:234::-;39680:34;39676:1;39668:6;39664:14;39657:58;39749:17;39744:2;39736:6;39732:15;39725:42;39540:234;:::o;39780:176::-;39920:28;39916:1;39908:6;39904:14;39897:52;39780:176;:::o;39962:237::-;40102:34;40098:1;40090:6;40086:14;40079:58;40171:20;40166:2;40158:6;40154:15;40147:45;39962:237;:::o;40205:221::-;40345:34;40341:1;40333:6;40329:14;40322:58;40414:4;40409:2;40401:6;40397:15;40390:29;40205:221;:::o;40432:114::-;;:::o;40552:166::-;40692:18;40688:1;40680:6;40676:14;40669:42;40552:166;:::o;40724:238::-;40864:34;40860:1;40852:6;40848:14;40841:58;40933:21;40928:2;40920:6;40916:15;40909:46;40724:238;:::o;40968:220::-;41108:34;41104:1;41096:6;41092:14;41085:58;41177:3;41172:2;41164:6;41160:15;41153:28;40968:220;:::o;41194:227::-;41334:34;41330:1;41322:6;41318:14;41311:58;41403:10;41398:2;41390:6;41386:15;41379:35;41194:227;:::o;41427:233::-;41567:34;41563:1;41555:6;41551:14;41544:58;41636:16;41631:2;41623:6;41619:15;41612:41;41427:233;:::o;41666:181::-;41806:33;41802:1;41794:6;41790:14;41783:57;41666:181;:::o;41853:234::-;41993:34;41989:1;41981:6;41977:14;41970:58;42062:17;42057:2;42049:6;42045:15;42038:42;41853:234;:::o;42093:232::-;42233:34;42229:1;42221:6;42217:14;42210:58;42302:15;42297:2;42289:6;42285:15;42278:40;42093:232;:::o;42331:122::-;42404:24;42422:5;42404:24;:::i;:::-;42397:5;42394:35;42384:63;;42443:1;42440;42433:12;42384:63;42331:122;:::o;42459:116::-;42529:21;42544:5;42529:21;:::i;:::-;42522:5;42519:32;42509:60;;42565:1;42562;42555:12;42509:60;42459:116;:::o;42581:120::-;42653:23;42670:5;42653:23;:::i;:::-;42646:5;42643:34;42633:62;;42691:1;42688;42681:12;42633:62;42581:120;:::o;42707:122::-;42780:24;42798:5;42780:24;:::i;:::-;42773:5;42770:35;42760:63;;42819:1;42816;42809:12;42760:63;42707:122;:::o
Swarm Source
ipfs://930e7268c25691acb1f70077d76e89bb2353ee7467774f6a30062dea28de3451
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.