ETH Price: $3,432.14 (+7.52%)
Gas: 14 Gwei

Token

TopGuns (TOPGUNS)
 

Overview

Max Total Supply

7,000 TOPGUNS

Holders

2,369

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 TOPGUNS
0x49ac7c473ff2c5cab692f9cd5a70d72673aabbf0
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:
TopGuns

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-08
*/

// SPDX-License-Identifier: MIT
// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    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;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            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);

    // ==============================
    //            IERC721
    // ==============================

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

    /**
     * @dev 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

    // ==============================
    //        IERC721Metadata
    // ==============================

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

    // ==============================
    //            IERC2309
    // ==============================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with `_mintERC2309`.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309`
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

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

    // The number of tokens burned.
    uint256 private _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 `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

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

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // 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.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * 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) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, BITMASK_ADDRESS)
            // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

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

    /**
     * @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, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`.
            result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

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

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

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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-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 {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) 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` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    /**
     * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`.
     */
    function _isOwnerOrApproved(
        address approvedAddress,
        address from,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
            from := and(from, BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, BITMASK_ADDRESS)
            // `msgSender == from || msgSender == approvedAddress`.
            result := or(eq(msgSender, from), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @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 transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

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

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/TopGuns/TopGuns.sol


pragma solidity ^0.8.14;



contract TopGuns is Ownable, ERC721A{
    uint256 public MAX_AMOUNT = 7000;
    uint256 public _max_per_wallet = 3;
    bool public _saleIsActive = false;
    string private _nftBaseURI = "ipfs://QmbGz9MkmA8ehTMVtyakf6UCgx1ew5SiQXGzmZbfGofizE/";
    uint256 public _listing_price = 0;
    mapping(address => uint256) public balances;

    constructor()
    ERC721A("TopGuns", "TOPGUNS")
    {}

    function setListingPrice(uint256 price) external onlyOwner {
      _listing_price = price;
    }

    function setMaxPerWallet(uint256 max_per_wallet) external onlyOwner {
      _max_per_wallet = max_per_wallet;
    }



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


    function setBaseURI(string calldata newURI) external onlyOwner{
      _nftBaseURI = newURI;
    }

    function flipSaleState() public onlyOwner {
        _saleIsActive = !_saleIsActive;
    }


    function withdraw() public onlyOwner {
        payable(owner()).transfer(address(this).balance);
      }


    function mint(uint256 _amount) external payable {
        require(_saleIsActive, "sale not active");
        require(totalSupply() + _amount <= (MAX_AMOUNT), "supply limited");
        require(msg.value >= (_listing_price * _amount), "not enough funds submitted");
        require(balances[msg.sender] + _amount <= _max_per_wallet, "wallet limit reached");
        balances[msg.sender] += _amount;
        _safeMint(msg.sender, _amount);
    }

    function airDropMany(address[] memory _addr) external onlyOwner {
       require(totalSupply() + _addr.length <= (MAX_AMOUNT), "you would exceed the limit");

       for (uint i = 0; i < _addr.length; i++) {
           _safeMint(_addr[i], 1);

       }

   }


}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_listing_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_max_per_wallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addr","type":"address[]"}],"name":"airDropMany","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setListingPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max_per_wallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

611b586009556003600a55600b805460ff1916905560e0604052603660808181529062001b1560a03980516200003e91600c9160209091019062000139565b506000600d553480156200005157600080fd5b5060405180604001604052806007815260200166546f7047756e7360c81b81525060405180604001604052806007815260200166544f5047554e5360c81b815250620000ac620000a6620000e560201b60201c565b620000e9565b8151620000c190600390602085019062000139565b508051620000d790600490602084019062000139565b50506000600155506200021b565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200014790620001df565b90600052602060002090601f0160209004810192826200016b5760008555620001b6565b82601f106200018657805160ff1916838001178555620001b6565b82800160010185558215620001b6579182015b82811115620001b657825182559160200191906001019062000199565b50620001c4929150620001c8565b5090565b5b80821115620001c45760008155600101620001c9565b600181811c90821680620001f457607f821691505b6020821081036200021557634e487b7160e01b600052602260045260246000fd5b50919050565b6118ea806200022b6000396000f3fe6080604052600436106101c25760003560e01c8063715018a6116100f7578063a504743711610095578063d40dc87011610064578063d40dc870146104d3578063e268e4d3146104e9578063e985e9c514610509578063f2fde38b1461055257600080fd5b8063a50474371461045d578063b88d4fde14610473578063c87b56dd14610493578063cadf7c4d146104b357600080fd5b80638e0de7be116100d15780638e0de7be146103ff57806395d89b4114610415578063a0712d681461042a578063a22cb4651461043d57600080fd5b8063715018a6146103ac5780637c726b69146103c15780638da5cb5b146103e157600080fd5b806334918dfd1161016457806355f804b31161013e57806355f804b3146103325780635d893ba0146103525780636352211e1461036c57806370a082311461038c57600080fd5b806334918dfd146102e85780633ccfd60b146102fd57806342842e0e1461031257600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806323b872dd1461029b57806327e235e3146102bb57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e236600461136d565b610572565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105c4565b6040516101f391906113e2565b34801561022a57600080fd5b5061023e6102393660046113f5565b610656565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b5061027661027136600461142a565b61069a565b005b34801561028457600080fd5b50600254600154035b6040519081526020016101f3565b3480156102a757600080fd5b506102766102b6366004611454565b61073a565b3480156102c757600080fd5b5061028d6102d6366004611490565b600e6020526000908152604090205481565b3480156102f457600080fd5b506102766108d2565b34801561030957600080fd5b50610276610919565b34801561031e57600080fd5b5061027661032d366004611454565b610980565b34801561033e57600080fd5b5061027661034d3660046114ab565b6109a0565b34801561035e57600080fd5b50600b546101e79060ff1681565b34801561037857600080fd5b5061023e6103873660046113f5565b6109d6565b34801561039857600080fd5b5061028d6103a7366004611490565b6109e1565b3480156103b857600080fd5b50610276610a30565b3480156103cd57600080fd5b506102766103dc3660046113f5565b610a66565b3480156103ed57600080fd5b506000546001600160a01b031661023e565b34801561040b57600080fd5b5061028d600d5481565b34801561042157600080fd5b50610211610a95565b6102766104383660046113f5565b610aa4565b34801561044957600080fd5b5061027661045836600461151d565b610c31565b34801561046957600080fd5b5061028d600a5481565b34801561047f57600080fd5b5061027661048e3660046115a0565b610cc6565b34801561049f57600080fd5b506102116104ae3660046113f5565b610d10565b3480156104bf57600080fd5b506102766104ce366004611660565b610d94565b3480156104df57600080fd5b5061028d60095481565b3480156104f557600080fd5b506102766105043660046113f5565b610e68565b34801561051557600080fd5b506101e761052436600461170d565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561055e57600080fd5b5061027661056d366004611490565b610e97565b60006301ffc9a760e01b6001600160e01b0319831614806105a357506380ac58cd60e01b6001600160e01b03198316145b806105be5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546105d390611740565b80601f01602080910402602001604051908101604052809291908181526020018280546105ff90611740565b801561064c5780601f106106215761010080835404028352916020019161064c565b820191906000526020600020905b81548152906001019060200180831161062f57829003601f168201915b5050505050905090565b600061066182610f2f565b61067e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006106a5826109d6565b9050336001600160a01b038216146106de576106c18133610524565b6106de576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061074582610f57565b9050836001600160a01b0316816001600160a01b0316146107785760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b038816909114176107c5576107a88633610524565b6107c557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166107ec57604051633a954ecd60e21b815260040160405180910390fd5b80156107f757600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b84169003610889576001840160008181526005602052604081205490036108875760015481146108875760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6000546001600160a01b031633146109055760405162461bcd60e51b81526004016108fc9061177a565b60405180910390fd5b600b805460ff19811660ff90911615179055565b6000546001600160a01b031633146109435760405162461bcd60e51b81526004016108fc9061177a565b600080546040516001600160a01b03909116914780156108fc02929091818181858888f1935050505015801561097d573d6000803e3d6000fd5b50565b61099b83838360405180602001604052806000815250610cc6565b505050565b6000546001600160a01b031633146109ca5760405162461bcd60e51b81526004016108fc9061177a565b61099b600c83836112be565b60006105be82610f57565b60006001600160a01b038216610a0a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610a5a5760405162461bcd60e51b81526004016108fc9061177a565b610a646000610fbe565b565b6000546001600160a01b03163314610a905760405162461bcd60e51b81526004016108fc9061177a565b600d55565b6060600480546105d390611740565b600b5460ff16610ae85760405162461bcd60e51b815260206004820152600f60248201526e73616c65206e6f742061637469766560881b60448201526064016108fc565b60095481610af96002546001540390565b610b0391906117c5565b1115610b425760405162461bcd60e51b815260206004820152600e60248201526d1cdd5c1c1b1e481b1a5b5a5d195960921b60448201526064016108fc565b80600d54610b5091906117dd565b341015610b9f5760405162461bcd60e51b815260206004820152601a60248201527f6e6f7420656e6f7567682066756e6473207375626d697474656400000000000060448201526064016108fc565b600a54336000908152600e6020526040902054610bbd9083906117c5565b1115610c025760405162461bcd60e51b81526020600482015260146024820152731dd85b1b195d081b1a5b5a5d081c995858da195960621b60448201526064016108fc565b336000908152600e602052604081208054839290610c219084906117c5565b9091555061097d9050338261100e565b336001600160a01b03831603610c5a5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610cd184848461073a565b6001600160a01b0383163b15610d0a57610ced84848484611028565b610d0a576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610d1b82610f2f565b610d3857604051630a14c4b560e41b815260040160405180910390fd5b6000610d42611113565b90508051600003610d625760405180602001604052806000815250610d8d565b80610d6c84611122565b604051602001610d7d9291906117fc565b6040516020818303038152906040525b9392505050565b6000546001600160a01b03163314610dbe5760405162461bcd60e51b81526004016108fc9061177a565b600954815160025460015403610dd491906117c5565b1115610e225760405162461bcd60e51b815260206004820152601a60248201527f796f7520776f756c642065786365656420746865206c696d697400000000000060448201526064016108fc565b60005b8151811015610e6457610e52828281518110610e4357610e4361182b565b6020026020010151600161100e565b80610e5c81611841565b915050610e25565b5050565b6000546001600160a01b03163314610e925760405162461bcd60e51b81526004016108fc9061177a565b600a55565b6000546001600160a01b03163314610ec15760405162461bcd60e51b81526004016108fc9061177a565b6001600160a01b038116610f265760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108fc565b61097d81610fbe565b6000600154821080156105be575050600090815260056020526040902054600160e01b161590565b600081600154811015610fa55760008181526005602052604081205490600160e01b82169003610fa3575b80600003610d8d575060001901600081815260056020526040902054610f82565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610e64828260405180602001604052806000815250611171565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061105d90339089908890889060040161185a565b6020604051808303816000875af1925050508015611098575060408051601f3d908101601f1916820190925261109591810190611897565b60015b6110f6573d8080156110c6576040519150601f19603f3d011682016040523d82523d6000602084013e6110cb565b606091505b5080516000036110ee576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600c80546105d390611740565b604080516080810191829052607f0190826030600a8206018353600a90045b801561115f57600183039250600a81066030018353600a9004611141565b50819003601f19909101908152919050565b61117b83836111de565b6001600160a01b0383163b1561099b576001548281035b6111a56000868380600101945086611028565b6111c2576040516368d2bf6b60e11b815260040160405180910390fd5b8181106111925781600154146111d757600080fd5b5050505050565b6001546001600160a01b03831661120757604051622e076360e81b815260040160405180910390fd5b816000036112285760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106112725760015550505050565b8280546112ca90611740565b90600052602060002090601f0160209004810192826112ec5760008555611332565b82601f106113055782800160ff19823516178555611332565b82800160010185558215611332579182015b82811115611332578235825591602001919060010190611317565b5061133e929150611342565b5090565b5b8082111561133e5760008155600101611343565b6001600160e01b03198116811461097d57600080fd5b60006020828403121561137f57600080fd5b8135610d8d81611357565b60005b838110156113a557818101518382015260200161138d565b83811115610d0a5750506000910152565b600081518084526113ce81602086016020860161138a565b601f01601f19169290920160200192915050565b602081526000610d8d60208301846113b6565b60006020828403121561140757600080fd5b5035919050565b80356001600160a01b038116811461142557600080fd5b919050565b6000806040838503121561143d57600080fd5b6114468361140e565b946020939093013593505050565b60008060006060848603121561146957600080fd5b6114728461140e565b92506114806020850161140e565b9150604084013590509250925092565b6000602082840312156114a257600080fd5b610d8d8261140e565b600080602083850312156114be57600080fd5b823567ffffffffffffffff808211156114d657600080fd5b818501915085601f8301126114ea57600080fd5b8135818111156114f957600080fd5b86602082850101111561150b57600080fd5b60209290920196919550909350505050565b6000806040838503121561153057600080fd5b6115398361140e565b91506020830135801515811461154e57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561159857611598611559565b604052919050565b600080600080608085870312156115b657600080fd5b6115bf8561140e565b935060206115ce81870161140e565b935060408601359250606086013567ffffffffffffffff808211156115f257600080fd5b818801915088601f83011261160657600080fd5b81358181111561161857611618611559565b61162a601f8201601f1916850161156f565b9150808252898482850101111561164057600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000602080838503121561167357600080fd5b823567ffffffffffffffff8082111561168b57600080fd5b818501915085601f83011261169f57600080fd5b8135818111156116b1576116b1611559565b8060051b91506116c284830161156f565b81815291830184019184810190888411156116dc57600080fd5b938501935b83851015611701576116f28561140e565b825293850193908501906116e1565b98975050505050505050565b6000806040838503121561172057600080fd5b6117298361140e565b91506117376020840161140e565b90509250929050565b600181811c9082168061175457607f821691505b60208210810361177457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156117d8576117d86117af565b500190565b60008160001904831182151516156117f7576117f76117af565b500290565b6000835161180e81846020880161138a565b83519083019061182281836020880161138a565b01949350505050565b634e487b7160e01b600052603260045260246000fd5b600060018201611853576118536117af565b5060010190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061188d908301846113b6565b9695505050505050565b6000602082840312156118a957600080fd5b8151610d8d8161135756fea264697066735822122047769144bb3095af3261da7c845d1b5c18f988b741c7acc6aa827b57d795c0ad64736f6c634300080e0033697066733a2f2f516d62477a394d6b6d41386568544d567479616b6636554367783165773553695158477a6d5a6266476f66697a452f

Deployed Bytecode

0x6080604052600436106101c25760003560e01c8063715018a6116100f7578063a504743711610095578063d40dc87011610064578063d40dc870146104d3578063e268e4d3146104e9578063e985e9c514610509578063f2fde38b1461055257600080fd5b8063a50474371461045d578063b88d4fde14610473578063c87b56dd14610493578063cadf7c4d146104b357600080fd5b80638e0de7be116100d15780638e0de7be146103ff57806395d89b4114610415578063a0712d681461042a578063a22cb4651461043d57600080fd5b8063715018a6146103ac5780637c726b69146103c15780638da5cb5b146103e157600080fd5b806334918dfd1161016457806355f804b31161013e57806355f804b3146103325780635d893ba0146103525780636352211e1461036c57806370a082311461038c57600080fd5b806334918dfd146102e85780633ccfd60b146102fd57806342842e0e1461031257600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806323b872dd1461029b57806327e235e3146102bb57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e236600461136d565b610572565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105c4565b6040516101f391906113e2565b34801561022a57600080fd5b5061023e6102393660046113f5565b610656565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b5061027661027136600461142a565b61069a565b005b34801561028457600080fd5b50600254600154035b6040519081526020016101f3565b3480156102a757600080fd5b506102766102b6366004611454565b61073a565b3480156102c757600080fd5b5061028d6102d6366004611490565b600e6020526000908152604090205481565b3480156102f457600080fd5b506102766108d2565b34801561030957600080fd5b50610276610919565b34801561031e57600080fd5b5061027661032d366004611454565b610980565b34801561033e57600080fd5b5061027661034d3660046114ab565b6109a0565b34801561035e57600080fd5b50600b546101e79060ff1681565b34801561037857600080fd5b5061023e6103873660046113f5565b6109d6565b34801561039857600080fd5b5061028d6103a7366004611490565b6109e1565b3480156103b857600080fd5b50610276610a30565b3480156103cd57600080fd5b506102766103dc3660046113f5565b610a66565b3480156103ed57600080fd5b506000546001600160a01b031661023e565b34801561040b57600080fd5b5061028d600d5481565b34801561042157600080fd5b50610211610a95565b6102766104383660046113f5565b610aa4565b34801561044957600080fd5b5061027661045836600461151d565b610c31565b34801561046957600080fd5b5061028d600a5481565b34801561047f57600080fd5b5061027661048e3660046115a0565b610cc6565b34801561049f57600080fd5b506102116104ae3660046113f5565b610d10565b3480156104bf57600080fd5b506102766104ce366004611660565b610d94565b3480156104df57600080fd5b5061028d60095481565b3480156104f557600080fd5b506102766105043660046113f5565b610e68565b34801561051557600080fd5b506101e761052436600461170d565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561055e57600080fd5b5061027661056d366004611490565b610e97565b60006301ffc9a760e01b6001600160e01b0319831614806105a357506380ac58cd60e01b6001600160e01b03198316145b806105be5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546105d390611740565b80601f01602080910402602001604051908101604052809291908181526020018280546105ff90611740565b801561064c5780601f106106215761010080835404028352916020019161064c565b820191906000526020600020905b81548152906001019060200180831161062f57829003601f168201915b5050505050905090565b600061066182610f2f565b61067e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006106a5826109d6565b9050336001600160a01b038216146106de576106c18133610524565b6106de576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061074582610f57565b9050836001600160a01b0316816001600160a01b0316146107785760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b038816909114176107c5576107a88633610524565b6107c557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166107ec57604051633a954ecd60e21b815260040160405180910390fd5b80156107f757600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b84169003610889576001840160008181526005602052604081205490036108875760015481146108875760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6000546001600160a01b031633146109055760405162461bcd60e51b81526004016108fc9061177a565b60405180910390fd5b600b805460ff19811660ff90911615179055565b6000546001600160a01b031633146109435760405162461bcd60e51b81526004016108fc9061177a565b600080546040516001600160a01b03909116914780156108fc02929091818181858888f1935050505015801561097d573d6000803e3d6000fd5b50565b61099b83838360405180602001604052806000815250610cc6565b505050565b6000546001600160a01b031633146109ca5760405162461bcd60e51b81526004016108fc9061177a565b61099b600c83836112be565b60006105be82610f57565b60006001600160a01b038216610a0a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610a5a5760405162461bcd60e51b81526004016108fc9061177a565b610a646000610fbe565b565b6000546001600160a01b03163314610a905760405162461bcd60e51b81526004016108fc9061177a565b600d55565b6060600480546105d390611740565b600b5460ff16610ae85760405162461bcd60e51b815260206004820152600f60248201526e73616c65206e6f742061637469766560881b60448201526064016108fc565b60095481610af96002546001540390565b610b0391906117c5565b1115610b425760405162461bcd60e51b815260206004820152600e60248201526d1cdd5c1c1b1e481b1a5b5a5d195960921b60448201526064016108fc565b80600d54610b5091906117dd565b341015610b9f5760405162461bcd60e51b815260206004820152601a60248201527f6e6f7420656e6f7567682066756e6473207375626d697474656400000000000060448201526064016108fc565b600a54336000908152600e6020526040902054610bbd9083906117c5565b1115610c025760405162461bcd60e51b81526020600482015260146024820152731dd85b1b195d081b1a5b5a5d081c995858da195960621b60448201526064016108fc565b336000908152600e602052604081208054839290610c219084906117c5565b9091555061097d9050338261100e565b336001600160a01b03831603610c5a5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610cd184848461073a565b6001600160a01b0383163b15610d0a57610ced84848484611028565b610d0a576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610d1b82610f2f565b610d3857604051630a14c4b560e41b815260040160405180910390fd5b6000610d42611113565b90508051600003610d625760405180602001604052806000815250610d8d565b80610d6c84611122565b604051602001610d7d9291906117fc565b6040516020818303038152906040525b9392505050565b6000546001600160a01b03163314610dbe5760405162461bcd60e51b81526004016108fc9061177a565b600954815160025460015403610dd491906117c5565b1115610e225760405162461bcd60e51b815260206004820152601a60248201527f796f7520776f756c642065786365656420746865206c696d697400000000000060448201526064016108fc565b60005b8151811015610e6457610e52828281518110610e4357610e4361182b565b6020026020010151600161100e565b80610e5c81611841565b915050610e25565b5050565b6000546001600160a01b03163314610e925760405162461bcd60e51b81526004016108fc9061177a565b600a55565b6000546001600160a01b03163314610ec15760405162461bcd60e51b81526004016108fc9061177a565b6001600160a01b038116610f265760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108fc565b61097d81610fbe565b6000600154821080156105be575050600090815260056020526040902054600160e01b161590565b600081600154811015610fa55760008181526005602052604081205490600160e01b82169003610fa3575b80600003610d8d575060001901600081815260056020526040902054610f82565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610e64828260405180602001604052806000815250611171565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061105d90339089908890889060040161185a565b6020604051808303816000875af1925050508015611098575060408051601f3d908101601f1916820190925261109591810190611897565b60015b6110f6573d8080156110c6576040519150601f19603f3d011682016040523d82523d6000602084013e6110cb565b606091505b5080516000036110ee576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600c80546105d390611740565b604080516080810191829052607f0190826030600a8206018353600a90045b801561115f57600183039250600a81066030018353600a9004611141565b50819003601f19909101908152919050565b61117b83836111de565b6001600160a01b0383163b1561099b576001548281035b6111a56000868380600101945086611028565b6111c2576040516368d2bf6b60e11b815260040160405180910390fd5b8181106111925781600154146111d757600080fd5b5050505050565b6001546001600160a01b03831661120757604051622e076360e81b815260040160405180910390fd5b816000036112285760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106112725760015550505050565b8280546112ca90611740565b90600052602060002090601f0160209004810192826112ec5760008555611332565b82601f106113055782800160ff19823516178555611332565b82800160010185558215611332579182015b82811115611332578235825591602001919060010190611317565b5061133e929150611342565b5090565b5b8082111561133e5760008155600101611343565b6001600160e01b03198116811461097d57600080fd5b60006020828403121561137f57600080fd5b8135610d8d81611357565b60005b838110156113a557818101518382015260200161138d565b83811115610d0a5750506000910152565b600081518084526113ce81602086016020860161138a565b601f01601f19169290920160200192915050565b602081526000610d8d60208301846113b6565b60006020828403121561140757600080fd5b5035919050565b80356001600160a01b038116811461142557600080fd5b919050565b6000806040838503121561143d57600080fd5b6114468361140e565b946020939093013593505050565b60008060006060848603121561146957600080fd5b6114728461140e565b92506114806020850161140e565b9150604084013590509250925092565b6000602082840312156114a257600080fd5b610d8d8261140e565b600080602083850312156114be57600080fd5b823567ffffffffffffffff808211156114d657600080fd5b818501915085601f8301126114ea57600080fd5b8135818111156114f957600080fd5b86602082850101111561150b57600080fd5b60209290920196919550909350505050565b6000806040838503121561153057600080fd5b6115398361140e565b91506020830135801515811461154e57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561159857611598611559565b604052919050565b600080600080608085870312156115b657600080fd5b6115bf8561140e565b935060206115ce81870161140e565b935060408601359250606086013567ffffffffffffffff808211156115f257600080fd5b818801915088601f83011261160657600080fd5b81358181111561161857611618611559565b61162a601f8201601f1916850161156f565b9150808252898482850101111561164057600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000602080838503121561167357600080fd5b823567ffffffffffffffff8082111561168b57600080fd5b818501915085601f83011261169f57600080fd5b8135818111156116b1576116b1611559565b8060051b91506116c284830161156f565b81815291830184019184810190888411156116dc57600080fd5b938501935b83851015611701576116f28561140e565b825293850193908501906116e1565b98975050505050505050565b6000806040838503121561172057600080fd5b6117298361140e565b91506117376020840161140e565b90509250929050565b600181811c9082168061175457607f821691505b60208210810361177457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156117d8576117d86117af565b500190565b60008160001904831182151516156117f7576117f76117af565b500290565b6000835161180e81846020880161138a565b83519083019061182281836020880161138a565b01949350505050565b634e487b7160e01b600052603260045260246000fd5b600060018201611853576118536117af565b5060010190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061188d908301846113b6565b9695505050505050565b6000602082840312156118a957600080fd5b8151610d8d8161135756fea264697066735822122047769144bb3095af3261da7c845d1b5c18f988b741c7acc6aa827b57d795c0ad64736f6c634300080e0033

Deployed Bytecode Sourcemap

48256:1822:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14625:615;;;;;;;;;;-1:-1:-1;14625:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;14625:615:0;;;;;;;;20272:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22218:204::-;;;;;;;;;;-1:-1:-1;22218:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;22218:204:0;1528:203:1;21766:386:0;;;;;;;;;;-1:-1:-1;21766:386:0;;;;;:::i;:::-;;:::i;:::-;;13679:315;;;;;;;;;;-1:-1:-1;13945:12:0;;13929:13;;:28;13679:315;;;2319:25:1;;;2307:2;2292:18;13679:315:0;2173:177:1;31483:2800:0;;;;;;;;;;-1:-1:-1;31483:2800:0;;;;;:::i;:::-;;:::i;48551:43::-;;;;;;;;;;-1:-1:-1;48551:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;49130:91;;;;;;;;;;;;;:::i;49231:106::-;;;;;;;;;;;;;:::i;23108:185::-;;;;;;;;;;-1:-1:-1;23108:185:0;;;;;:::i;:::-;;:::i;49023:99::-;;;;;;;;;;-1:-1:-1;49023:99:0;;;;;:::i;:::-;;:::i;48379:33::-;;;;;;;;;;-1:-1:-1;48379:33:0;;;;;;;;20061:144;;;;;;;;;;-1:-1:-1;20061:144:0;;;;;:::i;:::-;;:::i;15304:224::-;;;;;;;;;;-1:-1:-1;15304:224:0;;;;;:::i;:::-;;:::i;47363:103::-;;;;;;;;;;;;;:::i;48667:98::-;;;;;;;;;;-1:-1:-1;48667:98:0;;;;;:::i;:::-;;:::i;46712:87::-;;;;;;;;;;-1:-1:-1;46758:7:0;46785:6;-1:-1:-1;;;;;46785:6:0;46712:87;;48511:33;;;;;;;;;;;;;;;;20441:104;;;;;;;;;;;;;:::i;49347:450::-;;;;;;:::i;:::-;;:::i;22494:308::-;;;;;;;;;;-1:-1:-1;22494:308:0;;;;;:::i;:::-;;:::i;48338:34::-;;;;;;;;;;;;;;;;23364:399;;;;;;;;;;-1:-1:-1;23364:399:0;;;;;:::i;:::-;;:::i;20616:318::-;;;;;;;;;;-1:-1:-1;20616:318:0;;;;;:::i;:::-;;:::i;49805:266::-;;;;;;;;;;-1:-1:-1;49805:266:0;;;;;:::i;:::-;;:::i;48299:32::-;;;;;;;;;;;;;;;;48773:117;;;;;;;;;;-1:-1:-1;48773:117:0;;;;;:::i;:::-;;:::i;22873:164::-;;;;;;;;;;-1:-1:-1;22873:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;22994:25:0;;;22970:4;22994:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;22873:164;47621:201;;;;;;;;;;-1:-1:-1;47621:201:0;;;;;:::i;:::-;;:::i;14625:615::-;14710:4;-1:-1:-1;;;;;;;;;15010:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;15087:25:0;;;15010:102;:179;;;-1:-1:-1;;;;;;;;;;15164:25:0;;;15010:179;14990:199;14625:615;-1:-1:-1;;14625:615:0:o;20272:100::-;20326:13;20359:5;20352:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20272:100;:::o;22218:204::-;22286:7;22311:16;22319:7;22311;:16::i;:::-;22306:64;;22336:34;;-1:-1:-1;;;22336:34:0;;;;;;;;;;;22306:64;-1:-1:-1;22390:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22390:24:0;;22218:204::o;21766:386::-;21839:13;21855:16;21863:7;21855;:16::i;:::-;21839:32;-1:-1:-1;42666:10:0;-1:-1:-1;;;;;21888:28:0;;;21884:175;;21936:44;21953:5;42666:10;22873:164;:::i;21936:44::-;21931:128;;22008:35;;-1:-1:-1;;;22008:35:0;;;;;;;;;;;21931:128;22071:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;22071:29:0;-1:-1:-1;;;;;22071:29:0;;;;;;;;;22116:28;;22071:24;;22116:28;;;;;;;21828:324;21766:386;;:::o;31483:2800::-;31617:27;31647;31666:7;31647:18;:27::i;:::-;31617:57;;31732:4;-1:-1:-1;;;;;31691:45:0;31707:19;-1:-1:-1;;;;;31691:45:0;;31687:86;;31745:28;;-1:-1:-1;;;31745:28:0;;;;;;;;;;;31687:86;31787:27;30213:21;;;30040:15;30255:4;30248:36;30337:4;30321:21;;30427:26;;42666:10;31180:30;;;-1:-1:-1;;;;;30878:26:0;;31159:19;;;31156:55;31966:174;;32053:43;32070:4;42666:10;22873:164;:::i;32053:43::-;32048:92;;32105:35;;-1:-1:-1;;;32105:35:0;;;;;;;;;;;32048:92;-1:-1:-1;;;;;32157:16:0;;32153:52;;32182:23;;-1:-1:-1;;;32182:23:0;;;;;;;;;;;32153:52;32354:15;32351:160;;;32494:1;32473:19;32466:30;32351:160;-1:-1:-1;;;;;32889:24:0;;;;;;;:18;:24;;;;;;32887:26;;-1:-1:-1;;32887:26:0;;;32958:22;;;;;;;;;32956:24;;-1:-1:-1;32956:24:0;;;19960:11;19936:22;19932:40;19919:62;-1:-1:-1;;;19919:62:0;33251:26;;;;:17;:26;;;;;:174;;;;-1:-1:-1;;;33545:46:0;;:51;;33541:626;;33649:1;33639:11;;33617:19;33772:30;;;:17;:30;;;;;;:35;;33768:384;;33910:13;;33895:11;:28;33891:242;;34057:30;;;;:17;:30;;;;;:52;;;33891:242;33598:569;33541:626;34214:7;34210:2;-1:-1:-1;;;;;34195:27:0;34204:4;-1:-1:-1;;;;;34195:27:0;;;;;;;;;;;31606:2677;;;31483:2800;;;:::o;49130:91::-;46758:7;46785:6;-1:-1:-1;;;;;46785:6:0;42666:10;46932:23;46924:68;;;;-1:-1:-1;;;46924:68:0;;;;;;;:::i;:::-;;;;;;;;;49200:13:::1;::::0;;-1:-1:-1;;49183:30:0;::::1;49200:13;::::0;;::::1;49199:14;49183:30;::::0;;49130:91::o;49231:106::-;46758:7;46785:6;-1:-1:-1;;;;;46785:6:0;42666:10;46932:23;46924:68;;;;-1:-1:-1;;;46924:68:0;;;;;;;:::i;:::-;46758:7;46785:6;;49279:48:::1;::::0;-1:-1:-1;;;;;46785:6:0;;;;49305:21:::1;49279:48:::0;::::1;;;::::0;49305:21;;49279:48;46758:7;49279:48;49305:21;46785:6;49279:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;49231:106::o:0;23108:185::-;23246:39;23263:4;23269:2;23273:7;23246:39;;;;;;;;;;;;:16;:39::i;:::-;23108:185;;;:::o;49023:99::-;46758:7;46785:6;-1:-1:-1;;;;;46785:6:0;42666:10;46932:23;46924:68;;;;-1:-1:-1;;;46924:68:0;;;;;;;:::i;:::-;49094:20:::1;:11;49108:6:::0;;49094:20:::1;:::i;20061:144::-:0;20125:7;20168:27;20187:7;20168:18;:27::i;15304:224::-;15368:7;-1:-1:-1;;;;;15392:19:0;;15388:60;;15420:28;;-1:-1:-1;;;15420:28:0;;;;;;;;;;;15388:60;-1:-1:-1;;;;;;15466:25:0;;;;;:18;:25;;;;;;9859:13;15466:54;;15304:224::o;47363:103::-;46758:7;46785:6;-1:-1:-1;;;;;46785:6:0;42666:10;46932:23;46924:68;;;;-1:-1:-1;;;46924:68:0;;;;;;;:::i;:::-;47428:30:::1;47455:1;47428:18;:30::i;:::-;47363:103::o:0;48667:98::-;46758:7;46785:6;-1:-1:-1;;;;;46785:6:0;42666:10;46932:23;46924:68;;;;-1:-1:-1;;;46924:68:0;;;;;;;:::i;:::-;48735:14:::1;:22:::0;48667:98::o;20441:104::-;20497:13;20530:7;20523:14;;;;;:::i;49347:450::-;49414:13;;;;49406:41;;;;-1:-1:-1;;;49406:41:0;;7395:2:1;49406:41:0;;;7377:21:1;7434:2;7414:18;;;7407:30;-1:-1:-1;;;7453:18:1;;;7446:45;7508:18;;49406:41:0;7193:339:1;49406:41:0;49494:10;;49482:7;49466:13;13945:12;;13929:13;;:28;;13679:315;49466:13;:23;;;;:::i;:::-;:39;;49458:66;;;;-1:-1:-1;;;49458:66:0;;8004:2:1;49458:66:0;;;7986:21:1;8043:2;8023:18;;;8016:30;-1:-1:-1;;;8062:18:1;;;8055:44;8116:18;;49458:66:0;7802:338:1;49458:66:0;49574:7;49557:14;;:24;;;;:::i;:::-;49543:9;:39;;49535:78;;;;-1:-1:-1;;;49535:78:0;;8520:2:1;49535:78:0;;;8502:21:1;8559:2;8539:18;;;8532:30;8598:28;8578:18;;;8571:56;8644:18;;49535:78:0;8318:350:1;49535:78:0;49666:15;;49641:10;49632:20;;;;:8;:20;;;;;;:30;;49655:7;;49632:30;:::i;:::-;:49;;49624:82;;;;-1:-1:-1;;;49624:82:0;;8875:2:1;49624:82:0;;;8857:21:1;8914:2;8894:18;;;8887:30;-1:-1:-1;;;8933:18:1;;;8926:50;8993:18;;49624:82:0;8673:344:1;49624:82:0;49726:10;49717:20;;;;:8;:20;;;;;:31;;49741:7;;49717:20;:31;;49741:7;;49717:31;:::i;:::-;;;;-1:-1:-1;49759:30:0;;-1:-1:-1;49769:10:0;49781:7;49759:9;:30::i;22494:308::-;42666:10;-1:-1:-1;;;;;22593:31:0;;;22589:61;;22633:17;;-1:-1:-1;;;22633:17:0;;;;;;;;;;;22589:61;42666:10;22663:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;22663:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;22663:60:0;;;;;;;;;;22739:55;;540:41:1;;;22663:49:0;;42666:10;22739:55;;513:18:1;22739:55:0;;;;;;;22494:308;;:::o;23364:399::-;23531:31;23544:4;23550:2;23554:7;23531:12;:31::i;:::-;-1:-1:-1;;;;;23577:14:0;;;:19;23573:183;;23616:56;23647:4;23653:2;23657:7;23666:5;23616:30;:56::i;:::-;23611:145;;23700:40;;-1:-1:-1;;;23700:40:0;;;;;;;;;;;23611:145;23364:399;;;;:::o;20616:318::-;20689:13;20720:16;20728:7;20720;:16::i;:::-;20715:59;;20745:29;;-1:-1:-1;;;20745:29:0;;;;;;;;;;;20715:59;20787:21;20811:10;:8;:10::i;:::-;20787:34;;20845:7;20839:21;20864:1;20839:26;:87;;;;;;;;;;;;;;;;;20892:7;20901:18;20911:7;20901:9;:18::i;:::-;20875:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20839:87;20832:94;20616:318;-1:-1:-1;;;20616:318:0:o;49805:266::-;46758:7;46785:6;-1:-1:-1;;;;;46785:6:0;42666:10;46932:23;46924:68;;;;-1:-1:-1;;;46924:68:0;;;;;;;:::i;:::-;49920:10:::1;::::0;49903:12;;13945;;13929:13;;:28;49887::::1;;;;:::i;:::-;:44;;49879:83;;;::::0;-1:-1:-1;;;49879:83:0;;9699:2:1;49879:83:0::1;::::0;::::1;9681:21:1::0;9738:2;9718:18;;;9711:30;9777:28;9757:18;;;9750:56;9823:18;;49879:83:0::1;9497:350:1::0;49879:83:0::1;49979:6;49974:89;49995:5;:12;49991:1;:16;49974:89;;;50028:22;50038:5;50044:1;50038:8;;;;;;;;:::i;:::-;;;;;;;50048:1;50028:9;:22::i;:::-;50009:3:::0;::::1;::::0;::::1;:::i;:::-;;;;49974:89;;;;49805:266:::0;:::o;48773:117::-;46758:7;46785:6;-1:-1:-1;;;;;46785:6:0;42666:10;46932:23;46924:68;;;;-1:-1:-1;;;46924:68:0;;;;;;;:::i;:::-;48850:15:::1;:32:::0;48773:117::o;47621:201::-;46758:7;46785:6;-1:-1:-1;;;;;46785:6:0;42666:10;46932:23;46924:68;;;;-1:-1:-1;;;46924:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47710:22:0;::::1;47702:73;;;::::0;-1:-1:-1;;;47702:73:0;;10326:2:1;47702:73:0::1;::::0;::::1;10308:21:1::0;10365:2;10345:18;;;10338:30;10404:34;10384:18;;;10377:62;-1:-1:-1;;;10455:18:1;;;10448:36;10501:19;;47702:73:0::1;10124:402:1::0;47702:73:0::1;47786:28;47805:8;47786:18;:28::i;24018:273::-:0;24075:4;24165:13;;24155:7;:23;24112:152;;;;-1:-1:-1;;24216:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;24216:43:0;:48;;24018:273::o;16978:1129::-;17045:7;17080;17182:13;;17175:4;:20;17171:869;;;17220:14;17237:23;;;:17;:23;;;;;;;-1:-1:-1;;;17326:23:0;;:28;;17322:699;;17845:113;17852:6;17862:1;17852:11;17845:113;;-1:-1:-1;;;17923:6:0;17905:25;;;;:17;:25;;;;;;17845:113;;17322:699;17197:843;17171:869;18068:31;;-1:-1:-1;;;18068:31:0;;;;;;;;;;;47982:191;48056:16;48075:6;;-1:-1:-1;;;;;48092:17:0;;;-1:-1:-1;;;;;;48092:17:0;;;;;;48125:40;;48075:6;;;;;;;48125:40;;48056:16;48125:40;48045:128;47982:191;:::o;24375:104::-;24444:27;24454:2;24458:8;24444:27;;;;;;;;;;;;:9;:27::i;38234:716::-;38418:88;;-1:-1:-1;;;38418:88:0;;38397:4;;-1:-1:-1;;;;;38418:45:0;;;;;:88;;42666:10;;38485:4;;38491:7;;38500:5;;38418:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38418:88:0;;;;;;;;-1:-1:-1;;38418:88:0;;;;;;;;;;;;:::i;:::-;;;38414:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38701:6;:13;38718:1;38701:18;38697:235;;38747:40;;-1:-1:-1;;;38747:40:0;;;;;;;;;;;38697:235;38890:6;38884:13;38875:6;38871:2;38867:15;38860:38;38414:529;-1:-1:-1;;;;;;38577:64:0;-1:-1:-1;;;38577:64:0;;-1:-1:-1;38234:716:0;;;;;;:::o;48902:111::-;48962:13;48994:11;48987:18;;;;;:::i;42790:1960::-;43259:4;43253:11;;43266:3;43249:21;;43344:17;;;;44040:11;;;43919:5;44172:2;44186;44176:13;;44168:22;44040:11;44155:36;44227:2;44217:13;;43811:697;44246:4;43811:697;;;44437:1;44432:3;44428:11;44421:18;;44488:2;44482:4;44478:13;44474:2;44470:22;44465:3;44457:36;44341:2;44331:13;;43811:697;;;-1:-1:-1;44538:13:0;;;-1:-1:-1;;44653:12:0;;;44713:19;;;44653:12;42790:1960;-1:-1:-1;42790:1960:0:o;24895:681::-;25018:19;25024:2;25028:8;25018:5;:19::i;:::-;-1:-1:-1;;;;;25079:14:0;;;:19;25075:483;;25133:13;;25181:14;;;25214:233;25245:62;25284:1;25288:2;25292:7;;;;;;25301:5;25245:30;:62::i;:::-;25240:167;;25343:40;;-1:-1:-1;;;25343:40:0;;;;;;;;;;;25240:167;25442:3;25434:5;:11;25214:233;;25529:3;25512:13;;:20;25508:34;;25534:8;;;25508:34;25100:458;;24895:681;;;:::o;25849:1529::-;25937:13;;-1:-1:-1;;;;;25965:16:0;;25961:48;;25990:19;;-1:-1:-1;;;25990:19:0;;;;;;;;;;;25961:48;26024:8;26036:1;26024:13;26020:44;;26046:18;;-1:-1:-1;;;26046:18:0;;;;;;;;;;;26020:44;-1:-1:-1;;;;;26552:22:0;;;;;;:18;:22;;9996:2;26552:22;;:70;;26590:31;26578:44;;26552:70;;;19960:11;19936:22;19932:40;-1:-1:-1;21670:15:0;;21645:23;21641:45;19929:51;19919:62;26865:31;;;;:17;:31;;;;;:173;26883:12;27114:23;;;27152:101;27179:35;;27204:9;;;;;-1:-1:-1;;;;;27179:35:0;;;27196:1;;27179:35;;27196:1;;27179:35;27248:3;27238:7;:13;27152:101;;27269:13;:19;-1:-1:-1;23108:185:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:592::-;2950:6;2958;3011:2;2999:9;2990:7;2986:23;2982:32;2979:52;;;3027:1;3024;3017:12;2979:52;3067:9;3054:23;3096:18;3137:2;3129:6;3126:14;3123:34;;;3153:1;3150;3143:12;3123:34;3191:6;3180:9;3176:22;3166:32;;3236:7;3229:4;3225:2;3221:13;3217:27;3207:55;;3258:1;3255;3248:12;3207:55;3298:2;3285:16;3324:2;3316:6;3313:14;3310:34;;;3340:1;3337;3330:12;3310:34;3385:7;3380:2;3371:6;3367:2;3363:15;3359:24;3356:37;3353:57;;;3406:1;3403;3396:12;3353:57;3437:2;3429:11;;;;;3459:6;;-1:-1:-1;2879:592:1;;-1:-1:-1;;;;2879:592:1:o;3476:347::-;3541:6;3549;3602:2;3590:9;3581:7;3577:23;3573:32;3570:52;;;3618:1;3615;3608:12;3570:52;3641:29;3660:9;3641:29;:::i;:::-;3631:39;;3720:2;3709:9;3705:18;3692:32;3767:5;3760:13;3753:21;3746:5;3743:32;3733:60;;3789:1;3786;3779:12;3733:60;3812:5;3802:15;;;3476:347;;;;;:::o;3828:127::-;3889:10;3884:3;3880:20;3877:1;3870:31;3920:4;3917:1;3910:15;3944:4;3941:1;3934:15;3960:275;4031:2;4025:9;4096:2;4077:13;;-1:-1:-1;;4073:27:1;4061:40;;4131:18;4116:34;;4152:22;;;4113:62;4110:88;;;4178:18;;:::i;:::-;4214:2;4207:22;3960:275;;-1:-1:-1;3960:275:1:o;4240:980::-;4335:6;4343;4351;4359;4412:3;4400:9;4391:7;4387:23;4383:33;4380:53;;;4429:1;4426;4419:12;4380:53;4452:29;4471:9;4452:29;:::i;:::-;4442:39;;4500:2;4521:38;4555:2;4544:9;4540:18;4521:38;:::i;:::-;4511:48;;4606:2;4595:9;4591:18;4578:32;4568:42;;4661:2;4650:9;4646:18;4633:32;4684:18;4725:2;4717:6;4714:14;4711:34;;;4741:1;4738;4731:12;4711:34;4779:6;4768:9;4764:22;4754:32;;4824:7;4817:4;4813:2;4809:13;4805:27;4795:55;;4846:1;4843;4836:12;4795:55;4882:2;4869:16;4904:2;4900;4897:10;4894:36;;;4910:18;;:::i;:::-;4952:53;4995:2;4976:13;;-1:-1:-1;;4972:27:1;4968:36;;4952:53;:::i;:::-;4939:66;;5028:2;5021:5;5014:17;5068:7;5063:2;5058;5054;5050:11;5046:20;5043:33;5040:53;;;5089:1;5086;5079:12;5040:53;5144:2;5139;5135;5131:11;5126:2;5119:5;5115:14;5102:45;5188:1;5183:2;5178;5171:5;5167:14;5163:23;5156:34;;5209:5;5199:15;;;;;4240:980;;;;;;;:::o;5225:952::-;5309:6;5340:2;5383;5371:9;5362:7;5358:23;5354:32;5351:52;;;5399:1;5396;5389:12;5351:52;5439:9;5426:23;5468:18;5509:2;5501:6;5498:14;5495:34;;;5525:1;5522;5515:12;5495:34;5563:6;5552:9;5548:22;5538:32;;5608:7;5601:4;5597:2;5593:13;5589:27;5579:55;;5630:1;5627;5620:12;5579:55;5666:2;5653:16;5688:2;5684;5681:10;5678:36;;;5694:18;;:::i;:::-;5740:2;5737:1;5733:10;5723:20;;5763:28;5787:2;5783;5779:11;5763:28;:::i;:::-;5825:15;;;5895:11;;;5891:20;;;5856:12;;;;5923:19;;;5920:39;;;5955:1;5952;5945:12;5920:39;5979:11;;;;5999:148;6015:6;6010:3;6007:15;5999:148;;;6081:23;6100:3;6081:23;:::i;:::-;6069:36;;6032:12;;;;6125;;;;5999:148;;;6166:5;5225:952;-1:-1:-1;;;;;;;;5225:952:1:o;6182:260::-;6250:6;6258;6311:2;6299:9;6290:7;6286:23;6282:32;6279:52;;;6327:1;6324;6317:12;6279:52;6350:29;6369:9;6350:29;:::i;:::-;6340:39;;6398:38;6432:2;6421:9;6417:18;6398:38;:::i;:::-;6388:48;;6182:260;;;;;:::o;6447:380::-;6526:1;6522:12;;;;6569;;;6590:61;;6644:4;6636:6;6632:17;6622:27;;6590:61;6697:2;6689:6;6686:14;6666:18;6663:38;6660:161;;6743:10;6738:3;6734:20;6731:1;6724:31;6778:4;6775:1;6768:15;6806:4;6803:1;6796:15;6660:161;;6447:380;;;:::o;6832:356::-;7034:2;7016:21;;;7053:18;;;7046:30;7112:34;7107:2;7092:18;;7085:62;7179:2;7164:18;;6832:356::o;7537:127::-;7598:10;7593:3;7589:20;7586:1;7579:31;7629:4;7626:1;7619:15;7653:4;7650:1;7643:15;7669:128;7709:3;7740:1;7736:6;7733:1;7730:13;7727:39;;;7746:18;;:::i;:::-;-1:-1:-1;7782:9:1;;7669:128::o;8145:168::-;8185:7;8251:1;8247;8243:6;8239:14;8236:1;8233:21;8228:1;8221:9;8214:17;8210:45;8207:71;;;8258:18;;:::i;:::-;-1:-1:-1;8298:9:1;;8145:168::o;9022:470::-;9201:3;9239:6;9233:13;9255:53;9301:6;9296:3;9289:4;9281:6;9277:17;9255:53;:::i;:::-;9371:13;;9330:16;;;;9393:57;9371:13;9330:16;9427:4;9415:17;;9393:57;:::i;:::-;9466:20;;9022:470;-1:-1:-1;;;;9022:470:1:o;9852:127::-;9913:10;9908:3;9904:20;9901:1;9894:31;9944:4;9941:1;9934:15;9968:4;9965:1;9958:15;9984:135;10023:3;10044:17;;;10041:43;;10064:18;;:::i;:::-;-1:-1:-1;10111:1:1;10100:13;;9984:135::o;10531:489::-;-1:-1:-1;;;;;10800:15:1;;;10782:34;;10852:15;;10847:2;10832:18;;10825:43;10899:2;10884:18;;10877:34;;;10947:3;10942:2;10927:18;;10920:31;;;10725:4;;10968:46;;10994:19;;10986:6;10968:46;:::i;:::-;10960:54;10531:489;-1:-1:-1;;;;;;10531:489:1:o;11025:249::-;11094:6;11147:2;11135:9;11126:7;11122:23;11118:32;11115:52;;;11163:1;11160;11153:12;11115:52;11195:9;11189:16;11214:30;11238:5;11214:30;:::i

Swarm Source

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