ETH Price: $2,630.94 (-0.10%)

Token

Bunny Mfers (BM)
 

Overview

Max Total Supply

645 BM

Holders

133

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
hashkoffee.eth
Balance
5 BM
0xba7a4c521dfcd18feb7cda4b7ca182d739b7a6a0
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:
BunnyMfers

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-13
*/

// SPDX-License-Identifier: MIT
// 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/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/IERC721Enumerable.sol

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

pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

// File: @openzeppelin/contracts/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: erc721a/contracts/ERC721A.sol

// Creator: Chiru Labs

pragma solidity ^0.8.4;

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
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 and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 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**128 - 1 (max value of uint128).
 */
contract ERC721A is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    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;
    }

    // Compiler will pack the following
    // _currentIndex and _burnCounter into a single 256bit word.

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

    // The number of tokens burned.
    uint128 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_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index)
        public
        view
        override
        returns (uint256)
    {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256)
    {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).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);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * 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 (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
        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 (!_checkOnERC721Received(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 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 > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 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;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (
                    safe &&
                    !_checkOnERC721Received(address(0), to, updatedIndex, _data)
                ) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = uint128(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);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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**128.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership
                        .startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // 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**128.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership
                        .startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, 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 address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try
                IERC721Receiver(to).onERC721Received(
                    _msgSender(),
                    from,
                    tokenId,
                    _data
                )
            returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: contracts/AdminMod.sol

pragma solidity >=0.7.0 <0.9.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there are a number of accounts (the admins) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the starting admin of the contract. This
 * can later be changed with {addAdmin and removeAdmin}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyAdmin`, which can be applied to your functions to restrict their use to
 * the Admin.
 */
abstract contract AdminMod is Ownable {
    mapping(address => bool) private _admins;

    /**
     * @dev Initializes the contract setting the deployer as the initial admin
     */
    constructor() {
        _addAdmin(msg.sender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function isAdmin(address addressForTesting)
        public
        view
        virtual
        onlyAdmin
        returns (bool admin)
    {
        return _admins[addressForTesting];
    }

    /**
     * @dev Throws if called by any account other than the admin.
     */
    modifier onlyAdmin() {
        require(_admins[msg.sender], "AdminMod: caller is not an admin");
        _;
    }

    function addAdmin(address newAdmin) public virtual onlyAdmin {
        require(!_admins[newAdmin], "Address is already a admin.");

        _addAdmin(newAdmin);
    }

    function _addAdmin(address newAdmin) internal virtual {
        _admins[newAdmin] = true;
    }

    function removeAdmin(address adminToRemove) public virtual onlyAdmin {
        require(_admins[adminToRemove], "Adress is not an admin.");
        require(adminToRemove != owner(), "The owner has to be an admin.");

        delete _admins[adminToRemove];
    }

    //newOwner will be declared as an admin
    function transferOwnership(address newOwner)
        public
        virtual
        override
        onlyOwner
    {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );

        _addAdmin(newOwner);
        _transferOwnership(newOwner);
    }
}

contract BunnyMfers is ERC721A, AdminMod {
    using Strings for uint256;

    string baseURI;
    string public baseExtension = ".json";
    uint256 public cost = 0.0099 ether;
    uint256 public maxSupply = 645;
    uint256 public maxMintAmount = 5;
    bool public paused = true;

    address private developerAddress;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
        address _developerAddress
    ) ERC721A(_name, _symbol) {
        setBaseURI(_initBaseURI);
        developerAddress = _developerAddress;
    }

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

    // public
    function mint(uint256 _mintAmount) public payable {
        require(!paused, "Contract is paused");
        require(_mintAmount > 0, "Mint Amount needs to be bigger than 0");
        require(
            _mintAmount <= maxMintAmount,
            "Mint Amount exceeds the Maximum Allowed Mint Amount"
        );
        require(
            totalSupply() + _mintAmount <= maxSupply,
            "Mint Amount exceeds the Available Mint Amount"
        );

        if (msg.sender != owner()) {
            require(
                msg.value >= cost * _mintAmount,
                "Value for minting-transaction is to low"
            );
        }

        _safeMint(msg.sender, _mintAmount);
    }

    /*
    Airdrop function which take up a array of address, indvidual token amount and eth amount
    */
    function sendBatch(address[] calldata _recipients) public onlyAdmin {
        require(_recipients.length < maxSupply);

        for (uint256 i = 0; i < _recipients.length; i++) {
            _safeMint(_recipients[i], 1);
        }
    }

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

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

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

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

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

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

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

    function flipPause() public onlyAdmin {
        paused = !paused;
    }

    function withdraw() public payable onlyOwner {
        uint256 _balance = address(this).balance;

        (bool ds, ) = payable(developerAddress).call{
            value: (_balance * 15) / 100
        }("");
        require(ds);

        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"address","name":"_developerAddress","type":"address"}],"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":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","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":"address","name":"newAdmin","type":"address"}],"name":"addAdmin","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPause","outputs":[],"stateMutability":"nonpayable","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":"addressForTesting","type":"address"}],"name":"isAdmin","outputs":[{"internalType":"bool","name":"admin","type":"bool"}],"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":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"adminToRemove","type":"address"}],"name":"removeAdmin","outputs":[],"stateMutability":"nonpayable","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":"_recipients","type":"address[]"}],"name":"sendBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600a9190620001ff565b5066232bff5f46c000600b55610285600c556005600d55600e805460ff191660011790553480156200005957600080fd5b5060405162002911380380620029118339810160408190526200007c916200035c565b83518490849062000095906001906020850190620001ff565b508051620000ab906002906020840190620001ff565b505050620000c8620000c26200012c60201b60201c565b62000130565b620000f1336001600160a01b03166000908152600860205260409020805460ff19166001179055565b620000fc8262000182565b600e80546001600160a01b0390921661010002610100600160a81b03199092169190911790555062000462915050565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3360009081526008602052604090205460ff16620001e65760405162461bcd60e51b815260206004820181905260248201527f41646d696e4d6f643a2063616c6c6572206973206e6f7420616e2061646d696e604482015260640160405180910390fd5b8051620001fb906009906020840190620001ff565b5050565b8280546200020d906200040f565b90600052602060002090601f0160209004810192826200023157600085556200027c565b82601f106200024c57805160ff19168380011785556200027c565b828001600101855582156200027c579182015b828111156200027c5782518255916020019190600101906200025f565b506200028a9291506200028e565b5090565b5b808211156200028a57600081556001016200028f565b600082601f830112620002b757600080fd5b81516001600160401b0380821115620002d457620002d46200044c565b604051601f8301601f19908116603f01168101908282118183101715620002ff57620002ff6200044c565b816040528381526020925086838588010111156200031c57600080fd5b600091505b8382101562000340578582018301518183018401529082019062000321565b83821115620003525760008385830101525b9695505050505050565b600080600080608085870312156200037357600080fd5b84516001600160401b03808211156200038b57600080fd5b6200039988838901620002a5565b95506020870151915080821115620003b057600080fd5b620003be88838901620002a5565b94506040870151915080821115620003d557600080fd5b50620003e487828801620002a5565b606087015190935090506001600160a01b03811681146200040457600080fd5b939692955090935050565b600181811c908216806200042457607f821691505b602082108114156200044657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61249f80620004726000396000f3fe60806040526004361061020f5760003560e01c80635c975abb11610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146105e2578063d5abeb0114610602578063da3ef23f14610618578063e985e9c514610638578063f2fde38b1461068157600080fd5b8063a22cb4651461056d578063b88d4fde1461058d578063c3abe888146105ad578063c6682862146105cd57600080fd5b8063715018a6116100e7578063715018a6146104f25780637f00c7a6146105075780638da5cb5b1461052757806395d89b4114610545578063a0712d681461055a57600080fd5b80635c975abb146104785780636352211e1461049257806370480275146104b257806370a08231146104d257600080fd5b806324d7806c1161019b57806342842e0e1161016a57806342842e0e146103cb578063438b6300146103eb57806344a0d68a146104185780634f6ccce71461043857806355f804b31461045857600080fd5b806324d7806c1461036e5780632f745c591461038e578063385df649146103ae5780633ccfd60b146103c357600080fd5b806313faede6116101e257806313faede6146102c55780631785f53c146102e957806318160ddd14610309578063239c70ae1461033857806323b872dd1461034e57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f36600461207a565b6106a1565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e61070e565b6040516102409190612286565b34801561027757600080fd5b5061028b6102863660046120fc565b6107a0565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611fdc565b6107e4565b005b3480156102d157600080fd5b506102db600b5481565b604051908152602001610240565b3480156102f557600080fd5b506102c3610304366004611e9b565b610872565b34801561031557600080fd5b506102db6000546001600160801b03600160801b82048116918116919091031690565b34801561034457600080fd5b506102db600d5481565b34801561035a57600080fd5b506102c3610369366004611ee9565b610991565b34801561037a57600080fd5b50610234610389366004611e9b565b61099c565b34801561039a57600080fd5b506102db6103a9366004611fdc565b6109ee565b3480156103ba57600080fd5b506102c3610aea565b6102c3610b2d565b3480156103d757600080fd5b506102c36103e6366004611ee9565b610c44565b3480156103f757600080fd5b5061040b610406366004611e9b565b610c5f565b6040516102409190612242565b34801561042457600080fd5b506102c36104333660046120fc565b610d00565b34801561044457600080fd5b506102db6104533660046120fc565b610d34565b34801561046457600080fd5b506102c36104733660046120b4565b610dde565b34801561048457600080fd5b50600e546102349060ff1681565b34801561049e57600080fd5b5061028b6104ad3660046120fc565b610e24565b3480156104be57600080fd5b506102c36104cd366004611e9b565b610e36565b3480156104de57600080fd5b506102db6104ed366004611e9b565b610eda565b3480156104fe57600080fd5b506102c3610f28565b34801561051357600080fd5b506102c36105223660046120fc565b610f5e565b34801561053357600080fd5b506007546001600160a01b031661028b565b34801561055157600080fd5b5061025e610f92565b6102c36105683660046120fc565b610fa1565b34801561057957600080fd5b506102c3610588366004611fa0565b6111d2565b34801561059957600080fd5b506102c36105a8366004611f25565b611268565b3480156105b957600080fd5b506102c36105c8366004612006565b6112a2565b3480156105d957600080fd5b5061025e61132d565b3480156105ee57600080fd5b5061025e6105fd3660046120fc565b6113bb565b34801561060e57600080fd5b506102db600c5481565b34801561062457600080fd5b506102c36106333660046120b4565b611489565b34801561064457600080fd5b50610234610653366004611eb6565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561068d57600080fd5b506102c361069c366004611e9b565b6114cb565b60006001600160e01b031982166380ac58cd60e01b14806106d257506001600160e01b03198216635b5e139f60e01b145b806106ed57506001600160e01b0319821663780e9d6360e01b145b8061070857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461071d90612391565b80601f016020809104026020016040519081016040528092919081815260200182805461074990612391565b80156107965780601f1061076b57610100808354040283529160200191610796565b820191906000526020600020905b81548152906001019060200180831161077957829003601f168201915b5050505050905090565b60006107ab8261156c565b6107c8576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107ef82610e24565b9050806001600160a01b0316836001600160a01b031614156108245760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061084457506108428133610653565b155b15610862576040516367d9dca160e11b815260040160405180910390fd5b61086d8383836115a0565b505050565b3360009081526008602052604090205460ff166108aa5760405162461bcd60e51b81526004016108a1906122ce565b60405180910390fd5b6001600160a01b03811660009081526008602052604090205460ff166109125760405162461bcd60e51b815260206004820152601760248201527f416472657373206973206e6f7420616e2061646d696e2e00000000000000000060448201526064016108a1565b6007546001600160a01b03828116911614156109705760405162461bcd60e51b815260206004820152601d60248201527f546865206f776e65722068617320746f20626520616e2061646d696e2e00000060448201526064016108a1565b6001600160a01b03166000908152600860205260409020805460ff19169055565b61086d8383836115fc565b3360009081526008602052604081205460ff166109cb5760405162461bcd60e51b81526004016108a1906122ce565b506001600160a01b03811660009081526008602052604090205460ff165b919050565b60006109f983610eda565b8210610a18576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b83811015610ae457600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610a905750610adc565b80516001600160a01b031615610aa557805192505b876001600160a01b0316836001600160a01b03161415610ada5786841415610ad35750935061070892505050565b6001909301925b505b600101610a29565b50600080fd5b3360009081526008602052604090205460ff16610b195760405162461bcd60e51b81526004016108a1906122ce565b600e805460ff19811660ff90911615179055565b6007546001600160a01b03163314610b575760405162461bcd60e51b81526004016108a190612299565b600e54479060009061010090046001600160a01b03166064610b7a84600f61232f565b610b84919061231b565b604051600081818185875af1925050503d8060008114610bc0576040519150601f19603f3d011682016040523d82523d6000602084013e610bc5565b606091505b5050905080610bd357600080fd5b6000610be76007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c31576040519150601f19603f3d011682016040523d82523d6000602084013e610c36565b606091505b505090508061086d57600080fd5b61086d83838360405180602001604052806000815250611268565b60606000610c6c83610eda565b90506000816001600160401b03811115610c8857610c8861243d565b604051908082528060200260200182016040528015610cb1578160200160208202803683370190505b50905060005b82811015610cf857610cc985826109ee565b828281518110610cdb57610cdb612427565b602090810291909101015280610cf0816123cc565b915050610cb7565b509392505050565b3360009081526008602052604090205460ff16610d2f5760405162461bcd60e51b81526004016108a1906122ce565b600b55565b600080546001600160801b031681805b82811015610dc457600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610dbb5785831415610db45750949350505050565b6001909201915b50600101610d44565b506040516329c8c00760e21b815260040160405180910390fd5b3360009081526008602052604090205460ff16610e0d5760405162461bcd60e51b81526004016108a1906122ce565b8051610e20906009906020840190611d76565b5050565b6000610e2f82611819565b5192915050565b3360009081526008602052604090205460ff16610e655760405162461bcd60e51b81526004016108a1906122ce565b6001600160a01b03811660009081526008602052604090205460ff1615610ece5760405162461bcd60e51b815260206004820152601b60248201527f4164647265737320697320616c726561647920612061646d696e2e000000000060448201526064016108a1565b610ed78161193b565b50565b60006001600160a01b038216610f03576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6007546001600160a01b03163314610f525760405162461bcd60e51b81526004016108a190612299565b610f5c600061195f565b565b3360009081526008602052604090205460ff16610f8d5760405162461bcd60e51b81526004016108a1906122ce565b600d55565b60606002805461071d90612391565b600e5460ff1615610fe95760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b60448201526064016108a1565b600081116110475760405162461bcd60e51b815260206004820152602560248201527f4d696e7420416d6f756e74206e6565647320746f206265206269676765722074604482015264068616e20360dc1b60648201526084016108a1565b600d548111156110b55760405162461bcd60e51b815260206004820152603360248201527f4d696e7420416d6f756e74206578636565647320746865204d6178696d756d20604482015272105b1b1bddd95908135a5b9d08105b5bdd5b9d606a1b60648201526084016108a1565b600c54816110db6000546001600160801b03600160801b82048116918116919091031690565b6110e59190612303565b11156111495760405162461bcd60e51b815260206004820152602d60248201527f4d696e7420416d6f756e7420657863656564732074686520417661696c61626c60448201526c1948135a5b9d08105b5bdd5b9d609a1b60648201526084016108a1565b6007546001600160a01b031633146111c85780600b54611169919061232f565b3410156111c85760405162461bcd60e51b815260206004820152602760248201527f56616c756520666f72206d696e74696e672d7472616e73616374696f6e20697360448201526620746f206c6f7760c81b60648201526084016108a1565b610ed733826119b1565b6001600160a01b0382163314156111fc5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112738484846115fc565b61127f848484846119cb565b61129c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b3360009081526008602052604090205460ff166112d15760405162461bcd60e51b81526004016108a1906122ce565b600c5481106112df57600080fd5b60005b8181101561086d5761131b8383838181106112ff576112ff612427565b90506020020160208101906113149190611e9b565b60016119b1565b80611325816123cc565b9150506112e2565b600a805461133a90612391565b80601f016020809104026020016040519081016040528092919081815260200182805461136690612391565b80156113b35780601f10611388576101008083540402835291602001916113b3565b820191906000526020600020905b81548152906001019060200180831161139657829003601f168201915b505050505081565b60606113c68261156c565b61142a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108a1565b6000611434611ada565b905060008151116114545760405180602001604052806000815250611482565b8061145e84611ae9565b600a60405160200161147293929190612141565b6040516020818303038152906040525b9392505050565b3360009081526008602052604090205460ff166114b85760405162461bcd60e51b81526004016108a1906122ce565b8051610e2090600a906020840190611d76565b6007546001600160a01b031633146114f55760405162461bcd60e51b81526004016108a190612299565b6001600160a01b03811661155a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a1565b6115638161193b565b610ed78161195f565b600080546001600160801b031682108015610708575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061160782611819565b80519091506000906001600160a01b0316336001600160a01b03161480611635575081516116359033610653565b80611650575033611645846107a0565b6001600160a01b0316145b90508061167057604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146116a55760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166116cc57604051633a954ecd60e21b815260040160405180910390fd5b6116dc60008484600001516115a0565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166117cf576000546001600160801b03168110156117cf57825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101829052905482906001600160801b031681101561192257600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906119205780516001600160a01b0316156118b7579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561191b579392505050565b6118b7565b505b604051636f96cda160e11b815260040160405180910390fd5b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610e20828260405180602001604052806000815250611be6565b60006001600160a01b0384163b15611ace57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a0f903390899088908890600401612205565b602060405180830381600087803b158015611a2957600080fd5b505af1925050508015611a59575060408051601f3d908101601f19168201909252611a5691810190612097565b60015b611ab4573d808015611a87576040519150601f19603f3d011682016040523d82523d6000602084013e611a8c565b606091505b508051611aac576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ad2565b5060015b949350505050565b60606009805461071d90612391565b606081611b0d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b375780611b21816123cc565b9150611b309050600a8361231b565b9150611b11565b6000816001600160401b03811115611b5157611b5161243d565b6040519080825280601f01601f191660200182016040528015611b7b576020820181803683370190505b5090505b8415611ad257611b9060018361234e565b9150611b9d600a866123e7565b611ba8906030612303565b60f81b818381518110611bbd57611bbd612427565b60200101906001600160f81b031916908160001a905350611bdf600a8661231b565b9450611b7f565b61086d83838360016000546001600160801b03166001600160a01b038516611c2057604051622e076360e81b815260040160405180910390fd5b83611c3e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611d505760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611d265750611d2460008884886119cb565b155b15611d44576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611ccf565b50600080546001600160801b0319166001600160801b0392909216919091179055611812565b828054611d8290612391565b90600052602060002090601f016020900481019282611da45760008555611dea565b82601f10611dbd57805160ff1916838001178555611dea565b82800160010185558215611dea579182015b82811115611dea578251825591602001919060010190611dcf565b50611df6929150611dfa565b5090565b5b80821115611df65760008155600101611dfb565b60006001600160401b0380841115611e2957611e2961243d565b604051601f8501601f19908116603f01168101908282118183101715611e5157611e5161243d565b81604052809350858152868686011115611e6a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146109e957600080fd5b600060208284031215611ead57600080fd5b61148282611e84565b60008060408385031215611ec957600080fd5b611ed283611e84565b9150611ee060208401611e84565b90509250929050565b600080600060608486031215611efe57600080fd5b611f0784611e84565b9250611f1560208501611e84565b9150604084013590509250925092565b60008060008060808587031215611f3b57600080fd5b611f4485611e84565b9350611f5260208601611e84565b92506040850135915060608501356001600160401b03811115611f7457600080fd5b8501601f81018713611f8557600080fd5b611f9487823560208401611e0f565b91505092959194509250565b60008060408385031215611fb357600080fd5b611fbc83611e84565b915060208301358015158114611fd157600080fd5b809150509250929050565b60008060408385031215611fef57600080fd5b611ff883611e84565b946020939093013593505050565b6000806020838503121561201957600080fd5b82356001600160401b038082111561203057600080fd5b818501915085601f83011261204457600080fd5b81358181111561205357600080fd5b8660208260051b850101111561206857600080fd5b60209290920196919550909350505050565b60006020828403121561208c57600080fd5b813561148281612453565b6000602082840312156120a957600080fd5b815161148281612453565b6000602082840312156120c657600080fd5b81356001600160401b038111156120dc57600080fd5b8201601f810184136120ed57600080fd5b611ad284823560208401611e0f565b60006020828403121561210e57600080fd5b5035919050565b6000815180845261212d816020860160208601612365565b601f01601f19169290920160200192915050565b6000845160206121548285838a01612365565b8551918401916121678184848a01612365565b8554920191600090600181811c908083168061218457607f831692505b8583108114156121a257634e487b7160e01b85526022600452602485fd5b8080156121b657600181146121c7576121f4565b60ff198516885283880195506121f4565b60008b81526020902060005b858110156121ec5781548a8201529084019088016121d3565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061223890830184612115565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561227a5783518352928401929184019160010161225e565b50909695505050505050565b6020815260006114826020830184612115565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252818101527f41646d696e4d6f643a2063616c6c6572206973206e6f7420616e2061646d696e604082015260600190565b60008219821115612316576123166123fb565b500190565b60008261232a5761232a612411565b500490565b6000816000190483118215151615612349576123496123fb565b500290565b600082821015612360576123606123fb565b500390565b60005b83811015612380578181015183820152602001612368565b8381111561129c5750506000910152565b600181811c908216806123a557607f821691505b602082108114156123c657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123e0576123e06123fb565b5060010190565b6000826123f6576123f6612411565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ed757600080fdfea2646970667358221220b35d82779d4db5b48fab120582a7480baa57b4260ab1849809178a9985f4f54964736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000d5e5a6eb56e4b41661dccc225d1b3c9ed93d952c000000000000000000000000000000000000000000000000000000000000000b42756e6e79204d666572730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002424d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5434584c756b6535735070337470563831704c47546a6742564d3361724833736773475945506f62787948362f00000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80635c975abb11610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146105e2578063d5abeb0114610602578063da3ef23f14610618578063e985e9c514610638578063f2fde38b1461068157600080fd5b8063a22cb4651461056d578063b88d4fde1461058d578063c3abe888146105ad578063c6682862146105cd57600080fd5b8063715018a6116100e7578063715018a6146104f25780637f00c7a6146105075780638da5cb5b1461052757806395d89b4114610545578063a0712d681461055a57600080fd5b80635c975abb146104785780636352211e1461049257806370480275146104b257806370a08231146104d257600080fd5b806324d7806c1161019b57806342842e0e1161016a57806342842e0e146103cb578063438b6300146103eb57806344a0d68a146104185780634f6ccce71461043857806355f804b31461045857600080fd5b806324d7806c1461036e5780632f745c591461038e578063385df649146103ae5780633ccfd60b146103c357600080fd5b806313faede6116101e257806313faede6146102c55780631785f53c146102e957806318160ddd14610309578063239c70ae1461033857806323b872dd1461034e57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f36600461207a565b6106a1565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e61070e565b6040516102409190612286565b34801561027757600080fd5b5061028b6102863660046120fc565b6107a0565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611fdc565b6107e4565b005b3480156102d157600080fd5b506102db600b5481565b604051908152602001610240565b3480156102f557600080fd5b506102c3610304366004611e9b565b610872565b34801561031557600080fd5b506102db6000546001600160801b03600160801b82048116918116919091031690565b34801561034457600080fd5b506102db600d5481565b34801561035a57600080fd5b506102c3610369366004611ee9565b610991565b34801561037a57600080fd5b50610234610389366004611e9b565b61099c565b34801561039a57600080fd5b506102db6103a9366004611fdc565b6109ee565b3480156103ba57600080fd5b506102c3610aea565b6102c3610b2d565b3480156103d757600080fd5b506102c36103e6366004611ee9565b610c44565b3480156103f757600080fd5b5061040b610406366004611e9b565b610c5f565b6040516102409190612242565b34801561042457600080fd5b506102c36104333660046120fc565b610d00565b34801561044457600080fd5b506102db6104533660046120fc565b610d34565b34801561046457600080fd5b506102c36104733660046120b4565b610dde565b34801561048457600080fd5b50600e546102349060ff1681565b34801561049e57600080fd5b5061028b6104ad3660046120fc565b610e24565b3480156104be57600080fd5b506102c36104cd366004611e9b565b610e36565b3480156104de57600080fd5b506102db6104ed366004611e9b565b610eda565b3480156104fe57600080fd5b506102c3610f28565b34801561051357600080fd5b506102c36105223660046120fc565b610f5e565b34801561053357600080fd5b506007546001600160a01b031661028b565b34801561055157600080fd5b5061025e610f92565b6102c36105683660046120fc565b610fa1565b34801561057957600080fd5b506102c3610588366004611fa0565b6111d2565b34801561059957600080fd5b506102c36105a8366004611f25565b611268565b3480156105b957600080fd5b506102c36105c8366004612006565b6112a2565b3480156105d957600080fd5b5061025e61132d565b3480156105ee57600080fd5b5061025e6105fd3660046120fc565b6113bb565b34801561060e57600080fd5b506102db600c5481565b34801561062457600080fd5b506102c36106333660046120b4565b611489565b34801561064457600080fd5b50610234610653366004611eb6565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561068d57600080fd5b506102c361069c366004611e9b565b6114cb565b60006001600160e01b031982166380ac58cd60e01b14806106d257506001600160e01b03198216635b5e139f60e01b145b806106ed57506001600160e01b0319821663780e9d6360e01b145b8061070857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461071d90612391565b80601f016020809104026020016040519081016040528092919081815260200182805461074990612391565b80156107965780601f1061076b57610100808354040283529160200191610796565b820191906000526020600020905b81548152906001019060200180831161077957829003601f168201915b5050505050905090565b60006107ab8261156c565b6107c8576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107ef82610e24565b9050806001600160a01b0316836001600160a01b031614156108245760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061084457506108428133610653565b155b15610862576040516367d9dca160e11b815260040160405180910390fd5b61086d8383836115a0565b505050565b3360009081526008602052604090205460ff166108aa5760405162461bcd60e51b81526004016108a1906122ce565b60405180910390fd5b6001600160a01b03811660009081526008602052604090205460ff166109125760405162461bcd60e51b815260206004820152601760248201527f416472657373206973206e6f7420616e2061646d696e2e00000000000000000060448201526064016108a1565b6007546001600160a01b03828116911614156109705760405162461bcd60e51b815260206004820152601d60248201527f546865206f776e65722068617320746f20626520616e2061646d696e2e00000060448201526064016108a1565b6001600160a01b03166000908152600860205260409020805460ff19169055565b61086d8383836115fc565b3360009081526008602052604081205460ff166109cb5760405162461bcd60e51b81526004016108a1906122ce565b506001600160a01b03811660009081526008602052604090205460ff165b919050565b60006109f983610eda565b8210610a18576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b83811015610ae457600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610a905750610adc565b80516001600160a01b031615610aa557805192505b876001600160a01b0316836001600160a01b03161415610ada5786841415610ad35750935061070892505050565b6001909301925b505b600101610a29565b50600080fd5b3360009081526008602052604090205460ff16610b195760405162461bcd60e51b81526004016108a1906122ce565b600e805460ff19811660ff90911615179055565b6007546001600160a01b03163314610b575760405162461bcd60e51b81526004016108a190612299565b600e54479060009061010090046001600160a01b03166064610b7a84600f61232f565b610b84919061231b565b604051600081818185875af1925050503d8060008114610bc0576040519150601f19603f3d011682016040523d82523d6000602084013e610bc5565b606091505b5050905080610bd357600080fd5b6000610be76007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c31576040519150601f19603f3d011682016040523d82523d6000602084013e610c36565b606091505b505090508061086d57600080fd5b61086d83838360405180602001604052806000815250611268565b60606000610c6c83610eda565b90506000816001600160401b03811115610c8857610c8861243d565b604051908082528060200260200182016040528015610cb1578160200160208202803683370190505b50905060005b82811015610cf857610cc985826109ee565b828281518110610cdb57610cdb612427565b602090810291909101015280610cf0816123cc565b915050610cb7565b509392505050565b3360009081526008602052604090205460ff16610d2f5760405162461bcd60e51b81526004016108a1906122ce565b600b55565b600080546001600160801b031681805b82811015610dc457600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610dbb5785831415610db45750949350505050565b6001909201915b50600101610d44565b506040516329c8c00760e21b815260040160405180910390fd5b3360009081526008602052604090205460ff16610e0d5760405162461bcd60e51b81526004016108a1906122ce565b8051610e20906009906020840190611d76565b5050565b6000610e2f82611819565b5192915050565b3360009081526008602052604090205460ff16610e655760405162461bcd60e51b81526004016108a1906122ce565b6001600160a01b03811660009081526008602052604090205460ff1615610ece5760405162461bcd60e51b815260206004820152601b60248201527f4164647265737320697320616c726561647920612061646d696e2e000000000060448201526064016108a1565b610ed78161193b565b50565b60006001600160a01b038216610f03576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6007546001600160a01b03163314610f525760405162461bcd60e51b81526004016108a190612299565b610f5c600061195f565b565b3360009081526008602052604090205460ff16610f8d5760405162461bcd60e51b81526004016108a1906122ce565b600d55565b60606002805461071d90612391565b600e5460ff1615610fe95760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b60448201526064016108a1565b600081116110475760405162461bcd60e51b815260206004820152602560248201527f4d696e7420416d6f756e74206e6565647320746f206265206269676765722074604482015264068616e20360dc1b60648201526084016108a1565b600d548111156110b55760405162461bcd60e51b815260206004820152603360248201527f4d696e7420416d6f756e74206578636565647320746865204d6178696d756d20604482015272105b1b1bddd95908135a5b9d08105b5bdd5b9d606a1b60648201526084016108a1565b600c54816110db6000546001600160801b03600160801b82048116918116919091031690565b6110e59190612303565b11156111495760405162461bcd60e51b815260206004820152602d60248201527f4d696e7420416d6f756e7420657863656564732074686520417661696c61626c60448201526c1948135a5b9d08105b5bdd5b9d609a1b60648201526084016108a1565b6007546001600160a01b031633146111c85780600b54611169919061232f565b3410156111c85760405162461bcd60e51b815260206004820152602760248201527f56616c756520666f72206d696e74696e672d7472616e73616374696f6e20697360448201526620746f206c6f7760c81b60648201526084016108a1565b610ed733826119b1565b6001600160a01b0382163314156111fc5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112738484846115fc565b61127f848484846119cb565b61129c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b3360009081526008602052604090205460ff166112d15760405162461bcd60e51b81526004016108a1906122ce565b600c5481106112df57600080fd5b60005b8181101561086d5761131b8383838181106112ff576112ff612427565b90506020020160208101906113149190611e9b565b60016119b1565b80611325816123cc565b9150506112e2565b600a805461133a90612391565b80601f016020809104026020016040519081016040528092919081815260200182805461136690612391565b80156113b35780601f10611388576101008083540402835291602001916113b3565b820191906000526020600020905b81548152906001019060200180831161139657829003601f168201915b505050505081565b60606113c68261156c565b61142a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108a1565b6000611434611ada565b905060008151116114545760405180602001604052806000815250611482565b8061145e84611ae9565b600a60405160200161147293929190612141565b6040516020818303038152906040525b9392505050565b3360009081526008602052604090205460ff166114b85760405162461bcd60e51b81526004016108a1906122ce565b8051610e2090600a906020840190611d76565b6007546001600160a01b031633146114f55760405162461bcd60e51b81526004016108a190612299565b6001600160a01b03811661155a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a1565b6115638161193b565b610ed78161195f565b600080546001600160801b031682108015610708575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061160782611819565b80519091506000906001600160a01b0316336001600160a01b03161480611635575081516116359033610653565b80611650575033611645846107a0565b6001600160a01b0316145b90508061167057604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146116a55760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166116cc57604051633a954ecd60e21b815260040160405180910390fd5b6116dc60008484600001516115a0565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166117cf576000546001600160801b03168110156117cf57825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101829052905482906001600160801b031681101561192257600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906119205780516001600160a01b0316156118b7579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561191b579392505050565b6118b7565b505b604051636f96cda160e11b815260040160405180910390fd5b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610e20828260405180602001604052806000815250611be6565b60006001600160a01b0384163b15611ace57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a0f903390899088908890600401612205565b602060405180830381600087803b158015611a2957600080fd5b505af1925050508015611a59575060408051601f3d908101601f19168201909252611a5691810190612097565b60015b611ab4573d808015611a87576040519150601f19603f3d011682016040523d82523d6000602084013e611a8c565b606091505b508051611aac576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ad2565b5060015b949350505050565b60606009805461071d90612391565b606081611b0d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b375780611b21816123cc565b9150611b309050600a8361231b565b9150611b11565b6000816001600160401b03811115611b5157611b5161243d565b6040519080825280601f01601f191660200182016040528015611b7b576020820181803683370190505b5090505b8415611ad257611b9060018361234e565b9150611b9d600a866123e7565b611ba8906030612303565b60f81b818381518110611bbd57611bbd612427565b60200101906001600160f81b031916908160001a905350611bdf600a8661231b565b9450611b7f565b61086d83838360016000546001600160801b03166001600160a01b038516611c2057604051622e076360e81b815260040160405180910390fd5b83611c3e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611d505760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611d265750611d2460008884886119cb565b155b15611d44576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611ccf565b50600080546001600160801b0319166001600160801b0392909216919091179055611812565b828054611d8290612391565b90600052602060002090601f016020900481019282611da45760008555611dea565b82601f10611dbd57805160ff1916838001178555611dea565b82800160010185558215611dea579182015b82811115611dea578251825591602001919060010190611dcf565b50611df6929150611dfa565b5090565b5b80821115611df65760008155600101611dfb565b60006001600160401b0380841115611e2957611e2961243d565b604051601f8501601f19908116603f01168101908282118183101715611e5157611e5161243d565b81604052809350858152868686011115611e6a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146109e957600080fd5b600060208284031215611ead57600080fd5b61148282611e84565b60008060408385031215611ec957600080fd5b611ed283611e84565b9150611ee060208401611e84565b90509250929050565b600080600060608486031215611efe57600080fd5b611f0784611e84565b9250611f1560208501611e84565b9150604084013590509250925092565b60008060008060808587031215611f3b57600080fd5b611f4485611e84565b9350611f5260208601611e84565b92506040850135915060608501356001600160401b03811115611f7457600080fd5b8501601f81018713611f8557600080fd5b611f9487823560208401611e0f565b91505092959194509250565b60008060408385031215611fb357600080fd5b611fbc83611e84565b915060208301358015158114611fd157600080fd5b809150509250929050565b60008060408385031215611fef57600080fd5b611ff883611e84565b946020939093013593505050565b6000806020838503121561201957600080fd5b82356001600160401b038082111561203057600080fd5b818501915085601f83011261204457600080fd5b81358181111561205357600080fd5b8660208260051b850101111561206857600080fd5b60209290920196919550909350505050565b60006020828403121561208c57600080fd5b813561148281612453565b6000602082840312156120a957600080fd5b815161148281612453565b6000602082840312156120c657600080fd5b81356001600160401b038111156120dc57600080fd5b8201601f810184136120ed57600080fd5b611ad284823560208401611e0f565b60006020828403121561210e57600080fd5b5035919050565b6000815180845261212d816020860160208601612365565b601f01601f19169290920160200192915050565b6000845160206121548285838a01612365565b8551918401916121678184848a01612365565b8554920191600090600181811c908083168061218457607f831692505b8583108114156121a257634e487b7160e01b85526022600452602485fd5b8080156121b657600181146121c7576121f4565b60ff198516885283880195506121f4565b60008b81526020902060005b858110156121ec5781548a8201529084019088016121d3565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061223890830184612115565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561227a5783518352928401929184019160010161225e565b50909695505050505050565b6020815260006114826020830184612115565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252818101527f41646d696e4d6f643a2063616c6c6572206973206e6f7420616e2061646d696e604082015260600190565b60008219821115612316576123166123fb565b500190565b60008261232a5761232a612411565b500490565b6000816000190483118215151615612349576123496123fb565b500290565b600082821015612360576123606123fb565b500390565b60005b83811015612380578181015183820152602001612368565b8381111561129c5750506000910152565b600181811c908216806123a557607f821691505b602082108114156123c657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123e0576123e06123fb565b5060010190565b6000826123f6576123f6612411565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ed757600080fdfea2646970667358221220b35d82779d4db5b48fab120582a7480baa57b4260ab1849809178a9985f4f54964736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000d5e5a6eb56e4b41661dccc225d1b3c9ed93d952c000000000000000000000000000000000000000000000000000000000000000b42756e6e79204d666572730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002424d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5434584c756b6535735070337470563831704c47546a6742564d3361724833736773475945506f62787948362f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Bunny Mfers
Arg [1] : _symbol (string): BM
Arg [2] : _initBaseURI (string): ipfs://QmT4XLuke5sPp3tpV81pLGTjgBVM3arH3sgsGYEPobxyH6/
Arg [3] : _developerAddress (address): 0xD5E5A6eb56e4B41661Dccc225d1B3C9Ed93D952C

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 000000000000000000000000d5e5a6eb56e4b41661dccc225d1b3c9ed93d952c
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 42756e6e79204d66657273000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 424d000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d5434584c756b6535735070337470563831704c47546a67
Arg [10] : 42564d3361724833736773475945506f62787948362f00000000000000000000


Deployed Bytecode Sourcemap

49952:3835:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28099:422;;;;;;;;;;-1:-1:-1;28099:422:0;;;;;:::i;:::-;;:::i;:::-;;;8170:14:1;;8163:22;8145:41;;8133:2;8118:18;28099:422:0;;;;;;;;30789:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32389:245::-;;;;;;;;;;-1:-1:-1;32389:245:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6831:32:1;;;6813:51;;6801:2;6786:18;32389:245:0;6667:203:1;31952:371:0;;;;;;;;;;-1:-1:-1;31952:371:0;;;;;:::i;:::-;;:::i;:::-;;50099:34;;;;;;;;;;;;;;;;;;;13173:25:1;;;13161:2;13146:18;50099:34:0;13027:177:1;49307:265:0;;;;;;;;;;-1:-1:-1;49307:265:0;;;;;:::i;:::-;;:::i;25258:276::-;;;;;;;;;;;;25311:7;25503:12;-1:-1:-1;;;;;;;;25503:12:0;;;;25487:13;;;:28;;;;25480:35;;25258:276;50177:32;;;;;;;;;;;;;;;;33360:170;;;;;;;;;;-1:-1:-1;33360:170:0;;;;;:::i;:::-;;:::i;48610:197::-;;;;;;;;;;-1:-1:-1;48610:197:0;;;;;:::i;:::-;;:::i;26881:1146::-;;;;;;;;;;-1:-1:-1;26881:1146:0;;;;;:::i;:::-;;:::i;53358:73::-;;;;;;;;;;;;;:::i;53439:345::-;;;:::i;33601:185::-;;;;;;;;;;-1:-1:-1;33601:185:0;;;;;:::i;:::-;;:::i;51797:390::-;;;;;;;;;;-1:-1:-1;51797:390:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;52863:86::-;;;;;;;;;;-1:-1:-1;52863:86:0;;;;;:::i;:::-;;:::i;25827:754::-;;;;;;;;;;-1:-1:-1;25827:754:0;;;;;:::i;:::-;;:::i;53087:104::-;;;;;;;;;;-1:-1:-1;53087:104:0;;;;;:::i;:::-;;:::i;50216:25::-;;;;;;;;;;-1:-1:-1;50216:25:0;;;;;;;;30598:124;;;;;;;;;;-1:-1:-1;30598:124:0;;;;;:::i;:::-;;:::i;49024:170::-;;;;;;;;;;-1:-1:-1;49024:170:0;;;;;:::i;:::-;;:::i;28585:206::-;;;;;;;;;;-1:-1:-1;28585:206:0;;;;;:::i;:::-;;:::i;46831:103::-;;;;;;;;;;;;;:::i;52957:122::-;;;;;;;;;;-1:-1:-1;52957:122:0;;;;;:::i;:::-;;:::i;46180:87::-;;;;;;;;;;-1:-1:-1;46253:6:0;;-1:-1:-1;;;;;46253:6:0;46180:87;;30958:104;;;;;;;;;;;;;:::i;50715:714::-;;;;;;:::i;:::-;;:::i;32706:302::-;;;;;;;;;;-1:-1:-1;32706:302:0;;;;;:::i;:::-;;:::i;33857:342::-;;;;;;;;;;-1:-1:-1;33857:342:0;;;;;:::i;:::-;;:::i;51547:242::-;;;;;;;;;;-1:-1:-1;51547:242:0;;;;;:::i;:::-;;:::i;50055:37::-;;;;;;;;;;;;;:::i;52195:642::-;;;;;;;;;;-1:-1:-1;52195:642:0;;;;;:::i;:::-;;:::i;50140:30::-;;;;;;;;;;;;;;;;53199:151;;;;;;;;;;-1:-1:-1;53199:151:0;;;;;:::i;:::-;;:::i;33079:214::-;;;;;;;;;;-1:-1:-1;33079:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;33250:25:0;;;33221:4;33250:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33079:214;49625:320;;;;;;;;;;-1:-1:-1;49625:320:0;;;;;:::i;:::-;;:::i;28099:422::-;28246:4;-1:-1:-1;;;;;;28288:40:0;;-1:-1:-1;;;28288:40:0;;:105;;-1:-1:-1;;;;;;;28345:48:0;;-1:-1:-1;;;28345:48:0;28288:105;:172;;;-1:-1:-1;;;;;;;28410:50:0;;-1:-1:-1;;;28410:50:0;28288:172;:225;;;-1:-1:-1;;;;;;;;;;14119:40:0;;;28477:36;28268:245;28099:422;-1:-1:-1;;28099:422:0:o;30789:100::-;30843:13;30876:5;30869:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30789:100;:::o;32389:245::-;32493:7;32523:16;32531:7;32523;:16::i;:::-;32518:64;;32548:34;;-1:-1:-1;;;32548:34:0;;;;;;;;;;;32518:64;-1:-1:-1;32602:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32602:24:0;;32389:245::o;31952:371::-;32025:13;32041:24;32057:7;32041:15;:24::i;:::-;32025:40;;32086:5;-1:-1:-1;;;;;32080:11:0;:2;-1:-1:-1;;;;;32080:11:0;;32076:48;;;32100:24;;-1:-1:-1;;;32100:24:0;;;;;;;;;;;32076:48;21857:10;-1:-1:-1;;;;;32141:21:0;;;;;;:63;;-1:-1:-1;32167:37:0;32184:5;21857:10;33079:214;:::i;32167:37::-;32166:38;32141:63;32137:138;;;32228:35;;-1:-1:-1;;;32228:35:0;;;;;;;;;;;32137:138;32287:28;32296:2;32300:7;32309:5;32287:8;:28::i;:::-;32014:309;31952:371;;:::o;49307:265::-;48948:10;48940:19;;;;:7;:19;;;;;;;;48932:64;;;;-1:-1:-1;;;48932:64:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;49395:22:0;::::1;;::::0;;;:7:::1;:22;::::0;;;;;::::1;;49387:58;;;::::0;-1:-1:-1;;;49387:58:0;;10628:2:1;49387:58:0::1;::::0;::::1;10610:21:1::0;10667:2;10647:18;;;10640:30;10706:25;10686:18;;;10679:53;10749:18;;49387:58:0::1;10426:347:1::0;49387:58:0::1;46253:6:::0;;-1:-1:-1;;;;;49464:24:0;;::::1;46253:6:::0;;49464:24:::1;;49456:66;;;::::0;-1:-1:-1;;;49456:66:0;;10980:2:1;49456:66:0::1;::::0;::::1;10962:21:1::0;11019:2;10999:18;;;10992:30;11058:31;11038:18;;;11031:59;11107:18;;49456:66:0::1;10778:353:1::0;49456:66:0::1;-1:-1:-1::0;;;;;49542:22:0::1;;::::0;;;:7:::1;:22;::::0;;;;49535:29;;-1:-1:-1;;49535:29:0::1;::::0;;49307:265::o;33360:170::-;33494:28;33504:4;33510:2;33514:7;33494:9;:28::i;48610:197::-;48948:10;48738;48940:19;;;:7;:19;;;;;;;;48932:64;;;;-1:-1:-1;;;48932:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;48773:26:0;::::1;;::::0;;;:7:::1;:26;::::0;;;;;::::1;;49007:1;48610:197:::0;;;:::o;26881:1146::-;27006:7;27044:16;27054:5;27044:9;:16::i;:::-;27035:5;:25;27031:61;;27069:23;;-1:-1:-1;;;27069:23:0;;;;;;;;;;;27031:61;27103:22;27128:13;;-1:-1:-1;;;;;27128:13:0;;27103:22;;27378:557;27398:14;27394:1;:18;27378:557;;;27438:31;27472:14;;;:11;:14;;;;;;;;;27438:48;;;;;;;;;-1:-1:-1;;;;;27438:48:0;;;;-1:-1:-1;;;27438:48:0;;-1:-1:-1;;;;;27438:48:0;;;;;;;;-1:-1:-1;;;27438:48:0;;;;;;;;;;;;;;;;27505:73;;27550:8;;;27505:73;27600:14;;-1:-1:-1;;;;;27600:28:0;;27596:111;;27673:14;;;-1:-1:-1;27596:111:0;27750:5;-1:-1:-1;;;;;27729:26:0;:17;-1:-1:-1;;;;;27729:26:0;;27725:195;;;27799:5;27784:11;:20;27780:85;;;-1:-1:-1;27840:1:0;-1:-1:-1;27833:8:0;;-1:-1:-1;;;27833:8:0;27780:85;27887:13;;;;;27725:195;27419:516;27378:557;27414:3;;27378:557;;;;28011:8;;;53358:73;48948:10;48940:19;;;;:7;:19;;;;;;;;48932:64;;;;-1:-1:-1;;;48932:64:0;;;;;;;:::i;:::-;53417:6:::1;::::0;;-1:-1:-1;;53407:16:0;::::1;53417:6;::::0;;::::1;53416:7;53407:16;::::0;;53358:73::o;53439:345::-;46253:6;;-1:-1:-1;;;;;46253:6:0;21857:10;46400:23;46392:68;;;;-1:-1:-1;;;46392:68:0;;;;;;;:::i;:::-;53570:16:::1;::::0;53514:21:::1;::::0;53495:16:::1;::::0;53570::::1;::::0;::::1;-1:-1:-1::0;;;;;53570:16:0::1;53632:3;53615:13;53514:21:::0;53626:2:::1;53615:13;:::i;:::-;53614:21;;;;:::i;:::-;53562:88;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53548:102;;;53669:2;53661:11;;;::::0;::::1;;53686:7;53707;46253:6:::0;;-1:-1:-1;;;;;46253:6:0;;46180:87;53707:7:::1;-1:-1:-1::0;;;;;53699:21:0::1;53728;53699:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53685:69;;;53773:2;53765:11;;;::::0;::::1;33601:185:::0;33739:39;33756:4;33762:2;33766:7;33739:39;;;;;;;;;;;;:16;:39::i;51797:390::-;51884:16;51918:23;51944:17;51954:6;51944:9;:17::i;:::-;51918:43;;51972:25;52014:15;-1:-1:-1;;;;;52000:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52000:30:0;;51972:58;;52046:9;52041:113;52061:15;52057:1;:19;52041:113;;;52112:30;52132:6;52140:1;52112:19;:30::i;:::-;52098:8;52107:1;52098:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;52078:3;;;;:::i;:::-;;;;52041:113;;;-1:-1:-1;52171:8:0;51797:390;-1:-1:-1;;;51797:390:0:o;52863:86::-;48948:10;48940:19;;;;:7;:19;;;;;;;;48932:64;;;;-1:-1:-1;;;48932:64:0;;;;;;;:::i;:::-;52926:4:::1;:15:::0;52863:86::o;25827:754::-;25930:7;25980:13;;-1:-1:-1;;;;;25980:13:0;25930:7;;26194:328;26214:14;26210:1;:18;26194:328;;;26254:31;26288:14;;;:11;:14;;;;;;;;;26254:48;;;;;;;;;-1:-1:-1;;;;;26254:48:0;;;;-1:-1:-1;;;26254:48:0;;-1:-1:-1;;;;;26254:48:0;;;;;;;;-1:-1:-1;;;26254:48:0;;;;;;;;;;;;;;26321:186;;26386:5;26371:11;:20;26367:85;;;-1:-1:-1;26427:1:0;25827:754;-1:-1:-1;;;;25827:754:0:o;26367:85::-;26474:13;;;;;26321:186;-1:-1:-1;26230:3:0;;26194:328;;;;26550:23;;-1:-1:-1;;;26550:23:0;;;;;;;;;;;53087:104;48948:10;48940:19;;;;:7;:19;;;;;;;;48932:64;;;;-1:-1:-1;;;48932:64:0;;;;;;;:::i;:::-;53162:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;53087:104:::0;:::o;30598:124::-;30662:7;30689:20;30701:7;30689:11;:20::i;:::-;:25;;30598:124;-1:-1:-1;;30598:124:0:o;49024:170::-;48948:10;48940:19;;;;:7;:19;;;;;;;;48932:64;;;;-1:-1:-1;;;48932:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49105:17:0;::::1;;::::0;;;:7:::1;:17;::::0;;;;;::::1;;49104:18;49096:58;;;::::0;-1:-1:-1;;;49096:58:0;;10272:2:1;49096:58:0::1;::::0;::::1;10254:21:1::0;10311:2;10291:18;;;10284:30;10350:29;10330:18;;;10323:57;10397:18;;49096:58:0::1;10070:351:1::0;49096:58:0::1;49167:19;49177:8;49167:9;:19::i;:::-;49024:170:::0;:::o;28585:206::-;28649:7;-1:-1:-1;;;;;28673:19:0;;28669:60;;28701:28;;-1:-1:-1;;;28701:28:0;;;;;;;;;;;28669:60;-1:-1:-1;;;;;;28755:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28755:27:0;;28585:206::o;46831:103::-;46253:6;;-1:-1:-1;;;;;46253:6:0;21857:10;46400:23;46392:68;;;;-1:-1:-1;;;46392:68:0;;;;;;;:::i;:::-;46896:30:::1;46923:1;46896:18;:30::i;:::-;46831:103::o:0;52957:122::-;48948:10;48940:19;;;;:7;:19;;;;;;;;48932:64;;;;-1:-1:-1;;;48932:64:0;;;;;;;:::i;:::-;53038:13:::1;:33:::0;52957:122::o;30958:104::-;31014:13;31047:7;31040:14;;;;;:::i;50715:714::-;50785:6;;;;50784:7;50776:38;;;;-1:-1:-1;;;50776:38:0;;12882:2:1;50776:38:0;;;12864:21:1;12921:2;12901:18;;;12894:30;-1:-1:-1;;;12940:18:1;;;12933:48;12998:18;;50776:38:0;12680:342:1;50776:38:0;50847:1;50833:11;:15;50825:65;;;;-1:-1:-1;;;50825:65:0;;12476:2:1;50825:65:0;;;12458:21:1;12515:2;12495:18;;;12488:30;12554:34;12534:18;;;12527:62;-1:-1:-1;;;12605:18:1;;;12598:35;12650:19;;50825:65:0;12274:401:1;50825:65:0;50938:13;;50923:11;:28;;50901:129;;;;-1:-1:-1;;;50901:129:0;;8623:2:1;50901:129:0;;;8605:21:1;8662:2;8642:18;;;8635:30;8701:34;8681:18;;;8674:62;-1:-1:-1;;;8752:18:1;;;8745:49;8811:19;;50901:129:0;8421:415:1;50901:129:0;51094:9;;51079:11;51063:13;25311:7;25503:12;-1:-1:-1;;;;;;;;25503:12:0;;;;25487:13;;;:28;;;;25480:35;;25258:276;51063:13;:27;;;;:::i;:::-;:40;;51041:135;;;;-1:-1:-1;;;51041:135:0;;9858:2:1;51041:135:0;;;9840:21:1;9897:2;9877:18;;;9870:30;9936:34;9916:18;;;9909:62;-1:-1:-1;;;9987:18:1;;;9980:43;10040:19;;51041:135:0;9656:409:1;51041:135:0;46253:6;;-1:-1:-1;;;;;46253:6:0;51193:10;:21;51189:186;;51277:11;51270:4;;:18;;;;:::i;:::-;51257:9;:31;;51231:132;;;;-1:-1:-1;;;51231:132:0;;9043:2:1;51231:132:0;;;9025:21:1;9082:2;9062:18;;;9055:30;9121:34;9101:18;;;9094:62;-1:-1:-1;;;9172:18:1;;;9165:37;9219:19;;51231:132:0;8841:403:1;51231:132:0;51387:34;51397:10;51409:11;51387:9;:34::i;32706:302::-;-1:-1:-1;;;;;32820:24:0;;21857:10;32820:24;32816:54;;;32853:17;;-1:-1:-1;;;32853:17:0;;;;;;;;;;;32816:54;21857:10;32883:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32883:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32883:53:0;;;;;;;;;;32952:48;;8145:41:1;;;32883:42:0;;21857:10;32952:48;;8118:18:1;32952:48:0;;;;;;;32706:302;;:::o;33857:342::-;34024:28;34034:4;34040:2;34044:7;34024:9;:28::i;:::-;34068:48;34091:4;34097:2;34101:7;34110:5;34068:22;:48::i;:::-;34063:129;;34140:40;;-1:-1:-1;;;34140:40:0;;;;;;;;;;;34063:129;33857:342;;;;:::o;51547:242::-;48948:10;48940:19;;;;:7;:19;;;;;;;;48932:64;;;;-1:-1:-1;;;48932:64:0;;;;;;;:::i;:::-;51655:9:::1;::::0;51634:30;::::1;51626:39;;;::::0;::::1;;51683:9;51678:104;51698:22:::0;;::::1;51678:104;;;51742:28;51752:11;;51764:1;51752:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;51768:1;51742:9;:28::i;:::-;51722:3:::0;::::1;::::0;::::1;:::i;:::-;;;;51678:104;;50055:37:::0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52195:642::-;52313:13;52366:16;52374:7;52366;:16::i;:::-;52344:113;;;;-1:-1:-1;;;52344:113:0;;12060:2:1;52344:113:0;;;12042:21:1;12099:2;12079:18;;;12072:30;12138:34;12118:18;;;12111:62;-1:-1:-1;;;12189:18:1;;;12182:45;12244:19;;52344:113:0;11858:411:1;52344:113:0;52470:28;52501:10;:8;:10::i;:::-;52470:41;;52573:1;52548:14;52542:28;:32;:287;;;;;;;;;;;;;;;;;52666:14;52707:18;:7;:16;:18::i;:::-;52752:13;52623:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52542:287;52522:307;52195:642;-1:-1:-1;;;52195:642:0:o;53199:151::-;48948:10;48940:19;;;;:7;:19;;;;;;;;48932:64;;;;-1:-1:-1;;;48932:64:0;;;;;;;:::i;:::-;53309:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;49625:320::-:0;46253:6;;-1:-1:-1;;;;;46253:6:0;21857:10;46400:23;46392:68;;;;-1:-1:-1;;;46392:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49778:22:0;::::1;49756:110;;;::::0;-1:-1:-1;;;49756:110:0;;9451:2:1;49756:110:0::1;::::0;::::1;9433:21:1::0;9490:2;9470:18;;;9463:30;9529:34;9509:18;;;9502:62;-1:-1:-1;;;9580:18:1;;;9573:36;9626:19;;49756:110:0::1;9249:402:1::0;49756:110:0::1;49879:19;49889:8;49879:9;:19::i;:::-;49909:28;49928:8;49909:18;:28::i;34454:144::-:0;34511:4;34545:13;;-1:-1:-1;;;;;34545:13:0;34535:23;;:55;;;;-1:-1:-1;;34563:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;34563:27:0;;;;34562:28;;34454:144::o;41782:196::-;41897:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41897:29:0;-1:-1:-1;;;;;41897:29:0;;;;;;;;;41942:28;;41897:24;;41942:28;;;;;;;41782:196;;;:::o;37232:2138::-;37347:35;37385:20;37397:7;37385:11;:20::i;:::-;37460:18;;37347:58;;-1:-1:-1;37418:22:0;;-1:-1:-1;;;;;37444:34:0;21857:10;-1:-1:-1;;;;;37444:34:0;;:101;;;-1:-1:-1;37512:18:0;;37495:50;;21857:10;33079:214;:::i;37495:50::-;37444:154;;;-1:-1:-1;21857:10:0;37562:20;37574:7;37562:11;:20::i;:::-;-1:-1:-1;;;;;37562:36:0;;37444:154;37418:181;;37617:17;37612:66;;37643:35;;-1:-1:-1;;;37643:35:0;;;;;;;;;;;37612:66;37715:4;-1:-1:-1;;;;;37693:26:0;:13;:18;;;-1:-1:-1;;;;;37693:26:0;;37689:67;;37728:28;;-1:-1:-1;;;37728:28:0;;;;;;;;;;;37689:67;-1:-1:-1;;;;;37771:16:0;;37767:52;;37796:23;;-1:-1:-1;;;37796:23:0;;;;;;;;;;;37767:52;37940:49;37957:1;37961:7;37970:13;:18;;;37940:8;:49::i;:::-;-1:-1:-1;;;;;38285:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;38285:31:0;;;-1:-1:-1;;;;;38285:31:0;;;-1:-1:-1;;38285:31:0;;;;;;;38331:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;38331:29:0;;;;;;;;;;;38377:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;38422:61:0;;;;-1:-1:-1;;;38467:15:0;38422:61;;;;;;;;;;;38757:11;;;38787:24;;;;;:29;38757:11;;38787:29;38783:471;;39012:13;;-1:-1:-1;;;;;39012:13:0;38998:27;;38994:245;;;39082:18;;;39050:24;;;:11;:24;;;;;;;;:50;;39165:54;;;;-1:-1:-1;;;;;39123:96:0;-1:-1:-1;;;39123:96:0;-1:-1:-1;;;;;;39123:96:0;;;-1:-1:-1;;;;;39050:50:0;;;39123:96;;;;;;;38994:245;38260:1005;39301:7;39297:2;-1:-1:-1;;;;;39282:27:0;39291:4;-1:-1:-1;;;;;39282:27:0;;;;;;;;;;;39320:42;37336:2034;;37232:2138;;;:::o;29423:1113::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;29621:13:0;;29565:7;;-1:-1:-1;;;;;29621:13:0;29614:20;;29610:859;;;29655:31;29689:17;;;:11;:17;;;;;;;;;29655:51;;;;;;;;;-1:-1:-1;;;;;29655:51:0;;;;-1:-1:-1;;;29655:51:0;;-1:-1:-1;;;;;29655:51:0;;;;;;;;-1:-1:-1;;;29655:51:0;;;;;;;;;;;;;;29725:729;;29775:14;;-1:-1:-1;;;;;29775:28:0;;29771:101;;29839:9;29423:1113;-1:-1:-1;;;29423:1113:0:o;29771:101::-;-1:-1:-1;;;30214:6:0;30259:17;;;;:11;:17;;;;;;;;;30247:29;;;;;;;;;-1:-1:-1;;;;;30247:29:0;;;;;-1:-1:-1;;;30247:29:0;;-1:-1:-1;;;;;30247:29:0;;;;;;;;-1:-1:-1;;;30247:29:0;;;;;;;;;;;;;30307:28;30303:109;;30375:9;29423:1113;-1:-1:-1;;;29423:1113:0:o;30303:109::-;30174:261;;;29636:833;29610:859;30497:31;;-1:-1:-1;;;30497:31:0;;;;;;;;;;;49202:97;-1:-1:-1;;;;;49267:17:0;;;;;:7;:17;;;;;:24;;-1:-1:-1;;49267:24:0;49287:4;49267:24;;;49202:97::o;47487:191::-;47580:6;;;-1:-1:-1;;;;;47597:17:0;;;-1:-1:-1;;;;;;47597:17:0;;;;;;;47630:40;;47580:6;;;47597:17;47580:6;;47630:40;;47561:16;;47630:40;47550:128;47487:191;:::o;34606:104::-;34675:27;34685:2;34689:8;34675:27;;;;;;;;;;;;:9;:27::i;42543:923::-;42698:4;-1:-1:-1;;;;;42719:13:0;;3713:19;:23;42715:744;;42772:175;;-1:-1:-1;;;42772:175:0;;-1:-1:-1;;;;;42772:36:0;;;;;:175;;21857:10;;42866:4;;42893:7;;42923:5;;42772:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42772:175:0;;;;;;;;-1:-1:-1;;42772:175:0;;;;;;;;;;;;:::i;:::-;;;42751:653;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43134:13:0;;43130:259;;43184:40;;-1:-1:-1;;;43184:40:0;;;;;;;;;;;43130:259;43339:6;43333:13;43324:6;43320:2;43316:15;43309:38;42751:653;-1:-1:-1;;;;;;43011:55:0;-1:-1:-1;;;43011:55:0;;-1:-1:-1;43004:62:0;;42715:744;-1:-1:-1;43443:4:0;42715:744;42543:923;;;;;;:::o;50584:108::-;50644:13;50677:7;50670:14;;;;;:::i;396:723::-;452:13;673:10;669:53;;-1:-1:-1;;700:10:0;;;;;;;;;;;;-1:-1:-1;;;700:10:0;;;;;396:723::o;669:53::-;747:5;732:12;788:78;795:9;;788:78;;821:8;;;;:::i;:::-;;-1:-1:-1;844:10:0;;-1:-1:-1;852:2:0;844:10;;:::i;:::-;;;788:78;;;876:19;908:6;-1:-1:-1;;;;;898:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;898:17:0;;876:39;;926:154;933:10;;926:154;;960:11;970:1;960:11;;:::i;:::-;;-1:-1:-1;1029:10:0;1037:2;1029:5;:10;:::i;:::-;1016:24;;:2;:24;:::i;:::-;1003:39;;986:6;993;986:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;986:56:0;;;;;;;;-1:-1:-1;1057:11:0;1066:2;1057:11;;:::i;:::-;;;926:154;;35073:163;35196:32;35202:2;35206:8;35216:5;35223:4;35634:20;35657:13;-1:-1:-1;;;;;35657:13:0;-1:-1:-1;;;;;35685:16:0;;35681:48;;35710:19;;-1:-1:-1;;;35710:19:0;;;;;;;;;;;35681:48;35744:13;35740:44;;35766:18;;-1:-1:-1;;;35766:18:0;;;;;;;;;;;35740:44;-1:-1:-1;;;;;36136:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;36195:49:0;;-1:-1:-1;;;;;36136:44:0;;;;;;;36195:49;;;;-1:-1:-1;;36136:44:0;;;;;;36195:49;;;;;;;;;;;;;;;;36261:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;36311:66:0;;;;-1:-1:-1;;;36361:15:0;36311:66;;;;;;;;;;;36261:25;;36446:389;36466:8;36462:1;:12;36446:389;;;36505:38;;36530:12;;-1:-1:-1;;;;;36505:38:0;;;36522:1;;36505:38;;36522:1;;36505:38;36588:4;:89;;;;;36618:59;36649:1;36653:2;36657:12;36671:5;36618:22;:59::i;:::-;36617:60;36588:89;36562:225;;;36727:40;;-1:-1:-1;;;36727:40:0;;;;;;;;;;;36562:225;36805:14;;;;;36476:3;36446:389;;;-1:-1:-1;36851:13:0;:37;;-1:-1:-1;;;;;;36851:37:0;-1:-1:-1;;;;;36851:37:0;;;;;;;;;;36910:60;33857:342;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;828:186;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;-1:-1:-1;;;;;2036:6:1;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:615::-;2985:6;2993;3046:2;3034:9;3025:7;3021:23;3017:32;3014:52;;;3062:1;3059;3052:12;3014:52;3102:9;3089:23;-1:-1:-1;;;;;3172:2:1;3164:6;3161:14;3158:34;;;3188:1;3185;3178:12;3158:34;3226:6;3215:9;3211:22;3201:32;;3271:7;3264:4;3260:2;3256:13;3252:27;3242:55;;3293:1;3290;3283:12;3242:55;3333:2;3320:16;3359:2;3351:6;3348:14;3345:34;;;3375:1;3372;3365:12;3345:34;3428:7;3423:2;3413:6;3410:1;3406:14;3402:2;3398:23;3394:32;3391:45;3388:65;;;3449:1;3446;3439:12;3388:65;3480:2;3472:11;;;;;3502:6;;-1:-1:-1;2899:615:1;;-1:-1:-1;;;;2899:615:1:o;3519:245::-;3577:6;3630:2;3618:9;3609:7;3605:23;3601:32;3598:52;;;3646:1;3643;3636:12;3598:52;3685:9;3672:23;3704:30;3728:5;3704:30;:::i;3769:249::-;3838:6;3891:2;3879:9;3870:7;3866:23;3862:32;3859:52;;;3907:1;3904;3897:12;3859:52;3939:9;3933:16;3958:30;3982:5;3958:30;:::i;4023:450::-;4092:6;4145:2;4133:9;4124:7;4120:23;4116:32;4113:52;;;4161:1;4158;4151:12;4113:52;4201:9;4188:23;-1:-1:-1;;;;;4226:6:1;4223:30;4220:50;;;4266:1;4263;4256:12;4220:50;4289:22;;4342:4;4334:13;;4330:27;-1:-1:-1;4320:55:1;;4371:1;4368;4361:12;4320:55;4394:73;4459:7;4454:2;4441:16;4436:2;4432;4428:11;4394:73;:::i;4478:180::-;4537:6;4590:2;4578:9;4569:7;4565:23;4561:32;4558:52;;;4606:1;4603;4596:12;4558:52;-1:-1:-1;4629:23:1;;4478:180;-1:-1:-1;4478:180:1:o;4663:257::-;4704:3;4742:5;4736:12;4769:6;4764:3;4757:19;4785:63;4841:6;4834:4;4829:3;4825:14;4818:4;4811:5;4807:16;4785:63;:::i;:::-;4902:2;4881:15;-1:-1:-1;;4877:29:1;4868:39;;;;4909:4;4864:50;;4663:257;-1:-1:-1;;4663:257:1:o;4925:1527::-;5149:3;5187:6;5181:13;5213:4;5226:51;5270:6;5265:3;5260:2;5252:6;5248:15;5226:51;:::i;:::-;5340:13;;5299:16;;;;5362:55;5340:13;5299:16;5384:15;;;5362:55;:::i;:::-;5506:13;;5439:20;;;5479:1;;5566;5588:18;;;;5641;;;;5668:93;;5746:4;5736:8;5732:19;5720:31;;5668:93;5809:2;5799:8;5796:16;5776:18;5773:40;5770:167;;;-1:-1:-1;;;5836:33:1;;5892:4;5889:1;5882:15;5922:4;5843:3;5910:17;5770:167;5953:18;5980:110;;;;6104:1;6099:328;;;;5946:481;;5980:110;-1:-1:-1;;6015:24:1;;6001:39;;6060:20;;;;-1:-1:-1;5980:110:1;;6099:328;13282:1;13275:14;;;13319:4;13306:18;;6194:1;6208:169;6222:8;6219:1;6216:15;6208:169;;;6304:14;;6289:13;;;6282:37;6347:16;;;;6239:10;;6208:169;;;6212:3;;6408:8;6401:5;6397:20;6390:27;;5946:481;-1:-1:-1;6443:3:1;;4925:1527;-1:-1:-1;;;;;;;;;;;4925:1527:1:o;6875:488::-;-1:-1:-1;;;;;7144:15:1;;;7126:34;;7196:15;;7191:2;7176:18;;7169:43;7243:2;7228:18;;7221:34;;;7291:3;7286:2;7271:18;;7264:31;;;7069:4;;7312:45;;7337:19;;7329:6;7312:45;:::i;:::-;7304:53;6875:488;-1:-1:-1;;;;;;6875:488:1:o;7368:632::-;7539:2;7591:21;;;7661:13;;7564:18;;;7683:22;;;7510:4;;7539:2;7762:15;;;;7736:2;7721:18;;;7510:4;7805:169;7819:6;7816:1;7813:13;7805:169;;;7880:13;;7868:26;;7949:15;;;;7914:12;;;;7841:1;7834:9;7805:169;;;-1:-1:-1;7991:3:1;;7368:632;-1:-1:-1;;;;;;7368:632:1:o;8197:219::-;8346:2;8335:9;8328:21;8309:4;8366:44;8406:2;8395:9;8391:18;8383:6;8366:44;:::i;11136:356::-;11338:2;11320:21;;;11357:18;;;11350:30;11416:34;11411:2;11396:18;;11389:62;11483:2;11468:18;;11136:356::o;11497:::-;11699:2;11681:21;;;11718:18;;;11711:30;11777:34;11772:2;11757:18;;11750:62;11844:2;11829:18;;11497:356::o;13335:128::-;13375:3;13406:1;13402:6;13399:1;13396:13;13393:39;;;13412:18;;:::i;:::-;-1:-1:-1;13448:9:1;;13335:128::o;13468:120::-;13508:1;13534;13524:35;;13539:18;;:::i;:::-;-1:-1:-1;13573:9:1;;13468:120::o;13593:168::-;13633:7;13699:1;13695;13691:6;13687:14;13684:1;13681:21;13676:1;13669:9;13662:17;13658:45;13655:71;;;13706:18;;:::i;:::-;-1:-1:-1;13746:9:1;;13593:168::o;13766:125::-;13806:4;13834:1;13831;13828:8;13825:34;;;13839:18;;:::i;:::-;-1:-1:-1;13876:9:1;;13766:125::o;13896:258::-;13968:1;13978:113;13992:6;13989:1;13986:13;13978:113;;;14068:11;;;14062:18;14049:11;;;14042:39;14014:2;14007:10;13978:113;;;14109:6;14106:1;14103:13;14100:48;;;-1:-1:-1;;14144:1:1;14126:16;;14119:27;13896:258::o;14159:380::-;14238:1;14234:12;;;;14281;;;14302:61;;14356:4;14348:6;14344:17;14334:27;;14302:61;14409:2;14401:6;14398:14;14378:18;14375:38;14372:161;;;14455:10;14450:3;14446:20;14443:1;14436:31;14490:4;14487:1;14480:15;14518:4;14515:1;14508:15;14372:161;;14159:380;;;:::o;14544:135::-;14583:3;-1:-1:-1;;14604:17:1;;14601:43;;;14624:18;;:::i;:::-;-1:-1:-1;14671:1:1;14660:13;;14544:135::o;14684:112::-;14716:1;14742;14732:35;;14747:18;;:::i;:::-;-1:-1:-1;14781:9:1;;14684:112::o;14801:127::-;14862:10;14857:3;14853:20;14850:1;14843:31;14893:4;14890:1;14883:15;14917:4;14914:1;14907:15;14933:127;14994:10;14989:3;14985:20;14982:1;14975:31;15025:4;15022:1;15015:15;15049:4;15046:1;15039:15;15065:127;15126:10;15121:3;15117:20;15114:1;15107:31;15157:4;15154:1;15147:15;15181:4;15178:1;15171:15;15197:127;15258:10;15253:3;15249:20;15246:1;15239:31;15289:4;15286:1;15279:15;15313:4;15310:1;15303:15;15329:131;-1:-1:-1;;;;;;15403:32:1;;15393:43;;15383:71;;15450:1;15447;15440:12

Swarm Source

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