ETH Price: $3,486.55 (+3.58%)
Gas: 2 Gwei

Token

AVENFT (AVENFT)
 

Overview

Max Total Supply

87 AVENFT

Holders

51

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
*anon👤️.eth
Balance
1 AVENFT
0x2233fd34b053bda9b34e3f645e70ce80404521c1
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:
AvenNFT

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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






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




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




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

















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







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





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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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









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


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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







/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        external
        view
        returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}


/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721.balanceOf(owner),
            "ERC721Enumerable: owner index out of bounds"
        );
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721Enumerable.totalSupply(),
            "ERC721Enumerable: global index out of bounds"
        );
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId)
        private
    {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}







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

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

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

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

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

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

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

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


contract AvenNFT is ERC721Enumerable, Ownable {
    using Strings for uint256;

    string public baseURI;
    string public baseExtension = ".json";
    uint256 public cost = 0.2 ether;
    uint256 public maxSupply = 530;
    uint256 public maxMintAmount = 5;
    uint256 public maxMintPerWallet = 5;
    bool public paused = false;
    mapping(address => bool) public founderWallets;
    address public initialFounderNFTsHolder = 0xCAa1967EB79CB8c35beE53eF80Cdd80414a29fAF;
    uint256 founderWalletLimit = 30;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI
    ) ERC721(_name, _symbol) {
        setBaseURI(_initBaseURI);
        mint(initialFounderNFTsHolder, founderWalletLimit);
    }

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

    // public
    function mint(address _to, uint256 _mintAmount) public payable {
        uint256 supply = totalSupply();
        require(!paused);
        require(_mintAmount > 0);
        require(supply + _mintAmount <= maxSupply);

        if(_to != initialFounderNFTsHolder) {
            require(_mintAmount <= maxMintAmount);
            require(walletOfOwner(msg.sender).length < maxMintPerWallet);
        }

        if (msg.sender != owner()) {
            require(msg.value >= cost * _mintAmount);
        }

        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(_to, supply + i);
        }
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

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

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

    function isFounder(address _account) public view returns (bool) {
        uint256[] memory tokenIds = walletOfOwner(_account);
        
        for (uint256 i; i < tokenIds.length; i++) {
            if(tokenIds[i] <= founderWalletLimit) {
                return true;
            }
        }

        return false;
    }

    //only owner
    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

    function setmaxMintPerWallet(uint256 _maxMintPerWallet) public onlyOwner {
        maxMintPerWallet = _maxMintPerWallet;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

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

    function updateFounderWallets(address[] memory _accounts, bool _state) public onlyOwner {
        for (uint256 i = 0; i < _accounts.length; i++) {
            founderWallets[_accounts[i]] = _state;
        }
    }

    function withdraw() public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"founderWallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialFounderNFTsHolder","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":[{"internalType":"address","name":"_account","type":"address"}],"name":"isFounder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintPerWallet","type":"uint256"}],"name":"setmaxMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address[]","name":"_accounts","type":"address[]"},{"internalType":"bool","name":"_state","type":"bool"}],"name":"updateFounderWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608090815264173539b7b760d91b60a052600c9062000026908262000b3c565b506702c68af0bb140000600d55610212600e556005600f8190556010556011805460ff19169055601380546001600160a01b03191673caa1967eb79cb8c35bee53ef80cdd80414a29faf179055601e6014553480156200008557600080fd5b506040516200345a3803806200345a833981016040819052620000a89162000cbf565b82826000620000b8838262000b3c565b506001620000c7828262000b3c565b505050620000e4620000de6200011360201b60201c565b62000117565b620000ef8162000169565b6013546014546200010a916001600160a01b031690620001db565b50505062000e7d565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600b620001d7828262000b3c565b5050565b6000620001e760085490565b60115490915060ff1615620001fb57600080fd5b600082116200020957600080fd5b600e5462000218838362000d66565b11156200022457600080fd5b6013546001600160a01b038481169116146200026457600f548211156200024a57600080fd5b6010546200025833620002d1565b51106200026457600080fd5b600a546001600160a01b03163314620002945781600d5462000287919062000d7c565b3410156200029457600080fd5b60015b828111620002cb57620002b684620002b0838562000d66565b62000381565b80620002c28162000d96565b91505062000297565b50505050565b60606000620002e083620003a3565b90506000816001600160401b03811115620002ff57620002ff62000a98565b60405190808252806020026020018201604052801562000329578160200160208202803683370190505b50905060005b8281101562000379576200034485826200042c565b82828151811062000359576200035962000db2565b602090810291909101015280620003708162000d96565b9150506200032f565b509392505050565b620001d7828260405180602001604052806000815250620004d460201b60201c565b60006001600160a01b038216620004105760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401620001c0565b506001600160a01b031660009081526003602052604090205490565b60006200044483620003a360201b62000f611760201c565b8210620004a85760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401620001c0565b506001600160a01b03821660009081526006602090815260408083208484529091529020545b92915050565b620004e083836200054c565b620004ef6000848484620006a2565b620005475760405162461bcd60e51b815260206004820152603260248201526000805160206200343a83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001c0565b505050565b6001600160a01b038216620005a45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401620001c0565b6000818152600260205260409020546001600160a01b0316156200060b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620001c0565b6200061960008383620007fe565b6001600160a01b03821660009081526003602052604081208054600192906200064490849062000d66565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000620006c3846001600160a01b0316620008da60201b6200136d1760201c565b15620007f257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290620006fd90339089908890889060040162000dc8565b6020604051808303816000875af19250505080156200073b575060408051601f3d908101601f19168201909252620007389181019062000e1e565b60015b620007d7573d8080156200076c576040519150601f19603f3d011682016040523d82523d6000602084013e62000771565b606091505b508051600003620007cf5760405162461bcd60e51b815260206004820152603260248201526000805160206200343a83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001c0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620007f6565b5060015b949350505050565b620008168383836200054760201b620009b61760201c565b6001600160a01b03831662000874576200086e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6200089a565b816001600160a01b0316836001600160a01b0316146200089a576200089a8382620008e0565b6001600160a01b038216620008b45762000547816200098d565b826001600160a01b0316826001600160a01b031614620005475762000547828262000a47565b3b151590565b60006001620008fa84620003a360201b62000f611760201c565b62000906919062000e51565b6000838152600760205260409020549091508082146200095a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090620009a19060019062000e51565b60008381526009602052604081205460088054939450909284908110620009cc57620009cc62000db2565b906000526020600020015490508060088381548110620009f057620009f062000db2565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548062000a2b5762000a2b62000e67565b6001900381819060005260206000200160009055905550505050565b600062000a5f83620003a360201b62000f611760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168062000ac357607f821691505b60208210810362000ae457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200054757600081815260208120601f850160051c8101602086101562000b135750805b601f850160051c820191505b8181101562000b345782815560010162000b1f565b505050505050565b81516001600160401b0381111562000b585762000b5862000a98565b62000b708162000b69845462000aae565b8462000aea565b602080601f83116001811462000ba8576000841562000b8f5750858301515b600019600386901b1c1916600185901b17855562000b34565b600085815260208120601f198616915b8281101562000bd95788860151825594840194600190910190840162000bb8565b508582101562000bf85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60005b8381101562000c2557818101518382015260200162000c0b565b50506000910152565b600082601f83011262000c4057600080fd5b81516001600160401b038082111562000c5d5762000c5d62000a98565b604051601f8301601f19908116603f0116810190828211818310171562000c885762000c8862000a98565b8160405283815286602085880101111562000ca257600080fd5b62000cb584602083016020890162000c08565b9695505050505050565b60008060006060848603121562000cd557600080fd5b83516001600160401b038082111562000ced57600080fd5b62000cfb8783880162000c2e565b9450602086015191508082111562000d1257600080fd5b62000d208783880162000c2e565b9350604086015191508082111562000d3757600080fd5b5062000d468682870162000c2e565b9150509250925092565b634e487b7160e01b600052601160045260246000fd5b80820180821115620004ce57620004ce62000d50565b8082028115828204841417620004ce57620004ce62000d50565b60006001820162000dab5762000dab62000d50565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000e078160a085016020870162000c08565b601f01601f19169190910160a00195945050505050565b60006020828403121562000e3157600080fd5b81516001600160e01b03198116811462000e4a57600080fd5b9392505050565b81810381811115620004ce57620004ce62000d50565b634e487b7160e01b600052603160045260246000fd5b6125ad8062000e8d6000396000f3fe6080604052600436106102305760003560e01c80635c975abb1161012e578063a22cb465116100ab578063c87b56dd1161006f578063c87b56dd1461064f578063d5abeb011461066f578063da3ef23f14610685578063e985e9c5146106a5578063f2fde38b146106ee57600080fd5b8063a22cb465146105c4578063b228d925146105e4578063b88d4fde146105fa578063c66828621461061a578063c7b578411461062f57600080fd5b8063715018a6116100f2578063715018a61461053c5780637dcc04ee146105515780637f00c7a6146105715780638da5cb5b1461059157806395d89b41146105af57600080fd5b80635c975abb146104ad5780636352211e146104c75780636a2dae07146104e75780636c0360eb1461050757806370a082311461051c57600080fd5b806323b872dd116101bc578063438b630011610180578063438b63001461040057806344a0d68a1461042d5780634bcc226f1461044d5780634f6ccce71461046d57806355f804b31461048d57600080fd5b806323b872dd146103855780632f745c59146103a55780633ccfd60b146103c557806340c10f19146103cd57806342842e0e146103e057600080fd5b8063095ea7b311610203578063095ea7b3146102e65780630966cb9f1461030657806313faede61461033657806318160ddd1461035a578063239c70ae1461036f57600080fd5b806301ffc9a71461023557806302329a291461026a57806306fdde031461028c578063081812fc146102ae575b600080fd5b34801561024157600080fd5b50610255610250366004611d62565b61070e565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061028a610285366004611d94565b610739565b005b34801561029857600080fd5b506102a161077f565b6040516102619190611dff565b3480156102ba57600080fd5b506102ce6102c9366004611e12565b610811565b6040516001600160a01b039091168152602001610261565b3480156102f257600080fd5b5061028a610301366004611e42565b6108a6565b34801561031257600080fd5b50610255610321366004611e6c565b60126020526000908152604090205460ff1681565b34801561034257600080fd5b5061034c600d5481565b604051908152602001610261565b34801561036657600080fd5b5060085461034c565b34801561037b57600080fd5b5061034c600f5481565b34801561039157600080fd5b5061028a6103a0366004611e87565b6109bb565b3480156103b157600080fd5b5061034c6103c0366004611e42565b6109ec565b61028a610a82565b61028a6103db366004611e42565b610b04565b3480156103ec57600080fd5b5061028a6103fb366004611e87565b610be3565b34801561040c57600080fd5b5061042061041b366004611e6c565b610bfe565b6040516102619190611ec3565b34801561043957600080fd5b5061028a610448366004611e12565b610ca0565b34801561045957600080fd5b5061028a610468366004611f4e565b610ccf565b34801561047957600080fd5b5061034c610488366004611e12565b610d60565b34801561049957600080fd5b5061028a6104a8366004612065565b610df3565b3480156104b957600080fd5b506011546102559060ff1681565b3480156104d357600080fd5b506102ce6104e2366004611e12565b610e2d565b3480156104f357600080fd5b5061028a610502366004611e12565b610ea4565b34801561051357600080fd5b506102a1610ed3565b34801561052857600080fd5b5061034c610537366004611e6c565b610f61565b34801561054857600080fd5b5061028a610fe8565b34801561055d57600080fd5b506013546102ce906001600160a01b031681565b34801561057d57600080fd5b5061028a61058c366004611e12565b61101e565b34801561059d57600080fd5b50600a546001600160a01b03166102ce565b3480156105bb57600080fd5b506102a161104d565b3480156105d057600080fd5b5061028a6105df3660046120ae565b61105c565b3480156105f057600080fd5b5061034c60105481565b34801561060657600080fd5b5061028a6106153660046120e1565b611120565b34801561062657600080fd5b506102a1611152565b34801561063b57600080fd5b5061025561064a366004611e6c565b61115f565b34801561065b57600080fd5b506102a161066a366004611e12565b6111c1565b34801561067b57600080fd5b5061034c600e5481565b34801561069157600080fd5b5061028a6106a0366004612065565b61129f565b3480156106b157600080fd5b506102556106c036600461215d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106fa57600080fd5b5061028a610709366004611e6c565b6112d5565b60006001600160e01b0319821663780e9d6360e01b1480610733575061073382611373565b92915050565b600a546001600160a01b0316331461076c5760405162461bcd60e51b815260040161076390612187565b60405180910390fd5b6011805460ff1916911515919091179055565b60606000805461078e906121bc565b80601f01602080910402602001604051908101604052809291908181526020018280546107ba906121bc565b80156108075780601f106107dc57610100808354040283529160200191610807565b820191906000526020600020905b8154815290600101906020018083116107ea57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661088a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610763565b506000908152600460205260409020546001600160a01b031690565b60006108b182610e2d565b9050806001600160a01b0316836001600160a01b03160361091e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610763565b336001600160a01b038216148061093a575061093a81336106c0565b6109ac5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610763565b6109b683836113c3565b505050565b6109c53382611431565b6109e15760405162461bcd60e51b8152600401610763906121f6565b6109b6838383611528565b60006109f783610f61565b8210610a595760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610763565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610aac5760405162461bcd60e51b815260040161076390612187565b604051600090339047908381818185875af1925050503d8060008114610aee576040519150601f19603f3d011682016040523d82523d6000602084013e610af3565b606091505b5050905080610b0157600080fd5b50565b6000610b0f60085490565b60115490915060ff1615610b2257600080fd5b60008211610b2f57600080fd5b600e54610b3c838361225d565b1115610b4757600080fd5b6013546001600160a01b03848116911614610b8257600f54821115610b6b57600080fd5b601054610b7733610bfe565b5110610b8257600080fd5b600a546001600160a01b03163314610bae5781600d54610ba29190612270565b341015610bae57600080fd5b60015b828111610bdd57610bcb84610bc6838561225d565b6116d3565b80610bd581612287565b915050610bb1565b50505050565b6109b683838360405180602001604052806000815250611120565b60606000610c0b83610f61565b905060008167ffffffffffffffff811115610c2857610c28611f07565b604051908082528060200260200182016040528015610c51578160200160208202803683370190505b50905060005b82811015610c9857610c6985826109ec565b828281518110610c7b57610c7b6122a0565b602090810291909101015280610c9081612287565b915050610c57565b509392505050565b600a546001600160a01b03163314610cca5760405162461bcd60e51b815260040161076390612187565b600d55565b600a546001600160a01b03163314610cf95760405162461bcd60e51b815260040161076390612187565b60005b82518110156109b6578160126000858481518110610d1c57610d1c6122a0565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610d5881612287565b915050610cfc565b6000610d6b60085490565b8210610dce5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610763565b60088281548110610de157610de16122a0565b90600052602060002001549050919050565b600a546001600160a01b03163314610e1d5760405162461bcd60e51b815260040161076390612187565b600b610e298282612304565b5050565b6000818152600260205260408120546001600160a01b0316806107335760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610763565b600a546001600160a01b03163314610ece5760405162461bcd60e51b815260040161076390612187565b601055565b600b8054610ee0906121bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0c906121bc565b8015610f595780601f10610f2e57610100808354040283529160200191610f59565b820191906000526020600020905b815481529060010190602001808311610f3c57829003601f168201915b505050505081565b60006001600160a01b038216610fcc5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610763565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110125760405162461bcd60e51b815260040161076390612187565b61101c60006116ed565b565b600a546001600160a01b031633146110485760405162461bcd60e51b815260040161076390612187565b600f55565b60606001805461078e906121bc565b336001600160a01b038316036110b45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610763565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61112a3383611431565b6111465760405162461bcd60e51b8152600401610763906121f6565b610bdd8484848461173f565b600c8054610ee0906121bc565b60008061116b83610bfe565b905060005b81518110156111b75760145482828151811061118e5761118e6122a0565b6020026020010151116111a5575060019392505050565b806111af81612287565b915050611170565b5060009392505050565b6000818152600260205260409020546060906001600160a01b03166112405760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610763565b600061124a611772565b9050600081511161126a5760405180602001604052806000815250611298565b8061127484611781565b600c604051602001611288939291906123c4565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146112c95760405162461bcd60e51b815260040161076390612187565b600c610e298282612304565b600a546001600160a01b031633146112ff5760405162461bcd60e51b815260040161076390612187565b6001600160a01b0381166113645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610763565b610b01816116ed565b3b151590565b60006001600160e01b031982166380ac58cd60e01b14806113a457506001600160e01b03198216635b5e139f60e01b145b8061073357506301ffc9a760e01b6001600160e01b0319831614610733565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113f882610e2d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114aa5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610763565b60006114b583610e2d565b9050806001600160a01b0316846001600160a01b031614806114f05750836001600160a01b03166114e584610811565b6001600160a01b0316145b8061152057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661153b82610e2d565b6001600160a01b0316146115a35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610763565b6001600160a01b0382166116055760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610763565b611610838383611882565b61161b6000826113c3565b6001600160a01b0383166000908152600360205260408120805460019290611644908490612464565b90915550506001600160a01b038216600090815260036020526040812080546001929061167290849061225d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610e2982826040518060200160405280600081525061193a565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61174a848484611528565b6117568484848461196d565b610bdd5760405162461bcd60e51b815260040161076390612477565b6060600b805461078e906121bc565b6060816000036117a85750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117d257806117bc81612287565b91506117cb9050600a836124df565b91506117ac565b60008167ffffffffffffffff8111156117ed576117ed611f07565b6040519080825280601f01601f191660200182016040528015611817576020820181803683370190505b5090505b84156115205761182c600183612464565b9150611839600a866124f3565b61184490603061225d565b60f81b818381518110611859576118596122a0565b60200101906001600160f81b031916908160001a90535061187b600a866124df565b945061181b565b6001600160a01b0383166118dd576118d881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611900565b816001600160a01b0316836001600160a01b031614611900576119008382611a6e565b6001600160a01b038216611917576109b681611b0b565b826001600160a01b0316826001600160a01b0316146109b6576109b68282611bba565b6119448383611bfe565b611951600084848461196d565b6109b65760405162461bcd60e51b815260040161076390612477565b60006001600160a01b0384163b15611a6357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119b1903390899088908890600401612507565b6020604051808303816000875af19250505080156119ec575060408051601f3d908101601f191682019092526119e991810190612544565b60015b611a49573d808015611a1a576040519150601f19603f3d011682016040523d82523d6000602084013e611a1f565b606091505b508051600003611a415760405162461bcd60e51b815260040161076390612477565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611520565b506001949350505050565b60006001611a7b84610f61565b611a859190612464565b600083815260076020526040902054909150808214611ad8576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611b1d90600190612464565b60008381526009602052604081205460088054939450909284908110611b4557611b456122a0565b906000526020600020015490508060088381548110611b6657611b666122a0565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b9e57611b9e612561565b6001900381819060005260206000200160009055905550505050565b6000611bc583610f61565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611c545760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610763565b6000818152600260205260409020546001600160a01b031615611cb95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610763565b611cc560008383611882565b6001600160a01b0382166000908152600360205260408120805460019290611cee90849061225d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610b0157600080fd5b600060208284031215611d7457600080fd5b813561129881611d4c565b80358015158114611d8f57600080fd5b919050565b600060208284031215611da657600080fd5b61129882611d7f565b60005b83811015611dca578181015183820152602001611db2565b50506000910152565b60008151808452611deb816020860160208601611daf565b601f01601f19169290920160200192915050565b6020815260006112986020830184611dd3565b600060208284031215611e2457600080fd5b5035919050565b80356001600160a01b0381168114611d8f57600080fd5b60008060408385031215611e5557600080fd5b611e5e83611e2b565b946020939093013593505050565b600060208284031215611e7e57600080fd5b61129882611e2b565b600080600060608486031215611e9c57600080fd5b611ea584611e2b565b9250611eb360208501611e2b565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b81811015611efb57835183529284019291840191600101611edf565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611f4657611f46611f07565b604052919050565b60008060408385031215611f6157600080fd5b823567ffffffffffffffff80821115611f7957600080fd5b818501915085601f830112611f8d57600080fd5b8135602082821115611fa157611fa1611f07565b8160051b9250611fb2818401611f1d565b8281529284018101928181019089851115611fcc57600080fd5b948201945b84861015611ff157611fe286611e2b565b82529482019490820190611fd1565b96506120009050878201611d7f565b9450505050509250929050565b600067ffffffffffffffff83111561202757612027611f07565b61203a601f8401601f1916602001611f1d565b905082815283838301111561204e57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561207757600080fd5b813567ffffffffffffffff81111561208e57600080fd5b8201601f8101841361209f57600080fd5b6115208482356020840161200d565b600080604083850312156120c157600080fd5b6120ca83611e2b565b91506120d860208401611d7f565b90509250929050565b600080600080608085870312156120f757600080fd5b61210085611e2b565b935061210e60208601611e2b565b925060408501359150606085013567ffffffffffffffff81111561213157600080fd5b8501601f8101871361214257600080fd5b6121518782356020840161200d565b91505092959194509250565b6000806040838503121561217057600080fd5b61217983611e2b565b91506120d860208401611e2b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806121d057607f821691505b6020821081036121f057634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561073357610733612247565b808202811582820484141761073357610733612247565b60006001820161229957612299612247565b5060010190565b634e487b7160e01b600052603260045260246000fd5b601f8211156109b657600081815260208120601f850160051c810160208610156122dd5750805b601f850160051c820191505b818110156122fc578281556001016122e9565b505050505050565b815167ffffffffffffffff81111561231e5761231e611f07565b6123328161232c84546121bc565b846122b6565b602080601f831160018114612367576000841561234f5750858301515b600019600386901b1c1916600185901b1785556122fc565b600085815260208120601f198616915b8281101561239657888601518255948401946001909101908401612377565b50858210156123b45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000845160206123d78285838a01611daf565b8551918401916123ea8184848a01611daf565b85549201916000906123fb816121bc565b60018281168015612413576001811461242857612454565b60ff1984168752821515830287019450612454565b896000528560002060005b8481101561244c57815489820152908301908701612433565b505082870194505b50929a9950505050505050505050565b8181038181111561073357610733612247565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826124ee576124ee6124c9565b500490565b600082612502576125026124c9565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061253a90830184611dd3565b9695505050505050565b60006020828403121561255657600080fd5b815161129881611d4c565b634e487b7160e01b600052603160045260246000fdfea26469706673582212203bf0e2db07562f9bfaf89b359d17de317a80d9acb9778b6d307e01881341fc4e64736f6c634300081100334552433732313a207472616e7366657220746f206e6f6e204552433732315265000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000064156454e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064156454e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656968727278676f647a73676b6c32786b6f65683762796661323273766e377164716866746874346d6f756678627672326b6767366d2f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102305760003560e01c80635c975abb1161012e578063a22cb465116100ab578063c87b56dd1161006f578063c87b56dd1461064f578063d5abeb011461066f578063da3ef23f14610685578063e985e9c5146106a5578063f2fde38b146106ee57600080fd5b8063a22cb465146105c4578063b228d925146105e4578063b88d4fde146105fa578063c66828621461061a578063c7b578411461062f57600080fd5b8063715018a6116100f2578063715018a61461053c5780637dcc04ee146105515780637f00c7a6146105715780638da5cb5b1461059157806395d89b41146105af57600080fd5b80635c975abb146104ad5780636352211e146104c75780636a2dae07146104e75780636c0360eb1461050757806370a082311461051c57600080fd5b806323b872dd116101bc578063438b630011610180578063438b63001461040057806344a0d68a1461042d5780634bcc226f1461044d5780634f6ccce71461046d57806355f804b31461048d57600080fd5b806323b872dd146103855780632f745c59146103a55780633ccfd60b146103c557806340c10f19146103cd57806342842e0e146103e057600080fd5b8063095ea7b311610203578063095ea7b3146102e65780630966cb9f1461030657806313faede61461033657806318160ddd1461035a578063239c70ae1461036f57600080fd5b806301ffc9a71461023557806302329a291461026a57806306fdde031461028c578063081812fc146102ae575b600080fd5b34801561024157600080fd5b50610255610250366004611d62565b61070e565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061028a610285366004611d94565b610739565b005b34801561029857600080fd5b506102a161077f565b6040516102619190611dff565b3480156102ba57600080fd5b506102ce6102c9366004611e12565b610811565b6040516001600160a01b039091168152602001610261565b3480156102f257600080fd5b5061028a610301366004611e42565b6108a6565b34801561031257600080fd5b50610255610321366004611e6c565b60126020526000908152604090205460ff1681565b34801561034257600080fd5b5061034c600d5481565b604051908152602001610261565b34801561036657600080fd5b5060085461034c565b34801561037b57600080fd5b5061034c600f5481565b34801561039157600080fd5b5061028a6103a0366004611e87565b6109bb565b3480156103b157600080fd5b5061034c6103c0366004611e42565b6109ec565b61028a610a82565b61028a6103db366004611e42565b610b04565b3480156103ec57600080fd5b5061028a6103fb366004611e87565b610be3565b34801561040c57600080fd5b5061042061041b366004611e6c565b610bfe565b6040516102619190611ec3565b34801561043957600080fd5b5061028a610448366004611e12565b610ca0565b34801561045957600080fd5b5061028a610468366004611f4e565b610ccf565b34801561047957600080fd5b5061034c610488366004611e12565b610d60565b34801561049957600080fd5b5061028a6104a8366004612065565b610df3565b3480156104b957600080fd5b506011546102559060ff1681565b3480156104d357600080fd5b506102ce6104e2366004611e12565b610e2d565b3480156104f357600080fd5b5061028a610502366004611e12565b610ea4565b34801561051357600080fd5b506102a1610ed3565b34801561052857600080fd5b5061034c610537366004611e6c565b610f61565b34801561054857600080fd5b5061028a610fe8565b34801561055d57600080fd5b506013546102ce906001600160a01b031681565b34801561057d57600080fd5b5061028a61058c366004611e12565b61101e565b34801561059d57600080fd5b50600a546001600160a01b03166102ce565b3480156105bb57600080fd5b506102a161104d565b3480156105d057600080fd5b5061028a6105df3660046120ae565b61105c565b3480156105f057600080fd5b5061034c60105481565b34801561060657600080fd5b5061028a6106153660046120e1565b611120565b34801561062657600080fd5b506102a1611152565b34801561063b57600080fd5b5061025561064a366004611e6c565b61115f565b34801561065b57600080fd5b506102a161066a366004611e12565b6111c1565b34801561067b57600080fd5b5061034c600e5481565b34801561069157600080fd5b5061028a6106a0366004612065565b61129f565b3480156106b157600080fd5b506102556106c036600461215d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106fa57600080fd5b5061028a610709366004611e6c565b6112d5565b60006001600160e01b0319821663780e9d6360e01b1480610733575061073382611373565b92915050565b600a546001600160a01b0316331461076c5760405162461bcd60e51b815260040161076390612187565b60405180910390fd5b6011805460ff1916911515919091179055565b60606000805461078e906121bc565b80601f01602080910402602001604051908101604052809291908181526020018280546107ba906121bc565b80156108075780601f106107dc57610100808354040283529160200191610807565b820191906000526020600020905b8154815290600101906020018083116107ea57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661088a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610763565b506000908152600460205260409020546001600160a01b031690565b60006108b182610e2d565b9050806001600160a01b0316836001600160a01b03160361091e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610763565b336001600160a01b038216148061093a575061093a81336106c0565b6109ac5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610763565b6109b683836113c3565b505050565b6109c53382611431565b6109e15760405162461bcd60e51b8152600401610763906121f6565b6109b6838383611528565b60006109f783610f61565b8210610a595760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610763565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610aac5760405162461bcd60e51b815260040161076390612187565b604051600090339047908381818185875af1925050503d8060008114610aee576040519150601f19603f3d011682016040523d82523d6000602084013e610af3565b606091505b5050905080610b0157600080fd5b50565b6000610b0f60085490565b60115490915060ff1615610b2257600080fd5b60008211610b2f57600080fd5b600e54610b3c838361225d565b1115610b4757600080fd5b6013546001600160a01b03848116911614610b8257600f54821115610b6b57600080fd5b601054610b7733610bfe565b5110610b8257600080fd5b600a546001600160a01b03163314610bae5781600d54610ba29190612270565b341015610bae57600080fd5b60015b828111610bdd57610bcb84610bc6838561225d565b6116d3565b80610bd581612287565b915050610bb1565b50505050565b6109b683838360405180602001604052806000815250611120565b60606000610c0b83610f61565b905060008167ffffffffffffffff811115610c2857610c28611f07565b604051908082528060200260200182016040528015610c51578160200160208202803683370190505b50905060005b82811015610c9857610c6985826109ec565b828281518110610c7b57610c7b6122a0565b602090810291909101015280610c9081612287565b915050610c57565b509392505050565b600a546001600160a01b03163314610cca5760405162461bcd60e51b815260040161076390612187565b600d55565b600a546001600160a01b03163314610cf95760405162461bcd60e51b815260040161076390612187565b60005b82518110156109b6578160126000858481518110610d1c57610d1c6122a0565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610d5881612287565b915050610cfc565b6000610d6b60085490565b8210610dce5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610763565b60088281548110610de157610de16122a0565b90600052602060002001549050919050565b600a546001600160a01b03163314610e1d5760405162461bcd60e51b815260040161076390612187565b600b610e298282612304565b5050565b6000818152600260205260408120546001600160a01b0316806107335760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610763565b600a546001600160a01b03163314610ece5760405162461bcd60e51b815260040161076390612187565b601055565b600b8054610ee0906121bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0c906121bc565b8015610f595780601f10610f2e57610100808354040283529160200191610f59565b820191906000526020600020905b815481529060010190602001808311610f3c57829003601f168201915b505050505081565b60006001600160a01b038216610fcc5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610763565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110125760405162461bcd60e51b815260040161076390612187565b61101c60006116ed565b565b600a546001600160a01b031633146110485760405162461bcd60e51b815260040161076390612187565b600f55565b60606001805461078e906121bc565b336001600160a01b038316036110b45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610763565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61112a3383611431565b6111465760405162461bcd60e51b8152600401610763906121f6565b610bdd8484848461173f565b600c8054610ee0906121bc565b60008061116b83610bfe565b905060005b81518110156111b75760145482828151811061118e5761118e6122a0565b6020026020010151116111a5575060019392505050565b806111af81612287565b915050611170565b5060009392505050565b6000818152600260205260409020546060906001600160a01b03166112405760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610763565b600061124a611772565b9050600081511161126a5760405180602001604052806000815250611298565b8061127484611781565b600c604051602001611288939291906123c4565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146112c95760405162461bcd60e51b815260040161076390612187565b600c610e298282612304565b600a546001600160a01b031633146112ff5760405162461bcd60e51b815260040161076390612187565b6001600160a01b0381166113645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610763565b610b01816116ed565b3b151590565b60006001600160e01b031982166380ac58cd60e01b14806113a457506001600160e01b03198216635b5e139f60e01b145b8061073357506301ffc9a760e01b6001600160e01b0319831614610733565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113f882610e2d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114aa5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610763565b60006114b583610e2d565b9050806001600160a01b0316846001600160a01b031614806114f05750836001600160a01b03166114e584610811565b6001600160a01b0316145b8061152057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661153b82610e2d565b6001600160a01b0316146115a35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610763565b6001600160a01b0382166116055760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610763565b611610838383611882565b61161b6000826113c3565b6001600160a01b0383166000908152600360205260408120805460019290611644908490612464565b90915550506001600160a01b038216600090815260036020526040812080546001929061167290849061225d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610e2982826040518060200160405280600081525061193a565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61174a848484611528565b6117568484848461196d565b610bdd5760405162461bcd60e51b815260040161076390612477565b6060600b805461078e906121bc565b6060816000036117a85750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117d257806117bc81612287565b91506117cb9050600a836124df565b91506117ac565b60008167ffffffffffffffff8111156117ed576117ed611f07565b6040519080825280601f01601f191660200182016040528015611817576020820181803683370190505b5090505b84156115205761182c600183612464565b9150611839600a866124f3565b61184490603061225d565b60f81b818381518110611859576118596122a0565b60200101906001600160f81b031916908160001a90535061187b600a866124df565b945061181b565b6001600160a01b0383166118dd576118d881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611900565b816001600160a01b0316836001600160a01b031614611900576119008382611a6e565b6001600160a01b038216611917576109b681611b0b565b826001600160a01b0316826001600160a01b0316146109b6576109b68282611bba565b6119448383611bfe565b611951600084848461196d565b6109b65760405162461bcd60e51b815260040161076390612477565b60006001600160a01b0384163b15611a6357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119b1903390899088908890600401612507565b6020604051808303816000875af19250505080156119ec575060408051601f3d908101601f191682019092526119e991810190612544565b60015b611a49573d808015611a1a576040519150601f19603f3d011682016040523d82523d6000602084013e611a1f565b606091505b508051600003611a415760405162461bcd60e51b815260040161076390612477565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611520565b506001949350505050565b60006001611a7b84610f61565b611a859190612464565b600083815260076020526040902054909150808214611ad8576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611b1d90600190612464565b60008381526009602052604081205460088054939450909284908110611b4557611b456122a0565b906000526020600020015490508060088381548110611b6657611b666122a0565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b9e57611b9e612561565b6001900381819060005260206000200160009055905550505050565b6000611bc583610f61565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611c545760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610763565b6000818152600260205260409020546001600160a01b031615611cb95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610763565b611cc560008383611882565b6001600160a01b0382166000908152600360205260408120805460019290611cee90849061225d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610b0157600080fd5b600060208284031215611d7457600080fd5b813561129881611d4c565b80358015158114611d8f57600080fd5b919050565b600060208284031215611da657600080fd5b61129882611d7f565b60005b83811015611dca578181015183820152602001611db2565b50506000910152565b60008151808452611deb816020860160208601611daf565b601f01601f19169290920160200192915050565b6020815260006112986020830184611dd3565b600060208284031215611e2457600080fd5b5035919050565b80356001600160a01b0381168114611d8f57600080fd5b60008060408385031215611e5557600080fd5b611e5e83611e2b565b946020939093013593505050565b600060208284031215611e7e57600080fd5b61129882611e2b565b600080600060608486031215611e9c57600080fd5b611ea584611e2b565b9250611eb360208501611e2b565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b81811015611efb57835183529284019291840191600101611edf565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611f4657611f46611f07565b604052919050565b60008060408385031215611f6157600080fd5b823567ffffffffffffffff80821115611f7957600080fd5b818501915085601f830112611f8d57600080fd5b8135602082821115611fa157611fa1611f07565b8160051b9250611fb2818401611f1d565b8281529284018101928181019089851115611fcc57600080fd5b948201945b84861015611ff157611fe286611e2b565b82529482019490820190611fd1565b96506120009050878201611d7f565b9450505050509250929050565b600067ffffffffffffffff83111561202757612027611f07565b61203a601f8401601f1916602001611f1d565b905082815283838301111561204e57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561207757600080fd5b813567ffffffffffffffff81111561208e57600080fd5b8201601f8101841361209f57600080fd5b6115208482356020840161200d565b600080604083850312156120c157600080fd5b6120ca83611e2b565b91506120d860208401611d7f565b90509250929050565b600080600080608085870312156120f757600080fd5b61210085611e2b565b935061210e60208601611e2b565b925060408501359150606085013567ffffffffffffffff81111561213157600080fd5b8501601f8101871361214257600080fd5b6121518782356020840161200d565b91505092959194509250565b6000806040838503121561217057600080fd5b61217983611e2b565b91506120d860208401611e2b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806121d057607f821691505b6020821081036121f057634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561073357610733612247565b808202811582820484141761073357610733612247565b60006001820161229957612299612247565b5060010190565b634e487b7160e01b600052603260045260246000fd5b601f8211156109b657600081815260208120601f850160051c810160208610156122dd5750805b601f850160051c820191505b818110156122fc578281556001016122e9565b505050505050565b815167ffffffffffffffff81111561231e5761231e611f07565b6123328161232c84546121bc565b846122b6565b602080601f831160018114612367576000841561234f5750858301515b600019600386901b1c1916600185901b1785556122fc565b600085815260208120601f198616915b8281101561239657888601518255948401946001909101908401612377565b50858210156123b45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000845160206123d78285838a01611daf565b8551918401916123ea8184848a01611daf565b85549201916000906123fb816121bc565b60018281168015612413576001811461242857612454565b60ff1984168752821515830287019450612454565b896000528560002060005b8481101561244c57815489820152908301908701612433565b505082870194505b50929a9950505050505050505050565b8181038181111561073357610733612247565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826124ee576124ee6124c9565b500490565b600082612502576125026124c9565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061253a90830184611dd3565b9695505050505050565b60006020828403121561255657600080fd5b815161129881611d4c565b634e487b7160e01b600052603160045260246000fdfea26469706673582212203bf0e2db07562f9bfaf89b359d17de317a80d9acb9778b6d307e01881341fc4e64736f6c63430008110033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000064156454e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064156454e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656968727278676f647a73676b6c32786b6f65683762796661323273766e377164716866746874346d6f756678627672326b6767366d2f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): AVENFT
Arg [1] : _symbol (string): AVENFT
Arg [2] : _initBaseURI (string): ipfs://bafybeihrrxgodzsgkl2xkoeh7byfa22svn7qdqhftht4moufxbvr2kgg6m/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [4] : 4156454e46540000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 4156454e46540000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [8] : 697066733a2f2f6261667962656968727278676f647a73676b6c32786b6f6568
Arg [9] : 3762796661323273766e377164716866746874346d6f756678627672326b6767
Arg [10] : 366d2f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

44130:4112:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35452:300;;;;;;;;;;-1:-1:-1;35452:300:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;35452:300:0;;;;;;;;47735:79;;;;;;;;;;-1:-1:-1;47735:79:0;;;;;:::i;:::-;;:::i;:::-;;21807:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23500:308::-;;;;;;;;;;-1:-1:-1;23500:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2047:32:1;;;2029:51;;2017:2;2002:18;23500:308:0;1883:203:1;23023:411:0;;;;;;;;;;-1:-1:-1;23023:411:0;;;;;:::i;:::-;;:::i;44478:46::-;;;;;;;;;;-1:-1:-1;44478:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;44289:31;;;;;;;;;;;;;;;;;;;2865:25:1;;;2853:2;2838:18;44289:31:0;2719:177:1;36255:113:0;;;;;;;;;;-1:-1:-1;36343:10:0;:17;36255:113;;44364:32;;;;;;;;;;;;;;;;24559:376;;;;;;;;;;-1:-1:-1;24559:376:0;;;;;:::i;:::-;;:::i;35836:343::-;;;;;;;;;;-1:-1:-1;35836:343:0;;;;;:::i;:::-;;:::i;48047:192::-;;;:::i;45063:628::-;;;;;;:::i;:::-;;:::i;25006:185::-;;;;;;;;;;-1:-1:-1;25006:185:0;;;;;:::i;:::-;;:::i;45699:390::-;;;;;;;;;;-1:-1:-1;45699:390:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;47104:86::-;;;;;;;;;;-1:-1:-1;47104:86:0;;;;;:::i;:::-;;:::i;47822:217::-;;;;;;;;;;-1:-1:-1;47822:217:0;;;;;:::i;:::-;;:::i;36445:320::-;;;;;;;;;;-1:-1:-1;36445:320:0;;;;;:::i;:::-;;:::i;47464:104::-;;;;;;;;;;-1:-1:-1;47464:104:0;;;;;:::i;:::-;;:::i;44445:26::-;;;;;;;;;;-1:-1:-1;44445:26:0;;;;;;;;21414:326;;;;;;;;;;-1:-1:-1;21414:326:0;;;;;:::i;:::-;;:::i;47328:128::-;;;;;;;;;;-1:-1:-1;47328:128:0;;;;;:::i;:::-;;:::i;44217:21::-;;;;;;;;;;;;;:::i;21057:295::-;;;;;;;;;;-1:-1:-1;21057:295:0;;;;;:::i;:::-;;:::i;43462:94::-;;;;;;;;;;;;;:::i;44531:84::-;;;;;;;;;;-1:-1:-1;44531:84:0;;;;-1:-1:-1;;;;;44531:84:0;;;47198:122;;;;;;;;;;-1:-1:-1;47198:122:0;;;;;:::i;:::-;;:::i;42811:87::-;;;;;;;;;;-1:-1:-1;42884:6:0;;-1:-1:-1;;;;;42884:6:0;42811:87;;21976:104;;;;;;;;;;;;;:::i;23880:327::-;;;;;;;;;;-1:-1:-1;23880:327:0;;;;;:::i;:::-;;:::i;44403:35::-;;;;;;;;;;;;;;;;25262:365;;;;;;;;;;-1:-1:-1;25262:365:0;;;;;:::i;:::-;;:::i;44245:37::-;;;;;;;;;;;;;:::i;46747:331::-;;;;;;;;;;-1:-1:-1;46747:331:0;;;;;:::i;:::-;;:::i;46097:642::-;;;;;;;;;;-1:-1:-1;46097:642:0;;;;;:::i;:::-;;:::i;44327:30::-;;;;;;;;;;;;;;;;47576:151;;;;;;;;;;-1:-1:-1;47576:151:0;;;;;:::i;:::-;;:::i;24278:214::-;;;;;;;;;;-1:-1:-1;24278:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;24449:25:0;;;24420:4;24449:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24278:214;43711:229;;;;;;;;;;-1:-1:-1;43711:229:0;;;;;:::i;:::-;;:::i;35452:300::-;35599:4;-1:-1:-1;;;;;;35641:50:0;;-1:-1:-1;;;35641:50:0;;:103;;;35708:36;35732:11;35708:23;:36::i;:::-;35621:123;35452:300;-1:-1:-1;;35452:300:0:o;47735:79::-;42884:6;;-1:-1:-1;;;;;42884:6:0;8334:10;43031:23;43023:68;;;;-1:-1:-1;;;43023:68:0;;;;;;;:::i;:::-;;;;;;;;;47791:6:::1;:15:::0;;-1:-1:-1;;47791:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47735:79::o;21807:100::-;21861:13;21894:5;21887:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21807:100;:::o;23500:308::-;23621:7;27263:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27263:16:0;23646:110;;;;-1:-1:-1;;;23646:110:0;;8322:2:1;23646:110:0;;;8304:21:1;8361:2;8341:18;;;8334:30;8400:34;8380:18;;;8373:62;-1:-1:-1;;;8451:18:1;;;8444:42;8503:19;;23646:110:0;8120:408:1;23646:110:0;-1:-1:-1;23776:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23776:24:0;;23500:308::o;23023:411::-;23104:13;23120:23;23135:7;23120:14;:23::i;:::-;23104:39;;23168:5;-1:-1:-1;;;;;23162:11:0;:2;-1:-1:-1;;;;;23162:11:0;;23154:57;;;;-1:-1:-1;;;23154:57:0;;8735:2:1;23154:57:0;;;8717:21:1;8774:2;8754:18;;;8747:30;8813:34;8793:18;;;8786:62;-1:-1:-1;;;8864:18:1;;;8857:31;8905:19;;23154:57:0;8533:397:1;23154:57:0;8334:10;-1:-1:-1;;;;;23246:21:0;;;;:62;;-1:-1:-1;23271:37:0;23288:5;8334:10;24278:214;:::i;23271:37::-;23224:168;;;;-1:-1:-1;;;23224:168:0;;9137:2:1;23224:168:0;;;9119:21:1;9176:2;9156:18;;;9149:30;9215:34;9195:18;;;9188:62;9286:26;9266:18;;;9259:54;9330:19;;23224:168:0;8935:420:1;23224:168:0;23405:21;23414:2;23418:7;23405:8;:21::i;:::-;23093:341;23023:411;;:::o;24559:376::-;24768:41;8334:10;24801:7;24768:18;:41::i;:::-;24746:140;;;;-1:-1:-1;;;24746:140:0;;;;;;;:::i;:::-;24899:28;24909:4;24915:2;24919:7;24899:9;:28::i;35836:343::-;35978:7;36033:23;36050:5;36033:16;:23::i;:::-;36025:5;:31;36003:124;;;;-1:-1:-1;;;36003:124:0;;9980:2:1;36003:124:0;;;9962:21:1;10019:2;9999:18;;;9992:30;10058:34;10038:18;;;10031:62;-1:-1:-1;;;10109:18:1;;;10102:41;10160:19;;36003:124:0;9778:407:1;36003:124:0;-1:-1:-1;;;;;;36145:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35836:343::o;48047:192::-;42884:6;;-1:-1:-1;;;;;42884:6:0;8334:10;43031:23;43023:68;;;;-1:-1:-1;;;43023:68:0;;;;;;;:::i;:::-;48122:82:::1;::::0;48104:12:::1;::::0;48130:10:::1;::::0;48168:21:::1;::::0;48104:12;48122:82;48104:12;48122:82;48168:21;48130:10;48122:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48103:101;;;48223:7;48215:16;;;::::0;::::1;;48092:147;48047:192::o:0;45063:628::-;45137:14;45154:13;36343:10;:17;;36255:113;45154:13;45187:6;;45137:30;;-1:-1:-1;45187:6:0;;45186:7;45178:16;;;;;;45227:1;45213:11;:15;45205:24;;;;;;45272:9;;45248:20;45257:11;45248:6;:20;:::i;:::-;:33;;45240:42;;;;;;45305:24;;-1:-1:-1;;;;;45298:31:0;;;45305:24;;45298:31;45295:175;;45369:13;;45354:11;:28;;45346:37;;;;;;45441:16;;45406:25;45420:10;45406:13;:25::i;:::-;:32;:51;45398:60;;;;;;42884:6;;-1:-1:-1;;;;;42884:6:0;45486:10;:21;45482:94;;45552:11;45545:4;;:18;;;;:::i;:::-;45532:9;:31;;45524:40;;;;;;45605:1;45588:96;45613:11;45608:1;:16;45588:96;;45646:26;45656:3;45661:10;45670:1;45661:6;:10;:::i;:::-;45646:9;:26::i;:::-;45626:3;;;;:::i;:::-;;;;45588:96;;;;45126:565;45063:628;;:::o;25006:185::-;25144:39;25161:4;25167:2;25171:7;25144:39;;;;;;;;;;;;:16;:39::i;45699:390::-;45786:16;45820:23;45846:17;45856:6;45846:9;:17::i;:::-;45820:43;;45874:25;45916:15;45902:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45902:30:0;;45874:58;;45948:9;45943:113;45963:15;45959:1;:19;45943:113;;;46014:30;46034:6;46042:1;46014:19;:30::i;:::-;46000:8;46009:1;46000:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;45980:3;;;;:::i;:::-;;;;45943:113;;;-1:-1:-1;46073:8:0;45699:390;-1:-1:-1;;;45699:390:0:o;47104:86::-;42884:6;;-1:-1:-1;;;;;42884:6:0;8334:10;43031:23;43023:68;;;;-1:-1:-1;;;43023:68:0;;;;;;;:::i;:::-;47167:4:::1;:15:::0;47104:86::o;47822:217::-;42884:6;;-1:-1:-1;;;;;42884:6:0;8334:10;43031:23;43023:68;;;;-1:-1:-1;;;43023:68:0;;;;;;;:::i;:::-;47926:9:::1;47921:111;47945:9;:16;47941:1;:20;47921:111;;;48014:6;47983:14;:28;47998:9;48008:1;47998:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;47983:28:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;47983:28:0;:37;;-1:-1:-1;;47983:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47963:3;::::1;::::0;::::1;:::i;:::-;;;;47921:111;;36445:320:::0;36565:7;36620:30;36343:10;:17;;36255:113;36620:30;36612:5;:38;36590:132;;;;-1:-1:-1;;;36590:132:0;;11309:2:1;36590:132:0;;;11291:21:1;11348:2;11328:18;;;11321:30;11387:34;11367:18;;;11360:62;-1:-1:-1;;;11438:18:1;;;11431:42;11490:19;;36590:132:0;11107:408:1;36590:132:0;36740:10;36751:5;36740:17;;;;;;;;:::i;:::-;;;;;;;;;36733:24;;36445:320;;;:::o;47464:104::-;42884:6;;-1:-1:-1;;;;;42884:6:0;8334:10;43031:23;43023:68;;;;-1:-1:-1;;;43023:68:0;;;;;;;:::i;:::-;47539:7:::1;:21;47549:11:::0;47539:7;:21:::1;:::i;:::-;;47464:104:::0;:::o;21414:326::-;21531:7;21572:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21572:16:0;;21599:110;;;;-1:-1:-1;;;21599:110:0;;13926:2:1;21599:110:0;;;13908:21:1;13965:2;13945:18;;;13938:30;14004:34;13984:18;;;13977:62;-1:-1:-1;;;14055:18:1;;;14048:39;14104:19;;21599:110:0;13724:405:1;47328:128:0;42884:6;;-1:-1:-1;;;;;42884:6:0;8334:10;43031:23;43023:68;;;;-1:-1:-1;;;43023:68:0;;;;;;;:::i;:::-;47412:16:::1;:36:::0;47328:128::o;44217:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21057:295::-;21174:7;-1:-1:-1;;;;;21221:19:0;;21199:111;;;;-1:-1:-1;;;21199:111:0;;14336:2:1;21199:111:0;;;14318:21:1;14375:2;14355:18;;;14348:30;14414:34;14394:18;;;14387:62;-1:-1:-1;;;14465:18:1;;;14458:40;14515:19;;21199:111:0;14134:406:1;21199:111:0;-1:-1:-1;;;;;;21328:16:0;;;;;:9;:16;;;;;;;21057:295::o;43462:94::-;42884:6;;-1:-1:-1;;;;;42884:6:0;8334:10;43031:23;43023:68;;;;-1:-1:-1;;;43023:68:0;;;;;;;:::i;:::-;43527:21:::1;43545:1;43527:9;:21::i;:::-;43462:94::o:0;47198:122::-;42884:6;;-1:-1:-1;;;;;42884:6:0;8334:10;43031:23;43023:68;;;;-1:-1:-1;;;43023:68:0;;;;;;;:::i;:::-;47279:13:::1;:33:::0;47198:122::o;21976:104::-;22032:13;22065:7;22058:14;;;;;:::i;23880:327::-;8334:10;-1:-1:-1;;;;;24015:24:0;;;24007:62;;;;-1:-1:-1;;;24007:62:0;;14747:2:1;24007:62:0;;;14729:21:1;14786:2;14766:18;;;14759:30;14825:27;14805:18;;;14798:55;14870:18;;24007:62:0;14545:349:1;24007:62:0;8334:10;24082:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24082:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24082:53:0;;;;;;;;;;24151:48;;540:41:1;;;24082:42:0;;8334:10;24151:48;;513:18:1;24151:48:0;;;;;;;23880:327;;:::o;25262:365::-;25451:41;8334:10;25484:7;25451:18;:41::i;:::-;25429:140;;;;-1:-1:-1;;;25429:140:0;;;;;;;:::i;:::-;25580:39;25594:4;25600:2;25604:7;25613:5;25580:13;:39::i;44245:37::-;;;;;;;:::i;46747:331::-;46805:4;46822:25;46850:23;46864:8;46850:13;:23::i;:::-;46822:51;;46899:9;46894:152;46914:8;:15;46910:1;:19;46894:152;;;46969:18;;46954:8;46963:1;46954:11;;;;;;;;:::i;:::-;;;;;;;:33;46951:84;;-1:-1:-1;47015:4:0;;46747:331;-1:-1:-1;;;46747:331:0:o;46951:84::-;46931:3;;;;:::i;:::-;;;;46894:152;;;-1:-1:-1;47065:5:0;;46747:331;-1:-1:-1;;;46747:331:0:o;46097:642::-;27239:4;27263:16;;;:7;:16;;;;;;46215:13;;-1:-1:-1;;;;;27263:16:0;46246:113;;;;-1:-1:-1;;;46246:113:0;;15101:2:1;46246:113:0;;;15083:21:1;15140:2;15120:18;;;15113:30;15179:34;15159:18;;;15152:62;-1:-1:-1;;;15230:18:1;;;15223:45;15285:19;;46246:113:0;14899:411:1;46246:113:0;46372:28;46403:10;:8;:10::i;:::-;46372:41;;46475:1;46450:14;46444:28;:32;:287;;;;;;;;;;;;;;;;;46568:14;46609:18;:7;:16;:18::i;:::-;46654:13;46525:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46444:287;46424:307;46097:642;-1:-1:-1;;;46097:642:0:o;47576:151::-;42884:6;;-1:-1:-1;;;;;42884:6:0;8334:10;43031:23;43023:68;;;;-1:-1:-1;;;43023:68:0;;;;;;;:::i;:::-;47686:13:::1;:33;47702:17:::0;47686:13;:33:::1;:::i;43711:229::-:0;42884:6;;-1:-1:-1;;;;;42884:6:0;8334:10;43031:23;43023:68;;;;-1:-1:-1;;;43023:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43814:22:0;::::1;43792:110;;;::::0;-1:-1:-1;;;43792:110:0;;16778:2:1;43792:110:0::1;::::0;::::1;16760:21:1::0;16817:2;16797:18;;;16790:30;16856:34;16836:18;;;16829:62;-1:-1:-1;;;16907:18:1;;;16900:36;16953:19;;43792:110:0::1;16576:402:1::0;43792:110:0::1;43913:19;43923:8;43913:9;:19::i;10683:387::-:0;11006:20;11054:8;;;10683:387::o;20638:355::-;20785:4;-1:-1:-1;;;;;;20827:40:0;;-1:-1:-1;;;20827:40:0;;:105;;-1:-1:-1;;;;;;;20884:48:0;;-1:-1:-1;;;20884:48:0;20827:105;:158;;;-1:-1:-1;;;;;;;;;;19354:40:0;;;20949:36;19195:207;31297:174;31372:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31372:29:0;-1:-1:-1;;;;;31372:29:0;;;;;;;;:24;;31426:23;31372:24;31426:14;:23::i;:::-;-1:-1:-1;;;;;31417:46:0;;;;;;;;;;;31297:174;;:::o;27468:452::-;27597:4;27263:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27263:16:0;27619:110;;;;-1:-1:-1;;;27619:110:0;;17185:2:1;27619:110:0;;;17167:21:1;17224:2;17204:18;;;17197:30;17263:34;17243:18;;;17236:62;-1:-1:-1;;;17314:18:1;;;17307:42;17366:19;;27619:110:0;16983:408:1;27619:110:0;27740:13;27756:23;27771:7;27756:14;:23::i;:::-;27740:39;;27809:5;-1:-1:-1;;;;;27798:16:0;:7;-1:-1:-1;;;;;27798:16:0;;:64;;;;27855:7;-1:-1:-1;;;;;27831:31:0;:20;27843:7;27831:11;:20::i;:::-;-1:-1:-1;;;;;27831:31:0;;27798:64;:113;;;-1:-1:-1;;;;;;24449:25:0;;;24420:4;24449:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27879:32;27790:122;27468:452;-1:-1:-1;;;;27468:452:0:o;30564:615::-;30737:4;-1:-1:-1;;;;;30710:31:0;:23;30725:7;30710:14;:23::i;:::-;-1:-1:-1;;;;;30710:31:0;;30688:122;;;;-1:-1:-1;;;30688:122:0;;17598:2:1;30688:122:0;;;17580:21:1;17637:2;17617:18;;;17610:30;17676:34;17656:18;;;17649:62;-1:-1:-1;;;17727:18:1;;;17720:39;17776:19;;30688:122:0;17396:405:1;30688:122:0;-1:-1:-1;;;;;30829:16:0;;30821:65;;;;-1:-1:-1;;;30821:65:0;;18008:2:1;30821:65:0;;;17990:21:1;18047:2;18027:18;;;18020:30;18086:34;18066:18;;;18059:62;-1:-1:-1;;;18137:18:1;;;18130:34;18181:19;;30821:65:0;17806:400:1;30821:65:0;30899:39;30920:4;30926:2;30930:7;30899:20;:39::i;:::-;31003:29;31020:1;31024:7;31003:8;:29::i;:::-;-1:-1:-1;;;;;31045:15:0;;;;;;:9;:15;;;;;:20;;31064:1;;31045:15;:20;;31064:1;;31045:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31076:13:0;;;;;;:9;:13;;;;;:18;;31093:1;;31076:13;:18;;31093:1;;31076:18;:::i;:::-;;;;-1:-1:-1;;31105:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31105:21:0;-1:-1:-1;;;;;31105:21:0;;;;;;;;;31144:27;;31105:16;;31144:27;;;;;;;30564:615;;;:::o;28262:110::-;28338:26;28348:2;28352:7;28338:26;;;;;;;;;;;;:9;:26::i;43948:173::-;44023:6;;;-1:-1:-1;;;;;44040:17:0;;;-1:-1:-1;;;;;;44040:17:0;;;;;;;44073:40;;44023:6;;;44040:17;44023:6;;44073:40;;44004:16;;44073:40;43993:128;43948:173;:::o;26509:352::-;26666:28;26676:4;26682:2;26686:7;26666:9;:28::i;:::-;26727:48;26750:4;26756:2;26760:7;26769:5;26727:22;:48::i;:::-;26705:148;;;;-1:-1:-1;;;26705:148:0;;;;;;;:::i;44932:108::-;44992:13;45025:7;45018:14;;;;;:::i;5917:723::-;5973:13;6194:5;6203:1;6194:10;6190:53;;-1:-1:-1;;6221:10:0;;;;;;;;;;;;-1:-1:-1;;;6221:10:0;;;;;5917:723::o;6190:53::-;6268:5;6253:12;6309:78;6316:9;;6309:78;;6342:8;;;;:::i;:::-;;-1:-1:-1;6365:10:0;;-1:-1:-1;6373:2:0;6365:10;;:::i;:::-;;;6309:78;;;6397:19;6429:6;6419:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6419:17:0;;6397:39;;6447:154;6454:10;;6447:154;;6481:11;6491:1;6481:11;;:::i;:::-;;-1:-1:-1;6550:10:0;6558:2;6550:5;:10;:::i;:::-;6537:24;;:2;:24;:::i;:::-;6524:39;;6507:6;6514;6507:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6507:56:0;;;;;;;;-1:-1:-1;6578:11:0;6587:2;6578:11;;:::i;:::-;;;6447:154;;37378:589;-1:-1:-1;;;;;37584:18:0;;37580:187;;37619:40;37651:7;38794:10;:17;;38767:24;;;;:15;:24;;;;;:44;;;38822:24;;;;;;;;;;;;38690:164;37619:40;37580:187;;;37689:2;-1:-1:-1;;;;;37681:10:0;:4;-1:-1:-1;;;;;37681:10:0;;37677:90;;37708:47;37741:4;37747:7;37708:32;:47::i;:::-;-1:-1:-1;;;;;37781:16:0;;37777:183;;37814:45;37851:7;37814:36;:45::i;37777:183::-;37887:4;-1:-1:-1;;;;;37881:10:0;:2;-1:-1:-1;;;;;37881:10:0;;37877:83;;37908:40;37936:2;37940:7;37908:27;:40::i;28599:321::-;28729:18;28735:2;28739:7;28729:5;:18::i;:::-;28780:54;28811:1;28815:2;28819:7;28828:5;28780:22;:54::i;:::-;28758:154;;;;-1:-1:-1;;;28758:154:0;;;;;;;:::i;32036:980::-;32191:4;-1:-1:-1;;;;;32212:13:0;;11006:20;11054:8;32208:801;;32265:175;;-1:-1:-1;;;32265:175:0;;-1:-1:-1;;;;;32265:36:0;;;;;:175;;8334:10;;32359:4;;32386:7;;32416:5;;32265:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32265:175:0;;;;;;;;-1:-1:-1;;32265:175:0;;;;;;;;;;;;:::i;:::-;;;32244:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32623:6;:13;32640:1;32623:18;32619:320;;32666:108;;-1:-1:-1;;;32666:108:0;;;;;;;:::i;32619:320::-;32889:6;32883:13;32874:6;32870:2;32866:15;32859:38;32244:710;-1:-1:-1;;;;;;32504:51:0;-1:-1:-1;;;32504:51:0;;-1:-1:-1;32497:58:0;;32208:801;-1:-1:-1;32993:4:0;32036:980;;;;;;:::o;39481:1002::-;39761:22;39811:1;39786:22;39803:4;39786:16;:22::i;:::-;:26;;;;:::i;:::-;39823:18;39844:26;;;:17;:26;;;;;;39761:51;;-1:-1:-1;39977:28:0;;;39973:328;;-1:-1:-1;;;;;40044:18:0;;40022:19;40044:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40095:30;;;;;;:44;;;40212:30;;:17;:30;;;;;:43;;;39973:328;-1:-1:-1;40397:26:0;;;;:17;:26;;;;;;;;40390:33;;;-1:-1:-1;;;;;40441:18:0;;;;;:12;:18;;;;;:34;;;;;;;40434:41;39481:1002::o;40778:1079::-;41056:10;:17;41031:22;;41056:21;;41076:1;;41056:21;:::i;:::-;41088:18;41109:24;;;:15;:24;;;;;;41482:10;:26;;41031:46;;-1:-1:-1;41109:24:0;;41031:46;;41482:26;;;;;;:::i;:::-;;;;;;;;;41460:48;;41546:11;41521:10;41532;41521:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;41626:28;;;:15;:28;;;;;;;:41;;;41798:24;;;;;41791:31;41833:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;40849:1008;;;40778:1079;:::o;38268:221::-;38353:14;38370:20;38387:2;38370:16;:20::i;:::-;-1:-1:-1;;;;;38401:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;38446:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38268:221:0:o;29256:382::-;-1:-1:-1;;;;;29336:16:0;;29328:61;;;;-1:-1:-1;;;29328:61:0;;20219:2:1;29328:61:0;;;20201:21:1;;;20238:18;;;20231:30;20297:34;20277:18;;;20270:62;20349:18;;29328:61:0;20017:356:1;29328:61:0;27239:4;27263:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27263:16:0;:30;29400:58;;;;-1:-1:-1;;;29400:58:0;;20580:2:1;29400:58:0;;;20562:21:1;20619:2;20599:18;;;20592:30;20658;20638:18;;;20631:58;20706:18;;29400:58:0;20378:352:1;29400:58:0;29471:45;29500:1;29504:2;29508:7;29471:20;:45::i;:::-;-1:-1:-1;;;;;29529:13:0;;;;;;:9;:13;;;;;:18;;29546:1;;29529:13;:18;;29546:1;;29529:18;:::i;:::-;;;;-1:-1:-1;;29558:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29558:21:0;-1:-1:-1;;;;;29558:21:0;;;;;;;;29597:33;;29558:16;;;29597:33;;29558:16;;29597:33;29256:382;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:250::-;1027:1;1037:113;1051:6;1048:1;1045:13;1037:113;;;1127:11;;;1121:18;1108:11;;;1101:39;1073:2;1066:10;1037:113;;;-1:-1:-1;;1184:1:1;1166:16;;1159:27;942:250::o;1197:271::-;1239:3;1277:5;1271:12;1304:6;1299:3;1292:19;1320:76;1389:6;1382:4;1377:3;1373:14;1366:4;1359:5;1355:16;1320:76;:::i;:::-;1450:2;1429:15;-1:-1:-1;;1425:29:1;1416:39;;;;1457:4;1412:50;;1197:271;-1:-1:-1;;1197:271:1:o;1473:220::-;1622:2;1611:9;1604:21;1585:4;1642:45;1683:2;1672:9;1668:18;1660:6;1642:45;:::i;1698:180::-;1757:6;1810:2;1798:9;1789:7;1785:23;1781:32;1778:52;;;1826:1;1823;1816:12;1778:52;-1:-1:-1;1849:23:1;;1698:180;-1:-1:-1;1698:180:1:o;2091:173::-;2159:20;;-1:-1:-1;;;;;2208:31:1;;2198:42;;2188:70;;2254:1;2251;2244:12;2269:254;2337:6;2345;2398:2;2386:9;2377:7;2373:23;2369:32;2366:52;;;2414:1;2411;2404:12;2366:52;2437:29;2456:9;2437:29;:::i;:::-;2427:39;2513:2;2498:18;;;;2485:32;;-1:-1:-1;;;2269:254:1:o;2528:186::-;2587:6;2640:2;2628:9;2619:7;2615:23;2611:32;2608:52;;;2656:1;2653;2646:12;2608:52;2679:29;2698:9;2679:29;:::i;2901:328::-;2978:6;2986;2994;3047:2;3035:9;3026:7;3022:23;3018:32;3015:52;;;3063:1;3060;3053:12;3015:52;3086:29;3105:9;3086:29;:::i;:::-;3076:39;;3134:38;3168:2;3157:9;3153:18;3134:38;:::i;:::-;3124:48;;3219:2;3208:9;3204:18;3191:32;3181:42;;2901:328;;;;;:::o;3234:632::-;3405:2;3457:21;;;3527:13;;3430:18;;;3549:22;;;3376:4;;3405:2;3628:15;;;;3602:2;3587:18;;;3376:4;3671:169;3685:6;3682:1;3679:13;3671:169;;;3746:13;;3734:26;;3815:15;;;;3780:12;;;;3707:1;3700:9;3671:169;;;-1:-1:-1;3857:3:1;;3234:632;-1:-1:-1;;;;;;3234:632:1:o;3871:127::-;3932:10;3927:3;3923:20;3920:1;3913:31;3963:4;3960:1;3953:15;3987:4;3984:1;3977:15;4003:275;4074:2;4068:9;4139:2;4120:13;;-1:-1:-1;;4116:27:1;4104:40;;4174:18;4159:34;;4195:22;;;4156:62;4153:88;;;4221:18;;:::i;:::-;4257:2;4250:22;4003:275;;-1:-1:-1;4003:275:1:o;4283:1022::-;4373:6;4381;4434:2;4422:9;4413:7;4409:23;4405:32;4402:52;;;4450:1;4447;4440:12;4402:52;4490:9;4477:23;4519:18;4560:2;4552:6;4549:14;4546:34;;;4576:1;4573;4566:12;4546:34;4614:6;4603:9;4599:22;4589:32;;4659:7;4652:4;4648:2;4644:13;4640:27;4630:55;;4681:1;4678;4671:12;4630:55;4717:2;4704:16;4739:4;4762:2;4758;4755:10;4752:36;;;4768:18;;:::i;:::-;4814:2;4811:1;4807:10;4797:20;;4837:28;4861:2;4857;4853:11;4837:28;:::i;:::-;4899:15;;;4969:11;;;4965:20;;;4930:12;;;;4997:19;;;4994:39;;;5029:1;5026;5019:12;4994:39;5053:11;;;;5073:148;5089:6;5084:3;5081:15;5073:148;;;5155:23;5174:3;5155:23;:::i;:::-;5143:36;;5106:12;;;;5199;;;;5073:148;;;5240:5;-1:-1:-1;5264:35:1;;-1:-1:-1;5280:18:1;;;5264:35;:::i;:::-;5254:45;;;;;;4283:1022;;;;;:::o;5310:407::-;5375:5;5409:18;5401:6;5398:30;5395:56;;;5431:18;;:::i;:::-;5469:57;5514:2;5493:15;;-1:-1:-1;;5489:29:1;5520:4;5485:40;5469:57;:::i;:::-;5460:66;;5549:6;5542:5;5535:21;5589:3;5580:6;5575:3;5571:16;5568:25;5565:45;;;5606:1;5603;5596:12;5565:45;5655:6;5650:3;5643:4;5636:5;5632:16;5619:43;5709:1;5702:4;5693:6;5686:5;5682:18;5678:29;5671:40;5310:407;;;;;:::o;5722:451::-;5791:6;5844:2;5832:9;5823:7;5819:23;5815:32;5812:52;;;5860:1;5857;5850:12;5812:52;5900:9;5887:23;5933:18;5925:6;5922:30;5919:50;;;5965:1;5962;5955:12;5919:50;5988:22;;6041:4;6033:13;;6029:27;-1:-1:-1;6019:55:1;;6070:1;6067;6060:12;6019:55;6093:74;6159:7;6154:2;6141:16;6136:2;6132;6128:11;6093:74;:::i;6178:254::-;6243:6;6251;6304:2;6292:9;6283:7;6279:23;6275:32;6272:52;;;6320:1;6317;6310:12;6272:52;6343:29;6362:9;6343:29;:::i;:::-;6333:39;;6391:35;6422:2;6411:9;6407:18;6391:35;:::i;:::-;6381:45;;6178:254;;;;;:::o;6437:667::-;6532:6;6540;6548;6556;6609:3;6597:9;6588:7;6584:23;6580:33;6577:53;;;6626:1;6623;6616:12;6577:53;6649:29;6668:9;6649:29;:::i;:::-;6639:39;;6697:38;6731:2;6720:9;6716:18;6697:38;:::i;:::-;6687:48;;6782:2;6771:9;6767:18;6754:32;6744:42;;6837:2;6826:9;6822:18;6809:32;6864:18;6856:6;6853:30;6850:50;;;6896:1;6893;6886:12;6850:50;6919:22;;6972:4;6964:13;;6960:27;-1:-1:-1;6950:55:1;;7001:1;6998;6991:12;6950:55;7024:74;7090:7;7085:2;7072:16;7067:2;7063;7059:11;7024:74;:::i;:::-;7014:84;;;6437:667;;;;;;;:::o;7109:260::-;7177:6;7185;7238:2;7226:9;7217:7;7213:23;7209:32;7206:52;;;7254:1;7251;7244:12;7206:52;7277:29;7296:9;7277:29;:::i;:::-;7267:39;;7325:38;7359:2;7348:9;7344:18;7325:38;:::i;7374:356::-;7576:2;7558:21;;;7595:18;;;7588:30;7654:34;7649:2;7634:18;;7627:62;7721:2;7706:18;;7374:356::o;7735:380::-;7814:1;7810:12;;;;7857;;;7878:61;;7932:4;7924:6;7920:17;7910:27;;7878:61;7985:2;7977:6;7974:14;7954:18;7951:38;7948:161;;8031:10;8026:3;8022:20;8019:1;8012:31;8066:4;8063:1;8056:15;8094:4;8091:1;8084:15;7948:161;;7735:380;;;:::o;9360:413::-;9562:2;9544:21;;;9601:2;9581:18;;;9574:30;9640:34;9635:2;9620:18;;9613:62;-1:-1:-1;;;9706:2:1;9691:18;;9684:47;9763:3;9748:19;;9360:413::o;10400:127::-;10461:10;10456:3;10452:20;10449:1;10442:31;10492:4;10489:1;10482:15;10516:4;10513:1;10506:15;10532:125;10597:9;;;10618:10;;;10615:36;;;10631:18;;:::i;10662:168::-;10735:9;;;10766;;10783:15;;;10777:22;;10763:37;10753:71;;10804:18;;:::i;10835:135::-;10874:3;10895:17;;;10892:43;;10915:18;;:::i;:::-;-1:-1:-1;10962:1:1;10951:13;;10835:135::o;10975:127::-;11036:10;11031:3;11027:20;11024:1;11017:31;11067:4;11064:1;11057:15;11091:4;11088:1;11081:15;11646:545;11748:2;11743:3;11740:11;11737:448;;;11784:1;11809:5;11805:2;11798:17;11854:4;11850:2;11840:19;11924:2;11912:10;11908:19;11905:1;11901:27;11895:4;11891:38;11960:4;11948:10;11945:20;11942:47;;;-1:-1:-1;11983:4:1;11942:47;12038:2;12033:3;12029:12;12026:1;12022:20;12016:4;12012:31;12002:41;;12093:82;12111:2;12104:5;12101:13;12093:82;;;12156:17;;;12137:1;12126:13;12093:82;;;12097:3;;;11646:545;;;:::o;12367:1352::-;12493:3;12487:10;12520:18;12512:6;12509:30;12506:56;;;12542:18;;:::i;:::-;12571:97;12661:6;12621:38;12653:4;12647:11;12621:38;:::i;:::-;12615:4;12571:97;:::i;:::-;12723:4;;12787:2;12776:14;;12804:1;12799:663;;;;13506:1;13523:6;13520:89;;;-1:-1:-1;13575:19:1;;;13569:26;13520:89;-1:-1:-1;;12324:1:1;12320:11;;;12316:24;12312:29;12302:40;12348:1;12344:11;;;12299:57;13622:81;;12769:944;;12799:663;11593:1;11586:14;;;11630:4;11617:18;;-1:-1:-1;;12835:20:1;;;12953:236;12967:7;12964:1;12961:14;12953:236;;;13056:19;;;13050:26;13035:42;;13148:27;;;;13116:1;13104:14;;;;12983:19;;12953:236;;;12957:3;13217:6;13208:7;13205:19;13202:201;;;13278:19;;;13272:26;-1:-1:-1;;13361:1:1;13357:14;;;13373:3;13353:24;13349:37;13345:42;13330:58;13315:74;;13202:201;-1:-1:-1;;;;;13449:1:1;13433:14;;;13429:22;13416:36;;-1:-1:-1;12367:1352:1:o;15315:1256::-;15539:3;15577:6;15571:13;15603:4;15616:64;15673:6;15668:3;15663:2;15655:6;15651:15;15616:64;:::i;:::-;15743:13;;15702:16;;;;15765:68;15743:13;15702:16;15800:15;;;15765:68;:::i;:::-;15922:13;;15855:20;;;15895:1;;15960:36;15922:13;15960:36;:::i;:::-;16015:1;16032:18;;;16059:141;;;;16214:1;16209:337;;;;16025:521;;16059:141;-1:-1:-1;;16094:24:1;;16080:39;;16171:16;;16164:24;16150:39;;16139:51;;;-1:-1:-1;16059:141:1;;16209:337;16240:6;16237:1;16230:17;16288:2;16285:1;16275:16;16313:1;16327:169;16341:8;16338:1;16335:15;16327:169;;;16423:14;;16408:13;;;16401:37;16466:16;;;;16358:10;;16327:169;;;16331:3;;16527:8;16520:5;16516:20;16509:27;;16025:521;-1:-1:-1;16562:3:1;;15315:1256;-1:-1:-1;;;;;;;;;;15315:1256:1:o;18211:128::-;18278:9;;;18299:11;;;18296:37;;;18313:18;;:::i;18344:414::-;18546:2;18528:21;;;18585:2;18565:18;;;18558:30;18624:34;18619:2;18604:18;;18597:62;-1:-1:-1;;;18690:2:1;18675:18;;18668:48;18748:3;18733:19;;18344:414::o;18763:127::-;18824:10;18819:3;18815:20;18812:1;18805:31;18855:4;18852:1;18845:15;18879:4;18876:1;18869:15;18895:120;18935:1;18961;18951:35;;18966:18;;:::i;:::-;-1:-1:-1;19000:9:1;;18895:120::o;19020:112::-;19052:1;19078;19068:35;;19083:18;;:::i;:::-;-1:-1:-1;19117:9:1;;19020:112::o;19137:489::-;-1:-1:-1;;;;;19406:15:1;;;19388:34;;19458:15;;19453:2;19438:18;;19431:43;19505:2;19490:18;;19483:34;;;19553:3;19548:2;19533:18;;19526:31;;;19331:4;;19574:46;;19600:19;;19592:6;19574:46;:::i;:::-;19566:54;19137:489;-1:-1:-1;;;;;;19137:489:1:o;19631:249::-;19700:6;19753:2;19741:9;19732:7;19728:23;19724:32;19721:52;;;19769:1;19766;19759:12;19721:52;19801:9;19795:16;19820:30;19844:5;19820:30;:::i;19885:127::-;19946:10;19941:3;19937:20;19934:1;19927:31;19977:4;19974:1;19967:15;20001:4;19998:1;19991:15

Swarm Source

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