ETH Price: $3,306.37 (-3.72%)
Gas: 20 Gwei

Token

NOT A RUG (NAR)
 

Overview

Max Total Supply

8,000 NAR

Holders

1,368

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
cssualcollector.eth
Balance
1 NAR
0xee956511a3819339b22314ae18f95bb75c3d7160
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:
NotARug

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_msgSender());
    }

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

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

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

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

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

File 2 of 11 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 3 of 11 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 11 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 5 of 11 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 6 of 11 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 11 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 8 of 11 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 9 of 11 : ERC165.sol
// SPDX-License-Identifier: MIT

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 10 of 11 : IERC165.sol
// SPDX-License-Identifier: MIT

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 11 of 11 : NotARug.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.6;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract NotARug is ERC721, Ownable {
    string internal baseTokenURI;

    uint public totalSupply = 5000;
    uint public nonce = 0;

    mapping (address => uint256) public owners;

    constructor() ERC721("NOT A RUG", "NAR") {}
    
    function setBaseTokenURI(string calldata _uri) external onlyOwner {
        baseTokenURI = _uri;
    }
    
    function setTotalSupply(uint newSupply) external onlyOwner {
        totalSupply = newSupply;
    }
    
    function getAssetsByOwner(address _owner) public view returns(uint[] memory) {
        uint[] memory result = new uint[](balanceOf(_owner));
        uint counter = 0;
        for (uint i = 0; i < nonce; i++) {
            if (ownerOf(i) == _owner) {
                result[counter] = i;
                counter++;
            }
        }
        return result;
    }
    
    function getMyAssets() external view returns(uint[] memory){
        return getAssetsByOwner(tx.origin);
    }

    function _baseURI() internal override view returns (string memory) {
        return baseTokenURI;
    }
    
    function GimmeThatFuckingShit() external {
        uint256 claimed = owners[msg.sender];
        require(5 + nonce <= totalSupply, "2 LATE");
        require(claimed != 5, "ALREADY CLAIMED MF");
        owners[msg.sender] = 5;
        for(uint i = 0; i < 5; i++){
            uint tokenId = nonce;
            _safeMint(msg.sender, tokenId);
            nonce++;
        }
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "berlin",
  "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":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"GimmeThatFuckingShit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getAssetsByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMyAssets","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"owners","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261138860085560006009553480156200001c57600080fd5b506040518060400160405280600981526020017f4e4f5420412052554700000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4e415200000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000a1929190620001b1565b508060019080519060200190620000ba929190620001b1565b505050620000dd620000d1620000e360201b60201c565b620000eb60201b60201c565b620002c6565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001bf9062000261565b90600052602060002090601f016020900481019282620001e357600085556200022f565b82601f10620001fe57805160ff19168380011785556200022f565b828001600101855582156200022f579182015b828111156200022e57825182559160200191906001019062000211565b5b5090506200023e919062000242565b5090565b5b808211156200025d57600081600090555060010162000243565b5090565b600060028204905060018216806200027a57607f821691505b6020821081141562000291576200029062000297565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61334c80620002d66000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063b0936a531161007c578063b0936a53146103c7578063b88d4fde146103d1578063c87b56dd146103ed578063e985e9c51461041d578063f2fde38b1461044d578063f7ea7a3d1461046957610158565b806370a0823114610317578063715018a6146103475780638da5cb5b1461035157806395d89b411461036f578063a22cb4651461038d578063affed0e0146103a957610158565b806323b872dd1161011557806323b872dd14610245578063276f09341461026157806330176e131461029157806342842e0e146102ad57806347002d1d146102c95780636352211e146102e757610158565b806301ffc9a71461015d578063022914a71461018d57806306fdde03146101bd578063081812fc146101db578063095ea7b31461020b57806318160ddd14610227575b600080fd5b610177600480360381019061017291906121f2565b610485565b604051610184919061273e565b60405180910390f35b6101a760048036038101906101a2919061202f565b610567565b6040516101b491906129bb565b60405180910390f35b6101c561057f565b6040516101d29190612759565b60405180910390f35b6101f560048036038101906101f09190612299565b610611565b60405161020291906126b5565b60405180910390f35b610225600480360381019061022091906121b2565b610696565b005b61022f6107ae565b60405161023c91906129bb565b60405180910390f35b61025f600480360381019061025a919061209c565b6107b4565b005b61027b6004803603810190610276919061202f565b610814565b604051610288919061271c565b60405180910390f35b6102ab60048036038101906102a6919061224c565b610902565b005b6102c760048036038101906102c2919061209c565b610994565b005b6102d16109b4565b6040516102de919061271c565b60405180910390f35b61030160048036038101906102fc9190612299565b6109c4565b60405161030e91906126b5565b60405180910390f35b610331600480360381019061032c919061202f565b610a76565b60405161033e91906129bb565b60405180910390f35b61034f610b2e565b005b610359610bb6565b60405161036691906126b5565b60405180910390f35b610377610be0565b6040516103849190612759565b60405180910390f35b6103a760048036038101906103a29190612172565b610c72565b005b6103b1610df3565b6040516103be91906129bb565b60405180910390f35b6103cf610df9565b005b6103eb60048036038101906103e691906120ef565b610f66565b005b61040760048036038101906104029190612299565b610fc8565b6040516104149190612759565b60405180910390f35b6104376004803603810190610432919061205c565b61106f565b604051610444919061273e565b60405180910390f35b6104676004803603810190610462919061202f565b611103565b005b610483600480360381019061047e9190612299565b6111fb565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061055057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610560575061055f82611281565b5b9050919050565b600a6020528060005260406000206000915090505481565b60606000805461058e90612c19565b80601f01602080910402602001604051908101604052809291908181526020018280546105ba90612c19565b80156106075780601f106105dc57610100808354040283529160200191610607565b820191906000526020600020905b8154815290600101906020018083116105ea57829003601f168201915b5050505050905090565b600061061c826112eb565b61065b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610652906128fb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106a1826109c4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610712576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107099061297b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610731611357565b73ffffffffffffffffffffffffffffffffffffffff161480610760575061075f8161075a611357565b61106f565b5b61079f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107969061285b565b60405180910390fd5b6107a9838361135f565b505050565b60085481565b6107c56107bf611357565b82611418565b610804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fb9061299b565b60405180910390fd5b61080f8383836114f6565b505050565b6060600061082183610a76565b67ffffffffffffffff81111561083a57610839612db2565b5b6040519080825280602002602001820160405280156108685781602001602082028036833780820191505090505b5090506000805b6009548110156108f7578473ffffffffffffffffffffffffffffffffffffffff16610899826109c4565b73ffffffffffffffffffffffffffffffffffffffff1614156108e457808383815181106108c9576108c8612d83565b5b60200260200101818152505081806108e090612c7c565b9250505b80806108ef90612c7c565b91505061086f565b508192505050919050565b61090a611357565b73ffffffffffffffffffffffffffffffffffffffff16610928610bb6565b73ffffffffffffffffffffffffffffffffffffffff161461097e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109759061291b565b60405180910390fd5b81816007919061098f929190611e5d565b505050565b6109af83838360405180602001604052806000815250610f66565b505050565b60606109bf32610814565b905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a649061289b565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ade9061287b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b36611357565b73ffffffffffffffffffffffffffffffffffffffff16610b54610bb6565b73ffffffffffffffffffffffffffffffffffffffff1614610baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba19061291b565b60405180910390fd5b610bb46000611752565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610bef90612c19565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1b90612c19565b8015610c685780601f10610c3d57610100808354040283529160200191610c68565b820191906000526020600020905b815481529060010190602001808311610c4b57829003601f168201915b5050505050905090565b610c7a611357565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ce8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdf906127fb565b60405180910390fd5b8060056000610cf5611357565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610da2611357565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610de7919061273e565b60405180910390a35050565b60095481565b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506008546009546005610e4f9190612aa8565b1115610e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e879061283b565b60405180910390fd5b6005811415610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb906128bb565b60405180910390fd5b6005600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b6005811015610f625760006009549050610f363382611818565b60096000815480929190610f4990612c7c565b9190505550508080610f5a90612c7c565b915050610f1c565b5050565b610f77610f71611357565b83611418565b610fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fad9061299b565b60405180910390fd5b610fc284848484611836565b50505050565b6060610fd3826112eb565b611012576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110099061295b565b60405180910390fd5b600061101c611892565b9050600081511161103c5760405180602001604052806000815250611067565b8061104684611924565b604051602001611057929190612691565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61110b611357565b73ffffffffffffffffffffffffffffffffffffffff16611129610bb6565b73ffffffffffffffffffffffffffffffffffffffff161461117f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111769061291b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e69061279b565b60405180910390fd5b6111f881611752565b50565b611203611357565b73ffffffffffffffffffffffffffffffffffffffff16611221610bb6565b73ffffffffffffffffffffffffffffffffffffffff1614611277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126e9061291b565b60405180910390fd5b8060088190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166113d2836109c4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611423826112eb565b611462576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114599061281b565b60405180910390fd5b600061146d836109c4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114dc57508373ffffffffffffffffffffffffffffffffffffffff166114c484610611565b73ffffffffffffffffffffffffffffffffffffffff16145b806114ed57506114ec818561106f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611516826109c4565b73ffffffffffffffffffffffffffffffffffffffff161461156c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115639061293b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d3906127db565b60405180910390fd5b6115e7838383611a85565b6115f260008261135f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116429190612b2f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116999190612aa8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611832828260405180602001604052806000815250611a8a565b5050565b6118418484846114f6565b61184d84848484611ae5565b61188c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118839061277b565b60405180910390fd5b50505050565b6060600780546118a190612c19565b80601f01602080910402602001604051908101604052809291908181526020018280546118cd90612c19565b801561191a5780601f106118ef5761010080835404028352916020019161191a565b820191906000526020600020905b8154815290600101906020018083116118fd57829003601f168201915b5050505050905090565b6060600082141561196c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611a80565b600082905060005b6000821461199e57808061198790612c7c565b915050600a826119979190612afe565b9150611974565b60008167ffffffffffffffff8111156119ba576119b9612db2565b5b6040519080825280601f01601f1916602001820160405280156119ec5781602001600182028036833780820191505090505b5090505b60008514611a7957600182611a059190612b2f565b9150600a85611a149190612cc5565b6030611a209190612aa8565b60f81b818381518110611a3657611a35612d83565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611a729190612afe565b94506119f0565b8093505050505b919050565b505050565b611a948383611c7c565b611aa16000848484611ae5565b611ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad79061277b565b60405180910390fd5b505050565b6000611b068473ffffffffffffffffffffffffffffffffffffffff16611e4a565b15611c6f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b2f611357565b8786866040518563ffffffff1660e01b8152600401611b5194939291906126d0565b602060405180830381600087803b158015611b6b57600080fd5b505af1925050508015611b9c57506040513d601f19601f82011682018060405250810190611b99919061221f565b60015b611c1f573d8060008114611bcc576040519150601f19603f3d011682016040523d82523d6000602084013e611bd1565b606091505b50600081511415611c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0e9061277b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611c74565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce3906128db565b60405180910390fd5b611cf5816112eb565b15611d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2c906127bb565b60405180910390fd5b611d4160008383611a85565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d919190612aa8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054611e6990612c19565b90600052602060002090601f016020900481019282611e8b5760008555611ed2565b82601f10611ea457803560ff1916838001178555611ed2565b82800160010185558215611ed2579182015b82811115611ed1578235825591602001919060010190611eb6565b5b509050611edf9190611ee3565b5090565b5b80821115611efc576000816000905550600101611ee4565b5090565b6000611f13611f0e846129fb565b6129d6565b905082815260208101848484011115611f2f57611f2e612df0565b5b611f3a848285612bd7565b509392505050565b600081359050611f51816132ba565b92915050565b600081359050611f66816132d1565b92915050565b600081359050611f7b816132e8565b92915050565b600081519050611f90816132e8565b92915050565b600082601f830112611fab57611faa612de6565b5b8135611fbb848260208601611f00565b91505092915050565b60008083601f840112611fda57611fd9612de6565b5b8235905067ffffffffffffffff811115611ff757611ff6612de1565b5b60208301915083600182028301111561201357612012612deb565b5b9250929050565b600081359050612029816132ff565b92915050565b60006020828403121561204557612044612dfa565b5b600061205384828501611f42565b91505092915050565b6000806040838503121561207357612072612dfa565b5b600061208185828601611f42565b925050602061209285828601611f42565b9150509250929050565b6000806000606084860312156120b5576120b4612dfa565b5b60006120c386828701611f42565b93505060206120d486828701611f42565b92505060406120e58682870161201a565b9150509250925092565b6000806000806080858703121561210957612108612dfa565b5b600061211787828801611f42565b945050602061212887828801611f42565b93505060406121398782880161201a565b925050606085013567ffffffffffffffff81111561215a57612159612df5565b5b61216687828801611f96565b91505092959194509250565b6000806040838503121561218957612188612dfa565b5b600061219785828601611f42565b92505060206121a885828601611f57565b9150509250929050565b600080604083850312156121c9576121c8612dfa565b5b60006121d785828601611f42565b92505060206121e88582860161201a565b9150509250929050565b60006020828403121561220857612207612dfa565b5b600061221684828501611f6c565b91505092915050565b60006020828403121561223557612234612dfa565b5b600061224384828501611f81565b91505092915050565b6000806020838503121561226357612262612dfa565b5b600083013567ffffffffffffffff81111561228157612280612df5565b5b61228d85828601611fc4565b92509250509250929050565b6000602082840312156122af576122ae612dfa565b5b60006122bd8482850161201a565b91505092915050565b60006122d28383612673565b60208301905092915050565b6122e781612b63565b82525050565b60006122f882612a3c565b6123028185612a6a565b935061230d83612a2c565b8060005b8381101561233e57815161232588826122c6565b975061233083612a5d565b925050600181019050612311565b5085935050505092915050565b61235481612b75565b82525050565b600061236582612a47565b61236f8185612a7b565b935061237f818560208601612be6565b61238881612dff565b840191505092915050565b600061239e82612a52565b6123a88185612a8c565b93506123b8818560208601612be6565b6123c181612dff565b840191505092915050565b60006123d782612a52565b6123e18185612a9d565b93506123f1818560208601612be6565b80840191505092915050565b600061240a603283612a8c565b915061241582612e10565b604082019050919050565b600061242d602683612a8c565b915061243882612e5f565b604082019050919050565b6000612450601c83612a8c565b915061245b82612eae565b602082019050919050565b6000612473602483612a8c565b915061247e82612ed7565b604082019050919050565b6000612496601983612a8c565b91506124a182612f26565b602082019050919050565b60006124b9602c83612a8c565b91506124c482612f4f565b604082019050919050565b60006124dc600683612a8c565b91506124e782612f9e565b602082019050919050565b60006124ff603883612a8c565b915061250a82612fc7565b604082019050919050565b6000612522602a83612a8c565b915061252d82613016565b604082019050919050565b6000612545602983612a8c565b915061255082613065565b604082019050919050565b6000612568601283612a8c565b9150612573826130b4565b602082019050919050565b600061258b602083612a8c565b9150612596826130dd565b602082019050919050565b60006125ae602c83612a8c565b91506125b982613106565b604082019050919050565b60006125d1602083612a8c565b91506125dc82613155565b602082019050919050565b60006125f4602983612a8c565b91506125ff8261317e565b604082019050919050565b6000612617602f83612a8c565b9150612622826131cd565b604082019050919050565b600061263a602183612a8c565b91506126458261321c565b604082019050919050565b600061265d603183612a8c565b91506126688261326b565b604082019050919050565b61267c81612bcd565b82525050565b61268b81612bcd565b82525050565b600061269d82856123cc565b91506126a982846123cc565b91508190509392505050565b60006020820190506126ca60008301846122de565b92915050565b60006080820190506126e560008301876122de565b6126f260208301866122de565b6126ff6040830185612682565b8181036060830152612711818461235a565b905095945050505050565b6000602082019050818103600083015261273681846122ed565b905092915050565b6000602082019050612753600083018461234b565b92915050565b600060208201905081810360008301526127738184612393565b905092915050565b60006020820190508181036000830152612794816123fd565b9050919050565b600060208201905081810360008301526127b481612420565b9050919050565b600060208201905081810360008301526127d481612443565b9050919050565b600060208201905081810360008301526127f481612466565b9050919050565b6000602082019050818103600083015261281481612489565b9050919050565b60006020820190508181036000830152612834816124ac565b9050919050565b60006020820190508181036000830152612854816124cf565b9050919050565b60006020820190508181036000830152612874816124f2565b9050919050565b6000602082019050818103600083015261289481612515565b9050919050565b600060208201905081810360008301526128b481612538565b9050919050565b600060208201905081810360008301526128d48161255b565b9050919050565b600060208201905081810360008301526128f48161257e565b9050919050565b60006020820190508181036000830152612914816125a1565b9050919050565b60006020820190508181036000830152612934816125c4565b9050919050565b60006020820190508181036000830152612954816125e7565b9050919050565b600060208201905081810360008301526129748161260a565b9050919050565b600060208201905081810360008301526129948161262d565b9050919050565b600060208201905081810360008301526129b481612650565b9050919050565b60006020820190506129d06000830184612682565b92915050565b60006129e06129f1565b90506129ec8282612c4b565b919050565b6000604051905090565b600067ffffffffffffffff821115612a1657612a15612db2565b5b612a1f82612dff565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ab382612bcd565b9150612abe83612bcd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612af357612af2612cf6565b5b828201905092915050565b6000612b0982612bcd565b9150612b1483612bcd565b925082612b2457612b23612d25565b5b828204905092915050565b6000612b3a82612bcd565b9150612b4583612bcd565b925082821015612b5857612b57612cf6565b5b828203905092915050565b6000612b6e82612bad565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612c04578082015181840152602081019050612be9565b83811115612c13576000848401525b50505050565b60006002820490506001821680612c3157607f821691505b60208210811415612c4557612c44612d54565b5b50919050565b612c5482612dff565b810181811067ffffffffffffffff82111715612c7357612c72612db2565b5b80604052505050565b6000612c8782612bcd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612cba57612cb9612cf6565b5b600182019050919050565b6000612cd082612bcd565b9150612cdb83612bcd565b925082612ceb57612cea612d25565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f32204c4154450000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f414c524541445920434c41494d4544204d460000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6132c381612b63565b81146132ce57600080fd5b50565b6132da81612b75565b81146132e557600080fd5b50565b6132f181612b81565b81146132fc57600080fd5b50565b61330881612bcd565b811461331357600080fd5b5056fea26469706673582212203998714a2d397366db97689b4ecd00cd598889625e480aaa55ecc4d9974d9cf464736f6c63430008060033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063b0936a531161007c578063b0936a53146103c7578063b88d4fde146103d1578063c87b56dd146103ed578063e985e9c51461041d578063f2fde38b1461044d578063f7ea7a3d1461046957610158565b806370a0823114610317578063715018a6146103475780638da5cb5b1461035157806395d89b411461036f578063a22cb4651461038d578063affed0e0146103a957610158565b806323b872dd1161011557806323b872dd14610245578063276f09341461026157806330176e131461029157806342842e0e146102ad57806347002d1d146102c95780636352211e146102e757610158565b806301ffc9a71461015d578063022914a71461018d57806306fdde03146101bd578063081812fc146101db578063095ea7b31461020b57806318160ddd14610227575b600080fd5b610177600480360381019061017291906121f2565b610485565b604051610184919061273e565b60405180910390f35b6101a760048036038101906101a2919061202f565b610567565b6040516101b491906129bb565b60405180910390f35b6101c561057f565b6040516101d29190612759565b60405180910390f35b6101f560048036038101906101f09190612299565b610611565b60405161020291906126b5565b60405180910390f35b610225600480360381019061022091906121b2565b610696565b005b61022f6107ae565b60405161023c91906129bb565b60405180910390f35b61025f600480360381019061025a919061209c565b6107b4565b005b61027b6004803603810190610276919061202f565b610814565b604051610288919061271c565b60405180910390f35b6102ab60048036038101906102a6919061224c565b610902565b005b6102c760048036038101906102c2919061209c565b610994565b005b6102d16109b4565b6040516102de919061271c565b60405180910390f35b61030160048036038101906102fc9190612299565b6109c4565b60405161030e91906126b5565b60405180910390f35b610331600480360381019061032c919061202f565b610a76565b60405161033e91906129bb565b60405180910390f35b61034f610b2e565b005b610359610bb6565b60405161036691906126b5565b60405180910390f35b610377610be0565b6040516103849190612759565b60405180910390f35b6103a760048036038101906103a29190612172565b610c72565b005b6103b1610df3565b6040516103be91906129bb565b60405180910390f35b6103cf610df9565b005b6103eb60048036038101906103e691906120ef565b610f66565b005b61040760048036038101906104029190612299565b610fc8565b6040516104149190612759565b60405180910390f35b6104376004803603810190610432919061205c565b61106f565b604051610444919061273e565b60405180910390f35b6104676004803603810190610462919061202f565b611103565b005b610483600480360381019061047e9190612299565b6111fb565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061055057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610560575061055f82611281565b5b9050919050565b600a6020528060005260406000206000915090505481565b60606000805461058e90612c19565b80601f01602080910402602001604051908101604052809291908181526020018280546105ba90612c19565b80156106075780601f106105dc57610100808354040283529160200191610607565b820191906000526020600020905b8154815290600101906020018083116105ea57829003601f168201915b5050505050905090565b600061061c826112eb565b61065b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610652906128fb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106a1826109c4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610712576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107099061297b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610731611357565b73ffffffffffffffffffffffffffffffffffffffff161480610760575061075f8161075a611357565b61106f565b5b61079f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107969061285b565b60405180910390fd5b6107a9838361135f565b505050565b60085481565b6107c56107bf611357565b82611418565b610804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fb9061299b565b60405180910390fd5b61080f8383836114f6565b505050565b6060600061082183610a76565b67ffffffffffffffff81111561083a57610839612db2565b5b6040519080825280602002602001820160405280156108685781602001602082028036833780820191505090505b5090506000805b6009548110156108f7578473ffffffffffffffffffffffffffffffffffffffff16610899826109c4565b73ffffffffffffffffffffffffffffffffffffffff1614156108e457808383815181106108c9576108c8612d83565b5b60200260200101818152505081806108e090612c7c565b9250505b80806108ef90612c7c565b91505061086f565b508192505050919050565b61090a611357565b73ffffffffffffffffffffffffffffffffffffffff16610928610bb6565b73ffffffffffffffffffffffffffffffffffffffff161461097e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109759061291b565b60405180910390fd5b81816007919061098f929190611e5d565b505050565b6109af83838360405180602001604052806000815250610f66565b505050565b60606109bf32610814565b905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a649061289b565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ade9061287b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b36611357565b73ffffffffffffffffffffffffffffffffffffffff16610b54610bb6565b73ffffffffffffffffffffffffffffffffffffffff1614610baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba19061291b565b60405180910390fd5b610bb46000611752565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610bef90612c19565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1b90612c19565b8015610c685780601f10610c3d57610100808354040283529160200191610c68565b820191906000526020600020905b815481529060010190602001808311610c4b57829003601f168201915b5050505050905090565b610c7a611357565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ce8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdf906127fb565b60405180910390fd5b8060056000610cf5611357565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610da2611357565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610de7919061273e565b60405180910390a35050565b60095481565b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506008546009546005610e4f9190612aa8565b1115610e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e879061283b565b60405180910390fd5b6005811415610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb906128bb565b60405180910390fd5b6005600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b6005811015610f625760006009549050610f363382611818565b60096000815480929190610f4990612c7c565b9190505550508080610f5a90612c7c565b915050610f1c565b5050565b610f77610f71611357565b83611418565b610fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fad9061299b565b60405180910390fd5b610fc284848484611836565b50505050565b6060610fd3826112eb565b611012576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110099061295b565b60405180910390fd5b600061101c611892565b9050600081511161103c5760405180602001604052806000815250611067565b8061104684611924565b604051602001611057929190612691565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61110b611357565b73ffffffffffffffffffffffffffffffffffffffff16611129610bb6565b73ffffffffffffffffffffffffffffffffffffffff161461117f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111769061291b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e69061279b565b60405180910390fd5b6111f881611752565b50565b611203611357565b73ffffffffffffffffffffffffffffffffffffffff16611221610bb6565b73ffffffffffffffffffffffffffffffffffffffff1614611277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126e9061291b565b60405180910390fd5b8060088190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166113d2836109c4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611423826112eb565b611462576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114599061281b565b60405180910390fd5b600061146d836109c4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114dc57508373ffffffffffffffffffffffffffffffffffffffff166114c484610611565b73ffffffffffffffffffffffffffffffffffffffff16145b806114ed57506114ec818561106f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611516826109c4565b73ffffffffffffffffffffffffffffffffffffffff161461156c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115639061293b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d3906127db565b60405180910390fd5b6115e7838383611a85565b6115f260008261135f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116429190612b2f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116999190612aa8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611832828260405180602001604052806000815250611a8a565b5050565b6118418484846114f6565b61184d84848484611ae5565b61188c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118839061277b565b60405180910390fd5b50505050565b6060600780546118a190612c19565b80601f01602080910402602001604051908101604052809291908181526020018280546118cd90612c19565b801561191a5780601f106118ef5761010080835404028352916020019161191a565b820191906000526020600020905b8154815290600101906020018083116118fd57829003601f168201915b5050505050905090565b6060600082141561196c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611a80565b600082905060005b6000821461199e57808061198790612c7c565b915050600a826119979190612afe565b9150611974565b60008167ffffffffffffffff8111156119ba576119b9612db2565b5b6040519080825280601f01601f1916602001820160405280156119ec5781602001600182028036833780820191505090505b5090505b60008514611a7957600182611a059190612b2f565b9150600a85611a149190612cc5565b6030611a209190612aa8565b60f81b818381518110611a3657611a35612d83565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611a729190612afe565b94506119f0565b8093505050505b919050565b505050565b611a948383611c7c565b611aa16000848484611ae5565b611ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad79061277b565b60405180910390fd5b505050565b6000611b068473ffffffffffffffffffffffffffffffffffffffff16611e4a565b15611c6f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b2f611357565b8786866040518563ffffffff1660e01b8152600401611b5194939291906126d0565b602060405180830381600087803b158015611b6b57600080fd5b505af1925050508015611b9c57506040513d601f19601f82011682018060405250810190611b99919061221f565b60015b611c1f573d8060008114611bcc576040519150601f19603f3d011682016040523d82523d6000602084013e611bd1565b606091505b50600081511415611c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0e9061277b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611c74565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce3906128db565b60405180910390fd5b611cf5816112eb565b15611d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2c906127bb565b60405180910390fd5b611d4160008383611a85565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d919190612aa8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054611e6990612c19565b90600052602060002090601f016020900481019282611e8b5760008555611ed2565b82601f10611ea457803560ff1916838001178555611ed2565b82800160010185558215611ed2579182015b82811115611ed1578235825591602001919060010190611eb6565b5b509050611edf9190611ee3565b5090565b5b80821115611efc576000816000905550600101611ee4565b5090565b6000611f13611f0e846129fb565b6129d6565b905082815260208101848484011115611f2f57611f2e612df0565b5b611f3a848285612bd7565b509392505050565b600081359050611f51816132ba565b92915050565b600081359050611f66816132d1565b92915050565b600081359050611f7b816132e8565b92915050565b600081519050611f90816132e8565b92915050565b600082601f830112611fab57611faa612de6565b5b8135611fbb848260208601611f00565b91505092915050565b60008083601f840112611fda57611fd9612de6565b5b8235905067ffffffffffffffff811115611ff757611ff6612de1565b5b60208301915083600182028301111561201357612012612deb565b5b9250929050565b600081359050612029816132ff565b92915050565b60006020828403121561204557612044612dfa565b5b600061205384828501611f42565b91505092915050565b6000806040838503121561207357612072612dfa565b5b600061208185828601611f42565b925050602061209285828601611f42565b9150509250929050565b6000806000606084860312156120b5576120b4612dfa565b5b60006120c386828701611f42565b93505060206120d486828701611f42565b92505060406120e58682870161201a565b9150509250925092565b6000806000806080858703121561210957612108612dfa565b5b600061211787828801611f42565b945050602061212887828801611f42565b93505060406121398782880161201a565b925050606085013567ffffffffffffffff81111561215a57612159612df5565b5b61216687828801611f96565b91505092959194509250565b6000806040838503121561218957612188612dfa565b5b600061219785828601611f42565b92505060206121a885828601611f57565b9150509250929050565b600080604083850312156121c9576121c8612dfa565b5b60006121d785828601611f42565b92505060206121e88582860161201a565b9150509250929050565b60006020828403121561220857612207612dfa565b5b600061221684828501611f6c565b91505092915050565b60006020828403121561223557612234612dfa565b5b600061224384828501611f81565b91505092915050565b6000806020838503121561226357612262612dfa565b5b600083013567ffffffffffffffff81111561228157612280612df5565b5b61228d85828601611fc4565b92509250509250929050565b6000602082840312156122af576122ae612dfa565b5b60006122bd8482850161201a565b91505092915050565b60006122d28383612673565b60208301905092915050565b6122e781612b63565b82525050565b60006122f882612a3c565b6123028185612a6a565b935061230d83612a2c565b8060005b8381101561233e57815161232588826122c6565b975061233083612a5d565b925050600181019050612311565b5085935050505092915050565b61235481612b75565b82525050565b600061236582612a47565b61236f8185612a7b565b935061237f818560208601612be6565b61238881612dff565b840191505092915050565b600061239e82612a52565b6123a88185612a8c565b93506123b8818560208601612be6565b6123c181612dff565b840191505092915050565b60006123d782612a52565b6123e18185612a9d565b93506123f1818560208601612be6565b80840191505092915050565b600061240a603283612a8c565b915061241582612e10565b604082019050919050565b600061242d602683612a8c565b915061243882612e5f565b604082019050919050565b6000612450601c83612a8c565b915061245b82612eae565b602082019050919050565b6000612473602483612a8c565b915061247e82612ed7565b604082019050919050565b6000612496601983612a8c565b91506124a182612f26565b602082019050919050565b60006124b9602c83612a8c565b91506124c482612f4f565b604082019050919050565b60006124dc600683612a8c565b91506124e782612f9e565b602082019050919050565b60006124ff603883612a8c565b915061250a82612fc7565b604082019050919050565b6000612522602a83612a8c565b915061252d82613016565b604082019050919050565b6000612545602983612a8c565b915061255082613065565b604082019050919050565b6000612568601283612a8c565b9150612573826130b4565b602082019050919050565b600061258b602083612a8c565b9150612596826130dd565b602082019050919050565b60006125ae602c83612a8c565b91506125b982613106565b604082019050919050565b60006125d1602083612a8c565b91506125dc82613155565b602082019050919050565b60006125f4602983612a8c565b91506125ff8261317e565b604082019050919050565b6000612617602f83612a8c565b9150612622826131cd565b604082019050919050565b600061263a602183612a8c565b91506126458261321c565b604082019050919050565b600061265d603183612a8c565b91506126688261326b565b604082019050919050565b61267c81612bcd565b82525050565b61268b81612bcd565b82525050565b600061269d82856123cc565b91506126a982846123cc565b91508190509392505050565b60006020820190506126ca60008301846122de565b92915050565b60006080820190506126e560008301876122de565b6126f260208301866122de565b6126ff6040830185612682565b8181036060830152612711818461235a565b905095945050505050565b6000602082019050818103600083015261273681846122ed565b905092915050565b6000602082019050612753600083018461234b565b92915050565b600060208201905081810360008301526127738184612393565b905092915050565b60006020820190508181036000830152612794816123fd565b9050919050565b600060208201905081810360008301526127b481612420565b9050919050565b600060208201905081810360008301526127d481612443565b9050919050565b600060208201905081810360008301526127f481612466565b9050919050565b6000602082019050818103600083015261281481612489565b9050919050565b60006020820190508181036000830152612834816124ac565b9050919050565b60006020820190508181036000830152612854816124cf565b9050919050565b60006020820190508181036000830152612874816124f2565b9050919050565b6000602082019050818103600083015261289481612515565b9050919050565b600060208201905081810360008301526128b481612538565b9050919050565b600060208201905081810360008301526128d48161255b565b9050919050565b600060208201905081810360008301526128f48161257e565b9050919050565b60006020820190508181036000830152612914816125a1565b9050919050565b60006020820190508181036000830152612934816125c4565b9050919050565b60006020820190508181036000830152612954816125e7565b9050919050565b600060208201905081810360008301526129748161260a565b9050919050565b600060208201905081810360008301526129948161262d565b9050919050565b600060208201905081810360008301526129b481612650565b9050919050565b60006020820190506129d06000830184612682565b92915050565b60006129e06129f1565b90506129ec8282612c4b565b919050565b6000604051905090565b600067ffffffffffffffff821115612a1657612a15612db2565b5b612a1f82612dff565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ab382612bcd565b9150612abe83612bcd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612af357612af2612cf6565b5b828201905092915050565b6000612b0982612bcd565b9150612b1483612bcd565b925082612b2457612b23612d25565b5b828204905092915050565b6000612b3a82612bcd565b9150612b4583612bcd565b925082821015612b5857612b57612cf6565b5b828203905092915050565b6000612b6e82612bad565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612c04578082015181840152602081019050612be9565b83811115612c13576000848401525b50505050565b60006002820490506001821680612c3157607f821691505b60208210811415612c4557612c44612d54565b5b50919050565b612c5482612dff565b810181811067ffffffffffffffff82111715612c7357612c72612db2565b5b80604052505050565b6000612c8782612bcd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612cba57612cb9612cf6565b5b600182019050919050565b6000612cd082612bcd565b9150612cdb83612bcd565b925082612ceb57612cea612d25565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f32204c4154450000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f414c524541445920434c41494d4544204d460000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6132c381612b63565b81146132ce57600080fd5b50565b6132da81612b75565b81146132e557600080fd5b50565b6132f181612b81565b81146132fc57600080fd5b50565b61330881612bcd565b811461331357600080fd5b5056fea26469706673582212203998714a2d397366db97689b4ecd00cd598889625e480aaa55ecc4d9974d9cf464736f6c63430008060033

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.