ETH Price: $3,390.38 (+1.20%)
Gas: 8 Gwei

Token

Invisible Frens (INVSBLEFRENS)
 

Overview

Max Total Supply

4,859 INVSBLEFRENS

Holders

640

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
0xjey.eth
Balance
5 INVSBLEFRENS
0xbe2e8f6292d29c65f9bcd807be387422857b4093
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:
InvisibleFrens

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-24
*/

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


// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be 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 {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

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

// File: contracts/InvisibleFrens.sol


pragma solidity ^0.8.2;




contract InvisibleFrens is ERC721, Ownable {
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;
    string _baseUri;
    string _contractUri;

    uint256 public constant MAX_SUPPLY = 5000;
    uint256 public price = 0.025 ether;
    uint256 public maxFreeMint = 1000;
    uint256 public maxMintPerTransaction = 10;
    bool public isSalesActive = false;

    constructor() ERC721("Invisible Frens", "INVSBLEFRENS") {
        _contractUri = "ipfs://QmWLKZtefvU1KeKKzdyGd5D5riJmD7jaMUzCUJ1ATJheqw";
        _tokenIdCounter.increment();
    }

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

    function mint(uint256 quantity) external payable {
        require(isSalesActive, "sale is not active");
        require(quantity <= maxMintPerTransaction, "max mints per transaction exceeded");
        require(totalSupply() + quantity <= MAX_SUPPLY, "sold out");
        if (totalSupply() + quantity > maxFreeMint) {
            require(msg.value >= price * quantity, "ether send is under price");
        }
        for (uint256 i = 0; i < quantity; i++) {
            safeMint(msg.sender);
        }
    }

    function safeMint(address to) internal {
        uint256 tokenId = _tokenIdCounter.current();
        _tokenIdCounter.increment();
        _safeMint(to, tokenId);
    }

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

    function contractURI() public view returns (string memory) {
        return _contractUri;
    }

    function setBaseURI(string memory newBaseURI) external onlyOwner {
        _baseUri = newBaseURI;
    }

    function setContractURI(string memory newContractURI) external onlyOwner {
        _contractUri = newContractURI;
    }

    function toggleSales() external onlyOwner {
        isSalesActive = !isSalesActive;
    }

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

    function withdrawAll() external onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
}

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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSalesActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newContractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526658d15e17628000600a9081556103e8600b55600c55600d805460ff191690553480156200003157600080fd5b50604080518082018252600f81526e496e76697369626c65204672656e7360881b60208083019182528351808501909452600c84526b494e5653424c454652454e5360a01b9084015281519192916200008d916000916200016d565b508051620000a39060019060208401906200016d565b505050620000c0620000ba6200010e60201b60201c565b62000112565b60405180606001604052806035815260200162001eea603591398051620000f0916009916020909101906200016d565b506200010860076200016460201b62000e181760201c565b62000250565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80546001019055565b8280546200017b9062000213565b90600052602060002090601f0160209004810192826200019f5760008555620001ea565b82601f10620001ba57805160ff1916838001178555620001ea565b82800160010185558215620001ea579182015b82811115620001ea578251825591602001919060010190620001cd565b50620001f8929150620001fc565b5090565b5b80821115620001f85760008155600101620001fd565b6002810460018216806200022857607f821691505b602082108114156200024a57634e487b7160e01b600052602260045260246000fd5b50919050565b611c8a80620002606000396000f3fe6080604052600436106101c25760003560e01c80638da5cb5b116100f7578063a591252d11610095578063dbd30ae011610064578063dbd30ae0146104bd578063e8a3d485146104d2578063e985e9c5146104e7578063f2fde38b14610530576101c2565b8063a591252d1461044d578063b88d4fde14610463578063c87b56dd14610483578063daa81cdd146104a3576101c2565b806395d89b41116100d157806395d89b41146103ef578063a035b1fe14610404578063a0712d681461041a578063a22cb4651461042d576101c2565b80638da5cb5b1461039157806391b7f5ed146103af578063938e3d7b146103cf576101c2565b806332cb6b0c116101645780636352211e1161013e5780636352211e1461032757806370a0823114610347578063715018a614610367578063853828b61461037c576101c2565b806332cb6b0c146102d157806342842e0e146102e757806355f804b314610307576101c2565b8063081812fc116101a0578063081812fc14610242578063095ea7b31461027a57806318160ddd1461029c57806323b872dd146102b1576101c2565b806301f56997146101c757806301ffc9a7146101f057806306fdde0314610220575b600080fd5b3480156101d357600080fd5b506101dd600c5481565b6040519081526020015b60405180910390f35b3480156101fc57600080fd5b5061021061020b3660046118eb565b610550565b60405190151581526020016101e7565b34801561022c57600080fd5b506102356105a4565b6040516101e79190611a19565b34801561024e57600080fd5b5061026261025d366004611969565b610636565b6040516001600160a01b0390911681526020016101e7565b34801561028657600080fd5b5061029a6102953660046118c2565b6106d0565b005b3480156102a857600080fd5b506101dd6107e6565b3480156102bd57600080fd5b5061029a6102cc3660046117d4565b6107f6565b3480156102dd57600080fd5b506101dd61138881565b3480156102f357600080fd5b5061029a6103023660046117d4565b610827565b34801561031357600080fd5b5061029a610322366004611923565b610842565b34801561033357600080fd5b50610262610342366004611969565b610883565b34801561035357600080fd5b506101dd610362366004611788565b6108fa565b34801561037357600080fd5b5061029a610981565b34801561038857600080fd5b5061029a6109b7565b34801561039d57600080fd5b506006546001600160a01b0316610262565b3480156103bb57600080fd5b5061029a6103ca366004611969565b610a05565b3480156103db57600080fd5b5061029a6103ea366004611923565b610a34565b3480156103fb57600080fd5b50610235610a71565b34801561041057600080fd5b506101dd600a5481565b61029a610428366004611969565b610a80565b34801561043957600080fd5b5061029a610448366004611888565b610c12565b34801561045957600080fd5b506101dd600b5481565b34801561046f57600080fd5b5061029a61047e36600461180f565b610c1d565b34801561048f57600080fd5b5061023561049e366004611969565b610c55565b3480156104af57600080fd5b50600d546102109060ff1681565b3480156104c957600080fd5b5061029a610d30565b3480156104de57600080fd5b50610235610d6e565b3480156104f357600080fd5b506102106105023660046117a2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561053c57600080fd5b5061029a61054b366004611788565b610d7d565b60006001600160e01b031982166380ac58cd60e01b148061058157506001600160e01b03198216635b5e139f60e01b145b8061059c57506301ffc9a760e01b6001600160e01b03198316145b90505b919050565b6060600080546105b390611b92565b80601f01602080910402602001604051908101604052809291908181526020018280546105df90611b92565b801561062c5780601f106106015761010080835404028352916020019161062c565b820191906000526020600020905b81548152906001019060200180831161060f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106b45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106db82610883565b9050806001600160a01b0316836001600160a01b031614156107495760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106ab565b336001600160a01b038216148061076557506107658133610502565b6107d75760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106ab565b6107e18383610e21565b505050565b60006107f160075490565b905090565b6108003382610e8f565b61081c5760405162461bcd60e51b81526004016106ab90611ab3565b6107e1838383610f86565b6107e183838360405180602001604052806000815250610c1d565b6006546001600160a01b0316331461086c5760405162461bcd60e51b81526004016106ab90611a7e565b805161087f906008906020840190611662565b5050565b6000818152600260205260408120546001600160a01b03168061059c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106ab565b60006001600160a01b0382166109655760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106ab565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146109ab5760405162461bcd60e51b81526004016106ab90611a7e565b6109b56000611122565b565b6006546001600160a01b031633146109e15760405162461bcd60e51b81526004016106ab90611a7e565b60405133904780156108fc02916000818181858888f193505050506109b557600080fd5b6006546001600160a01b03163314610a2f5760405162461bcd60e51b81526004016106ab90611a7e565b600a55565b6006546001600160a01b03163314610a5e5760405162461bcd60e51b81526004016106ab90611a7e565b805161087f906009906020840190611662565b6060600180546105b390611b92565b600d5460ff16610ac75760405162461bcd60e51b815260206004820152601260248201527173616c65206973206e6f742061637469766560701b60448201526064016106ab565b600c54811115610b245760405162461bcd60e51b815260206004820152602260248201527f6d6178206d696e747320706572207472616e73616374696f6e20657863656564604482015261195960f21b60648201526084016106ab565b61138881610b306107e6565b610b3a9190611b04565b1115610b735760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b60448201526064016106ab565b600b5481610b7f6107e6565b610b899190611b04565b1115610bec5780600a54610b9d9190611b30565b341015610bec5760405162461bcd60e51b815260206004820152601960248201527f65746865722073656e6420697320756e6465722070726963650000000000000060448201526064016106ab565b60005b8181101561087f57610c0033611174565b80610c0a81611bcd565b915050610bef565b61087f338383611199565b610c273383610e8f565b610c435760405162461bcd60e51b81526004016106ab90611ab3565b610c4f84848484611268565b50505050565b6000818152600260205260409020546060906001600160a01b0316610cd45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106ab565b6000610cde61129b565b90506000815111610cfe5760405180602001604052806000815250610d29565b80610d08846112aa565b604051602001610d199291906119ad565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610d5a5760405162461bcd60e51b81526004016106ab90611a7e565b600d805460ff19811660ff90911615179055565b6060600980546105b390611b92565b6006546001600160a01b03163314610da75760405162461bcd60e51b81526004016106ab90611a7e565b6001600160a01b038116610e0c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ab565b610e1581611122565b50565b80546001019055565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e5682610883565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610f085760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106ab565b6000610f1383610883565b9050806001600160a01b0316846001600160a01b03161480610f4e5750836001600160a01b0316610f4384610636565b6001600160a01b0316145b80610f7e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610f9982610883565b6001600160a01b031614610ffd5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016106ab565b6001600160a01b03821661105f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106ab565b61106a600082610e21565b6001600160a01b0383166000908152600360205260408120805460019290611093908490611b4f565b90915550506001600160a01b03821660009081526003602052604081208054600192906110c1908490611b04565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a46107e1565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061117f60075490565b905061118f600780546001019055565b61087f82826113c5565b816001600160a01b0316836001600160a01b031614156111fb5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106ab565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611273848484610f86565b61127f848484846113df565b610c4f5760405162461bcd60e51b81526004016106ab90611a2c565b6060600880546105b390611b92565b6060816112cf57506040805180820190915260018152600360fc1b602082015261059f565b8160005b81156112f957806112e381611bcd565b91506112f29050600a83611b1c565b91506112d3565b60008167ffffffffffffffff81111561132257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561134c576020820181803683370190505b5090505b8415610f7e57611361600183611b4f565b915061136e600a86611be8565b611379906030611b04565b60f81b81838151811061139c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506113be600a86611b1c565b9450611350565b61087f8282604051806020016040528060008152506114ec565b60006001600160a01b0384163b156114e157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906114239033908990889088906004016119dc565b602060405180830381600087803b15801561143d57600080fd5b505af192505050801561146d575060408051601f3d908101601f1916820190925261146a91810190611907565b60015b6114c7573d80801561149b576040519150601f19603f3d011682016040523d82523d6000602084013e6114a0565b606091505b5080516114bf5760405162461bcd60e51b81526004016106ab90611a2c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f7e565b506001949350505050565b6114f6838361151f565b61150360008484846113df565b6107e15760405162461bcd60e51b81526004016106ab90611a2c565b6001600160a01b0382166115755760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106ab565b6000818152600260205260409020546001600160a01b0316156115da5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106ab565b6001600160a01b0382166000908152600360205260408120805460019290611603908490611b04565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461087f565b82805461166e90611b92565b90600052602060002090601f01602090048101928261169057600085556116d6565b82601f106116a957805160ff19168380011785556116d6565b828001600101855582156116d6579182015b828111156116d65782518255916020019190600101906116bb565b506116e29291506116e6565b5090565b5b808211156116e257600081556001016116e7565b600067ffffffffffffffff8084111561171657611716611c28565b604051601f8501601f19908116603f0116810190828211818310171561173e5761173e611c28565b8160405280935085815286868601111561175757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461059f57600080fd5b600060208284031215611799578081fd5b610d2982611771565b600080604083850312156117b4578081fd5b6117bd83611771565b91506117cb60208401611771565b90509250929050565b6000806000606084860312156117e8578081fd5b6117f184611771565b92506117ff60208501611771565b9150604084013590509250925092565b60008060008060808587031215611824578081fd5b61182d85611771565b935061183b60208601611771565b925060408501359150606085013567ffffffffffffffff81111561185d578182fd5b8501601f8101871361186d578182fd5b61187c878235602084016116fb565b91505092959194509250565b6000806040838503121561189a578182fd5b6118a383611771565b9150602083013580151581146118b7578182fd5b809150509250929050565b600080604083850312156118d4578182fd5b6118dd83611771565b946020939093013593505050565b6000602082840312156118fc578081fd5b8135610d2981611c3e565b600060208284031215611918578081fd5b8151610d2981611c3e565b600060208284031215611934578081fd5b813567ffffffffffffffff81111561194a578182fd5b8201601f8101841361195a578182fd5b610f7e848235602084016116fb565b60006020828403121561197a578081fd5b5035919050565b60008151808452611999816020860160208601611b66565b601f01601f19169290920160200192915050565b600083516119bf818460208801611b66565b8351908301906119d3818360208801611b66565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a0f90830184611981565b9695505050505050565b600060208252610d296020830184611981565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611b1757611b17611bfc565b500190565b600082611b2b57611b2b611c12565b500490565b6000816000190483118215151615611b4a57611b4a611bfc565b500290565b600082821015611b6157611b61611bfc565b500390565b60005b83811015611b81578181015183820152602001611b69565b83811115610c4f5750506000910152565b600281046001821680611ba657607f821691505b60208210811415611bc757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611be157611be1611bfc565b5060010190565b600082611bf757611bf7611c12565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e1557600080fdfea2646970667358221220b0941ba08417dae85554c17586c300b018f50e9b9b26f56200a5d795965fdded64736f6c63430008020033697066733a2f2f516d574c4b5a7465667655314b654b4b7a6479476435443572694a6d44376a614d557a43554a3141544a68657177

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80638da5cb5b116100f7578063a591252d11610095578063dbd30ae011610064578063dbd30ae0146104bd578063e8a3d485146104d2578063e985e9c5146104e7578063f2fde38b14610530576101c2565b8063a591252d1461044d578063b88d4fde14610463578063c87b56dd14610483578063daa81cdd146104a3576101c2565b806395d89b41116100d157806395d89b41146103ef578063a035b1fe14610404578063a0712d681461041a578063a22cb4651461042d576101c2565b80638da5cb5b1461039157806391b7f5ed146103af578063938e3d7b146103cf576101c2565b806332cb6b0c116101645780636352211e1161013e5780636352211e1461032757806370a0823114610347578063715018a614610367578063853828b61461037c576101c2565b806332cb6b0c146102d157806342842e0e146102e757806355f804b314610307576101c2565b8063081812fc116101a0578063081812fc14610242578063095ea7b31461027a57806318160ddd1461029c57806323b872dd146102b1576101c2565b806301f56997146101c757806301ffc9a7146101f057806306fdde0314610220575b600080fd5b3480156101d357600080fd5b506101dd600c5481565b6040519081526020015b60405180910390f35b3480156101fc57600080fd5b5061021061020b3660046118eb565b610550565b60405190151581526020016101e7565b34801561022c57600080fd5b506102356105a4565b6040516101e79190611a19565b34801561024e57600080fd5b5061026261025d366004611969565b610636565b6040516001600160a01b0390911681526020016101e7565b34801561028657600080fd5b5061029a6102953660046118c2565b6106d0565b005b3480156102a857600080fd5b506101dd6107e6565b3480156102bd57600080fd5b5061029a6102cc3660046117d4565b6107f6565b3480156102dd57600080fd5b506101dd61138881565b3480156102f357600080fd5b5061029a6103023660046117d4565b610827565b34801561031357600080fd5b5061029a610322366004611923565b610842565b34801561033357600080fd5b50610262610342366004611969565b610883565b34801561035357600080fd5b506101dd610362366004611788565b6108fa565b34801561037357600080fd5b5061029a610981565b34801561038857600080fd5b5061029a6109b7565b34801561039d57600080fd5b506006546001600160a01b0316610262565b3480156103bb57600080fd5b5061029a6103ca366004611969565b610a05565b3480156103db57600080fd5b5061029a6103ea366004611923565b610a34565b3480156103fb57600080fd5b50610235610a71565b34801561041057600080fd5b506101dd600a5481565b61029a610428366004611969565b610a80565b34801561043957600080fd5b5061029a610448366004611888565b610c12565b34801561045957600080fd5b506101dd600b5481565b34801561046f57600080fd5b5061029a61047e36600461180f565b610c1d565b34801561048f57600080fd5b5061023561049e366004611969565b610c55565b3480156104af57600080fd5b50600d546102109060ff1681565b3480156104c957600080fd5b5061029a610d30565b3480156104de57600080fd5b50610235610d6e565b3480156104f357600080fd5b506102106105023660046117a2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561053c57600080fd5b5061029a61054b366004611788565b610d7d565b60006001600160e01b031982166380ac58cd60e01b148061058157506001600160e01b03198216635b5e139f60e01b145b8061059c57506301ffc9a760e01b6001600160e01b03198316145b90505b919050565b6060600080546105b390611b92565b80601f01602080910402602001604051908101604052809291908181526020018280546105df90611b92565b801561062c5780601f106106015761010080835404028352916020019161062c565b820191906000526020600020905b81548152906001019060200180831161060f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106b45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106db82610883565b9050806001600160a01b0316836001600160a01b031614156107495760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106ab565b336001600160a01b038216148061076557506107658133610502565b6107d75760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106ab565b6107e18383610e21565b505050565b60006107f160075490565b905090565b6108003382610e8f565b61081c5760405162461bcd60e51b81526004016106ab90611ab3565b6107e1838383610f86565b6107e183838360405180602001604052806000815250610c1d565b6006546001600160a01b0316331461086c5760405162461bcd60e51b81526004016106ab90611a7e565b805161087f906008906020840190611662565b5050565b6000818152600260205260408120546001600160a01b03168061059c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106ab565b60006001600160a01b0382166109655760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106ab565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146109ab5760405162461bcd60e51b81526004016106ab90611a7e565b6109b56000611122565b565b6006546001600160a01b031633146109e15760405162461bcd60e51b81526004016106ab90611a7e565b60405133904780156108fc02916000818181858888f193505050506109b557600080fd5b6006546001600160a01b03163314610a2f5760405162461bcd60e51b81526004016106ab90611a7e565b600a55565b6006546001600160a01b03163314610a5e5760405162461bcd60e51b81526004016106ab90611a7e565b805161087f906009906020840190611662565b6060600180546105b390611b92565b600d5460ff16610ac75760405162461bcd60e51b815260206004820152601260248201527173616c65206973206e6f742061637469766560701b60448201526064016106ab565b600c54811115610b245760405162461bcd60e51b815260206004820152602260248201527f6d6178206d696e747320706572207472616e73616374696f6e20657863656564604482015261195960f21b60648201526084016106ab565b61138881610b306107e6565b610b3a9190611b04565b1115610b735760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b60448201526064016106ab565b600b5481610b7f6107e6565b610b899190611b04565b1115610bec5780600a54610b9d9190611b30565b341015610bec5760405162461bcd60e51b815260206004820152601960248201527f65746865722073656e6420697320756e6465722070726963650000000000000060448201526064016106ab565b60005b8181101561087f57610c0033611174565b80610c0a81611bcd565b915050610bef565b61087f338383611199565b610c273383610e8f565b610c435760405162461bcd60e51b81526004016106ab90611ab3565b610c4f84848484611268565b50505050565b6000818152600260205260409020546060906001600160a01b0316610cd45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106ab565b6000610cde61129b565b90506000815111610cfe5760405180602001604052806000815250610d29565b80610d08846112aa565b604051602001610d199291906119ad565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610d5a5760405162461bcd60e51b81526004016106ab90611a7e565b600d805460ff19811660ff90911615179055565b6060600980546105b390611b92565b6006546001600160a01b03163314610da75760405162461bcd60e51b81526004016106ab90611a7e565b6001600160a01b038116610e0c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ab565b610e1581611122565b50565b80546001019055565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e5682610883565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610f085760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106ab565b6000610f1383610883565b9050806001600160a01b0316846001600160a01b03161480610f4e5750836001600160a01b0316610f4384610636565b6001600160a01b0316145b80610f7e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610f9982610883565b6001600160a01b031614610ffd5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016106ab565b6001600160a01b03821661105f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106ab565b61106a600082610e21565b6001600160a01b0383166000908152600360205260408120805460019290611093908490611b4f565b90915550506001600160a01b03821660009081526003602052604081208054600192906110c1908490611b04565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a46107e1565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061117f60075490565b905061118f600780546001019055565b61087f82826113c5565b816001600160a01b0316836001600160a01b031614156111fb5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106ab565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611273848484610f86565b61127f848484846113df565b610c4f5760405162461bcd60e51b81526004016106ab90611a2c565b6060600880546105b390611b92565b6060816112cf57506040805180820190915260018152600360fc1b602082015261059f565b8160005b81156112f957806112e381611bcd565b91506112f29050600a83611b1c565b91506112d3565b60008167ffffffffffffffff81111561132257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561134c576020820181803683370190505b5090505b8415610f7e57611361600183611b4f565b915061136e600a86611be8565b611379906030611b04565b60f81b81838151811061139c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506113be600a86611b1c565b9450611350565b61087f8282604051806020016040528060008152506114ec565b60006001600160a01b0384163b156114e157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906114239033908990889088906004016119dc565b602060405180830381600087803b15801561143d57600080fd5b505af192505050801561146d575060408051601f3d908101601f1916820190925261146a91810190611907565b60015b6114c7573d80801561149b576040519150601f19603f3d011682016040523d82523d6000602084013e6114a0565b606091505b5080516114bf5760405162461bcd60e51b81526004016106ab90611a2c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f7e565b506001949350505050565b6114f6838361151f565b61150360008484846113df565b6107e15760405162461bcd60e51b81526004016106ab90611a2c565b6001600160a01b0382166115755760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106ab565b6000818152600260205260409020546001600160a01b0316156115da5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106ab565b6001600160a01b0382166000908152600360205260408120805460019290611603908490611b04565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461087f565b82805461166e90611b92565b90600052602060002090601f01602090048101928261169057600085556116d6565b82601f106116a957805160ff19168380011785556116d6565b828001600101855582156116d6579182015b828111156116d65782518255916020019190600101906116bb565b506116e29291506116e6565b5090565b5b808211156116e257600081556001016116e7565b600067ffffffffffffffff8084111561171657611716611c28565b604051601f8501601f19908116603f0116810190828211818310171561173e5761173e611c28565b8160405280935085815286868601111561175757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461059f57600080fd5b600060208284031215611799578081fd5b610d2982611771565b600080604083850312156117b4578081fd5b6117bd83611771565b91506117cb60208401611771565b90509250929050565b6000806000606084860312156117e8578081fd5b6117f184611771565b92506117ff60208501611771565b9150604084013590509250925092565b60008060008060808587031215611824578081fd5b61182d85611771565b935061183b60208601611771565b925060408501359150606085013567ffffffffffffffff81111561185d578182fd5b8501601f8101871361186d578182fd5b61187c878235602084016116fb565b91505092959194509250565b6000806040838503121561189a578182fd5b6118a383611771565b9150602083013580151581146118b7578182fd5b809150509250929050565b600080604083850312156118d4578182fd5b6118dd83611771565b946020939093013593505050565b6000602082840312156118fc578081fd5b8135610d2981611c3e565b600060208284031215611918578081fd5b8151610d2981611c3e565b600060208284031215611934578081fd5b813567ffffffffffffffff81111561194a578182fd5b8201601f8101841361195a578182fd5b610f7e848235602084016116fb565b60006020828403121561197a578081fd5b5035919050565b60008151808452611999816020860160208601611b66565b601f01601f19169290920160200192915050565b600083516119bf818460208801611b66565b8351908301906119d3818360208801611b66565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a0f90830184611981565b9695505050505050565b600060208252610d296020830184611981565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611b1757611b17611bfc565b500190565b600082611b2b57611b2b611c12565b500490565b6000816000190483118215151615611b4a57611b4a611bfc565b500290565b600082821015611b6157611b61611bfc565b500390565b60005b83811015611b81578181015183820152602001611b69565b83811115610c4f5750506000910152565b600281046001821680611ba657607f821691505b60208210811415611bc757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611be157611be1611bfc565b5060010190565b600082611bf757611bf7611c12565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e1557600080fdfea2646970667358221220b0941ba08417dae85554c17586c300b018f50e9b9b26f56200a5d795965fdded64736f6c63430008020033

Deployed Bytecode Sourcemap

38764:2191:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39084:41;;;;;;;;;;;;;;;;;;;14011:25:1;;;13999:2;13984:18;39084:41:0;;;;;;;;25574:305;;;;;;;;;;-1:-1:-1;25574:305:0;;;;;:::i;:::-;;:::i;:::-;;;5796:14:1;;5789:22;5771:41;;5759:2;5744:18;25574:305:0;5726:92:1;26519:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28078:221::-;;;;;;;;;;-1:-1:-1;28078:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5094:32:1;;;5076:51;;5064:2;5049:18;28078:221:0;5031:102:1;27601:411:0;;;;;;;;;;-1:-1:-1;27601:411:0;;;;;:::i;:::-;;:::i;:::-;;40179:104;;;;;;;;;;;;;:::i;28828:339::-;;;;;;;;;;-1:-1:-1;28828:339:0;;;;;:::i;:::-;;:::i;38955:41::-;;;;;;;;;;;;38992:4;38955:41;;29238:185;;;;;;;;;;-1:-1:-1;29238:185:0;;;;;:::i;:::-;;:::i;40396:105::-;;;;;;;;;;-1:-1:-1;40396:105:0;;;;;:::i;:::-;;:::i;26213:239::-;;;;;;;;;;-1:-1:-1;26213:239:0;;;;;:::i;:::-;;:::i;25943:208::-;;;;;;;;;;-1:-1:-1;25943:208:0;;;;;:::i;:::-;;:::i;6195:103::-;;;;;;;;;;;;;:::i;40835:117::-;;;;;;;;;;;;;:::i;5544:87::-;;;;;;;;;;-1:-1:-1;5617:6:0;;-1:-1:-1;;;;;5617:6:0;5544:87;;40737:90;;;;;;;;;;-1:-1:-1;40737:90:0;;;;;:::i;:::-;;:::i;40509:121::-;;;;;;;;;;-1:-1:-1;40509:121:0;;;;;:::i;:::-;;:::i;26688:104::-;;;;;;;;;;;;;:::i;39003:34::-;;;;;;;;;;;;;;;;39474:517;;;;;;:::i;:::-;;:::i;28371:155::-;;;;;;;;;;-1:-1:-1;28371:155:0;;;;;:::i;:::-;;:::i;39044:33::-;;;;;;;;;;;;;;;;29494:328;;;;;;;;;;-1:-1:-1;29494:328:0;;;;;:::i;:::-;;:::i;26863:334::-;;;;;;;;;;-1:-1:-1;26863:334:0;;;;;:::i;:::-;;:::i;39132:33::-;;;;;;;;;;-1:-1:-1;39132:33:0;;;;;;;;40638:91;;;;;;;;;;;;;:::i;40291:97::-;;;;;;;;;;;;;:::i;28597:164::-;;;;;;;;;;-1:-1:-1;28597:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28718:25:0;;;28694:4;28718:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28597:164;6453:201;;;;;;;;;;-1:-1:-1;6453:201:0;;;;;:::i;:::-;;:::i;25574:305::-;25676:4;-1:-1:-1;;;;;;25713:40:0;;-1:-1:-1;;;25713:40:0;;:105;;-1:-1:-1;;;;;;;25770:48:0;;-1:-1:-1;;;25770:48:0;25713:105;:158;;;-1:-1:-1;;;;;;;;;;18437:40:0;;;25835:36;25693:178;;25574:305;;;;:::o;26519:100::-;26573:13;26606:5;26599:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26519:100;:::o;28078:221::-;28154:7;31421:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31421:16:0;28174:73;;;;-1:-1:-1;;;28174:73:0;;12057:2:1;28174:73:0;;;12039:21:1;12096:2;12076:18;;;12069:30;12135:34;12115:18;;;12108:62;-1:-1:-1;;;12186:18:1;;;12179:42;12238:19;;28174:73:0;;;;;;;;;-1:-1:-1;28267:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28267:24:0;;28078:221::o;27601:411::-;27682:13;27698:23;27713:7;27698:14;:23::i;:::-;27682:39;;27746:5;-1:-1:-1;;;;;27740:11:0;:2;-1:-1:-1;;;;;27740:11:0;;;27732:57;;;;-1:-1:-1;;;27732:57:0;;13247:2:1;27732:57:0;;;13229:21:1;13286:2;13266:18;;;13259:30;13325:34;13305:18;;;13298:62;-1:-1:-1;;;13376:18:1;;;13369:31;13417:19;;27732:57:0;13219:223:1;27732:57:0;4348:10;-1:-1:-1;;;;;27824:21:0;;;;:62;;-1:-1:-1;27849:37:0;27866:5;4348:10;27873:12;4268:98;27849:37;27802:168;;;;-1:-1:-1;;;27802:168:0;;9693:2:1;27802:168:0;;;9675:21:1;9732:2;9712:18;;;9705:30;9771:34;9751:18;;;9744:62;9842:26;9822:18;;;9815:54;9886:19;;27802:168:0;9665:246:1;27802:168:0;27983:21;27992:2;27996:7;27983:8;:21::i;:::-;27601:411;;;:::o;40179:104::-;40223:7;40250:25;:15;964:14;;872:114;40250:25;40243:32;;40179:104;:::o;28828:339::-;29023:41;4348:10;29056:7;29023:18;:41::i;:::-;29015:103;;;;-1:-1:-1;;;29015:103:0;;;;;;;:::i;:::-;29131:28;29141:4;29147:2;29151:7;29131:9;:28::i;29238:185::-;29376:39;29393:4;29399:2;29403:7;29376:39;;;;;;;;;;;;:16;:39::i;40396:105::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;40472:21;;::::1;::::0;:8:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;40396:105:::0;:::o;26213:239::-;26285:7;26321:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26321:16:0;26356:19;26348:73;;;;-1:-1:-1;;;26348:73:0;;10883:2:1;26348:73:0;;;10865:21:1;10922:2;10902:18;;;10895:30;10961:34;10941:18;;;10934:62;-1:-1:-1;;;11012:18:1;;;11005:39;11061:19;;26348:73:0;10855:231:1;25943:208:0;26015:7;-1:-1:-1;;;;;26043:19:0;;26035:74;;;;-1:-1:-1;;;26035:74:0;;10472:2:1;26035:74:0;;;10454:21:1;10511:2;10491:18;;;10484:30;10550:34;10530:18;;;10523:62;-1:-1:-1;;;10601:18:1;;;10594:40;10651:19;;26035:74:0;10444:232:1;26035:74:0;-1:-1:-1;;;;;;26127:16:0;;;;;:9;:16;;;;;;;25943:208::o;6195:103::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;6260:30:::1;6287:1;6260:18;:30::i;:::-;6195:103::o:0;40835:117::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;40896:47:::1;::::0;40904:10:::1;::::0;40921:21:::1;40896:47:::0;::::1;;;::::0;::::1;::::0;;;40921:21;40904:10;40896:47;::::1;;;;;;40888:56;;;::::0;::::1;40737:90:::0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;40803:5:::1;:16:::0;40737:90::o;40509:121::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;40593:29;;::::1;::::0;:12:::1;::::0;:29:::1;::::0;::::1;::::0;::::1;:::i;26688:104::-:0;26744:13;26777:7;26770:14;;;;;:::i;39474:517::-;39542:13;;;;39534:44;;;;-1:-1:-1;;;39534:44:0;;9346:2:1;39534:44:0;;;9328:21:1;9385:2;9365:18;;;9358:30;-1:-1:-1;;;9404:18:1;;;9397:48;9462:18;;39534:44:0;9318:168:1;39534:44:0;39609:21;;39597:8;:33;;39589:80;;;;-1:-1:-1;;;39589:80:0;;11654:2:1;39589:80:0;;;11636:21:1;11693:2;11673:18;;;11666:30;11732:34;11712:18;;;11705:62;-1:-1:-1;;;11783:18:1;;;11776:32;11825:19;;39589:80:0;11626:224:1;39589:80:0;38992:4;39704:8;39688:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;39680:59;;;;-1:-1:-1;;;39680:59:0;;9010:2:1;39680:59:0;;;8992:21:1;9049:1;9029:18;;;9022:29;-1:-1:-1;;;9067:18:1;;;9060:38;9115:18;;39680:59:0;8982:157:1;39680:59:0;39781:11;;39770:8;39754:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;39750:138;;;39838:8;39830:5;;:16;;;;:::i;:::-;39817:9;:29;;39809:67;;;;-1:-1:-1;;;39809:67:0;;10118:2:1;39809:67:0;;;10100:21:1;10157:2;10137:18;;;10130:30;10196:27;10176:18;;;10169:55;10241:18;;39809:67:0;10090:175:1;39809:67:0;39903:9;39898:86;39922:8;39918:1;:12;39898:86;;;39952:20;39961:10;39952:8;:20::i;:::-;39932:3;;;;:::i;:::-;;;;39898:86;;28371:155;28466:52;4348:10;28499:8;28509;28466:18;:52::i;29494:328::-;29669:41;4348:10;29702:7;29669:18;:41::i;:::-;29661:103;;;;-1:-1:-1;;;29661:103:0;;;;;;;:::i;:::-;29775:39;29789:4;29795:2;29799:7;29808:5;29775:13;:39::i;:::-;29494:328;;;;:::o;26863:334::-;31397:4;31421:16;;;:7;:16;;;;;;26936:13;;-1:-1:-1;;;;;31421:16:0;26962:76;;;;-1:-1:-1;;;26962:76:0;;12831:2:1;26962:76:0;;;12813:21:1;12870:2;12850:18;;;12843:30;12909:34;12889:18;;;12882:62;-1:-1:-1;;;12960:18:1;;;12953:45;13015:19;;26962:76:0;12803:237:1;26962:76:0;27051:21;27075:10;:8;:10::i;:::-;27051:34;;27127:1;27109:7;27103:21;:25;:86;;;;;;;;;;;;;;;;;27155:7;27164:18;:7;:16;:18::i;:::-;27138:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27103:86;27096:93;26863:334;-1:-1:-1;;;26863:334:0:o;40638:91::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;40708:13:::1;::::0;;-1:-1:-1;;40691:30:0;::::1;40708:13;::::0;;::::1;40707:14;40691:30;::::0;;40638:91::o;40291:97::-;40335:13;40368:12;40361:19;;;;;:::i;6453:201::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6542:22:0;::::1;6534:73;;;::::0;-1:-1:-1;;;6534:73:0;;6668:2:1;6534:73:0::1;::::0;::::1;6650:21:1::0;6707:2;6687:18;;;6680:30;6746:34;6726:18;;;6719:62;-1:-1:-1;;;6797:18:1;;;6790:36;6843:19;;6534:73:0::1;6640:228:1::0;6534:73:0::1;6618:28;6637:8;6618:18;:28::i;:::-;6453:201:::0;:::o;994:127::-;1083:19;;1101:1;1083:19;;;994:127::o;35478:174::-;35553:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35553:29:0;-1:-1:-1;;;;;35553:29:0;;;;;;;;:24;;35607:23;35553:24;35607:14;:23::i;:::-;-1:-1:-1;;;;;35598:46:0;;;;;;;;;;;35478:174;;:::o;31626:348::-;31719:4;31421:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31421:16:0;31736:73;;;;-1:-1:-1;;;31736:73:0;;8597:2:1;31736:73:0;;;8579:21:1;8636:2;8616:18;;;8609:30;8675:34;8655:18;;;8648:62;-1:-1:-1;;;8726:18:1;;;8719:42;8778:19;;31736:73:0;8569:234:1;31736:73:0;31820:13;31836:23;31851:7;31836:14;:23::i;:::-;31820:39;;31889:5;-1:-1:-1;;;;;31878:16:0;:7;-1:-1:-1;;;;;31878:16:0;;:51;;;;31922:7;-1:-1:-1;;;;;31898:31:0;:20;31910:7;31898:11;:20::i;:::-;-1:-1:-1;;;;;31898:31:0;;31878:51;:87;;;-1:-1:-1;;;;;;28718:25:0;;;28694:4;28718:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31933:32;31870:96;31626:348;-1:-1:-1;;;;31626:348:0:o;34735:625::-;34894:4;-1:-1:-1;;;;;34867:31:0;:23;34882:7;34867:14;:23::i;:::-;-1:-1:-1;;;;;34867:31:0;;34859:81;;;;-1:-1:-1;;;34859:81:0;;7075:2:1;34859:81:0;;;7057:21:1;7114:2;7094:18;;;7087:30;7153:34;7133:18;;;7126:62;-1:-1:-1;;;7204:18:1;;;7197:35;7249:19;;34859:81:0;7047:227:1;34859:81:0;-1:-1:-1;;;;;34959:16:0;;34951:65;;;;-1:-1:-1;;;34951:65:0;;7838:2:1;34951:65:0;;;7820:21:1;7877:2;7857:18;;;7850:30;7916:34;7896:18;;;7889:62;-1:-1:-1;;;7967:18:1;;;7960:34;8011:19;;34951:65:0;7810:226:1;34951:65:0;35133:29;35150:1;35154:7;35133:8;:29::i;:::-;-1:-1:-1;;;;;35175:15:0;;;;;;:9;:15;;;;;:20;;35194:1;;35175:15;:20;;35194:1;;35175:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35206:13:0;;;;;;:9;:13;;;;;:18;;35223:1;;35206:13;:18;;35223:1;;35206:18;:::i;:::-;;;;-1:-1:-1;;35235:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35235:21:0;-1:-1:-1;;;;;35235:21:0;;;;;;;;;35274:27;;35235:16;;35274:27;;;;;;;35314:38;27601:411;6814:191;6907:6;;;-1:-1:-1;;;;;6924:17:0;;;-1:-1:-1;;;;;;6924:17:0;;;;;;;6957:40;;6907:6;;;6924:17;6907:6;;6957:40;;6888:16;;6957:40;6814:191;;:::o;39999:172::-;40049:15;40067:25;:15;964:14;;872:114;40067:25;40049:43;;40103:27;:15;1083:19;;1101:1;1083:19;;;994:127;40103:27;40141:22;40151:2;40155:7;40141:9;:22::i;35794:315::-;35949:8;-1:-1:-1;;;;;35940:17:0;:5;-1:-1:-1;;;;;35940:17:0;;;35932:55;;;;-1:-1:-1;;;35932:55:0;;8243:2:1;35932:55:0;;;8225:21:1;8282:2;8262:18;;;8255:30;8321:27;8301:18;;;8294:55;8366:18;;35932:55:0;8215:175:1;35932:55:0;-1:-1:-1;;;;;35998:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35998:46:0;;;;;;;;;;36060:41;;5771::1;;;36060::0;;5744:18:1;36060:41:0;;;;;;;35794:315;;;:::o;30704:::-;30861:28;30871:4;30877:2;30881:7;30861:9;:28::i;:::-;30908:48;30931:4;30937:2;30941:7;30950:5;30908:22;:48::i;:::-;30900:111;;;;-1:-1:-1;;;30900:111:0;;;;;;;:::i;39365:101::-;39417:13;39450:8;39443:15;;;;;:::i;1830:723::-;1886:13;2107:10;2103:53;;-1:-1:-1;2134:10:0;;;;;;;;;;;;-1:-1:-1;;;2134:10:0;;;;;;2103:53;2181:5;2166:12;2222:78;2229:9;;2222:78;;2255:8;;;;:::i;:::-;;-1:-1:-1;2278:10:0;;-1:-1:-1;2286:2:0;2278:10;;:::i;:::-;;;2222:78;;;2310:19;2342:6;2332:17;;;;;;-1:-1:-1;;;2332:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2332:17:0;;2310:39;;2360:154;2367:10;;2360:154;;2394:11;2404:1;2394:11;;:::i;:::-;;-1:-1:-1;2463:10:0;2471:2;2463:5;:10;:::i;:::-;2450:24;;:2;:24;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;-1:-1:-1;;;2420:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;2420:56:0;;;;;;;;-1:-1:-1;2491:11:0;2500:2;2491:11;;:::i;:::-;;;2360:154;;32316:110;32392:26;32402:2;32406:7;32392:26;;;;;;;;;;;;:9;:26::i;36674:799::-;36829:4;-1:-1:-1;;;;;36850:13:0;;8540:19;:23;36846:620;;36886:72;;-1:-1:-1;;;36886:72:0;;-1:-1:-1;;;;;36886:36:0;;;;;:72;;4348:10;;36937:4;;36943:7;;36952:5;;36886:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36886:72:0;;;;;;;;-1:-1:-1;;36886:72:0;;;;;;;;;;;;:::i;:::-;;;36882:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37128:13:0;;37124:272;;37171:60;;-1:-1:-1;;;37171:60:0;;;;;;;:::i;37124:272::-;37346:6;37340:13;37331:6;37327:2;37323:15;37316:38;36882:529;-1:-1:-1;;;;;;37009:51:0;-1:-1:-1;;;37009:51:0;;-1:-1:-1;37002:58:0;;36846:620;-1:-1:-1;37450:4:0;36674:799;;;;;;:::o;32653:321::-;32783:18;32789:2;32793:7;32783:5;:18::i;:::-;32834:54;32865:1;32869:2;32873:7;32882:5;32834:22;:54::i;:::-;32812:154;;;;-1:-1:-1;;;32812:154:0;;;;;;;:::i;33310:439::-;-1:-1:-1;;;;;33390:16:0;;33382:61;;;;-1:-1:-1;;;33382:61:0;;11293:2:1;33382:61:0;;;11275:21:1;;;11312:18;;;11305:30;11371:34;11351:18;;;11344:62;11423:18;;33382:61:0;11265:182:1;33382:61:0;31397:4;31421:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31421:16:0;:30;33454:58;;;;-1:-1:-1;;;33454:58:0;;7481:2:1;33454:58:0;;;7463:21:1;7520:2;7500:18;;;7493:30;7559;7539:18;;;7532:58;7607:18;;33454:58:0;7453:178:1;33454:58:0;-1:-1:-1;;;;;33583:13:0;;;;;;:9;:13;;;;;:18;;33600:1;;33583:13;:18;;33600:1;;33583:18;:::i;:::-;;;;-1:-1:-1;;33612:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33612:21:0;-1:-1:-1;;;;;33612:21:0;;;;;;;;33651:33;;33612:16;;;33651:33;;33612:16;;33651:33;33697:44;27601:411;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;828:196;;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;1029:270::-;;;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;;;;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;;;;;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;;2002:2;1991:9;1987:18;1974:32;1964:42;;2057:2;2046:9;2042:18;2029:32;2084:18;2076:6;2073:30;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:1;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:367::-;;;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2649:5;2642:13;2635:21;2628:5;2625:32;2615:2;;2676:6;2668;2661:22;2615:2;2704:5;2694:15;;;2432:283;;;;;:::o;2720:264::-;;;2849:2;2837:9;2828:7;2824:23;2820:32;2817:2;;;2870:6;2862;2855:22;2817:2;2898:29;2917:9;2898:29;:::i;:::-;2888:39;2974:2;2959:18;;;;2946:32;;-1:-1:-1;;;2807:177:1:o;2989:255::-;;3100:2;3088:9;3079:7;3075:23;3071:32;3068:2;;;3121:6;3113;3106:22;3068:2;3165:9;3152:23;3184:30;3208:5;3184:30;:::i;3249:259::-;;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:30;3472:5;3448:30;:::i;3513:480::-;;3635:2;3623:9;3614:7;3610:23;3606:32;3603:2;;;3656:6;3648;3641:22;3603:2;3701:9;3688:23;3734:18;3726:6;3723:30;3720:2;;;3771:6;3763;3756:22;3720:2;3799:22;;3852:4;3844:13;;3840:27;-1:-1:-1;3830:2:1;;3886:6;3878;3871:22;3830:2;3914:73;3979:7;3974:2;3961:16;3956:2;3952;3948:11;3914:73;:::i;3998:190::-;;4110:2;4098:9;4089:7;4085:23;4081:32;4078:2;;;4131:6;4123;4116:22;4078:2;-1:-1:-1;4159:23:1;;4068:120;-1:-1:-1;4068:120:1:o;4193:257::-;;4272:5;4266:12;4299:6;4294:3;4287:19;4315:63;4371:6;4364:4;4359:3;4355:14;4348:4;4341:5;4337:16;4315:63;:::i;:::-;4432:2;4411:15;-1:-1:-1;;4407:29:1;4398:39;;;;4439:4;4394:50;;4242:208;-1:-1:-1;;4242:208:1:o;4455:470::-;;4672:6;4666:13;4688:53;4734:6;4729:3;4722:4;4714:6;4710:17;4688:53;:::i;:::-;4804:13;;4763:16;;;;4826:57;4804:13;4763:16;4860:4;4848:17;;4826:57;:::i;:::-;4899:20;;4642:283;-1:-1:-1;;;;4642:283:1:o;5138:488::-;-1:-1:-1;;;;;5407:15:1;;;5389:34;;5459:15;;5454:2;5439:18;;5432:43;5506:2;5491:18;;5484:34;;;5554:3;5549:2;5534:18;;5527:31;;;5138:488;;5575:45;;5600:19;;5592:6;5575:45;:::i;:::-;5567:53;5341:285;-1:-1:-1;;;;;;5341:285:1:o;5823:219::-;;5972:2;5961:9;5954:21;5992:44;6032:2;6021:9;6017:18;6009:6;5992:44;:::i;6047:414::-;6249:2;6231:21;;;6288:2;6268:18;;;6261:30;6327:34;6322:2;6307:18;;6300:62;-1:-1:-1;;;6393:2:1;6378:18;;6371:48;6451:3;6436:19;;6221:240::o;12268:356::-;12470:2;12452:21;;;12489:18;;;12482:30;12548:34;12543:2;12528:18;;12521:62;12615:2;12600:18;;12442:182::o;13447:413::-;13649:2;13631:21;;;13688:2;13668:18;;;13661:30;13727:34;13722:2;13707:18;;13700:62;-1:-1:-1;;;13793:2:1;13778:18;;13771:47;13850:3;13835:19;;13621:239::o;14047:128::-;;14118:1;14114:6;14111:1;14108:13;14105:2;;;14124:18;;:::i;:::-;-1:-1:-1;14160:9:1;;14095:80::o;14180:120::-;;14246:1;14236:2;;14251:18;;:::i;:::-;-1:-1:-1;14285:9:1;;14226:74::o;14305:168::-;;14411:1;14407;14403:6;14399:14;14396:1;14393:21;14388:1;14381:9;14374:17;14370:45;14367:2;;;14418:18;;:::i;:::-;-1:-1:-1;14458:9:1;;14357:116::o;14478:125::-;;14546:1;14543;14540:8;14537:2;;;14551:18;;:::i;:::-;-1:-1:-1;14588:9:1;;14527:76::o;14608:258::-;14680:1;14690:113;14704:6;14701:1;14698:13;14690:113;;;14780:11;;;14774:18;14761:11;;;14754:39;14726:2;14719:10;14690:113;;;14821:6;14818:1;14815:13;14812:2;;;-1:-1:-1;;14856:1:1;14838:16;;14831:27;14661:205::o;14871:380::-;14956:1;14946:12;;15003:1;14993:12;;;15014:2;;15068:4;15060:6;15056:17;15046:27;;15014:2;15121;15113:6;15110:14;15090:18;15087:38;15084:2;;;15167:10;15162:3;15158:20;15155:1;15148:31;15202:4;15199:1;15192:15;15230:4;15227:1;15220:15;15084:2;;14926:325;;;:::o;15256:135::-;;-1:-1:-1;;15316:17:1;;15313:2;;;15336:18;;:::i;:::-;-1:-1:-1;15383:1:1;15372:13;;15303:88::o;15396:112::-;;15454:1;15444:2;;15459:18;;:::i;:::-;-1:-1:-1;15493:9:1;;15434:74::o;15513:127::-;15574:10;15569:3;15565:20;15562:1;15555:31;15605:4;15602:1;15595:15;15629:4;15626:1;15619:15;15645:127;15706:10;15701:3;15697:20;15694:1;15687:31;15737:4;15734:1;15727:15;15761:4;15758:1;15751:15;15777:127;15838:10;15833:3;15829:20;15826:1;15819:31;15869:4;15866:1;15859:15;15893:4;15890:1;15883:15;15909:131;-1:-1:-1;;;;;;15983:32:1;;15973:43;;15963:2;;16030:1;16027;16020:12

Swarm Source

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