ETH Price: $2,973.36 (-0.69%)
Gas: 7 Gwei

Token

 

Overview

Max Total Supply

189

Holders

158

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xbbb1f74ac97f2093b10126c1ae4cd56da5145b07
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
CairoFinanceTradingLicence

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : ERC1155Refferal.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "./@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "./@openzeppelin/contracts/access/Ownable.sol";
import "./@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol";

contract CairoFinanceTradingLicence is ERC1155, Ownable, ERC1155Supply {
    event Distribution(
        address indexed receiver,
        address fromUser,
        uint256 levelIncome,
        uint256 incomeReceived
    ); //Reward Distribution Event
    event NFTBought(
        address userAddress,
        address referredBy,
        uint256 amountPaid,
        uint256 joingDate
    );
    struct userData {
        uint256 id;
        address userAddress;
        address referredBy;
        uint256 amountPaid;
        uint256 joingDate;
        uint256 referCount100;
        bool activeAllLevel;
        bool isExist;
    } // Stores data of every user who purchased nft.
    struct levelEarning {
        uint256 level1;
        uint256 level2;
        uint256 level3;
    }
    bool mintAllowed = true; // Minting status
    uint256 public _currentId = 1;
    uint256[] levelDistribution = [10, 5]; //Level of reward distribution after referre
    uint256[] NFT_Price; //Price of nft
    uint256[] NFT_Volume;
    mapping(address => userData) public users;
    mapping(address => uint256) public distributionIncome; //Get income received from distribution;
    mapping(address => levelEarning) public levelEarnings;
    address internal firstId;
    uint256 currentPriceIndex = 0;
    uint256 maxSales = 9700;
    uint256 NFT_Sold = 0;
    address receiverAddress = 0x08D630C4D19EB0E2979D39e9E8E3037692a4c778;

    constructor() ERC1155("") {
        totalSupply(10000);
        users[msg.sender] = userData(
            _currentId,
            msg.sender,
            address(0),
            100,
            block.timestamp,
            1,
            true,
            true
        ); // Creating a user instance for owner
        firstId = msg.sender;
        _currentId++;
        NFT_Price = [
            0.58 ether,
            0.70 ether,
            0.77 ether,
            1.17 ether,
            1.55 ether,
            3.11 ether
        ];
        NFT_Volume = [200, 700, 1700, 3200, 5700, 9700];
    }

    function setURI(string memory newuri) public onlyOwner {
        _setURI(newuri);
    }

    function mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public onlyOwner {
        _mint(account, id, amount, data);
    }

    function mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public onlyOwner {
        _mintBatch(to, ids, amounts, data);
    }

    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal override(ERC1155, ERC1155Supply) {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
    }

    function setPrice(uint256[] calldata _price) public onlyOwner {
        require(_price.length == NFT_Price.length, "Invalid Array Length");
        NFT_Price = _price;
    }

    function buyNFT(address referredBy) external payable {
        require(msg.sender != address(0), "Can't be zero address");
        require(mintAllowed, "Max supply reached");
        require(checkUserExists(referredBy) == true, "Invalid refer address");
        require(
            msg.value == NFT_Price[currentPriceIndex],
            "Invalid Amount Sent"
        );

        _mint(msg.sender, 1, 1, ""); //Minting ERC1155
        NFT_Sold++;
        uint256 amountTransfered = (msg.value * 15) / 100; //Keeping records of the refferal rewards sent.
        payable(referredBy).transfer((msg.value * 15) / 100); //Sending Reffer Rewards

        emit Distribution(referredBy, msg.sender, 5, amountTransfered); //Emitting 1st refferal reward distribution.
        levelEarnings[referredBy].level1 += amountTransfered; //Level 1 earning
        distributionIncome[referredBy] += (amountTransfered); //Recording the rewards per account.
        address uplineUserAddress = getUplineAddress(referredBy); //Getting previous refferal adresses.
        uint256 currentLevelDistribute = 0;

        for (uint256 i = 0; i <= _currentId; i++) {
            if (uplineUserAddress == firstId) {
                break;
            } else {
                if (currentLevelDistribute < 2) {
                    if (users[uplineUserAddress].activeAllLevel == true) {
                        payable(uplineUserAddress).transfer(
                            (msg.value *
                                levelDistribution[currentLevelDistribute]) / 100
                        );
                        distributionIncome[uplineUserAddress] +=
                            (msg.value *
                                levelDistribution[currentLevelDistribute]) /
                            100;
                        emit Distribution(
                            uplineUserAddress,
                            msg.sender,
                            currentLevelDistribute,
                            (msg.value *
                                levelDistribution[currentLevelDistribute]) / 100
                        );
                        amountTransfered +=
                            (msg.value *
                                levelDistribution[currentLevelDistribute]) /
                            100;
                        if (currentLevelDistribute == 0) {
                            levelEarnings[uplineUserAddress].level2 +=
                                (msg.value *
                                    levelDistribution[currentLevelDistribute]) /
                                100; //Level2 earning
                        }
                        if (currentLevelDistribute == 1) {
                            levelEarnings[uplineUserAddress].level3 +=
                                (msg.value *
                                    levelDistribution[currentLevelDistribute]) /
                                100; //Level3 earning
                        }
                        uplineUserAddress = getUplineAddress(uplineUserAddress);

                        currentLevelDistribute++;
                    } else {
                        uplineUserAddress = getUplineAddress(uplineUserAddress);
                    }
                } else {
                    break;
                }
            }
        }
        if (users[msg.sender].userAddress == address(0)) {
            users[msg.sender] = userData(
                _currentId,
                msg.sender,
                referredBy,
                msg.value,
                block.timestamp,
                1,
                true,
                true
            );

            _currentId++;
        } else if (users[msg.sender].userAddress == msg.sender) {
            users[msg.sender].amountPaid += msg.value;
            users[msg.sender].referCount100++;
        }
        payable(receiverAddress).transfer(msg.value - amountTransfered);
        if (NFT_Sold == NFT_Volume[currentPriceIndex]) {
            currentPriceIndex++;
        }
        if (NFT_Sold == maxSales) {
            mintAllowed = false;
        }
        emit NFTBought(msg.sender, referredBy, msg.value, block.timestamp);
    }

    function getUplineAddress(address _userAddress)
        internal
        view
        returns (address)
    {
        return users[_userAddress].referredBy;
    }

    function getRewards(address _userAddress) public view returns (uint256) {
        uint256 bv = distributionIncome[_userAddress];
        return bv;
    }

    function checkUserExists(address _userAddress)
        internal
        view
        returns (bool)
    {
        return users[_userAddress].isExist;
    }

    function level1Earnings(address _userAddress)
        public
        view
        returns (uint256)
    {
        return levelEarnings[_userAddress].level1;
    }

    function level2Earnings(address _userAddress)
        public
        view
        returns (uint256)
    {
        return levelEarnings[_userAddress].level2;
    }

    function level3Earnings(address _userAddress)
        public
        view
        returns (uint256)
    {
        return levelEarnings[_userAddress].level3;
    }

    function stopSale(bool _status) public onlyOwner {
        mintAllowed = _status;
    }

    function setRecieverAccount(address _userAddress) public onlyOwner {
        receiverAddress = _userAddress;
    }

    function CurrentPrice() public view returns (uint256) {
        return NFT_Price[currentPriceIndex];
    }
}

File 2 of 11 : IERC165.sol
// SPDX-License-Identifier: MIT
// 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 3 of 11 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 4 of 11 : Context.sol
// SPDX-License-Identifier: MIT
// 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 5 of 11 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 6 of 11 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;

import "../IERC1155.sol";

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

File 7 of 11 : ERC1155Supply.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/extensions/ERC1155Supply.sol)

pragma solidity ^0.8.0;

import "../ERC1155.sol";

/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates whether any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        if (from == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] += amounts[i];
            }
        }

        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                uint256 id = ids[i];
                uint256 amount = amounts[i];
                uint256 supply = _totalSupply[id];
                require(supply >= amount, "ERC1155: burn amount exceeds totalSupply");
                unchecked {
                    _totalSupply[id] = supply - amount;
                }
            }
        }
    }
}

File 8 of 11 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

File 9 of 11 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

File 10 of 11 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: address zero is not a valid owner");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `ids` and `amounts` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

File 11 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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);
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "london",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"receiver","type":"address"},{"indexed":false,"internalType":"address","name":"fromUser","type":"address"},{"indexed":false,"internalType":"uint256","name":"levelIncome","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"incomeReceived","type":"uint256"}],"name":"Distribution","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address","name":"referredBy","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountPaid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"joingDate","type":"uint256"}],"name":"NFTBought","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"CurrentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_currentId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"referredBy","type":"address"}],"name":"buyNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"distributionIncome","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_userAddress","type":"address"}],"name":"getRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_userAddress","type":"address"}],"name":"level1Earnings","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_userAddress","type":"address"}],"name":"level2Earnings","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_userAddress","type":"address"}],"name":"level3Earnings","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"levelEarnings","outputs":[{"internalType":"uint256","name":"level1","type":"uint256"},{"internalType":"uint256","name":"level2","type":"uint256"},{"internalType":"uint256","name":"level3","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"uint256[]","name":"_price","type":"uint256[]"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_userAddress","type":"address"}],"name":"setRecieverAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"stopSale","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":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"users","outputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"address","name":"referredBy","type":"address"},{"internalType":"uint256","name":"amountPaid","type":"uint256"},{"internalType":"uint256","name":"joingDate","type":"uint256"},{"internalType":"uint256","name":"referCount100","type":"uint256"},{"internalType":"bool","name":"activeAllLevel","type":"bool"},{"internalType":"bool","name":"isExist","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040526001600560006101000a81548160ff02191690831515021790555060016006556040518060400160405280600a60ff168152602001600560ff168152506007906002620000539291906200053d565b506000600e556125e4600f5560006010557308d630c4d19eb0e2979d39e9e8e3037692a4c778601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000c657600080fd5b5060405180602001604052806000815250620000e8816200043660201b60201c565b5062000109620000fd6200045260201b60201c565b6200045a60201b60201c565b6200011c6127106200052060201b60201c565b5060405180610100016040528060065481526020013373ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001606481526020014281526020016001815260200160011515815260200160011515815250600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000820151816000015560208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060408201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606082015181600301556080820151816004015560a0820151816005015560c08201518160060160006101000a81548160ff02191690831515021790555060e08201518160060160016101000a81548160ff02191690831515021790555090505033600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660008154809291906200031c906200073a565b91905055506040518060c0016040528067080c92ed51ba000067ffffffffffffffff1681526020016709b6e64a8ec6000067ffffffffffffffff168152602001670aaf96eb9d0d000067ffffffffffffffff16815260200167103caccd1335000067ffffffffffffffff168152602001671582b4c9a9db000067ffffffffffffffff168152602001672b28f085c377000067ffffffffffffffff168152506008906006620003cc92919062000594565b506040518060c0016040528060c861ffff1681526020016102bc61ffff1681526020016106a461ffff168152602001610c8061ffff16815260200161164461ffff1681526020016125e461ffff1681525060099060066200042f929190620005f2565b50620007e6565b80600290805190602001906200044e9291906200064a565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060046000838152602001908152602001600020549050919050565b82805482825590600052602060002090810192821562000581579160200282015b8281111562000580578251829060ff169055916020019190600101906200055e565b5b509050620005909190620006db565b5090565b828054828255906000526020600020908101928215620005df579160200282015b82811115620005de578251829067ffffffffffffffff16905591602001919060010190620005b5565b5b509050620005ee9190620006db565b5090565b82805482825590600052602060002090810192821562000637579160200282015b8281111562000636578251829061ffff1690559160200191906001019062000613565b5b509050620006469190620006db565b5090565b828054620006589062000704565b90600052602060002090601f0160209004810192826200067c5760008555620006c8565b82601f106200069757805160ff1916838001178555620006c8565b82800160010185558215620006c8579182015b82811115620006c7578251825591602001919060010190620006aa565b5b509050620006d79190620006db565b5090565b5b80821115620006f6576000816000905550600101620006dc565b5090565b6000819050919050565b600060028204905060018216806200071d57607f821691505b60208210811415620007345762000733620007b7565b5b50919050565b60006200074782620006fa565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200077d576200077c62000788565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614e3580620007f66000396000f3fe6080604052600436106101c15760003560e01c806379ee54f7116100f7578063bd85b03911610095578063ee3bfe4411610064578063ee3bfe44146106cd578063f242432a146106f6578063f2fde38b1461071f578063ff69e2bc14610748576101c1565b8063bd85b039146105ed578063e038dcd91461062a578063e39dd79c14610667578063e985e9c514610690576101c1565b8063a22cb465116100d1578063a22cb4651461053b578063a87430ba14610564578063ae73bef8146105a8578063ba79b564146105d1576101c1565b806379ee54f7146104965780637fe50cc6146104d35780638da5cb5b14610510576101c1565b8063392d363411610164578063574fc4931161013e578063574fc493146103ee578063715018a614610419578063731133e9146104305780637478093914610459576101c1565b8063392d3634146103355780634e1273f4146103745780634f558e79146103b1576101c1565b80630e89341c116101a05780630e89341c146102695780631f7fdffa146102a65780632be058f3146102cf5780632eb2c2d61461030c576101c1565b8062fdd58e146101c657806301ffc9a71461020357806302fe530514610240575b600080fd5b3480156101d257600080fd5b506101ed60048036038101906101e891906137b4565b610773565b6040516101fa9190614248565b60405180910390f35b34801561020f57600080fd5b5061022a60048036038101906102259190613969565b61083c565b6040516102379190613fcb565b60405180910390f35b34801561024c57600080fd5b50610267600480360381019061026291906139c3565b61091e565b005b34801561027557600080fd5b50610290600480360381019061028b9190613a0c565b610932565b60405161029d9190613fe6565b60405180910390f35b3480156102b257600080fd5b506102cd60048036038101906102c891906136b9565b6109c6565b005b3480156102db57600080fd5b506102f660048036038101906102f191906134e6565b6109e0565b6040516103039190614248565b60405180910390f35b34801561031857600080fd5b50610333600480360381019061032e9190613553565b610a2c565b005b34801561034157600080fd5b5061035c600480360381019061035791906134e6565b610acd565b60405161036b9392919061430a565b60405180910390f35b34801561038057600080fd5b5061039b60048036038101906103969190613877565b610af7565b6040516103a89190613f72565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190613a0c565b610c10565b6040516103e59190613fcb565b60405180910390f35b3480156103fa57600080fd5b50610403610c24565b6040516104109190614248565b60405180910390f35b34801561042557600080fd5b5061042e610c2a565b005b34801561043c57600080fd5b50610457600480360381019061045291906137f4565b610c3e565b005b34801561046557600080fd5b50610480600480360381019061047b91906134e6565b610c58565b60405161048d9190614248565b60405180910390f35b3480156104a257600080fd5b506104bd60048036038101906104b891906134e6565b610ca4565b6040516104ca9190614248565b60405180910390f35b3480156104df57600080fd5b506104fa60048036038101906104f591906134e6565b610cf2565b6040516105079190614248565b60405180910390f35b34801561051c57600080fd5b50610525610d3e565b6040516105329190613de2565b60405180910390f35b34801561054757600080fd5b50610562600480360381019061055d9190613774565b610d68565b005b34801561057057600080fd5b5061058b600480360381019061058691906134e6565b610d7e565b60405161059f989796959493929190614263565b60405180910390f35b3480156105b457600080fd5b506105cf60048036038101906105ca91906134e6565b610e20565b005b6105eb60048036038101906105e691906134e6565b610e6c565b005b3480156105f957600080fd5b50610614600480360381019061060f9190613a0c565b611a77565b6040516106219190614248565b60405180910390f35b34801561063657600080fd5b50610651600480360381019061064c91906134e6565b611a94565b60405161065e9190614248565b60405180910390f35b34801561067357600080fd5b5061068e600480360381019061068991906138ef565b611aac565b005b34801561069c57600080fd5b506106b760048036038101906106b29190613513565b611b14565b6040516106c49190613fcb565b60405180910390f35b3480156106d957600080fd5b506106f460048036038101906106ef919061393c565b611ba8565b005b34801561070257600080fd5b5061071d60048036038101906107189190613622565b611bcd565b005b34801561072b57600080fd5b50610746600480360381019061074191906134e6565b611c6e565b005b34801561075457600080fd5b5061075d611cf2565b60405161076a9190614248565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107db906140c8565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090757507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610917575061091682611d1a565b5b9050919050565b610926611d84565b61092f81611e02565b50565b6060600280546109419061466e565b80601f016020809104026020016040519081016040528092919081815260200182805461096d9061466e565b80156109ba5780601f1061098f576101008083540402835291602001916109ba565b820191906000526020600020905b81548152906001019060200180831161099d57829003601f168201915b50505050509050919050565b6109ce611d84565b6109da84848484611e1c565b50505050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101549050919050565b610a34612049565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610a7a5750610a7985610a74612049565b611b14565b5b610ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab090614028565b60405180910390fd5b610ac68585858585612051565b5050505050565b600c6020528060005260406000206000915090508060000154908060010154908060020154905083565b60608151835114610b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b34906141c8565b60405180910390fd5b6000835167ffffffffffffffff811115610b5a57610b596147d6565b5b604051908082528060200260200182016040528015610b885781602001602082028036833780820191505090505b50905060005b8451811015610c0557610bd5858281518110610bad57610bac6147a7565b5b6020026020010151858381518110610bc857610bc76147a7565b5b6020026020010151610773565b828281518110610be857610be76147a7565b5b60200260200101818152505080610bfe906146d1565b9050610b8e565b508091505092915050565b600080610c1c83611a77565b119050919050565b60065481565b610c32611d84565b610c3c6000612373565b565b610c46611d84565b610c5284848484612439565b50505050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549050919050565b600080600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080915050919050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201549050919050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d7a610d73612049565b83836125ea565b5050565b600a6020528060005260406000206000915090508060000154908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060030154908060040154908060050154908060060160009054906101000a900460ff16908060060160019054906101000a900460ff16905088565b610e28611d84565b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415610edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed390614068565b60405180910390fd5b600560009054906101000a900460ff16610f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2290614188565b60405180910390fd5b60011515610f3882612757565b151514610f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7190614088565b60405180910390fd5b6008600e5481548110610f9057610f8f6147a7565b5b90600052602060002001543414610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd390614228565b60405180910390fd5b610ff83360018060405180602001604052806000815250612439565b6010600081548092919061100b906146d1565b919050555060006064600f346110219190614518565b61102b91906144e7565b90508173ffffffffffffffffffffffffffffffffffffffff166108fc6064600f346110569190614518565b61106091906144e7565b9081150290604051600060405180830381858888f1935050505015801561108b573d6000803e3d6000fd5b508173ffffffffffffffffffffffffffffffffffffffff167f6d15a659055d215da034d05fa563a8cbecd0b8cb54a020ae1882601d7ce15a77336005846040516110d793929190613f04565b60405180910390a280600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282546111319190614491565b9250508190555080600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111879190614491565b925050819055506000611199836127b0565b90506000805b60065481116115b057600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611203576115b0565b60028210156115985760011515600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060060160009054906101000a900460ff1615151415611587578273ffffffffffffffffffffffffffffffffffffffff166108fc606460078581548110611298576112976147a7565b5b9060005260206000200154346112ae9190614518565b6112b891906144e7565b9081150290604051600060405180830381858888f193505050501580156112e3573d6000803e3d6000fd5b506064600783815481106112fa576112f96147a7565b5b9060005260206000200154346113109190614518565b61131a91906144e7565b600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113689190614491565b925050819055508273ffffffffffffffffffffffffffffffffffffffff167f6d15a659055d215da034d05fa563a8cbecd0b8cb54a020ae1882601d7ce15a7733846064600787815481106113bf576113be6147a7565b5b9060005260206000200154346113d59190614518565b6113df91906144e7565b6040516113ee93929190613f3b565b60405180910390a260646007838154811061140c5761140b6147a7565b5b9060005260206000200154346114229190614518565b61142c91906144e7565b846114379190614491565b935060008214156114d157606460078381548110611458576114576147a7565b5b90600052602060002001543461146e9190614518565b61147891906144e7565b600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160008282546114c99190614491565b925050819055505b6001821415611569576064600783815481106114f0576114ef6147a7565b5b9060005260206000200154346115069190614518565b61151091906144e7565b600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160008282546115619190614491565b925050819055505b611572836127b0565b9250818061157f906146d1565b925050611593565b611590836127b0565b92505b61159d565b6115b0565b80806115a8906146d1565b91505061119f565b50600073ffffffffffffffffffffffffffffffffffffffff16600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561180c5760405180610100016040528060065481526020013373ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1681526020013481526020014281526020016001815260200160011515815260200160011515815250600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000820151816000015560208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060408201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606082015181600301556080820151816004015560a0820151816005015560c08201518160060160006101000a81548160ff02191690831515021790555060e08201518160060160016101000a81548160ff02191690831515021790555090505060066000815480929190611802906146d1565b9190505550611955565b3373ffffffffffffffffffffffffffffffffffffffff16600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156119545734600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160008282546118f49190614491565b92505081905550600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600501600081548092919061194e906146d1565b91905055505b5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc843461199d9190614572565b9081150290604051600060405180830381858888f193505050501580156119c8573d6000803e3d6000fd5b506009600e54815481106119df576119de6147a7565b5b90600052602060002001546010541415611a0c57600e6000815480929190611a06906146d1565b91905055505b600f546010541415611a34576000600560006101000a81548160ff0219169083151502179055505b7f5a55b2d970d079d39ce4c5dc9ec6de52ebfc2bbcfc7466d62eea534ee873667333853442604051611a699493929190613e65565b60405180910390a150505050565b600060046000838152602001908152602001600020549050919050565b600b6020528060005260406000206000915090505481565b611ab4611d84565b6008805490508282905014611afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af590614168565b60405180910390fd5b818160089190611b0f92919061311b565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bb0611d84565b80600560006101000a81548160ff02191690831515021790555050565b611bd5612049565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611c1b5750611c1a85611c15612049565b611b14565b5b611c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5190614028565b60405180910390fd5b611c67858585858561281c565b5050505050565b611c76611d84565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdd906140a8565b60405180910390fd5b611cef81612373565b50565b60006008600e5481548110611d0a57611d096147a7565b5b9060005260206000200154905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611d8c612049565b73ffffffffffffffffffffffffffffffffffffffff16611daa610d3e565b73ffffffffffffffffffffffffffffffffffffffff1614611e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df790614128565b60405180910390fd5b565b8060029080519060200190611e18929190613168565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8390614208565b60405180910390fd5b8151835114611ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec7906141e8565b60405180910390fd5b6000611eda612049565b9050611eeb81600087878787612ab8565b60005b8451811015611fa457838181518110611f0a57611f096147a7565b5b6020026020010151600080878481518110611f2857611f276147a7565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f8a9190614491565b925050819055508080611f9c906146d1565b915050611eee565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161201c929190613f94565b60405180910390a461203381600087878787612ace565b61204281600087878787612ad6565b5050505050565b600033905090565b8151835114612095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208c906141e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fc906140e8565b60405180910390fd5b600061210f612049565b905061211f818787878787612ab8565b60005b84518110156122d05760008582815181106121405761213f6147a7565b5b60200260200101519050600085838151811061215f5761215e6147a7565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f790614108565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122b59190614491565b92505081905550505050806122c9906146d1565b9050612122565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612347929190613f94565b60405180910390a461235d818787878787612ace565b61236b818787878787612ad6565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156124a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a090614208565b60405180910390fd5b60006124b3612049565b905060006124c085612cbd565b905060006124cd85612cbd565b90506124de83600089858589612ab8565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461253d9190614491565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516125bb9291906142e1565b60405180910390a46125d283600089858589612ace565b6125e183600089898989612d37565b50505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612659576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612650906141a8565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161274a9190613fcb565b60405180910390a3505050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060060160019054906101000a900460ff169050919050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561288c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612883906140e8565b60405180910390fd5b6000612896612049565b905060006128a385612cbd565b905060006128b085612cbd565b90506128c0838989858589612ab8565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015612957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294e90614108565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a0c9190614491565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051612a899291906142e1565b60405180910390a4612a9f848a8a86868a612ace565b612aad848a8a8a8a8a612d37565b505050505050505050565b612ac6868686868686612f1e565b505050505050565b505050505050565b612af58473ffffffffffffffffffffffffffffffffffffffff166130f0565b15612cb5578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612b3b959493929190613dfd565b602060405180830381600087803b158015612b5557600080fd5b505af1925050508015612b8657506040513d601f19601f82011682018060405250810190612b839190613996565b60015b612c2c57612b92614805565b806308c379a01415612bef5750612ba7614d0d565b80612bb25750612bf1565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be69190613fe6565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2390614008565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612caa90614048565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115612cdc57612cdb6147d6565b5b604051908082528060200260200182016040528015612d0a5781602001602082028036833780820191505090505b5090508281600081518110612d2257612d216147a7565b5b60200260200101818152505080915050919050565b612d568473ffffffffffffffffffffffffffffffffffffffff166130f0565b15612f16578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612d9c959493929190613eaa565b602060405180830381600087803b158015612db657600080fd5b505af1925050508015612de757506040513d601f19601f82011682018060405250810190612de49190613996565b60015b612e8d57612df3614805565b806308c379a01415612e505750612e08614d0d565b80612e135750612e52565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e479190613fe6565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8490614008565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0b90614048565b60405180910390fd5b505b505050505050565b612f2c868686868686613113565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612fde5760005b8351811015612fdc57828181518110612f8057612f7f6147a7565b5b602002602001015160046000868481518110612f9f57612f9e6147a7565b5b602002602001015181526020019081526020016000206000828254612fc49190614491565b9250508190555080612fd5906146d1565b9050612f64565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156130e85760005b83518110156130e6576000848281518110613034576130336147a7565b5b602002602001015190506000848381518110613053576130526147a7565b5b60200260200101519050600060046000848152602001908152602001600020549050818110156130b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130af90614148565b60405180910390fd5b8181036004600085815260200190815260200160002081905550505050806130df906146d1565b9050613016565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b828054828255906000526020600020908101928215613157579160200282015b8281111561315657823582559160200191906001019061313b565b5b50905061316491906131ee565b5090565b8280546131749061466e565b90600052602060002090601f01602090048101928261319657600085556131dd565b82601f106131af57805160ff19168380011785556131dd565b828001600101855582156131dd579182015b828111156131dc5782518255916020019190600101906131c1565b5b5090506131ea91906131ee565b5090565b5b808211156132075760008160009055506001016131ef565b5090565b600061321e61321984614366565b614341565b9050808382526020820190508285602086028201111561324157613240614831565b5b60005b858110156132715781613257888261336f565b845260208401935060208301925050600181019050613244565b5050509392505050565b600061328e61328984614392565b614341565b905080838252602082019050828560208602820111156132b1576132b0614831565b5b60005b858110156132e157816132c788826134d1565b8452602084019350602083019250506001810190506132b4565b5050509392505050565b60006132fe6132f9846143be565b614341565b90508281526020810184848401111561331a57613319614836565b5b61332584828561462c565b509392505050565b600061334061333b846143ef565b614341565b90508281526020810184848401111561335c5761335b614836565b5b61336784828561462c565b509392505050565b60008135905061337e81614da3565b92915050565b600082601f8301126133995761339861482c565b5b81356133a984826020860161320b565b91505092915050565b60008083601f8401126133c8576133c761482c565b5b8235905067ffffffffffffffff8111156133e5576133e4614827565b5b60208301915083602082028301111561340157613400614831565b5b9250929050565b600082601f83011261341d5761341c61482c565b5b813561342d84826020860161327b565b91505092915050565b60008135905061344581614dba565b92915050565b60008135905061345a81614dd1565b92915050565b60008151905061346f81614dd1565b92915050565b600082601f83011261348a5761348961482c565b5b813561349a8482602086016132eb565b91505092915050565b600082601f8301126134b8576134b761482c565b5b81356134c884826020860161332d565b91505092915050565b6000813590506134e081614de8565b92915050565b6000602082840312156134fc576134fb614840565b5b600061350a8482850161336f565b91505092915050565b6000806040838503121561352a57613529614840565b5b60006135388582860161336f565b92505060206135498582860161336f565b9150509250929050565b600080600080600060a0868803121561356f5761356e614840565b5b600061357d8882890161336f565b955050602061358e8882890161336f565b945050604086013567ffffffffffffffff8111156135af576135ae61483b565b5b6135bb88828901613408565b935050606086013567ffffffffffffffff8111156135dc576135db61483b565b5b6135e888828901613408565b925050608086013567ffffffffffffffff8111156136095761360861483b565b5b61361588828901613475565b9150509295509295909350565b600080600080600060a0868803121561363e5761363d614840565b5b600061364c8882890161336f565b955050602061365d8882890161336f565b945050604061366e888289016134d1565b935050606061367f888289016134d1565b925050608086013567ffffffffffffffff8111156136a05761369f61483b565b5b6136ac88828901613475565b9150509295509295909350565b600080600080608085870312156136d3576136d2614840565b5b60006136e18782880161336f565b945050602085013567ffffffffffffffff8111156137025761370161483b565b5b61370e87828801613408565b935050604085013567ffffffffffffffff81111561372f5761372e61483b565b5b61373b87828801613408565b925050606085013567ffffffffffffffff81111561375c5761375b61483b565b5b61376887828801613475565b91505092959194509250565b6000806040838503121561378b5761378a614840565b5b60006137998582860161336f565b92505060206137aa85828601613436565b9150509250929050565b600080604083850312156137cb576137ca614840565b5b60006137d98582860161336f565b92505060206137ea858286016134d1565b9150509250929050565b6000806000806080858703121561380e5761380d614840565b5b600061381c8782880161336f565b945050602061382d878288016134d1565b935050604061383e878288016134d1565b925050606085013567ffffffffffffffff81111561385f5761385e61483b565b5b61386b87828801613475565b91505092959194509250565b6000806040838503121561388e5761388d614840565b5b600083013567ffffffffffffffff8111156138ac576138ab61483b565b5b6138b885828601613384565b925050602083013567ffffffffffffffff8111156138d9576138d861483b565b5b6138e585828601613408565b9150509250929050565b6000806020838503121561390657613905614840565b5b600083013567ffffffffffffffff8111156139245761392361483b565b5b613930858286016133b2565b92509250509250929050565b60006020828403121561395257613951614840565b5b600061396084828501613436565b91505092915050565b60006020828403121561397f5761397e614840565b5b600061398d8482850161344b565b91505092915050565b6000602082840312156139ac576139ab614840565b5b60006139ba84828501613460565b91505092915050565b6000602082840312156139d9576139d8614840565b5b600082013567ffffffffffffffff8111156139f7576139f661483b565b5b613a03848285016134a3565b91505092915050565b600060208284031215613a2257613a21614840565b5b6000613a30848285016134d1565b91505092915050565b6000613a458383613dc4565b60208301905092915050565b613a5a816145a6565b82525050565b6000613a6b82614430565b613a75818561445e565b9350613a8083614420565b8060005b83811015613ab1578151613a988882613a39565b9750613aa383614451565b925050600181019050613a84565b5085935050505092915050565b613ac7816145b8565b82525050565b6000613ad88261443b565b613ae2818561446f565b9350613af281856020860161463b565b613afb81614845565b840191505092915050565b613b0f8161461a565b82525050565b6000613b2082614446565b613b2a8185614480565b9350613b3a81856020860161463b565b613b4381614845565b840191505092915050565b6000613b5b603483614480565b9150613b6682614863565b604082019050919050565b6000613b7e602f83614480565b9150613b89826148b2565b604082019050919050565b6000613ba1602883614480565b9150613bac82614901565b604082019050919050565b6000613bc4601583614480565b9150613bcf82614950565b602082019050919050565b6000613be7601583614480565b9150613bf282614979565b602082019050919050565b6000613c0a602683614480565b9150613c15826149a2565b604082019050919050565b6000613c2d602a83614480565b9150613c38826149f1565b604082019050919050565b6000613c50602583614480565b9150613c5b82614a40565b604082019050919050565b6000613c73602a83614480565b9150613c7e82614a8f565b604082019050919050565b6000613c96602083614480565b9150613ca182614ade565b602082019050919050565b6000613cb9602883614480565b9150613cc482614b07565b604082019050919050565b6000613cdc601483614480565b9150613ce782614b56565b602082019050919050565b6000613cff601283614480565b9150613d0a82614b7f565b602082019050919050565b6000613d22602983614480565b9150613d2d82614ba8565b604082019050919050565b6000613d45602983614480565b9150613d5082614bf7565b604082019050919050565b6000613d68602883614480565b9150613d7382614c46565b604082019050919050565b6000613d8b602183614480565b9150613d9682614c95565b604082019050919050565b6000613dae601383614480565b9150613db982614ce4565b602082019050919050565b613dcd81614610565b82525050565b613ddc81614610565b82525050565b6000602082019050613df76000830184613a51565b92915050565b600060a082019050613e126000830188613a51565b613e1f6020830187613a51565b8181036040830152613e318186613a60565b90508181036060830152613e458185613a60565b90508181036080830152613e598184613acd565b90509695505050505050565b6000608082019050613e7a6000830187613a51565b613e876020830186613a51565b613e946040830185613dd3565b613ea16060830184613dd3565b95945050505050565b600060a082019050613ebf6000830188613a51565b613ecc6020830187613a51565b613ed96040830186613dd3565b613ee66060830185613dd3565b8181036080830152613ef88184613acd565b90509695505050505050565b6000606082019050613f196000830186613a51565b613f266020830185613b06565b613f336040830184613dd3565b949350505050565b6000606082019050613f506000830186613a51565b613f5d6020830185613dd3565b613f6a6040830184613dd3565b949350505050565b60006020820190508181036000830152613f8c8184613a60565b905092915050565b60006040820190508181036000830152613fae8185613a60565b90508181036020830152613fc28184613a60565b90509392505050565b6000602082019050613fe06000830184613abe565b92915050565b600060208201905081810360008301526140008184613b15565b905092915050565b6000602082019050818103600083015261402181613b4e565b9050919050565b6000602082019050818103600083015261404181613b71565b9050919050565b6000602082019050818103600083015261406181613b94565b9050919050565b6000602082019050818103600083015261408181613bb7565b9050919050565b600060208201905081810360008301526140a181613bda565b9050919050565b600060208201905081810360008301526140c181613bfd565b9050919050565b600060208201905081810360008301526140e181613c20565b9050919050565b6000602082019050818103600083015261410181613c43565b9050919050565b6000602082019050818103600083015261412181613c66565b9050919050565b6000602082019050818103600083015261414181613c89565b9050919050565b6000602082019050818103600083015261416181613cac565b9050919050565b6000602082019050818103600083015261418181613ccf565b9050919050565b600060208201905081810360008301526141a181613cf2565b9050919050565b600060208201905081810360008301526141c181613d15565b9050919050565b600060208201905081810360008301526141e181613d38565b9050919050565b6000602082019050818103600083015261420181613d5b565b9050919050565b6000602082019050818103600083015261422181613d7e565b9050919050565b6000602082019050818103600083015261424181613da1565b9050919050565b600060208201905061425d6000830184613dd3565b92915050565b600061010082019050614279600083018b613dd3565b614286602083018a613a51565b6142936040830189613a51565b6142a06060830188613dd3565b6142ad6080830187613dd3565b6142ba60a0830186613dd3565b6142c760c0830185613abe565b6142d460e0830184613abe565b9998505050505050505050565b60006040820190506142f66000830185613dd3565b6143036020830184613dd3565b9392505050565b600060608201905061431f6000830186613dd3565b61432c6020830185613dd3565b6143396040830184613dd3565b949350505050565b600061434b61435c565b905061435782826146a0565b919050565b6000604051905090565b600067ffffffffffffffff821115614381576143806147d6565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156143ad576143ac6147d6565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156143d9576143d86147d6565b5b6143e282614845565b9050602081019050919050565b600067ffffffffffffffff82111561440a576144096147d6565b5b61441382614845565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600061449c82614610565b91506144a783614610565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144dc576144db61471a565b5b828201905092915050565b60006144f282614610565b91506144fd83614610565b92508261450d5761450c614749565b5b828204905092915050565b600061452382614610565b915061452e83614610565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145675761456661471a565b5b828202905092915050565b600061457d82614610565b915061458883614610565b92508282101561459b5761459a61471a565b5b828203905092915050565b60006145b1826145f0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061462582614610565b9050919050565b82818337600083830152505050565b60005b8381101561465957808201518184015260208101905061463e565b83811115614668576000848401525b50505050565b6000600282049050600182168061468657607f821691505b6020821081141561469a57614699614778565b5b50919050565b6146a982614845565b810181811067ffffffffffffffff821117156146c8576146c76147d6565b5b80604052505050565b60006146dc82614610565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561470f5761470e61471a565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156148245760046000803e614821600051614856565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206e6f7220617070726f7665640000000000000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f43616e2774206265207a65726f20616464726573730000000000000000000000600082015250565b7f496e76616c696420726566657220616464726573730000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964204172726179204c656e677468000000000000000000000000600082015250565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420416d6f756e742053656e7400000000000000000000000000600082015250565b600060443d1015614d1d57614da0565b614d2561435c565b60043d036004823e80513d602482011167ffffffffffffffff82111715614d4d575050614da0565b808201805167ffffffffffffffff811115614d6b5750505050614da0565b80602083010160043d038501811115614d88575050505050614da0565b614d97826020018501866146a0565b82955050505050505b90565b614dac816145a6565b8114614db757600080fd5b50565b614dc3816145b8565b8114614dce57600080fd5b50565b614dda816145c4565b8114614de557600080fd5b50565b614df181614610565b8114614dfc57600080fd5b5056fea26469706673582212208ea795270d0e1989a712d39ff80fa30dd438e7b9769bdc44a71f299297f4264964736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101c15760003560e01c806379ee54f7116100f7578063bd85b03911610095578063ee3bfe4411610064578063ee3bfe44146106cd578063f242432a146106f6578063f2fde38b1461071f578063ff69e2bc14610748576101c1565b8063bd85b039146105ed578063e038dcd91461062a578063e39dd79c14610667578063e985e9c514610690576101c1565b8063a22cb465116100d1578063a22cb4651461053b578063a87430ba14610564578063ae73bef8146105a8578063ba79b564146105d1576101c1565b806379ee54f7146104965780637fe50cc6146104d35780638da5cb5b14610510576101c1565b8063392d363411610164578063574fc4931161013e578063574fc493146103ee578063715018a614610419578063731133e9146104305780637478093914610459576101c1565b8063392d3634146103355780634e1273f4146103745780634f558e79146103b1576101c1565b80630e89341c116101a05780630e89341c146102695780631f7fdffa146102a65780632be058f3146102cf5780632eb2c2d61461030c576101c1565b8062fdd58e146101c657806301ffc9a71461020357806302fe530514610240575b600080fd5b3480156101d257600080fd5b506101ed60048036038101906101e891906137b4565b610773565b6040516101fa9190614248565b60405180910390f35b34801561020f57600080fd5b5061022a60048036038101906102259190613969565b61083c565b6040516102379190613fcb565b60405180910390f35b34801561024c57600080fd5b50610267600480360381019061026291906139c3565b61091e565b005b34801561027557600080fd5b50610290600480360381019061028b9190613a0c565b610932565b60405161029d9190613fe6565b60405180910390f35b3480156102b257600080fd5b506102cd60048036038101906102c891906136b9565b6109c6565b005b3480156102db57600080fd5b506102f660048036038101906102f191906134e6565b6109e0565b6040516103039190614248565b60405180910390f35b34801561031857600080fd5b50610333600480360381019061032e9190613553565b610a2c565b005b34801561034157600080fd5b5061035c600480360381019061035791906134e6565b610acd565b60405161036b9392919061430a565b60405180910390f35b34801561038057600080fd5b5061039b60048036038101906103969190613877565b610af7565b6040516103a89190613f72565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190613a0c565b610c10565b6040516103e59190613fcb565b60405180910390f35b3480156103fa57600080fd5b50610403610c24565b6040516104109190614248565b60405180910390f35b34801561042557600080fd5b5061042e610c2a565b005b34801561043c57600080fd5b50610457600480360381019061045291906137f4565b610c3e565b005b34801561046557600080fd5b50610480600480360381019061047b91906134e6565b610c58565b60405161048d9190614248565b60405180910390f35b3480156104a257600080fd5b506104bd60048036038101906104b891906134e6565b610ca4565b6040516104ca9190614248565b60405180910390f35b3480156104df57600080fd5b506104fa60048036038101906104f591906134e6565b610cf2565b6040516105079190614248565b60405180910390f35b34801561051c57600080fd5b50610525610d3e565b6040516105329190613de2565b60405180910390f35b34801561054757600080fd5b50610562600480360381019061055d9190613774565b610d68565b005b34801561057057600080fd5b5061058b600480360381019061058691906134e6565b610d7e565b60405161059f989796959493929190614263565b60405180910390f35b3480156105b457600080fd5b506105cf60048036038101906105ca91906134e6565b610e20565b005b6105eb60048036038101906105e691906134e6565b610e6c565b005b3480156105f957600080fd5b50610614600480360381019061060f9190613a0c565b611a77565b6040516106219190614248565b60405180910390f35b34801561063657600080fd5b50610651600480360381019061064c91906134e6565b611a94565b60405161065e9190614248565b60405180910390f35b34801561067357600080fd5b5061068e600480360381019061068991906138ef565b611aac565b005b34801561069c57600080fd5b506106b760048036038101906106b29190613513565b611b14565b6040516106c49190613fcb565b60405180910390f35b3480156106d957600080fd5b506106f460048036038101906106ef919061393c565b611ba8565b005b34801561070257600080fd5b5061071d60048036038101906107189190613622565b611bcd565b005b34801561072b57600080fd5b50610746600480360381019061074191906134e6565b611c6e565b005b34801561075457600080fd5b5061075d611cf2565b60405161076a9190614248565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107db906140c8565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090757507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610917575061091682611d1a565b5b9050919050565b610926611d84565b61092f81611e02565b50565b6060600280546109419061466e565b80601f016020809104026020016040519081016040528092919081815260200182805461096d9061466e565b80156109ba5780601f1061098f576101008083540402835291602001916109ba565b820191906000526020600020905b81548152906001019060200180831161099d57829003601f168201915b50505050509050919050565b6109ce611d84565b6109da84848484611e1c565b50505050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101549050919050565b610a34612049565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610a7a5750610a7985610a74612049565b611b14565b5b610ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab090614028565b60405180910390fd5b610ac68585858585612051565b5050505050565b600c6020528060005260406000206000915090508060000154908060010154908060020154905083565b60608151835114610b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b34906141c8565b60405180910390fd5b6000835167ffffffffffffffff811115610b5a57610b596147d6565b5b604051908082528060200260200182016040528015610b885781602001602082028036833780820191505090505b50905060005b8451811015610c0557610bd5858281518110610bad57610bac6147a7565b5b6020026020010151858381518110610bc857610bc76147a7565b5b6020026020010151610773565b828281518110610be857610be76147a7565b5b60200260200101818152505080610bfe906146d1565b9050610b8e565b508091505092915050565b600080610c1c83611a77565b119050919050565b60065481565b610c32611d84565b610c3c6000612373565b565b610c46611d84565b610c5284848484612439565b50505050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549050919050565b600080600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080915050919050565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201549050919050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d7a610d73612049565b83836125ea565b5050565b600a6020528060005260406000206000915090508060000154908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060030154908060040154908060050154908060060160009054906101000a900460ff16908060060160019054906101000a900460ff16905088565b610e28611d84565b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415610edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed390614068565b60405180910390fd5b600560009054906101000a900460ff16610f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2290614188565b60405180910390fd5b60011515610f3882612757565b151514610f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7190614088565b60405180910390fd5b6008600e5481548110610f9057610f8f6147a7565b5b90600052602060002001543414610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd390614228565b60405180910390fd5b610ff83360018060405180602001604052806000815250612439565b6010600081548092919061100b906146d1565b919050555060006064600f346110219190614518565b61102b91906144e7565b90508173ffffffffffffffffffffffffffffffffffffffff166108fc6064600f346110569190614518565b61106091906144e7565b9081150290604051600060405180830381858888f1935050505015801561108b573d6000803e3d6000fd5b508173ffffffffffffffffffffffffffffffffffffffff167f6d15a659055d215da034d05fa563a8cbecd0b8cb54a020ae1882601d7ce15a77336005846040516110d793929190613f04565b60405180910390a280600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282546111319190614491565b9250508190555080600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111879190614491565b925050819055506000611199836127b0565b90506000805b60065481116115b057600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611203576115b0565b60028210156115985760011515600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060060160009054906101000a900460ff1615151415611587578273ffffffffffffffffffffffffffffffffffffffff166108fc606460078581548110611298576112976147a7565b5b9060005260206000200154346112ae9190614518565b6112b891906144e7565b9081150290604051600060405180830381858888f193505050501580156112e3573d6000803e3d6000fd5b506064600783815481106112fa576112f96147a7565b5b9060005260206000200154346113109190614518565b61131a91906144e7565b600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113689190614491565b925050819055508273ffffffffffffffffffffffffffffffffffffffff167f6d15a659055d215da034d05fa563a8cbecd0b8cb54a020ae1882601d7ce15a7733846064600787815481106113bf576113be6147a7565b5b9060005260206000200154346113d59190614518565b6113df91906144e7565b6040516113ee93929190613f3b565b60405180910390a260646007838154811061140c5761140b6147a7565b5b9060005260206000200154346114229190614518565b61142c91906144e7565b846114379190614491565b935060008214156114d157606460078381548110611458576114576147a7565b5b90600052602060002001543461146e9190614518565b61147891906144e7565b600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160008282546114c99190614491565b925050819055505b6001821415611569576064600783815481106114f0576114ef6147a7565b5b9060005260206000200154346115069190614518565b61151091906144e7565b600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160008282546115619190614491565b925050819055505b611572836127b0565b9250818061157f906146d1565b925050611593565b611590836127b0565b92505b61159d565b6115b0565b80806115a8906146d1565b91505061119f565b50600073ffffffffffffffffffffffffffffffffffffffff16600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561180c5760405180610100016040528060065481526020013373ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1681526020013481526020014281526020016001815260200160011515815260200160011515815250600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000820151816000015560208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060408201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606082015181600301556080820151816004015560a0820151816005015560c08201518160060160006101000a81548160ff02191690831515021790555060e08201518160060160016101000a81548160ff02191690831515021790555090505060066000815480929190611802906146d1565b9190505550611955565b3373ffffffffffffffffffffffffffffffffffffffff16600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156119545734600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160008282546118f49190614491565b92505081905550600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600501600081548092919061194e906146d1565b91905055505b5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc843461199d9190614572565b9081150290604051600060405180830381858888f193505050501580156119c8573d6000803e3d6000fd5b506009600e54815481106119df576119de6147a7565b5b90600052602060002001546010541415611a0c57600e6000815480929190611a06906146d1565b91905055505b600f546010541415611a34576000600560006101000a81548160ff0219169083151502179055505b7f5a55b2d970d079d39ce4c5dc9ec6de52ebfc2bbcfc7466d62eea534ee873667333853442604051611a699493929190613e65565b60405180910390a150505050565b600060046000838152602001908152602001600020549050919050565b600b6020528060005260406000206000915090505481565b611ab4611d84565b6008805490508282905014611afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af590614168565b60405180910390fd5b818160089190611b0f92919061311b565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611bb0611d84565b80600560006101000a81548160ff02191690831515021790555050565b611bd5612049565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611c1b5750611c1a85611c15612049565b611b14565b5b611c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5190614028565b60405180910390fd5b611c67858585858561281c565b5050505050565b611c76611d84565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdd906140a8565b60405180910390fd5b611cef81612373565b50565b60006008600e5481548110611d0a57611d096147a7565b5b9060005260206000200154905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611d8c612049565b73ffffffffffffffffffffffffffffffffffffffff16611daa610d3e565b73ffffffffffffffffffffffffffffffffffffffff1614611e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df790614128565b60405180910390fd5b565b8060029080519060200190611e18929190613168565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8390614208565b60405180910390fd5b8151835114611ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec7906141e8565b60405180910390fd5b6000611eda612049565b9050611eeb81600087878787612ab8565b60005b8451811015611fa457838181518110611f0a57611f096147a7565b5b6020026020010151600080878481518110611f2857611f276147a7565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f8a9190614491565b925050819055508080611f9c906146d1565b915050611eee565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161201c929190613f94565b60405180910390a461203381600087878787612ace565b61204281600087878787612ad6565b5050505050565b600033905090565b8151835114612095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208c906141e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fc906140e8565b60405180910390fd5b600061210f612049565b905061211f818787878787612ab8565b60005b84518110156122d05760008582815181106121405761213f6147a7565b5b60200260200101519050600085838151811061215f5761215e6147a7565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f790614108565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122b59190614491565b92505081905550505050806122c9906146d1565b9050612122565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612347929190613f94565b60405180910390a461235d818787878787612ace565b61236b818787878787612ad6565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156124a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a090614208565b60405180910390fd5b60006124b3612049565b905060006124c085612cbd565b905060006124cd85612cbd565b90506124de83600089858589612ab8565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461253d9190614491565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516125bb9291906142e1565b60405180910390a46125d283600089858589612ace565b6125e183600089898989612d37565b50505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612659576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612650906141a8565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161274a9190613fcb565b60405180910390a3505050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060060160019054906101000a900460ff169050919050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561288c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612883906140e8565b60405180910390fd5b6000612896612049565b905060006128a385612cbd565b905060006128b085612cbd565b90506128c0838989858589612ab8565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015612957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294e90614108565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a0c9190614491565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051612a899291906142e1565b60405180910390a4612a9f848a8a86868a612ace565b612aad848a8a8a8a8a612d37565b505050505050505050565b612ac6868686868686612f1e565b505050505050565b505050505050565b612af58473ffffffffffffffffffffffffffffffffffffffff166130f0565b15612cb5578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612b3b959493929190613dfd565b602060405180830381600087803b158015612b5557600080fd5b505af1925050508015612b8657506040513d601f19601f82011682018060405250810190612b839190613996565b60015b612c2c57612b92614805565b806308c379a01415612bef5750612ba7614d0d565b80612bb25750612bf1565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be69190613fe6565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2390614008565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612caa90614048565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115612cdc57612cdb6147d6565b5b604051908082528060200260200182016040528015612d0a5781602001602082028036833780820191505090505b5090508281600081518110612d2257612d216147a7565b5b60200260200101818152505080915050919050565b612d568473ffffffffffffffffffffffffffffffffffffffff166130f0565b15612f16578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612d9c959493929190613eaa565b602060405180830381600087803b158015612db657600080fd5b505af1925050508015612de757506040513d601f19601f82011682018060405250810190612de49190613996565b60015b612e8d57612df3614805565b806308c379a01415612e505750612e08614d0d565b80612e135750612e52565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e479190613fe6565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8490614008565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0b90614048565b60405180910390fd5b505b505050505050565b612f2c868686868686613113565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612fde5760005b8351811015612fdc57828181518110612f8057612f7f6147a7565b5b602002602001015160046000868481518110612f9f57612f9e6147a7565b5b602002602001015181526020019081526020016000206000828254612fc49190614491565b9250508190555080612fd5906146d1565b9050612f64565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156130e85760005b83518110156130e6576000848281518110613034576130336147a7565b5b602002602001015190506000848381518110613053576130526147a7565b5b60200260200101519050600060046000848152602001908152602001600020549050818110156130b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130af90614148565b60405180910390fd5b8181036004600085815260200190815260200160002081905550505050806130df906146d1565b9050613016565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b828054828255906000526020600020908101928215613157579160200282015b8281111561315657823582559160200191906001019061313b565b5b50905061316491906131ee565b5090565b8280546131749061466e565b90600052602060002090601f01602090048101928261319657600085556131dd565b82601f106131af57805160ff19168380011785556131dd565b828001600101855582156131dd579182015b828111156131dc5782518255916020019190600101906131c1565b5b5090506131ea91906131ee565b5090565b5b808211156132075760008160009055506001016131ef565b5090565b600061321e61321984614366565b614341565b9050808382526020820190508285602086028201111561324157613240614831565b5b60005b858110156132715781613257888261336f565b845260208401935060208301925050600181019050613244565b5050509392505050565b600061328e61328984614392565b614341565b905080838252602082019050828560208602820111156132b1576132b0614831565b5b60005b858110156132e157816132c788826134d1565b8452602084019350602083019250506001810190506132b4565b5050509392505050565b60006132fe6132f9846143be565b614341565b90508281526020810184848401111561331a57613319614836565b5b61332584828561462c565b509392505050565b600061334061333b846143ef565b614341565b90508281526020810184848401111561335c5761335b614836565b5b61336784828561462c565b509392505050565b60008135905061337e81614da3565b92915050565b600082601f8301126133995761339861482c565b5b81356133a984826020860161320b565b91505092915050565b60008083601f8401126133c8576133c761482c565b5b8235905067ffffffffffffffff8111156133e5576133e4614827565b5b60208301915083602082028301111561340157613400614831565b5b9250929050565b600082601f83011261341d5761341c61482c565b5b813561342d84826020860161327b565b91505092915050565b60008135905061344581614dba565b92915050565b60008135905061345a81614dd1565b92915050565b60008151905061346f81614dd1565b92915050565b600082601f83011261348a5761348961482c565b5b813561349a8482602086016132eb565b91505092915050565b600082601f8301126134b8576134b761482c565b5b81356134c884826020860161332d565b91505092915050565b6000813590506134e081614de8565b92915050565b6000602082840312156134fc576134fb614840565b5b600061350a8482850161336f565b91505092915050565b6000806040838503121561352a57613529614840565b5b60006135388582860161336f565b92505060206135498582860161336f565b9150509250929050565b600080600080600060a0868803121561356f5761356e614840565b5b600061357d8882890161336f565b955050602061358e8882890161336f565b945050604086013567ffffffffffffffff8111156135af576135ae61483b565b5b6135bb88828901613408565b935050606086013567ffffffffffffffff8111156135dc576135db61483b565b5b6135e888828901613408565b925050608086013567ffffffffffffffff8111156136095761360861483b565b5b61361588828901613475565b9150509295509295909350565b600080600080600060a0868803121561363e5761363d614840565b5b600061364c8882890161336f565b955050602061365d8882890161336f565b945050604061366e888289016134d1565b935050606061367f888289016134d1565b925050608086013567ffffffffffffffff8111156136a05761369f61483b565b5b6136ac88828901613475565b9150509295509295909350565b600080600080608085870312156136d3576136d2614840565b5b60006136e18782880161336f565b945050602085013567ffffffffffffffff8111156137025761370161483b565b5b61370e87828801613408565b935050604085013567ffffffffffffffff81111561372f5761372e61483b565b5b61373b87828801613408565b925050606085013567ffffffffffffffff81111561375c5761375b61483b565b5b61376887828801613475565b91505092959194509250565b6000806040838503121561378b5761378a614840565b5b60006137998582860161336f565b92505060206137aa85828601613436565b9150509250929050565b600080604083850312156137cb576137ca614840565b5b60006137d98582860161336f565b92505060206137ea858286016134d1565b9150509250929050565b6000806000806080858703121561380e5761380d614840565b5b600061381c8782880161336f565b945050602061382d878288016134d1565b935050604061383e878288016134d1565b925050606085013567ffffffffffffffff81111561385f5761385e61483b565b5b61386b87828801613475565b91505092959194509250565b6000806040838503121561388e5761388d614840565b5b600083013567ffffffffffffffff8111156138ac576138ab61483b565b5b6138b885828601613384565b925050602083013567ffffffffffffffff8111156138d9576138d861483b565b5b6138e585828601613408565b9150509250929050565b6000806020838503121561390657613905614840565b5b600083013567ffffffffffffffff8111156139245761392361483b565b5b613930858286016133b2565b92509250509250929050565b60006020828403121561395257613951614840565b5b600061396084828501613436565b91505092915050565b60006020828403121561397f5761397e614840565b5b600061398d8482850161344b565b91505092915050565b6000602082840312156139ac576139ab614840565b5b60006139ba84828501613460565b91505092915050565b6000602082840312156139d9576139d8614840565b5b600082013567ffffffffffffffff8111156139f7576139f661483b565b5b613a03848285016134a3565b91505092915050565b600060208284031215613a2257613a21614840565b5b6000613a30848285016134d1565b91505092915050565b6000613a458383613dc4565b60208301905092915050565b613a5a816145a6565b82525050565b6000613a6b82614430565b613a75818561445e565b9350613a8083614420565b8060005b83811015613ab1578151613a988882613a39565b9750613aa383614451565b925050600181019050613a84565b5085935050505092915050565b613ac7816145b8565b82525050565b6000613ad88261443b565b613ae2818561446f565b9350613af281856020860161463b565b613afb81614845565b840191505092915050565b613b0f8161461a565b82525050565b6000613b2082614446565b613b2a8185614480565b9350613b3a81856020860161463b565b613b4381614845565b840191505092915050565b6000613b5b603483614480565b9150613b6682614863565b604082019050919050565b6000613b7e602f83614480565b9150613b89826148b2565b604082019050919050565b6000613ba1602883614480565b9150613bac82614901565b604082019050919050565b6000613bc4601583614480565b9150613bcf82614950565b602082019050919050565b6000613be7601583614480565b9150613bf282614979565b602082019050919050565b6000613c0a602683614480565b9150613c15826149a2565b604082019050919050565b6000613c2d602a83614480565b9150613c38826149f1565b604082019050919050565b6000613c50602583614480565b9150613c5b82614a40565b604082019050919050565b6000613c73602a83614480565b9150613c7e82614a8f565b604082019050919050565b6000613c96602083614480565b9150613ca182614ade565b602082019050919050565b6000613cb9602883614480565b9150613cc482614b07565b604082019050919050565b6000613cdc601483614480565b9150613ce782614b56565b602082019050919050565b6000613cff601283614480565b9150613d0a82614b7f565b602082019050919050565b6000613d22602983614480565b9150613d2d82614ba8565b604082019050919050565b6000613d45602983614480565b9150613d5082614bf7565b604082019050919050565b6000613d68602883614480565b9150613d7382614c46565b604082019050919050565b6000613d8b602183614480565b9150613d9682614c95565b604082019050919050565b6000613dae601383614480565b9150613db982614ce4565b602082019050919050565b613dcd81614610565b82525050565b613ddc81614610565b82525050565b6000602082019050613df76000830184613a51565b92915050565b600060a082019050613e126000830188613a51565b613e1f6020830187613a51565b8181036040830152613e318186613a60565b90508181036060830152613e458185613a60565b90508181036080830152613e598184613acd565b90509695505050505050565b6000608082019050613e7a6000830187613a51565b613e876020830186613a51565b613e946040830185613dd3565b613ea16060830184613dd3565b95945050505050565b600060a082019050613ebf6000830188613a51565b613ecc6020830187613a51565b613ed96040830186613dd3565b613ee66060830185613dd3565b8181036080830152613ef88184613acd565b90509695505050505050565b6000606082019050613f196000830186613a51565b613f266020830185613b06565b613f336040830184613dd3565b949350505050565b6000606082019050613f506000830186613a51565b613f5d6020830185613dd3565b613f6a6040830184613dd3565b949350505050565b60006020820190508181036000830152613f8c8184613a60565b905092915050565b60006040820190508181036000830152613fae8185613a60565b90508181036020830152613fc28184613a60565b90509392505050565b6000602082019050613fe06000830184613abe565b92915050565b600060208201905081810360008301526140008184613b15565b905092915050565b6000602082019050818103600083015261402181613b4e565b9050919050565b6000602082019050818103600083015261404181613b71565b9050919050565b6000602082019050818103600083015261406181613b94565b9050919050565b6000602082019050818103600083015261408181613bb7565b9050919050565b600060208201905081810360008301526140a181613bda565b9050919050565b600060208201905081810360008301526140c181613bfd565b9050919050565b600060208201905081810360008301526140e181613c20565b9050919050565b6000602082019050818103600083015261410181613c43565b9050919050565b6000602082019050818103600083015261412181613c66565b9050919050565b6000602082019050818103600083015261414181613c89565b9050919050565b6000602082019050818103600083015261416181613cac565b9050919050565b6000602082019050818103600083015261418181613ccf565b9050919050565b600060208201905081810360008301526141a181613cf2565b9050919050565b600060208201905081810360008301526141c181613d15565b9050919050565b600060208201905081810360008301526141e181613d38565b9050919050565b6000602082019050818103600083015261420181613d5b565b9050919050565b6000602082019050818103600083015261422181613d7e565b9050919050565b6000602082019050818103600083015261424181613da1565b9050919050565b600060208201905061425d6000830184613dd3565b92915050565b600061010082019050614279600083018b613dd3565b614286602083018a613a51565b6142936040830189613a51565b6142a06060830188613dd3565b6142ad6080830187613dd3565b6142ba60a0830186613dd3565b6142c760c0830185613abe565b6142d460e0830184613abe565b9998505050505050505050565b60006040820190506142f66000830185613dd3565b6143036020830184613dd3565b9392505050565b600060608201905061431f6000830186613dd3565b61432c6020830185613dd3565b6143396040830184613dd3565b949350505050565b600061434b61435c565b905061435782826146a0565b919050565b6000604051905090565b600067ffffffffffffffff821115614381576143806147d6565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156143ad576143ac6147d6565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156143d9576143d86147d6565b5b6143e282614845565b9050602081019050919050565b600067ffffffffffffffff82111561440a576144096147d6565b5b61441382614845565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600061449c82614610565b91506144a783614610565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144dc576144db61471a565b5b828201905092915050565b60006144f282614610565b91506144fd83614610565b92508261450d5761450c614749565b5b828204905092915050565b600061452382614610565b915061452e83614610565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145675761456661471a565b5b828202905092915050565b600061457d82614610565b915061458883614610565b92508282101561459b5761459a61471a565b5b828203905092915050565b60006145b1826145f0565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061462582614610565b9050919050565b82818337600083830152505050565b60005b8381101561465957808201518184015260208101905061463e565b83811115614668576000848401525b50505050565b6000600282049050600182168061468657607f821691505b6020821081141561469a57614699614778565b5b50919050565b6146a982614845565b810181811067ffffffffffffffff821117156146c8576146c76147d6565b5b80604052505050565b60006146dc82614610565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561470f5761470e61471a565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156148245760046000803e614821600051614856565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206e6f7220617070726f7665640000000000000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f43616e2774206265207a65726f20616464726573730000000000000000000000600082015250565b7f496e76616c696420726566657220616464726573730000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964204172726179204c656e677468000000000000000000000000600082015250565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420416d6f756e742053656e7400000000000000000000000000600082015250565b600060443d1015614d1d57614da0565b614d2561435c565b60043d036004823e80513d602482011167ffffffffffffffff82111715614d4d575050614da0565b808201805167ffffffffffffffff811115614d6b5750505050614da0565b80602083010160043d038501811115614d88575050505050614da0565b614d97826020018501866146a0565b82955050505050505b90565b614dac816145a6565b8114614db757600080fd5b50565b614dc3816145b8565b8114614dce57600080fd5b50565b614dda816145c4565b8114614de557600080fd5b50565b614df181614610565b8114614dfc57600080fd5b5056fea26469706673582212208ea795270d0e1989a712d39ff80fa30dd438e7b9769bdc44a71f299297f4264964736f6c63430008070033

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.