ETH Price: $2,790.59 (+1.75%)

Token

Mother Fluffers (MILF)
 

Overview

Max Total Supply

326 MILF

Holders

75

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Null: 0x000...000
Balance
0 MILF
0x0000000000000000000000000000000000000000
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:
MotherFluffers

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
//Developer Info:



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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/new.sol




pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}
pragma solidity ^0.8.13;



abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}
pragma solidity ^0.8.13;



abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}
    pragma solidity ^0.8.7;
    
    contract MotherFluffers is ERC721A, DefaultOperatorFilterer , Ownable {
    using Strings for uint256;

  string private uriPrefix;
  string private uriSuffix = ".json";

  uint256 public cost = 0.003 ether;

  uint16 public maxSupply = 500;
  uint8 public maxMintAmountPerTx = 5;

                                                             
 
  bool public paused = true;

  mapping (address => uint8) public NFTPerPublicAddress;

  constructor(string memory _uriPrefix) ERC721A("Mother Fluffers", "MILF") {
      uriPrefix = _uriPrefix;
        _safeMint(msg.sender , 1);
  }
 
  function mint(uint8 _mintAmount) external payable  {
     uint16 totalSupply = uint16(totalSupply());
     uint8 nft = NFTPerPublicAddress[msg.sender];
    require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply.");
    require(_mintAmount + nft <= maxMintAmountPerTx, "Exceeds max per transaction.");
    require(!paused, "The contract is paused!");

    require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    _safeMint(msg.sender , _mintAmount);
    NFTPerPublicAddress[msg.sender] = _mintAmount + nft;
     delete totalSupply;
     delete _mintAmount;
  }
  
  function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
    require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply.");
     _safeMint(_receiver , _mintAmount);
     delete _mintAmount;
     delete _receiver;
     delete totalSupply;
  }

  function Airdrop(uint8 _amountPerAddress, address[] calldata addresses) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
     uint totalAmount =   _amountPerAddress * addresses.length;
    require(totalSupply + totalAmount <= maxSupply, "Exceeds max supply.");
     for (uint256 i = 0; i < addresses.length; i++) {
            _safeMint(addresses[i], _amountPerAddress);
        }
     delete _amountPerAddress;
     delete totalSupply;
  }

  function setMaxSupply(uint16 _maxSupply) external onlyOwner {
      maxSupply = _maxSupply;
  }

  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() ,uriSuffix))
        : "";
  }

  function setUriPrefix(string memory _uriPrefix) external onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setPaused() external onlyOwner {
    paused = !paused;
   
  }

  function setCost(uint _cost) external onlyOwner{
      cost = _cost;

  }

  function setMaxMintAmountPerTx(uint8 _maxtx) external onlyOwner{
      maxMintAmountPerTx = _maxtx;

  }

  function withdraw() external onlyOwner {
  uint _balance = address(this).balance;
     payable(msg.sender).transfer(_balance ); 
       
  }


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

    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"uint8","name":"_amountPerAddress","type":"uint8"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerPublicAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxSupply","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600a9190620005d7565b50660aa87bee538000600b55600c805463ffffffff191663010501f41790553480156200005457600080fd5b5060405162002bf138038062002bf18339810160408190526200007791620006c2565b604080518082018252600f81526e4d6f7468657220466c75666665727360881b60208083019182528351808501909452600484526326a4a62360e11b908401528151733cc6cdda760b79bafa08df41ecfa224f810dceb693600193929091620000e391600291620005d7565b508051620000f9906003906020840190620005d7565b50600160005550506daaeb6d7670e522a718067333cd4e3b15620002465780156200019457604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200017557600080fd5b505af11580156200018a573d6000803e3d6000fd5b5050505062000246565b6001600160a01b03821615620001e55760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af2903906044016200015a565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200022c57600080fd5b505af115801562000241573d6000803e3d6000fd5b505050505b50620002549050336200027e565b805162000269906009906020840190620005d7565b5062000277336001620002d0565b506200083f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620002f2828260405180602001604052806000815250620002f660201b60201c565b5050565b6200030583838360016200030a565b505050565b6000546001600160a01b0385166200033457604051622e076360e81b815260040160405180910390fd5b83600003620003565760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546001600160801b031981166001600160401b038083168c018116918217680100000000000000006001600160401b031990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156200040f57506200040f876001600160a01b0316620004d460201b620013301760201c565b156200048e575b60405182906001600160a01b0389169060009060008051602062002bd1833981519152908290a460018201916200045390600090899088620004e3565b62000471576040516368d2bf6b60e11b815260040160405180910390fd5b808203620004165782600054146200048857600080fd5b620004c3565b5b6040516001830192906001600160a01b0389169060009060008051602062002bd1833981519152908290a48082036200048f575b506000555050505050565b50505050565b6001600160a01b03163b151590565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906200051a9033908990889088906004016200077a565b6020604051808303816000875af192505050801562000558575060408051601f3d908101601f191682019092526200055591810190620007d0565b60015b620005ba573d80801562000589576040519150601f19603f3d011682016040523d82523d6000602084013e6200058e565b606091505b508051600003620005b2576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b828054620005e59062000803565b90600052602060002090601f01602090048101928262000609576000855562000654565b82601f106200062457805160ff191683800117855562000654565b8280016001018555821562000654579182015b828111156200065457825182559160200191906001019062000637565b506200066292915062000666565b5090565b5b8082111562000662576000815560010162000667565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620006b057818101518382015260200162000696565b83811115620004ce5750506000910152565b600060208284031215620006d557600080fd5b81516001600160401b0380821115620006ed57600080fd5b818401915084601f8301126200070257600080fd5b8151818111156200071757620007176200067d565b604051601f8201601f19908116603f011681019083821181831017156200074257620007426200067d565b816040528281528760208487010111156200075c57600080fd5b6200076f83602083016020880162000693565b979650505050505050565b600060018060a01b038087168352808616602084015250836040830152608060608301528251806080840152620007b98160a085016020870162000693565b601f01601f19169190910160a00195945050505050565b600060208284031215620007e357600080fd5b81516001600160e01b031981168114620007fc57600080fd5b9392505050565b600181811c908216806200081857607f821691505b6020821081036200083957634e487b7160e01b600052602260045260246000fd5b50919050565b612382806200084f6000396000f3fe6080604052600436106101d85760003560e01c80636ecd230611610102578063aa06229011610095578063d5abeb0111610064578063d5abeb0114610548578063e94053c714610576578063e985e9c5146105a6578063f2fde38b146105ef57600080fd5b8063aa062290146104c8578063b88d4fde146104e8578063c87b56dd14610508578063cffb6e201461052857600080fd5b80638da5cb5b116100d15780638da5cb5b1461044357806394354fd01461046157806395d89b4114610493578063a22cb465146104a857600080fd5b80636ecd2306146103db57806370a08231146103ee578063715018a61461040e5780637ec4a6591461042357600080fd5b806323b872dd1161017a57806342842e0e1161014957806342842e0e1461035a57806344a0d68a1461037a5780635c975abb1461039a5780636352211e146103bb57600080fd5b806323b872dd146102f05780632f6f98e11461031057806337a66d85146103305780633ccfd60b1461034557600080fd5b8063081812fc116101b6578063081812fc14610256578063095ea7b31461028e57806313faede6146102ae57806318160ddd146102d257600080fd5b806301ffc9a7146101dd57806306421c2f1461021257806306fdde0314610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611c58565b61060f565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b5061023261022d366004611c8c565b610661565b005b34801561024057600080fd5b506102496106ac565b6040516102099190611cff565b34801561026257600080fd5b50610276610271366004611d12565b61073e565b6040516001600160a01b039091168152602001610209565b34801561029a57600080fd5b506102326102a9366004611d42565b610782565b3480156102ba57600080fd5b506102c4600b5481565b604051908152602001610209565b3480156102de57600080fd5b506102c4600154600054036000190190565b3480156102fc57600080fd5b5061023261030b366004611d6c565b61080f565b34801561031c57600080fd5b5061023261032b366004611da8565b61096b565b34801561033c57600080fd5b506102326109ec565b34801561035157600080fd5b50610232610a37565b34801561036657600080fd5b50610232610375366004611d6c565b610a94565b34801561038657600080fd5b50610232610395366004611d12565b610be5565b3480156103a657600080fd5b50600c546101fd906301000000900460ff1681565b3480156103c757600080fd5b506102766103d6366004611d12565b610c14565b6102326103e9366004611dec565b610c26565b3480156103fa57600080fd5b506102c4610409366004611e07565b610ddc565b34801561041a57600080fd5b50610232610e2b565b34801561042f57600080fd5b5061023261043e366004611eae565b610e61565b34801561044f57600080fd5b506008546001600160a01b0316610276565b34801561046d57600080fd5b50600c546104819062010000900460ff1681565b60405160ff9091168152602001610209565b34801561049f57600080fd5b50610249610e9e565b3480156104b457600080fd5b506102326104c3366004611f05565b610ead565b3480156104d457600080fd5b506102326104e3366004611dec565b610f42565b3480156104f457600080fd5b50610232610503366004611f3c565b610f8a565b34801561051457600080fd5b50610249610523366004611d12565b6110e9565b34801561053457600080fd5b50610232610543366004611fb8565b6111b7565b34801561055457600080fd5b50600c546105639061ffff1681565b60405161ffff9091168152602001610209565b34801561058257600080fd5b50610481610591366004611e07565b600d6020526000908152604090205460ff1681565b3480156105b257600080fd5b506101fd6105c136600461203e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105fb57600080fd5b5061023261060a366004611e07565b611295565b60006001600160e01b031982166380ac58cd60e01b148061064057506001600160e01b03198216635b5e139f60e01b145b8061065b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146106945760405162461bcd60e51b815260040161068b9061205a565b60405180910390fd5b600c805461ffff191661ffff92909216919091179055565b6060600280546106bb9061208f565b80601f01602080910402602001604051908101604052809291908181526020018280546106e79061208f565b80156107345780601f1061070957610100808354040283529160200191610734565b820191906000526020600020905b81548152906001019060200180831161071757829003601f168201915b5050505050905090565b60006107498261133f565b610766576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061078d82610c14565b9050806001600160a01b0316836001600160a01b0316036107c15760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107e157506107df81336105c1565b155b156107ff576040516367d9dca160e11b815260040160405180910390fd5b61080a838383611378565b505050565b826daaeb6d7670e522a718067333cd4e3b1561095a57336001600160a01b03821603610845576108408484846113d4565b610965565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610894573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108b891906120c9565b801561093b5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610917573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061093b91906120c9565b61095a57604051633b79c77360e21b815233600482015260240161068b565b6109658484846113d4565b50505050565b6008546001600160a01b031633146109955760405162461bcd60e51b815260040161068b9061205a565b60006109a8600154600054036000190190565b600c5490915061ffff166109bc84836120fc565b61ffff1611156109de5760405162461bcd60e51b815260040161068b90612122565b61080a828461ffff166113df565b6008546001600160a01b03163314610a165760405162461bcd60e51b815260040161068b9061205a565b600c805463ff00000019811663010000009182900460ff1615909102179055565b6008546001600160a01b03163314610a615760405162461bcd60e51b815260040161068b9061205a565b6040514790339082156108fc029083906000818181858888f19350505050158015610a90573d6000803e3d6000fd5b5050565b826daaeb6d7670e522a718067333cd4e3b15610bda57336001600160a01b03821603610ac5576108408484846113f9565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610b14573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b3891906120c9565b8015610bbb5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610b97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bbb91906120c9565b610bda57604051633b79c77360e21b815233600482015260240161068b565b6109658484846113f9565b6008546001600160a01b03163314610c0f5760405162461bcd60e51b815260040161068b9061205a565b600b55565b6000610c1f82611414565b5192915050565b6000610c39600154600054036000190190565b336000908152600d6020526040902054600c5491925060ff9081169161ffff1690610c66908516846120fc565b61ffff161115610c885760405162461bcd60e51b815260040161068b90612122565b600c5462010000900460ff16610c9e828561214f565b60ff161115610cef5760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e00000000604482015260640161068b565b600c546301000000900460ff1615610d495760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161068b565b8260ff16600b54610d5a9190612174565b341015610d9f5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161068b565b610dac338460ff166113df565b610db6818461214f565b336000908152600d60205260409020805460ff191660ff92909216919091179055505050565b60006001600160a01b038216610e05576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610e555760405162461bcd60e51b815260040161068b9061205a565b610e5f600061153d565b565b6008546001600160a01b03163314610e8b5760405162461bcd60e51b815260040161068b9061205a565b8051610a90906009906020840190611ba9565b6060600380546106bb9061208f565b336001600160a01b03831603610ed65760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610f6c5760405162461bcd60e51b815260040161068b9061205a565b600c805460ff909216620100000262ff000019909216919091179055565b836daaeb6d7670e522a718067333cd4e3b156110d657336001600160a01b03821603610fc157610fbc8585858561158f565b6110e2565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611010573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061103491906120c9565b80156110b75750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611093573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110b791906120c9565b6110d657604051633b79c77360e21b815233600482015260240161068b565b6110e28585858561158f565b5050505050565b60606110f48261133f565b6111585760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161068b565b60006111626115da565b9050600081511161118257604051806020016040528060008152506111b0565b8061118c846115e9565b600a6040516020016111a093929190612193565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111e15760405162461bcd60e51b815260040161068b9061205a565b60006111f4600154600054036000190190565b905060006112058360ff8716612174565b600c5490915061ffff9081169061121f9083908516612256565b111561123d5760405162461bcd60e51b815260040161068b90612122565b60005b8381101561128d5761127b85858381811061125d5761125d61226e565b90506020020160208101906112729190611e07565b8760ff166113df565b8061128581612284565b915050611240565b505050505050565b6008546001600160a01b031633146112bf5760405162461bcd60e51b815260040161068b9061205a565b6001600160a01b0381166113245760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161068b565b61132d8161153d565b50565b6001600160a01b03163b151590565b600081600111158015611353575060005482105b801561065b575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61080a8383836116f2565b610a908282604051806020016040528060008152506118df565b61080a83838360405180602001604052806000815250610f8a565b60408051606081018252600080825260208201819052918101919091528180600111158015611444575060005481105b1561152457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906115225780516001600160a01b0316156114b8579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561151d579392505050565b6114b8565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61159a8484846116f2565b6001600160a01b0383163b151580156115bc57506115ba848484846118ec565b155b15610965576040516368d2bf6b60e11b815260040160405180910390fd5b6060600980546106bb9061208f565b6060816000036116105750506040805180820190915260018152600360fc1b602082015290565b8160005b811561163a578061162481612284565b91506116339050600a836122b3565b9150611614565b60008167ffffffffffffffff81111561165557611655611e22565b6040519080825280601f01601f19166020018201604052801561167f576020820181803683370190505b5090505b84156116ea576116946001836122c7565b91506116a1600a866122de565b6116ac906030612256565b60f81b8183815181106116c1576116c161226e565b60200101906001600160f81b031916908160001a9053506116e3600a866122b3565b9450611683565b949350505050565b60006116fd82611414565b9050836001600160a01b031681600001516001600160a01b0316146117345760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611752575061175285336105c1565b8061176d5750336117628461073e565b6001600160a01b0316145b90508061178d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166117b457604051633a954ecd60e21b815260040160405180910390fd5b6117c060008487611378565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611896576000548214611896578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110e2565b61080a83838360016119d7565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906119219033908990889088906004016122f2565b6020604051808303816000875af192505050801561195c575060408051601f3d908101601f191682019092526119599181019061232f565b60015b6119ba573d80801561198a576040519150601f19603f3d011682016040523d82523d6000602084013e61198f565b606091505b5080516000036119b2576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b038516611a0057604051622e076360e81b815260040160405180910390fd5b83600003611a215760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611ad357506001600160a01b0387163b15155b15611b5b575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611b2460008884806001019550886118ec565b611b41576040516368d2bf6b60e11b815260040160405180910390fd5b808203611ad9578260005414611b5657600080fd5b611ba0565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611b5c575b506000556110e2565b828054611bb59061208f565b90600052602060002090601f016020900481019282611bd75760008555611c1d565b82601f10611bf057805160ff1916838001178555611c1d565b82800160010185558215611c1d579182015b82811115611c1d578251825591602001919060010190611c02565b50611c29929150611c2d565b5090565b5b80821115611c295760008155600101611c2e565b6001600160e01b03198116811461132d57600080fd5b600060208284031215611c6a57600080fd5b81356111b081611c42565b803561ffff81168114611c8757600080fd5b919050565b600060208284031215611c9e57600080fd5b6111b082611c75565b60005b83811015611cc2578181015183820152602001611caa565b838111156109655750506000910152565b60008151808452611ceb816020860160208601611ca7565b601f01601f19169290920160200192915050565b6020815260006111b06020830184611cd3565b600060208284031215611d2457600080fd5b5035919050565b80356001600160a01b0381168114611c8757600080fd5b60008060408385031215611d5557600080fd5b611d5e83611d2b565b946020939093013593505050565b600080600060608486031215611d8157600080fd5b611d8a84611d2b565b9250611d9860208501611d2b565b9150604084013590509250925092565b60008060408385031215611dbb57600080fd5b611dc483611c75565b9150611dd260208401611d2b565b90509250929050565b803560ff81168114611c8757600080fd5b600060208284031215611dfe57600080fd5b6111b082611ddb565b600060208284031215611e1957600080fd5b6111b082611d2b565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611e5357611e53611e22565b604051601f8501601f19908116603f01168101908282118183101715611e7b57611e7b611e22565b81604052809350858152868686011115611e9457600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ec057600080fd5b813567ffffffffffffffff811115611ed757600080fd5b8201601f81018413611ee857600080fd5b6116ea84823560208401611e38565b801515811461132d57600080fd5b60008060408385031215611f1857600080fd5b611f2183611d2b565b91506020830135611f3181611ef7565b809150509250929050565b60008060008060808587031215611f5257600080fd5b611f5b85611d2b565b9350611f6960208601611d2b565b925060408501359150606085013567ffffffffffffffff811115611f8c57600080fd5b8501601f81018713611f9d57600080fd5b611fac87823560208401611e38565b91505092959194509250565b600080600060408486031215611fcd57600080fd5b611fd684611ddb565b9250602084013567ffffffffffffffff80821115611ff357600080fd5b818601915086601f83011261200757600080fd5b81358181111561201657600080fd5b8760208260051b850101111561202b57600080fd5b6020830194508093505050509250925092565b6000806040838503121561205157600080fd5b611dc483611d2b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806120a357607f821691505b6020821081036120c357634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156120db57600080fd5b81516111b081611ef7565b634e487b7160e01b600052601160045260246000fd5b600061ffff808316818516808303821115612119576121196120e6565b01949350505050565b60208082526013908201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604082015260600190565b600060ff821660ff84168060ff0382111561216c5761216c6120e6565b019392505050565b600081600019048311821515161561218e5761218e6120e6565b500290565b6000845160206121a68285838a01611ca7565b8551918401916121b98184848a01611ca7565b8554920191600090600181811c90808316806121d657607f831692505b85831081036121f357634e487b7160e01b85526022600452602485fd5b808015612207576001811461221857612245565b60ff19851688528388019550612245565b60008b81526020902060005b8581101561223d5781548a820152908401908801612224565b505083880195505b50939b9a5050505050505050505050565b60008219821115612269576122696120e6565b500190565b634e487b7160e01b600052603260045260246000fd5b600060018201612296576122966120e6565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826122c2576122c261229d565b500490565b6000828210156122d9576122d96120e6565b500390565b6000826122ed576122ed61229d565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061232590830184611cd3565b9695505050505050565b60006020828403121561234157600080fd5b81516111b081611c4256fea264697066735822122094a35b8bb4bef126c6fcd4042b498788f84cb3b661a4618731f0c7ec232444af64736f6c634300080d0033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696175357a6534646a726a6e676267326a7932677866787a72346b36766a67356c343579727a326b326a726276706571337a64676d2f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636ecd230611610102578063aa06229011610095578063d5abeb0111610064578063d5abeb0114610548578063e94053c714610576578063e985e9c5146105a6578063f2fde38b146105ef57600080fd5b8063aa062290146104c8578063b88d4fde146104e8578063c87b56dd14610508578063cffb6e201461052857600080fd5b80638da5cb5b116100d15780638da5cb5b1461044357806394354fd01461046157806395d89b4114610493578063a22cb465146104a857600080fd5b80636ecd2306146103db57806370a08231146103ee578063715018a61461040e5780637ec4a6591461042357600080fd5b806323b872dd1161017a57806342842e0e1161014957806342842e0e1461035a57806344a0d68a1461037a5780635c975abb1461039a5780636352211e146103bb57600080fd5b806323b872dd146102f05780632f6f98e11461031057806337a66d85146103305780633ccfd60b1461034557600080fd5b8063081812fc116101b6578063081812fc14610256578063095ea7b31461028e57806313faede6146102ae57806318160ddd146102d257600080fd5b806301ffc9a7146101dd57806306421c2f1461021257806306fdde0314610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611c58565b61060f565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b5061023261022d366004611c8c565b610661565b005b34801561024057600080fd5b506102496106ac565b6040516102099190611cff565b34801561026257600080fd5b50610276610271366004611d12565b61073e565b6040516001600160a01b039091168152602001610209565b34801561029a57600080fd5b506102326102a9366004611d42565b610782565b3480156102ba57600080fd5b506102c4600b5481565b604051908152602001610209565b3480156102de57600080fd5b506102c4600154600054036000190190565b3480156102fc57600080fd5b5061023261030b366004611d6c565b61080f565b34801561031c57600080fd5b5061023261032b366004611da8565b61096b565b34801561033c57600080fd5b506102326109ec565b34801561035157600080fd5b50610232610a37565b34801561036657600080fd5b50610232610375366004611d6c565b610a94565b34801561038657600080fd5b50610232610395366004611d12565b610be5565b3480156103a657600080fd5b50600c546101fd906301000000900460ff1681565b3480156103c757600080fd5b506102766103d6366004611d12565b610c14565b6102326103e9366004611dec565b610c26565b3480156103fa57600080fd5b506102c4610409366004611e07565b610ddc565b34801561041a57600080fd5b50610232610e2b565b34801561042f57600080fd5b5061023261043e366004611eae565b610e61565b34801561044f57600080fd5b506008546001600160a01b0316610276565b34801561046d57600080fd5b50600c546104819062010000900460ff1681565b60405160ff9091168152602001610209565b34801561049f57600080fd5b50610249610e9e565b3480156104b457600080fd5b506102326104c3366004611f05565b610ead565b3480156104d457600080fd5b506102326104e3366004611dec565b610f42565b3480156104f457600080fd5b50610232610503366004611f3c565b610f8a565b34801561051457600080fd5b50610249610523366004611d12565b6110e9565b34801561053457600080fd5b50610232610543366004611fb8565b6111b7565b34801561055457600080fd5b50600c546105639061ffff1681565b60405161ffff9091168152602001610209565b34801561058257600080fd5b50610481610591366004611e07565b600d6020526000908152604090205460ff1681565b3480156105b257600080fd5b506101fd6105c136600461203e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105fb57600080fd5b5061023261060a366004611e07565b611295565b60006001600160e01b031982166380ac58cd60e01b148061064057506001600160e01b03198216635b5e139f60e01b145b8061065b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146106945760405162461bcd60e51b815260040161068b9061205a565b60405180910390fd5b600c805461ffff191661ffff92909216919091179055565b6060600280546106bb9061208f565b80601f01602080910402602001604051908101604052809291908181526020018280546106e79061208f565b80156107345780601f1061070957610100808354040283529160200191610734565b820191906000526020600020905b81548152906001019060200180831161071757829003601f168201915b5050505050905090565b60006107498261133f565b610766576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061078d82610c14565b9050806001600160a01b0316836001600160a01b0316036107c15760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107e157506107df81336105c1565b155b156107ff576040516367d9dca160e11b815260040160405180910390fd5b61080a838383611378565b505050565b826daaeb6d7670e522a718067333cd4e3b1561095a57336001600160a01b03821603610845576108408484846113d4565b610965565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610894573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108b891906120c9565b801561093b5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610917573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061093b91906120c9565b61095a57604051633b79c77360e21b815233600482015260240161068b565b6109658484846113d4565b50505050565b6008546001600160a01b031633146109955760405162461bcd60e51b815260040161068b9061205a565b60006109a8600154600054036000190190565b600c5490915061ffff166109bc84836120fc565b61ffff1611156109de5760405162461bcd60e51b815260040161068b90612122565b61080a828461ffff166113df565b6008546001600160a01b03163314610a165760405162461bcd60e51b815260040161068b9061205a565b600c805463ff00000019811663010000009182900460ff1615909102179055565b6008546001600160a01b03163314610a615760405162461bcd60e51b815260040161068b9061205a565b6040514790339082156108fc029083906000818181858888f19350505050158015610a90573d6000803e3d6000fd5b5050565b826daaeb6d7670e522a718067333cd4e3b15610bda57336001600160a01b03821603610ac5576108408484846113f9565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610b14573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b3891906120c9565b8015610bbb5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610b97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bbb91906120c9565b610bda57604051633b79c77360e21b815233600482015260240161068b565b6109658484846113f9565b6008546001600160a01b03163314610c0f5760405162461bcd60e51b815260040161068b9061205a565b600b55565b6000610c1f82611414565b5192915050565b6000610c39600154600054036000190190565b336000908152600d6020526040902054600c5491925060ff9081169161ffff1690610c66908516846120fc565b61ffff161115610c885760405162461bcd60e51b815260040161068b90612122565b600c5462010000900460ff16610c9e828561214f565b60ff161115610cef5760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e00000000604482015260640161068b565b600c546301000000900460ff1615610d495760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161068b565b8260ff16600b54610d5a9190612174565b341015610d9f5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161068b565b610dac338460ff166113df565b610db6818461214f565b336000908152600d60205260409020805460ff191660ff92909216919091179055505050565b60006001600160a01b038216610e05576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610e555760405162461bcd60e51b815260040161068b9061205a565b610e5f600061153d565b565b6008546001600160a01b03163314610e8b5760405162461bcd60e51b815260040161068b9061205a565b8051610a90906009906020840190611ba9565b6060600380546106bb9061208f565b336001600160a01b03831603610ed65760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610f6c5760405162461bcd60e51b815260040161068b9061205a565b600c805460ff909216620100000262ff000019909216919091179055565b836daaeb6d7670e522a718067333cd4e3b156110d657336001600160a01b03821603610fc157610fbc8585858561158f565b6110e2565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611010573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061103491906120c9565b80156110b75750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611093573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110b791906120c9565b6110d657604051633b79c77360e21b815233600482015260240161068b565b6110e28585858561158f565b5050505050565b60606110f48261133f565b6111585760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161068b565b60006111626115da565b9050600081511161118257604051806020016040528060008152506111b0565b8061118c846115e9565b600a6040516020016111a093929190612193565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111e15760405162461bcd60e51b815260040161068b9061205a565b60006111f4600154600054036000190190565b905060006112058360ff8716612174565b600c5490915061ffff9081169061121f9083908516612256565b111561123d5760405162461bcd60e51b815260040161068b90612122565b60005b8381101561128d5761127b85858381811061125d5761125d61226e565b90506020020160208101906112729190611e07565b8760ff166113df565b8061128581612284565b915050611240565b505050505050565b6008546001600160a01b031633146112bf5760405162461bcd60e51b815260040161068b9061205a565b6001600160a01b0381166113245760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161068b565b61132d8161153d565b50565b6001600160a01b03163b151590565b600081600111158015611353575060005482105b801561065b575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61080a8383836116f2565b610a908282604051806020016040528060008152506118df565b61080a83838360405180602001604052806000815250610f8a565b60408051606081018252600080825260208201819052918101919091528180600111158015611444575060005481105b1561152457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906115225780516001600160a01b0316156114b8579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561151d579392505050565b6114b8565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61159a8484846116f2565b6001600160a01b0383163b151580156115bc57506115ba848484846118ec565b155b15610965576040516368d2bf6b60e11b815260040160405180910390fd5b6060600980546106bb9061208f565b6060816000036116105750506040805180820190915260018152600360fc1b602082015290565b8160005b811561163a578061162481612284565b91506116339050600a836122b3565b9150611614565b60008167ffffffffffffffff81111561165557611655611e22565b6040519080825280601f01601f19166020018201604052801561167f576020820181803683370190505b5090505b84156116ea576116946001836122c7565b91506116a1600a866122de565b6116ac906030612256565b60f81b8183815181106116c1576116c161226e565b60200101906001600160f81b031916908160001a9053506116e3600a866122b3565b9450611683565b949350505050565b60006116fd82611414565b9050836001600160a01b031681600001516001600160a01b0316146117345760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611752575061175285336105c1565b8061176d5750336117628461073e565b6001600160a01b0316145b90508061178d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166117b457604051633a954ecd60e21b815260040160405180910390fd5b6117c060008487611378565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611896576000548214611896578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110e2565b61080a83838360016119d7565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906119219033908990889088906004016122f2565b6020604051808303816000875af192505050801561195c575060408051601f3d908101601f191682019092526119599181019061232f565b60015b6119ba573d80801561198a576040519150601f19603f3d011682016040523d82523d6000602084013e61198f565b606091505b5080516000036119b2576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b038516611a0057604051622e076360e81b815260040160405180910390fd5b83600003611a215760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611ad357506001600160a01b0387163b15155b15611b5b575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611b2460008884806001019550886118ec565b611b41576040516368d2bf6b60e11b815260040160405180910390fd5b808203611ad9578260005414611b5657600080fd5b611ba0565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611b5c575b506000556110e2565b828054611bb59061208f565b90600052602060002090601f016020900481019282611bd75760008555611c1d565b82601f10611bf057805160ff1916838001178555611c1d565b82800160010185558215611c1d579182015b82811115611c1d578251825591602001919060010190611c02565b50611c29929150611c2d565b5090565b5b80821115611c295760008155600101611c2e565b6001600160e01b03198116811461132d57600080fd5b600060208284031215611c6a57600080fd5b81356111b081611c42565b803561ffff81168114611c8757600080fd5b919050565b600060208284031215611c9e57600080fd5b6111b082611c75565b60005b83811015611cc2578181015183820152602001611caa565b838111156109655750506000910152565b60008151808452611ceb816020860160208601611ca7565b601f01601f19169290920160200192915050565b6020815260006111b06020830184611cd3565b600060208284031215611d2457600080fd5b5035919050565b80356001600160a01b0381168114611c8757600080fd5b60008060408385031215611d5557600080fd5b611d5e83611d2b565b946020939093013593505050565b600080600060608486031215611d8157600080fd5b611d8a84611d2b565b9250611d9860208501611d2b565b9150604084013590509250925092565b60008060408385031215611dbb57600080fd5b611dc483611c75565b9150611dd260208401611d2b565b90509250929050565b803560ff81168114611c8757600080fd5b600060208284031215611dfe57600080fd5b6111b082611ddb565b600060208284031215611e1957600080fd5b6111b082611d2b565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611e5357611e53611e22565b604051601f8501601f19908116603f01168101908282118183101715611e7b57611e7b611e22565b81604052809350858152868686011115611e9457600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ec057600080fd5b813567ffffffffffffffff811115611ed757600080fd5b8201601f81018413611ee857600080fd5b6116ea84823560208401611e38565b801515811461132d57600080fd5b60008060408385031215611f1857600080fd5b611f2183611d2b565b91506020830135611f3181611ef7565b809150509250929050565b60008060008060808587031215611f5257600080fd5b611f5b85611d2b565b9350611f6960208601611d2b565b925060408501359150606085013567ffffffffffffffff811115611f8c57600080fd5b8501601f81018713611f9d57600080fd5b611fac87823560208401611e38565b91505092959194509250565b600080600060408486031215611fcd57600080fd5b611fd684611ddb565b9250602084013567ffffffffffffffff80821115611ff357600080fd5b818601915086601f83011261200757600080fd5b81358181111561201657600080fd5b8760208260051b850101111561202b57600080fd5b6020830194508093505050509250925092565b6000806040838503121561205157600080fd5b611dc483611d2b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806120a357607f821691505b6020821081036120c357634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156120db57600080fd5b81516111b081611ef7565b634e487b7160e01b600052601160045260246000fd5b600061ffff808316818516808303821115612119576121196120e6565b01949350505050565b60208082526013908201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604082015260600190565b600060ff821660ff84168060ff0382111561216c5761216c6120e6565b019392505050565b600081600019048311821515161561218e5761218e6120e6565b500290565b6000845160206121a68285838a01611ca7565b8551918401916121b98184848a01611ca7565b8554920191600090600181811c90808316806121d657607f831692505b85831081036121f357634e487b7160e01b85526022600452602485fd5b808015612207576001811461221857612245565b60ff19851688528388019550612245565b60008b81526020902060005b8581101561223d5781548a820152908401908801612224565b505083880195505b50939b9a5050505050505050505050565b60008219821115612269576122696120e6565b500190565b634e487b7160e01b600052603260045260246000fd5b600060018201612296576122966120e6565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826122c2576122c261229d565b500490565b6000828210156122d9576122d96120e6565b500390565b6000826122ed576122ed61229d565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061232590830184611cd3565b9695505050505050565b60006020828403121561234157600080fd5b81516111b081611c4256fea264697066735822122094a35b8bb4bef126c6fcd4042b498788f84cb3b661a4618731f0c7ec232444af64736f6c634300080d0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696175357a6534646a726a6e676267326a7932677866787a72346b36766a67356c343579727a326b326a726276706571337a64676d2f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _uriPrefix (string): ipfs://bafybeiau5ze4djrjngbg2jy2gxfxzr4k6vjg5l45yrz2k2jrbvpeq3zdgm/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [2] : 697066733a2f2f626166796265696175357a6534646a726a6e676267326a7932
Arg [3] : 677866787a72346b36766a67356c343579727a326b326a726276706571337a64
Arg [4] : 676d2f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

48575:3772:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24464:305;;;;;;;;;;-1:-1:-1;24464:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;24464:305:0;;;;;;;;50593:97;;;;;;;;;;-1:-1:-1;50593:97:0;;;;;:::i;:::-;;:::i;:::-;;27577:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29080:204::-;;;;;;;;;;-1:-1:-1;29080:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2045:32:1;;;2027:51;;2015:2;2000:18;29080:204:0;1881:203:1;28643:371:0;;;;;;;;;;-1:-1:-1;28643:371:0;;;;;:::i;:::-;;:::i;48754:33::-;;;;;;;;;;;;;;;;;;;2672:25:1;;;2660:2;2645:18;48754:33:0;2526:177:1;23713:303:0;;;;;;;;;;;;23570:1;23967:12;23757:7;23951:13;:28;-1:-1:-1;;23951:46:0;;23713:303;51766:163;;;;;;;;;;-1:-1:-1;51766:163:0;;;;;:::i;:::-;;:::i;49785:326::-;;;;;;;;;;-1:-1:-1;49785:326:0;;;;;:::i;:::-;;:::i;51234:74::-;;;;;;;;;;;;;:::i;51509:144::-;;;;;;;;;;;;;:::i;51937:171::-;;;;;;;;;;-1:-1:-1;51937:171:0;;;;;:::i;:::-;;:::i;51314:76::-;;;;;;;;;;-1:-1:-1;51314:76:0;;;;;:::i;:::-;;:::i;48936:25::-;;;;;;;;;;-1:-1:-1;48936:25:0;;;;;;;;;;;27385:125;;;;;;;;;;-1:-1:-1;27385:125:0;;;;;:::i;:::-;;:::i;49181:596::-;;;;;;:::i;:::-;;:::i;24833:206::-;;;;;;;;;;-1:-1:-1;24833:206:0;;;;;:::i;:::-;;:::i;43286:103::-;;;;;;;;;;;;;:::i;51126:102::-;;;;;;;;;;-1:-1:-1;51126:102:0;;;;;:::i;:::-;;:::i;42634:87::-;;;;;;;;;;-1:-1:-1;42707:6:0;;-1:-1:-1;;;;;42707:6:0;42634:87;;48828:35;;;;;;;;;;-1:-1:-1;48828:35:0;;;;;;;;;;;;;;5240:4:1;5228:17;;;5210:36;;5198:2;5183:18;48828:35:0;5068:184:1;27746:104:0;;;;;;;;;;;;;:::i;29356:287::-;;;;;;;;;;-1:-1:-1;29356:287:0;;;;;:::i;:::-;;:::i;51396:107::-;;;;;;;;;;-1:-1:-1;51396:107:0;;;;;:::i;:::-;;:::i;52116:228::-;;;;;;;;;;-1:-1:-1;52116:228:0;;;;;:::i;:::-;;:::i;50696:424::-;;;;;;;;;;-1:-1:-1;50696:424:0;;;;;:::i;:::-;;:::i;50117:470::-;;;;;;;;;;-1:-1:-1;50117:470:0;;;;;:::i;:::-;;:::i;48794:29::-;;;;;;;;;;-1:-1:-1;48794:29:0;;;;;;;;;;;7236:6:1;7224:19;;;7206:38;;7194:2;7179:18;48794:29:0;7062:188:1;48968:53:0;;;;;;;;;;-1:-1:-1;48968:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29714:164;;;;;;;;;;-1:-1:-1;29714:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29835:25:0;;;29811:4;29835:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29714:164;43544:201;;;;;;;;;;-1:-1:-1;43544:201:0;;;;;:::i;:::-;;:::i;24464:305::-;24566:4;-1:-1:-1;;;;;;24603:40:0;;-1:-1:-1;;;24603:40:0;;:105;;-1:-1:-1;;;;;;;24660:48:0;;-1:-1:-1;;;24660:48:0;24603:105;:158;;;-1:-1:-1;;;;;;;;;;14498:40:0;;;24725:36;24583:178;24464:305;-1:-1:-1;;24464:305:0:o;50593:97::-;42707:6;;-1:-1:-1;;;;;42707:6:0;2939:10;42854:23;42846:69;;;;-1:-1:-1;;;42846:69:0;;;;;;;:::i;:::-;;;;;;;;;50662:9:::1;:22:::0;;-1:-1:-1;;50662:22:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;50593:97::o;27577:100::-;27631:13;27664:5;27657:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27577:100;:::o;29080:204::-;29148:7;29173:16;29181:7;29173;:16::i;:::-;29168:64;;29198:34;;-1:-1:-1;;;29198:34:0;;;;;;;;;;;29168:64;-1:-1:-1;29252:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29252:24:0;;29080:204::o;28643:371::-;28716:13;28732:24;28748:7;28732:15;:24::i;:::-;28716:40;;28777:5;-1:-1:-1;;;;;28771:11:0;:2;-1:-1:-1;;;;;28771:11:0;;28767:48;;28791:24;;-1:-1:-1;;;28791:24:0;;;;;;;;;;;28767:48;2939:10;-1:-1:-1;;;;;28832:21:0;;;;;;:63;;-1:-1:-1;28858:37:0;28875:5;2939:10;29714:164;:::i;28858:37::-;28857:38;28832:63;28828:138;;;28919:35;;-1:-1:-1;;;28919:35:0;;;;;;;;;;;28828:138;28978:28;28987:2;28991:7;29000:5;28978:8;:28::i;:::-;28705:309;28643:371;;:::o;51766:163::-;51867:4;46410:42;47550:43;:47;47546:699;;47837:10;-1:-1:-1;;;;;47829:18:0;;;47825:85;;51884:37:::1;51903:4;51909:2;51913:7;51884:18;:37::i;:::-;47888:7:::0;;47825:85;47970:67;;-1:-1:-1;;;47970:67:0;;48019:4;47970:67;;;8478:34:1;48026:10:0;8528:18:1;;;8521:43;46410:42:0;;47970:40;;8413:18:1;;47970:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;48066:61:0;;-1:-1:-1;;;48066:61:0;;48115:4;48066:61;;;8478:34:1;-1:-1:-1;;;;;8548:15:1;;8528:18;;;8521:43;46410:42:0;;48066:40;;8413:18:1;;48066:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47924:310;;48188:30;;-1:-1:-1;;;48188:30:0;;48207:10;48188:30;;;2027:51:1;2000:18;;48188:30:0;1881:203:1;47924:310:0;51884:37:::1;51903:4;51909:2;51913:7;51884:18;:37::i;:::-;51766:163:::0;;;;:::o;49785:326::-;42707:6;;-1:-1:-1;;;;;42707:6:0;2939:10;42854:23;42846:69;;;;-1:-1:-1;;;42846:69:0;;;;;;;:::i;:::-;49868:18:::1;49896:13;23570:1:::0;23967:12;23757:7;23951:13;:28;-1:-1:-1;;23951:46:0;;23713:303;49896:13:::1;49954:9;::::0;49868:42;;-1:-1:-1;49954:9:0::1;;49925:25;49939:11:::0;49868:42;49925:25:::1;:::i;:::-;:38;;;;49917:70;;;;-1:-1:-1::0;;;49917:70:0::1;;;;;;;:::i;:::-;49995:34;50005:9;50017:11;49995:34;;:9;:34::i;51234:74::-:0;42707:6;;-1:-1:-1;;;;;42707:6:0;2939:10;42854:23;42846:69;;;;-1:-1:-1;;;42846:69:0;;;;;;;:::i;:::-;51291:6:::1;::::0;;-1:-1:-1;;51281:16:0;::::1;51291:6:::0;;;;::::1;;;51290:7;51281:16:::0;;::::1;;::::0;;51234:74::o;51509:144::-;42707:6;;-1:-1:-1;;;;;42707:6:0;2939:10;42854:23;42846:69;;;;-1:-1:-1;;;42846:69:0;;;;;;;:::i;:::-;51598:39:::1;::::0;51569:21:::1;::::0;51606:10:::1;::::0;51598:39;::::1;;;::::0;51569:21;;51553:13:::1;51598:39:::0;51553:13;51598:39;51569:21;51606:10;51598:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;51548:105;51509:144::o:0;51937:171::-;52042:4;46410:42;47550:43;:47;47546:699;;47837:10;-1:-1:-1;;;;;47829:18:0;;;47825:85;;52059:41:::1;52082:4;52088:2;52092:7;52059:22;:41::i;47825:85::-:0;47970:67;;-1:-1:-1;;;47970:67:0;;48019:4;47970:67;;;8478:34:1;48026:10:0;8528:18:1;;;8521:43;46410:42:0;;47970:40;;8413:18:1;;47970:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;48066:61:0;;-1:-1:-1;;;48066:61:0;;48115:4;48066:61;;;8478:34:1;-1:-1:-1;;;;;8548:15:1;;8528:18;;;8521:43;46410:42:0;;48066:40;;8413:18:1;;48066:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47924:310;;48188:30;;-1:-1:-1;;;48188:30:0;;48207:10;48188:30;;;2027:51:1;2000:18;;48188:30:0;1881:203:1;47924:310:0;52059:41:::1;52082:4;52088:2;52092:7;52059:22;:41::i;51314:76::-:0;42707:6;;-1:-1:-1;;;;;42707:6:0;2939:10;42854:23;42846:69;;;;-1:-1:-1;;;42846:69:0;;;;;;;:::i;:::-;51370:4:::1;:12:::0;51314:76::o;27385:125::-;27449:7;27476:21;27489:7;27476:12;:21::i;:::-;:26;;27385:125;-1:-1:-1;;27385:125:0:o;49181:596::-;49240:18;49268:13;23570:1;23967:12;23757:7;23951:13;:28;-1:-1:-1;;23951:46:0;;23713:303;49268:13;49322:10;49290:9;49302:31;;;:19;:31;;;;;;49377:9;;49240:42;;-1:-1:-1;49302:31:0;;;;;49377:9;;;49348:25;;;;49240:42;49348:25;:::i;:::-;:38;;;;49340:70;;;;-1:-1:-1;;;49340:70:0;;;;;;;:::i;:::-;49446:18;;;;;;;49425:17;49439:3;49425:11;:17;:::i;:::-;:39;;;;49417:80;;;;-1:-1:-1;;;49417:80:0;;9945:2:1;49417:80:0;;;9927:21:1;9984:2;9964:18;;;9957:30;10023;10003:18;;;9996:58;10071:18;;49417:80:0;9743:352:1;49417:80:0;49513:6;;;;;;;49512:7;49504:43;;;;-1:-1:-1;;;49504:43:0;;10302:2:1;49504:43:0;;;10284:21:1;10341:2;10321:18;;;10314:30;10380:25;10360:18;;;10353:53;10423:18;;49504:43:0;10100:347:1;49504:43:0;49584:11;49577:18;;:4;;:18;;;;:::i;:::-;49564:9;:31;;49556:63;;;;-1:-1:-1;;;49556:63:0;;10827:2:1;49556:63:0;;;10809:21:1;10866:2;10846:18;;;10839:30;-1:-1:-1;;;10885:18:1;;;10878:49;10944:18;;49556:63:0;10625:343:1;49556:63:0;49626:35;49636:10;49649:11;49626:35;;:9;:35::i;:::-;49702:17;49716:3;49702:11;:17;:::i;:::-;49688:10;49668:31;;;;:19;:31;;;;;:51;;-1:-1:-1;;49668:51:0;;;;;;;;;;;;-1:-1:-1;;;49181:596:0:o;24833:206::-;24897:7;-1:-1:-1;;;;;24921:19:0;;24917:60;;24949:28;;-1:-1:-1;;;24949:28:0;;;;;;;;;;;24917:60;-1:-1:-1;;;;;;25003:19:0;;;;;:12;:19;;;;;:27;;;;24833:206::o;43286:103::-;42707:6;;-1:-1:-1;;;;;42707:6:0;2939:10;42854:23;42846:69;;;;-1:-1:-1;;;42846:69:0;;;;;;;:::i;:::-;43351:30:::1;43378:1;43351:18;:30::i;:::-;43286:103::o:0;51126:102::-;42707:6;;-1:-1:-1;;;;;42707:6:0;2939:10;42854:23;42846:69;;;;-1:-1:-1;;;42846:69:0;;;;;;;:::i;:::-;51200:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;27746:104::-:0;27802:13;27835:7;27828:14;;;;;:::i;29356:287::-;2939:10;-1:-1:-1;;;;;29455:24:0;;;29451:54;;29488:17;;-1:-1:-1;;;29488:17:0;;;;;;;;;;;29451:54;2939:10;29518:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29518:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29518:53:0;;;;;;;;;;29587:48;;540:41:1;;;29518:42:0;;2939:10;29587:48;;513:18:1;29587:48:0;;;;;;;29356:287;;:::o;51396:107::-;42707:6;;-1:-1:-1;;;;;42707:6:0;2939:10;42854:23;42846:69;;;;-1:-1:-1;;;42846:69:0;;;;;;;:::i;:::-;51468:18:::1;:27:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;51468:27:0;;::::1;::::0;;;::::1;::::0;;51396:107::o;52116:228::-;52267:4;46410:42;47550:43;:47;47546:699;;47837:10;-1:-1:-1;;;;;47829:18:0;;;47825:85;;52289:47:::1;52312:4;52318:2;52322:7;52331:4;52289:22;:47::i;:::-;47888:7:::0;;47825:85;47970:67;;-1:-1:-1;;;47970:67:0;;48019:4;47970:67;;;8478:34:1;48026:10:0;8528:18:1;;;8521:43;46410:42:0;;47970:40;;8413:18:1;;47970:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;48066:61:0;;-1:-1:-1;;;48066:61:0;;48115:4;48066:61;;;8478:34:1;-1:-1:-1;;;;;8548:15:1;;8528:18;;;8521:43;46410:42:0;;48066:40;;8413:18:1;;48066:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47924:310;;48188:30;;-1:-1:-1;;;48188:30:0;;48207:10;48188:30;;;2027:51:1;2000:18;;48188:30:0;1881:203:1;47924:310:0;52289:47:::1;52312:4;52318:2;52322:7;52331:4;52289:22;:47::i;:::-;52116:228:::0;;;;;:::o;50696:424::-;50795:13;50836:17;50844:8;50836:7;:17::i;:::-;50820:98;;;;-1:-1:-1;;;50820:98:0;;11175:2:1;50820:98:0;;;11157:21:1;11214:2;11194:18;;;11187:30;11253:34;11233:18;;;11226:62;-1:-1:-1;;;11304:18:1;;;11297:45;11359:19;;50820:98:0;10973:411:1;50820:98:0;50929:28;50960:10;:8;:10::i;:::-;50929:41;;51015:1;50990:14;50984:28;:32;:130;;;;;;;;;;;;;;;;;51052:14;51068:19;:8;:17;:19::i;:::-;51089:9;51035:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50984:130;50977:137;50696:424;-1:-1:-1;;;50696:424:0:o;50117:470::-;42707:6;;-1:-1:-1;;;;;42707:6:0;2939:10;42854:23;42846:69;;;;-1:-1:-1;;;42846:69:0;;;;;;;:::i;:::-;50216:18:::1;50244:13;23570:1:::0;23967:12;23757:7;23951:13;:28;-1:-1:-1;;23951:46:0;;23713:303;50244:13:::1;50216:42:::0;-1:-1:-1;50266:16:0::1;50287:36;50307:9:::0;50287:36:::1;::::0;::::1;;:::i;:::-;50367:9;::::0;50266:57;;-1:-1:-1;50367:9:0::1;::::0;;::::1;::::0;50338:25:::1;::::0;50266:57;;50338:25;::::1;;:::i;:::-;:38;;50330:70;;;;-1:-1:-1::0;;;50330:70:0::1;;;;;;;:::i;:::-;50413:9;50408:116;50428:20:::0;;::::1;50408:116;;;50470:42;50480:9;;50490:1;50480:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;50494:17;50470:42;;:9;:42::i;:::-;50450:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50408:116;;;-1:-1:-1::0;;;;;;50117:470:0:o;43544:201::-;42707:6;;-1:-1:-1;;;;;42707:6:0;2939:10;42854:23;42846:69;;;;-1:-1:-1;;;42846:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43633:22:0;::::1;43625:73;;;::::0;-1:-1:-1;;;43625:73:0;;13654:2:1;43625:73:0::1;::::0;::::1;13636:21:1::0;13693:2;13673:18;;;13666:30;13732:34;13712:18;;;13705:62;-1:-1:-1;;;13783:18:1;;;13776:36;13829:19;;43625:73:0::1;13452:402:1::0;43625:73:0::1;43709:28;43728:8;43709:18;:28::i;:::-;43544:201:::0;:::o;4306:326::-;-1:-1:-1;;;;;4601:19:0;;:23;;;4306:326::o;31066:187::-;31123:4;31166:7;23570:1;31147:26;;:53;;;;;31187:13;;31177:7;:23;31147:53;:98;;;;-1:-1:-1;;31218:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31218:27:0;;;;31217:28;;31066:187::o;39236:196::-;39351:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39351:29:0;-1:-1:-1;;;;;39351:29:0;;;;;;;;;39396:28;;39351:24;;39396:28;;;;;;;39236:196;;;:::o;29945:170::-;30079:28;30089:4;30095:2;30099:7;30079:9;:28::i;31261:104::-;31330:27;31340:2;31344:8;31330:27;;;;;;;;;;;;:9;:27::i;30186:185::-;30324:39;30341:4;30347:2;30351:7;30324:39;;;;;;;;;;;;:16;:39::i;26214:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26325:7:0;;23570:1;26374:23;;:47;;;;;26408:13;;26401:4;:20;26374:47;26370:886;;;26442:31;26476:17;;;:11;:17;;;;;;;;;26442:51;;;;;;;;;-1:-1:-1;;;;;26442:51:0;;;;-1:-1:-1;;;26442:51:0;;;;;;;;;;;-1:-1:-1;;;26442:51:0;;;;;;;;;;;;;;26512:729;;26562:14;;-1:-1:-1;;;;;26562:28:0;;26558:101;;26626:9;26214:1109;-1:-1:-1;;;26214:1109:0:o;26558:101::-;-1:-1:-1;;;27001:6:0;27046:17;;;;:11;:17;;;;;;;;;27034:29;;;;;;;;;-1:-1:-1;;;;;27034:29:0;;;;;-1:-1:-1;;;27034:29:0;;;;;;;;;;;-1:-1:-1;;;27034:29:0;;;;;;;;;;;;;27094:28;27090:109;;27162:9;26214:1109;-1:-1:-1;;;26214:1109:0:o;27090:109::-;26961:261;;;26423:833;26370:886;27284:31;;-1:-1:-1;;;27284:31:0;;;;;;;;;;;43905:191;43998:6;;;-1:-1:-1;;;;;44015:17:0;;;-1:-1:-1;;;;;;44015:17:0;;;;;;;44048:40;;43998:6;;;44015:17;43998:6;;44048:40;;43979:16;;44048:40;43968:128;43905:191;:::o;30442:369::-;30609:28;30619:4;30625:2;30629:7;30609:9;:28::i;:::-;-1:-1:-1;;;;;30652:13:0;;4601:19;:23;;30652:76;;;;;30672:56;30703:4;30709:2;30713:7;30722:5;30672:30;:56::i;:::-;30671:57;30652:76;30648:156;;;30752:40;;-1:-1:-1;;;30752:40:0;;;;;;;;;;;51661:97;51714:13;51743:9;51736:16;;;;;:::i;421:723::-;477:13;698:5;707:1;698:10;694:53;;-1:-1:-1;;725:10:0;;;;;;;;;;;;-1:-1:-1;;;725:10:0;;;;;421:723::o;694:53::-;772:5;757:12;813:78;820:9;;813:78;;846:8;;;;:::i;:::-;;-1:-1:-1;869:10:0;;-1:-1:-1;877:2:0;869:10;;:::i;:::-;;;813:78;;;901:19;933:6;923:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;923:17:0;;901:39;;951:154;958:10;;951:154;;985:11;995:1;985:11;;:::i;:::-;;-1:-1:-1;1054:10:0;1062:2;1054:5;:10;:::i;:::-;1041:24;;:2;:24;:::i;:::-;1028:39;;1011:6;1018;1011:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1011:56:0;;;;;;;;-1:-1:-1;1082:11:0;1091:2;1082:11;;:::i;:::-;;;951:154;;;1129:6;421:723;-1:-1:-1;;;;421:723:0:o;34179:2130::-;34294:35;34332:21;34345:7;34332:12;:21::i;:::-;34294:59;;34392:4;-1:-1:-1;;;;;34370:26:0;:13;:18;;;-1:-1:-1;;;;;34370:26:0;;34366:67;;34405:28;;-1:-1:-1;;;34405:28:0;;;;;;;;;;;34366:67;34446:22;2939:10;-1:-1:-1;;;;;34472:20:0;;;;:73;;-1:-1:-1;34509:36:0;34526:4;2939:10;29714:164;:::i;34509:36::-;34472:126;;;-1:-1:-1;2939:10:0;34562:20;34574:7;34562:11;:20::i;:::-;-1:-1:-1;;;;;34562:36:0;;34472:126;34446:153;;34617:17;34612:66;;34643:35;;-1:-1:-1;;;34643:35:0;;;;;;;;;;;34612:66;-1:-1:-1;;;;;34693:16:0;;34689:52;;34718:23;;-1:-1:-1;;;34718:23:0;;;;;;;;;;;34689:52;34862:35;34879:1;34883:7;34892:4;34862:8;:35::i;:::-;-1:-1:-1;;;;;35193:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35193:31:0;;;;;;;-1:-1:-1;;35193:31:0;;;;;;;35239:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35239:29:0;;;;;;;;;;;35319:20;;;:11;:20;;;;;;35354:18;;-1:-1:-1;;;;;;35387:49:0;;;;-1:-1:-1;;;35420:15:0;35387:49;;;;;;;;;;35710:11;;35770:24;;;;;35813:13;;35319:20;;35770:24;;35813:13;35809:384;;36023:13;;36008:11;:28;36004:174;;36061:20;;36130:28;;;;36104:54;;-1:-1:-1;;;36104:54:0;-1:-1:-1;;;;;;36104:54:0;;;-1:-1:-1;;;;;36061:20:0;;36104:54;;;;36004:174;35168:1036;;;36240:7;36236:2;-1:-1:-1;;;;;36221:27:0;36230:4;-1:-1:-1;;;;;36221:27:0;;;;;;;;;;;36259:42;51766:163;31728;31851:32;31857:2;31861:8;31871:5;31878:4;31851:5;:32::i;39924:667::-;40108:72;;-1:-1:-1;;;40108:72:0;;40087:4;;-1:-1:-1;;;;;40108:36:0;;;;;:72;;2939:10;;40159:4;;40165:7;;40174:5;;40108:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40108:72:0;;;;;;;;-1:-1:-1;;40108:72:0;;;;;;;;;;;;:::i;:::-;;;40104:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40342:6;:13;40359:1;40342:18;40338:235;;40388:40;;-1:-1:-1;;;40388:40:0;;;;;;;;;;;40338:235;40531:6;40525:13;40516:6;40512:2;40508:15;40501:38;40104:480;-1:-1:-1;;;;;;40227:55:0;-1:-1:-1;;;40227:55:0;;-1:-1:-1;39924:667:0;;;;;;:::o;32150:1775::-;32289:20;32312:13;-1:-1:-1;;;;;32340:16:0;;32336:48;;32365:19;;-1:-1:-1;;;32365:19:0;;;;;;;;;;;32336:48;32399:8;32411:1;32399:13;32395:44;;32421:18;;-1:-1:-1;;;32421:18:0;;;;;;;;;;;32395:44;-1:-1:-1;;;;;32790:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;32849:49:0;;32790:44;;;;;;;;32849:49;;;;-1:-1:-1;;32790:44:0;;;;;;32849:49;;;;;;;;;;;;;;;;32915:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;32965:66:0;;;;-1:-1:-1;;;33015:15:0;32965:66;;;;;;;;;;32915:25;33112:23;;;33156:4;:23;;;;-1:-1:-1;;;;;;33164:13:0;;4601:19;:23;;33164:15;33152:641;;;33200:314;33231:38;;33256:12;;-1:-1:-1;;;;;33231:38:0;;;33248:1;;33231:38;;33248:1;;33231:38;33297:69;33336:1;33340:2;33344:14;;;;;;33360:5;33297:30;:69::i;:::-;33292:174;;33402:40;;-1:-1:-1;;;33402:40:0;;;;;;;;;;;33292:174;33509:3;33493:12;:19;33200:314;;33595:12;33578:13;;:29;33574:43;;33609:8;;;33574:43;33152:641;;;33658:120;33689:40;;33714:14;;;;;-1:-1:-1;;;;;33689:40:0;;;33706:1;;33689:40;;33706:1;;33689:40;33773:3;33757:12;:19;33658:120;;33152:641;-1:-1:-1;33807:13:0;:28;33857:60;51766:163;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::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:159::-;659:20;;719:6;708:18;;698:29;;688:57;;741:1;738;731:12;688:57;592:159;;;:::o;756:184::-;814:6;867:2;855:9;846:7;842:23;838:32;835:52;;;883:1;880;873:12;835:52;906:28;924:9;906:28;:::i;945:258::-;1017:1;1027:113;1041:6;1038:1;1035:13;1027:113;;;1117:11;;;1111:18;1098:11;;;1091:39;1063:2;1056:10;1027:113;;;1158:6;1155:1;1152:13;1149:48;;;-1:-1:-1;;1193:1:1;1175:16;;1168:27;945:258::o;1208:::-;1250:3;1288:5;1282:12;1315:6;1310:3;1303:19;1331:63;1387:6;1380:4;1375:3;1371:14;1364:4;1357:5;1353:16;1331:63;:::i;:::-;1448:2;1427:15;-1:-1:-1;;1423:29:1;1414:39;;;;1455:4;1410:50;;1208:258;-1:-1:-1;;1208:258:1:o;1471:220::-;1620:2;1609:9;1602:21;1583:4;1640:45;1681:2;1670:9;1666:18;1658:6;1640:45;:::i;1696:180::-;1755:6;1808:2;1796:9;1787:7;1783:23;1779:32;1776:52;;;1824:1;1821;1814:12;1776:52;-1:-1:-1;1847:23:1;;1696:180;-1:-1:-1;1696:180:1:o;2089:173::-;2157:20;;-1:-1:-1;;;;;2206:31:1;;2196:42;;2186:70;;2252:1;2249;2242:12;2267:254;2335:6;2343;2396:2;2384:9;2375:7;2371:23;2367:32;2364:52;;;2412:1;2409;2402:12;2364:52;2435:29;2454:9;2435:29;:::i;:::-;2425:39;2511:2;2496:18;;;;2483:32;;-1:-1:-1;;;2267:254:1:o;2708:328::-;2785:6;2793;2801;2854:2;2842:9;2833:7;2829:23;2825:32;2822:52;;;2870:1;2867;2860:12;2822:52;2893:29;2912:9;2893:29;:::i;:::-;2883:39;;2941:38;2975:2;2964:9;2960:18;2941:38;:::i;:::-;2931:48;;3026:2;3015:9;3011:18;2998:32;2988:42;;2708:328;;;;;:::o;3041:258::-;3108:6;3116;3169:2;3157:9;3148:7;3144:23;3140:32;3137:52;;;3185:1;3182;3175:12;3137:52;3208:28;3226:9;3208:28;:::i;:::-;3198:38;;3255;3289:2;3278:9;3274:18;3255:38;:::i;:::-;3245:48;;3041:258;;;;;:::o;3304:156::-;3370:20;;3430:4;3419:16;;3409:27;;3399:55;;3450:1;3447;3440:12;3465:182;3522:6;3575:2;3563:9;3554:7;3550:23;3546:32;3543:52;;;3591:1;3588;3581:12;3543:52;3614:27;3631:9;3614:27;:::i;3652:186::-;3711:6;3764:2;3752:9;3743:7;3739:23;3735:32;3732:52;;;3780:1;3777;3770:12;3732:52;3803:29;3822:9;3803:29;:::i;3843:127::-;3904:10;3899:3;3895:20;3892:1;3885:31;3935:4;3932:1;3925:15;3959:4;3956:1;3949:15;3975:632;4040:5;4070:18;4111:2;4103:6;4100:14;4097:40;;;4117:18;;:::i;:::-;4192:2;4186:9;4160:2;4246:15;;-1:-1:-1;;4242:24:1;;;4268:2;4238:33;4234:42;4222:55;;;4292:18;;;4312:22;;;4289:46;4286:72;;;4338:18;;:::i;:::-;4378:10;4374:2;4367:22;4407:6;4398:15;;4437:6;4429;4422:22;4477:3;4468:6;4463:3;4459:16;4456:25;4453:45;;;4494:1;4491;4484:12;4453:45;4544:6;4539:3;4532:4;4524:6;4520:17;4507:44;4599:1;4592:4;4583:6;4575;4571:19;4567:30;4560:41;;;;3975:632;;;;;:::o;4612:451::-;4681:6;4734:2;4722:9;4713:7;4709:23;4705:32;4702:52;;;4750:1;4747;4740:12;4702:52;4790:9;4777:23;4823:18;4815:6;4812:30;4809:50;;;4855:1;4852;4845:12;4809:50;4878:22;;4931:4;4923:13;;4919:27;-1:-1:-1;4909:55:1;;4960:1;4957;4950:12;4909:55;4983:74;5049:7;5044:2;5031:16;5026:2;5022;5018:11;4983:74;:::i;5257:118::-;5343:5;5336:13;5329:21;5322:5;5319:32;5309:60;;5365:1;5362;5355:12;5380:315;5445:6;5453;5506:2;5494:9;5485:7;5481:23;5477:32;5474:52;;;5522:1;5519;5512:12;5474:52;5545:29;5564:9;5545:29;:::i;:::-;5535:39;;5624:2;5613:9;5609:18;5596:32;5637:28;5659:5;5637:28;:::i;:::-;5684:5;5674:15;;;5380:315;;;;;:::o;5700:667::-;5795:6;5803;5811;5819;5872:3;5860:9;5851:7;5847:23;5843:33;5840:53;;;5889:1;5886;5879:12;5840:53;5912:29;5931:9;5912:29;:::i;:::-;5902:39;;5960:38;5994:2;5983:9;5979:18;5960:38;:::i;:::-;5950:48;;6045:2;6034:9;6030:18;6017:32;6007:42;;6100:2;6089:9;6085:18;6072:32;6127:18;6119:6;6116:30;6113:50;;;6159:1;6156;6149:12;6113:50;6182:22;;6235:4;6227:13;;6223:27;-1:-1:-1;6213:55:1;;6264:1;6261;6254:12;6213:55;6287:74;6353:7;6348:2;6335:16;6330:2;6326;6322:11;6287:74;:::i;:::-;6277:84;;;5700:667;;;;;;;:::o;6372:685::-;6465:6;6473;6481;6534:2;6522:9;6513:7;6509:23;6505:32;6502:52;;;6550:1;6547;6540:12;6502:52;6573:27;6590:9;6573:27;:::i;:::-;6563:37;;6651:2;6640:9;6636:18;6623:32;6674:18;6715:2;6707:6;6704:14;6701:34;;;6731:1;6728;6721:12;6701:34;6769:6;6758:9;6754:22;6744:32;;6814:7;6807:4;6803:2;6799:13;6795:27;6785:55;;6836:1;6833;6826:12;6785:55;6876:2;6863:16;6902:2;6894:6;6891:14;6888:34;;;6918:1;6915;6908:12;6888:34;6971:7;6966:2;6956:6;6953:1;6949:14;6945:2;6941:23;6937:32;6934:45;6931:65;;;6992:1;6989;6982:12;6931:65;7023:2;7019;7015:11;7005:21;;7045:6;7035:16;;;;;6372:685;;;;;:::o;7255:260::-;7323:6;7331;7384:2;7372:9;7363:7;7359:23;7355:32;7352:52;;;7400:1;7397;7390:12;7352:52;7423:29;7442:9;7423:29;:::i;7520:356::-;7722:2;7704:21;;;7741:18;;;7734:30;7800:34;7795:2;7780:18;;7773:62;7867:2;7852:18;;7520:356::o;7881:380::-;7960:1;7956:12;;;;8003;;;8024:61;;8078:4;8070:6;8066:17;8056:27;;8024:61;8131:2;8123:6;8120:14;8100:18;8097:38;8094:161;;8177:10;8172:3;8168:20;8165:1;8158:31;8212:4;8209:1;8202:15;8240:4;8237:1;8230:15;8094:161;;7881:380;;;:::o;8575:245::-;8642:6;8695:2;8683:9;8674:7;8670:23;8666:32;8663:52;;;8711:1;8708;8701:12;8663:52;8743:9;8737:16;8762:28;8784:5;8762:28;:::i;8825:127::-;8886:10;8881:3;8877:20;8874:1;8867:31;8917:4;8914:1;8907:15;8941:4;8938:1;8931:15;8957:224;8996:3;9024:6;9057:2;9054:1;9050:10;9087:2;9084:1;9080:10;9118:3;9114:2;9110:12;9105:3;9102:21;9099:47;;;9126:18;;:::i;:::-;9162:13;;8957:224;-1:-1:-1;;;;8957:224:1:o;9186:343::-;9388:2;9370:21;;;9427:2;9407:18;;;9400:30;-1:-1:-1;;;9461:2:1;9446:18;;9439:49;9520:2;9505:18;;9186:343::o;9534:204::-;9572:3;9608:4;9605:1;9601:12;9640:4;9637:1;9633:12;9675:3;9669:4;9665:14;9660:3;9657:23;9654:49;;;9683:18;;:::i;:::-;9719:13;;9534:204;-1:-1:-1;;;9534:204:1:o;10452:168::-;10492:7;10558:1;10554;10550:6;10546:14;10543:1;10540:21;10535:1;10528:9;10521:17;10517:45;10514:71;;;10565:18;;:::i;:::-;-1:-1:-1;10605:9:1;;10452:168::o;11515:1527::-;11739:3;11777:6;11771:13;11803:4;11816:51;11860:6;11855:3;11850:2;11842:6;11838:15;11816:51;:::i;:::-;11930:13;;11889:16;;;;11952:55;11930:13;11889:16;11974:15;;;11952:55;:::i;:::-;12096:13;;12029:20;;;12069:1;;12156;12178:18;;;;12231;;;;12258:93;;12336:4;12326:8;12322:19;12310:31;;12258:93;12399:2;12389:8;12386:16;12366:18;12363:40;12360:167;;-1:-1:-1;;;12426:33:1;;12482:4;12479:1;12472:15;12512:4;12433:3;12500:17;12360:167;12543:18;12570:110;;;;12694:1;12689:328;;;;12536:481;;12570:110;-1:-1:-1;;12605:24:1;;12591:39;;12650:20;;;;-1:-1:-1;12570:110:1;;12689:328;11462:1;11455:14;;;11499:4;11486:18;;12784:1;12798:169;12812:8;12809:1;12806:15;12798:169;;;12894:14;;12879:13;;;12872:37;12937:16;;;;12829:10;;12798:169;;;12802:3;;12998:8;12991:5;12987:20;12980:27;;12536:481;-1:-1:-1;13033:3:1;;11515:1527;-1:-1:-1;;;;;;;;;;;11515:1527:1:o;13047:128::-;13087:3;13118:1;13114:6;13111:1;13108:13;13105:39;;;13124:18;;:::i;:::-;-1:-1:-1;13160:9:1;;13047:128::o;13180:127::-;13241:10;13236:3;13232:20;13229:1;13222:31;13272:4;13269:1;13262:15;13296:4;13293:1;13286:15;13312:135;13351:3;13372:17;;;13369:43;;13392:18;;:::i;:::-;-1:-1:-1;13439:1:1;13428:13;;13312:135::o;13859:127::-;13920:10;13915:3;13911:20;13908:1;13901:31;13951:4;13948:1;13941:15;13975:4;13972:1;13965:15;13991:120;14031:1;14057;14047:35;;14062:18;;:::i;:::-;-1:-1:-1;14096:9:1;;13991:120::o;14116:125::-;14156:4;14184:1;14181;14178:8;14175:34;;;14189:18;;:::i;:::-;-1:-1:-1;14226:9:1;;14116:125::o;14246:112::-;14278:1;14304;14294:35;;14309:18;;:::i;:::-;-1:-1:-1;14343:9:1;;14246:112::o;14363:489::-;-1:-1:-1;;;;;14632:15:1;;;14614:34;;14684:15;;14679:2;14664:18;;14657:43;14731:2;14716:18;;14709:34;;;14779:3;14774:2;14759:18;;14752:31;;;14557:4;;14800:46;;14826:19;;14818:6;14800:46;:::i;:::-;14792:54;14363:489;-1:-1:-1;;;;;;14363:489:1:o;14857:249::-;14926:6;14979:2;14967:9;14958:7;14954:23;14950:32;14947:52;;;14995:1;14992;14985:12;14947:52;15027:9;15021:16;15046:30;15070:5;15046:30;:::i

Swarm Source

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