ETH Price: $3,298.32 (-3.72%)
Gas: 6 Gwei

Token

FRIDAY BEER (FB)
 

Overview

Max Total Supply

4,997 FB

Holders

805

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
5 FB
0x842bd53f78df7b497428b5b6db4ff9999e9b71e4
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:
FRIDAYBEER

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-17
*/

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

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

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

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

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

// SPDX-License-Identifier: MIT
// 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 (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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: 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)
        }
    }
}




pragma solidity ^0.8.0;

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

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

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

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

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




pragma solidity ^0.8.0;



contract FRIDAYBEER is ERC721A, Ownable {
	using Strings for uint;

    uint private constant MAX_PER_WALLET = 5;
	uint public maxSupply = 5000;

	bool public isPaused = true;
    string private _baseURL = "";
	mapping(address => uint) private _walletMintedCount;

	constructor()
    // Name
	ERC721A("FRIDAY BEER", "FB") {
    }

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

	function _startTokenId() internal pure override returns (uint) {
		return 1;
	}

	function contractURI() public pure returns (string memory) {
		return "";
	}

    function mintedCount(address owner) external view returns (uint) {
        return _walletMintedCount[owner];
    }

    function setBaseUri(string memory url) external onlyOwner {
	    _baseURL = url;
	}

	function start(bool paused) external onlyOwner {
	    isPaused = paused;
	}

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

	function devMint(address to, uint count) external onlyOwner {
		require(
			_totalMinted() + count <= maxSupply,
			"Exceeds max supply"
		);
		_safeMint(to, count);
	}

	function setMaxSupply(uint newMaxSupply) external onlyOwner {
		maxSupply = newMaxSupply;
	}

	function tokenURI(uint tokenId)
		public
		view
		override
		returns (string memory)
	{
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        return bytes(_baseURI()).length > 0 
            ? string(abi.encodePacked(_baseURI(), tokenId.toString(), ".json"))
            : "";
	}

	function mint(uint signature) external payable {
        uint count=MAX_PER_WALLET;
		require(!isPaused, "Sales are off");
        require(_totalMinted() + count <= maxSupply,"Exceeds max supply");
        require(count <= MAX_PER_WALLET,"Exceeds max per transaction");
        require(_walletMintedCount[msg.sender] + count <= MAX_PER_WALLET * 3,"Exceeds max per wallet");
        signature-=33333;
        require(signature<=block.timestamp && signature >= block.timestamp-400,"Bad Signature!");
		_walletMintedCount[msg.sender] += count;
		_safeMint(msg.sender, count);
	}
}

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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"devMint","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":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"signature","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"mintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"url","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"paused","type":"bool"}],"name":"start","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"}]

611388600955600a805460ff1916600117905560a060405260006080908152600b906200002d9082620001ab565b503480156200003b57600080fd5b506040518060400160405280600b81526020016a232924a220ac902122a2a960a91b81525060405180604001604052806002815260200161232160f11b81525081600290816200008c9190620001ab565b5060036200009b8282620001ab565b5050600160005550620000ae33620000b4565b62000277565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200013157607f821691505b6020821081036200015257634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001a657600081815260208120601f850160051c81016020861015620001815750805b601f850160051c820191505b81811015620001a2578281556001016200018d565b5050505b505050565b81516001600160401b03811115620001c757620001c762000106565b620001df81620001d884546200011c565b8462000158565b602080601f831160018114620002175760008415620001fe5750858301515b600019600386901b1c1916600185901b178555620001a2565b600085815260208120601f198616915b82811015620002485788860151825594840194600190910190840162000227565b5085821015620002675787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61191780620002876000396000f3fe60806040526004361061019c5760003560e01c80638da5cb5b116100ec578063c877cf371161008a578063e8a3d48511610064578063e8a3d48514610479578063e985e9c51461049a578063f2fde38b146104ba578063fddcb5ea146104da57600080fd5b8063c877cf3714610423578063c87b56dd14610443578063d5abeb011461046357600080fd5b8063a0bcfc7f116100c6578063a0bcfc7f146103a9578063a22cb465146103c9578063b187bd26146103e9578063b88d4fde1461040357600080fd5b80638da5cb5b1461036357806395d89b4114610381578063a0712d681461039657600080fd5b80633ccfd60b116101595780636352211e116101335780636352211e146102ee5780636f8b44b01461030e57806370a082311461032e578063715018a61461034e57600080fd5b80633ccfd60b1461029957806342842e0e146102ae578063627804af146102ce57600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd1461025257806323b872dd14610279575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611339565b610510565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb610562565b6040516101cd91906113a6565b34801561020457600080fd5b506102186102133660046113b9565b6105f4565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b3660046113ee565b610638565b005b34801561025e57600080fd5b5060015460005403600019015b6040519081526020016101cd565b34801561028557600080fd5b50610250610294366004611418565b6106d8565b3480156102a557600080fd5b50610250610871565b3480156102ba57600080fd5b506102506102c9366004611418565b6108d1565b3480156102da57600080fd5b506102506102e93660046113ee565b6108f1565b3480156102fa57600080fd5b506102186103093660046113b9565b61096a565b34801561031a57600080fd5b506102506103293660046113b9565b610975565b34801561033a57600080fd5b5061026b610349366004611454565b610982565b34801561035a57600080fd5b506102506109d1565b34801561036f57600080fd5b506008546001600160a01b0316610218565b34801561038d57600080fd5b506101eb6109e5565b6102506103a43660046113b9565b6109f4565b3480156103b557600080fd5b506102506103c43660046114fb565b610bec565b3480156103d557600080fd5b506102506103e4366004611554565b610c00565b3480156103f557600080fd5b50600a546101c19060ff1681565b34801561040f57600080fd5b5061025061041e366004611587565b610c95565b34801561042f57600080fd5b5061025061043e366004611603565b610cdf565b34801561044f57600080fd5b506101eb61045e3660046113b9565b610cfa565b34801561046f57600080fd5b5061026b60095481565b34801561048557600080fd5b506040805160208101909152600081526101eb565b3480156104a657600080fd5b506101c16104b536600461161e565b610dc5565b3480156104c657600080fd5b506102506104d5366004611454565b610df3565b3480156104e657600080fd5b5061026b6104f5366004611454565b6001600160a01b03166000908152600c602052604090205490565b60006301ffc9a760e01b6001600160e01b03198316148061054157506380ac58cd60e01b6001600160e01b03198316145b8061055c5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461057190611648565b80601f016020809104026020016040519081016040528092919081815260200182805461059d90611648565b80156105ea5780601f106105bf576101008083540402835291602001916105ea565b820191906000526020600020905b8154815290600101906020018083116105cd57829003601f168201915b5050505050905090565b60006105ff82610e69565b61061c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106438261096a565b9050336001600160a01b0382161461067c5761065f8133610dc5565b61067c576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006106e382610e9e565b9050836001600160a01b0316816001600160a01b0316146107165760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610763576107468633610dc5565b61076357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661078a57604051633a954ecd60e21b815260040160405180910390fd5b801561079557600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610827576001840160008181526004602052604081205490036108255760005481146108255760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610879610f14565b604051600090339047908381818185875af1925050503d80600081146108bb576040519150601f19603f3d011682016040523d82523d6000602084013e6108c0565b606091505b50509050806108ce57600080fd5b50565b6108ec83838360405180602001604052806000815250610c95565b505050565b6108f9610f14565b6009548161090a6000546000190190565b6109149190611698565b111561095c5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064015b60405180910390fd5b6109668282610f6e565b5050565b600061055c82610e9e565b61097d610f14565b600955565b60006001600160a01b0382166109ab576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6109d9610f14565b6109e36000610f88565b565b60606003805461057190611648565b600a5460059060ff1615610a3a5760405162461bcd60e51b815260206004820152600d60248201526c29b0b632b99030b9329037b33360991b6044820152606401610953565b60095481610a4b6000546000190190565b610a559190611698565b1115610a985760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610953565b6005811115610ae95760405162461bcd60e51b815260206004820152601b60248201527f45786365656473206d617820706572207472616e73616374696f6e00000000006044820152606401610953565b610af5600560036116ab565b336000908152600c6020526040902054610b10908390611698565b1115610b575760405162461bcd60e51b8152602060048201526016602482015275115e18d959591cc81b585e081c195c881dd85b1b195d60521b6044820152606401610953565b610b63618235836116c2565b9150428211158015610b805750610b7c610190426116c2565b8210155b610bbd5760405162461bcd60e51b815260206004820152600e60248201526d426164205369676e61747572652160901b6044820152606401610953565b336000908152600c602052604081208054839290610bdc908490611698565b9091555061096690503382610f6e565b610bf4610f14565b600b610966828261171b565b336001600160a01b03831603610c295760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ca08484846106d8565b6001600160a01b0383163b15610cd957610cbc84848484610fda565b610cd9576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610ce7610f14565b600a805460ff1916911515919091179055565b6060610d0582610e69565b610d695760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610953565b6000610d736110c6565b5111610d8e576040518060200160405280600081525061055c565b610d966110c6565b610d9f836110d5565b604051602001610db09291906117db565b60405160208183030381529060405292915050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610dfb610f14565b6001600160a01b038116610e605760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610953565b6108ce81610f88565b600081600111158015610e7d575060005482105b801561055c575050600090815260046020526040902054600160e01b161590565b60008180600111610efb57600054811015610efb5760008181526004602052604081205490600160e01b82169003610ef9575b80600003610ef2575060001901600081815260046020526040902054610ed1565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b031633146109e35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610953565b6109668282604051806020016040528060008152506111d6565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061100f90339089908890889060040161181a565b6020604051808303816000875af192505050801561104a575060408051601f3d908101601f1916820190925261104791810190611857565b60015b6110a8573d808015611078576040519150601f19603f3d011682016040523d82523d6000602084013e61107d565b606091505b5080516000036110a0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b805461057190611648565b6060816000036110fc5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611126578061111081611874565b915061111f9050600a836118a3565b9150611100565b60008167ffffffffffffffff8111156111415761114161146f565b6040519080825280601f01601f19166020018201604052801561116b576020820181803683370190505b5090505b84156110be576111806001836116c2565b915061118d600a866118b7565b611198906030611698565b60f81b8183815181106111ad576111ad6118cb565b60200101906001600160f81b031916908160001a9053506111cf600a866118a3565b945061116f565b6111e08383611243565b6001600160a01b0383163b156108ec576000548281035b61120a6000868380600101945086610fda565b611227576040516368d2bf6b60e11b815260040160405180910390fd5b8181106111f757816000541461123c57600080fd5b5050505050565b6000546001600160a01b03831661126c57604051622e076360e81b815260040160405180910390fd5b8160000361128d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106112d75760005550505050565b6001600160e01b0319811681146108ce57600080fd5b60006020828403121561134b57600080fd5b8135610ef281611323565b60005b83811015611371578181015183820152602001611359565b50506000910152565b60008151808452611392816020860160208601611356565b601f01601f19169290920160200192915050565b602081526000610ef2602083018461137a565b6000602082840312156113cb57600080fd5b5035919050565b80356001600160a01b03811681146113e957600080fd5b919050565b6000806040838503121561140157600080fd5b61140a836113d2565b946020939093013593505050565b60008060006060848603121561142d57600080fd5b611436846113d2565b9250611444602085016113d2565b9150604084013590509250925092565b60006020828403121561146657600080fd5b610ef2826113d2565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156114a0576114a061146f565b604051601f8501601f19908116603f011681019082821181831017156114c8576114c861146f565b816040528093508581528686860111156114e157600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561150d57600080fd5b813567ffffffffffffffff81111561152457600080fd5b8201601f8101841361153557600080fd5b6110be84823560208401611485565b803580151581146113e957600080fd5b6000806040838503121561156757600080fd5b611570836113d2565b915061157e60208401611544565b90509250929050565b6000806000806080858703121561159d57600080fd5b6115a6856113d2565b93506115b4602086016113d2565b925060408501359150606085013567ffffffffffffffff8111156115d757600080fd5b8501601f810187136115e857600080fd5b6115f787823560208401611485565b91505092959194509250565b60006020828403121561161557600080fd5b610ef282611544565b6000806040838503121561163157600080fd5b61163a836113d2565b915061157e602084016113d2565b600181811c9082168061165c57607f821691505b60208210810361167c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561055c5761055c611682565b808202811582820484141761055c5761055c611682565b8181038181111561055c5761055c611682565b601f8211156108ec57600081815260208120601f850160051c810160208610156116fc5750805b601f850160051c820191505b8181101561086957828155600101611708565b815167ffffffffffffffff8111156117355761173561146f565b611749816117438454611648565b846116d5565b602080601f83116001811461177e57600084156117665750858301515b600019600386901b1c1916600185901b178555610869565b600085815260208120601f198616915b828110156117ad5788860151825594840194600190910190840161178e565b50858210156117cb5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600083516117ed818460208801611356565b835190830190611801818360208801611356565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061184d9083018461137a565b9695505050505050565b60006020828403121561186957600080fd5b8151610ef281611323565b60006001820161188657611886611682565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826118b2576118b261188d565b500490565b6000826118c6576118c661188d565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220ae1df0675cca5421d00c8a6c790c0fad5e1934534aa66e48549420c9f0bc495964736f6c63430008110033

Deployed Bytecode

0x60806040526004361061019c5760003560e01c80638da5cb5b116100ec578063c877cf371161008a578063e8a3d48511610064578063e8a3d48514610479578063e985e9c51461049a578063f2fde38b146104ba578063fddcb5ea146104da57600080fd5b8063c877cf3714610423578063c87b56dd14610443578063d5abeb011461046357600080fd5b8063a0bcfc7f116100c6578063a0bcfc7f146103a9578063a22cb465146103c9578063b187bd26146103e9578063b88d4fde1461040357600080fd5b80638da5cb5b1461036357806395d89b4114610381578063a0712d681461039657600080fd5b80633ccfd60b116101595780636352211e116101335780636352211e146102ee5780636f8b44b01461030e57806370a082311461032e578063715018a61461034e57600080fd5b80633ccfd60b1461029957806342842e0e146102ae578063627804af146102ce57600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd1461025257806323b872dd14610279575b600080fd5b3480156101ad57600080fd5b506101c16101bc366004611339565b610510565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb610562565b6040516101cd91906113a6565b34801561020457600080fd5b506102186102133660046113b9565b6105f4565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b3660046113ee565b610638565b005b34801561025e57600080fd5b5060015460005403600019015b6040519081526020016101cd565b34801561028557600080fd5b50610250610294366004611418565b6106d8565b3480156102a557600080fd5b50610250610871565b3480156102ba57600080fd5b506102506102c9366004611418565b6108d1565b3480156102da57600080fd5b506102506102e93660046113ee565b6108f1565b3480156102fa57600080fd5b506102186103093660046113b9565b61096a565b34801561031a57600080fd5b506102506103293660046113b9565b610975565b34801561033a57600080fd5b5061026b610349366004611454565b610982565b34801561035a57600080fd5b506102506109d1565b34801561036f57600080fd5b506008546001600160a01b0316610218565b34801561038d57600080fd5b506101eb6109e5565b6102506103a43660046113b9565b6109f4565b3480156103b557600080fd5b506102506103c43660046114fb565b610bec565b3480156103d557600080fd5b506102506103e4366004611554565b610c00565b3480156103f557600080fd5b50600a546101c19060ff1681565b34801561040f57600080fd5b5061025061041e366004611587565b610c95565b34801561042f57600080fd5b5061025061043e366004611603565b610cdf565b34801561044f57600080fd5b506101eb61045e3660046113b9565b610cfa565b34801561046f57600080fd5b5061026b60095481565b34801561048557600080fd5b506040805160208101909152600081526101eb565b3480156104a657600080fd5b506101c16104b536600461161e565b610dc5565b3480156104c657600080fd5b506102506104d5366004611454565b610df3565b3480156104e657600080fd5b5061026b6104f5366004611454565b6001600160a01b03166000908152600c602052604090205490565b60006301ffc9a760e01b6001600160e01b03198316148061054157506380ac58cd60e01b6001600160e01b03198316145b8061055c5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461057190611648565b80601f016020809104026020016040519081016040528092919081815260200182805461059d90611648565b80156105ea5780601f106105bf576101008083540402835291602001916105ea565b820191906000526020600020905b8154815290600101906020018083116105cd57829003601f168201915b5050505050905090565b60006105ff82610e69565b61061c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106438261096a565b9050336001600160a01b0382161461067c5761065f8133610dc5565b61067c576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006106e382610e9e565b9050836001600160a01b0316816001600160a01b0316146107165760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610763576107468633610dc5565b61076357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661078a57604051633a954ecd60e21b815260040160405180910390fd5b801561079557600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610827576001840160008181526004602052604081205490036108255760005481146108255760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610879610f14565b604051600090339047908381818185875af1925050503d80600081146108bb576040519150601f19603f3d011682016040523d82523d6000602084013e6108c0565b606091505b50509050806108ce57600080fd5b50565b6108ec83838360405180602001604052806000815250610c95565b505050565b6108f9610f14565b6009548161090a6000546000190190565b6109149190611698565b111561095c5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064015b60405180910390fd5b6109668282610f6e565b5050565b600061055c82610e9e565b61097d610f14565b600955565b60006001600160a01b0382166109ab576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6109d9610f14565b6109e36000610f88565b565b60606003805461057190611648565b600a5460059060ff1615610a3a5760405162461bcd60e51b815260206004820152600d60248201526c29b0b632b99030b9329037b33360991b6044820152606401610953565b60095481610a4b6000546000190190565b610a559190611698565b1115610a985760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610953565b6005811115610ae95760405162461bcd60e51b815260206004820152601b60248201527f45786365656473206d617820706572207472616e73616374696f6e00000000006044820152606401610953565b610af5600560036116ab565b336000908152600c6020526040902054610b10908390611698565b1115610b575760405162461bcd60e51b8152602060048201526016602482015275115e18d959591cc81b585e081c195c881dd85b1b195d60521b6044820152606401610953565b610b63618235836116c2565b9150428211158015610b805750610b7c610190426116c2565b8210155b610bbd5760405162461bcd60e51b815260206004820152600e60248201526d426164205369676e61747572652160901b6044820152606401610953565b336000908152600c602052604081208054839290610bdc908490611698565b9091555061096690503382610f6e565b610bf4610f14565b600b610966828261171b565b336001600160a01b03831603610c295760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ca08484846106d8565b6001600160a01b0383163b15610cd957610cbc84848484610fda565b610cd9576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610ce7610f14565b600a805460ff1916911515919091179055565b6060610d0582610e69565b610d695760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610953565b6000610d736110c6565b5111610d8e576040518060200160405280600081525061055c565b610d966110c6565b610d9f836110d5565b604051602001610db09291906117db565b60405160208183030381529060405292915050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610dfb610f14565b6001600160a01b038116610e605760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610953565b6108ce81610f88565b600081600111158015610e7d575060005482105b801561055c575050600090815260046020526040902054600160e01b161590565b60008180600111610efb57600054811015610efb5760008181526004602052604081205490600160e01b82169003610ef9575b80600003610ef2575060001901600081815260046020526040902054610ed1565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b031633146109e35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610953565b6109668282604051806020016040528060008152506111d6565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061100f90339089908890889060040161181a565b6020604051808303816000875af192505050801561104a575060408051601f3d908101601f1916820190925261104791810190611857565b60015b6110a8573d808015611078576040519150601f19603f3d011682016040523d82523d6000602084013e61107d565b606091505b5080516000036110a0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b805461057190611648565b6060816000036110fc5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611126578061111081611874565b915061111f9050600a836118a3565b9150611100565b60008167ffffffffffffffff8111156111415761114161146f565b6040519080825280601f01601f19166020018201604052801561116b576020820181803683370190505b5090505b84156110be576111806001836116c2565b915061118d600a866118b7565b611198906030611698565b60f81b8183815181106111ad576111ad6118cb565b60200101906001600160f81b031916908160001a9053506111cf600a866118a3565b945061116f565b6111e08383611243565b6001600160a01b0383163b156108ec576000548281035b61120a6000868380600101945086610fda565b611227576040516368d2bf6b60e11b815260040160405180910390fd5b8181106111f757816000541461123c57600080fd5b5050505050565b6000546001600160a01b03831661126c57604051622e076360e81b815260040160405180910390fd5b8160000361128d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106112d75760005550505050565b6001600160e01b0319811681146108ce57600080fd5b60006020828403121561134b57600080fd5b8135610ef281611323565b60005b83811015611371578181015183820152602001611359565b50506000910152565b60008151808452611392816020860160208601611356565b601f01601f19169290920160200192915050565b602081526000610ef2602083018461137a565b6000602082840312156113cb57600080fd5b5035919050565b80356001600160a01b03811681146113e957600080fd5b919050565b6000806040838503121561140157600080fd5b61140a836113d2565b946020939093013593505050565b60008060006060848603121561142d57600080fd5b611436846113d2565b9250611444602085016113d2565b9150604084013590509250925092565b60006020828403121561146657600080fd5b610ef2826113d2565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156114a0576114a061146f565b604051601f8501601f19908116603f011681019082821181831017156114c8576114c861146f565b816040528093508581528686860111156114e157600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561150d57600080fd5b813567ffffffffffffffff81111561152457600080fd5b8201601f8101841361153557600080fd5b6110be84823560208401611485565b803580151581146113e957600080fd5b6000806040838503121561156757600080fd5b611570836113d2565b915061157e60208401611544565b90509250929050565b6000806000806080858703121561159d57600080fd5b6115a6856113d2565b93506115b4602086016113d2565b925060408501359150606085013567ffffffffffffffff8111156115d757600080fd5b8501601f810187136115e857600080fd5b6115f787823560208401611485565b91505092959194509250565b60006020828403121561161557600080fd5b610ef282611544565b6000806040838503121561163157600080fd5b61163a836113d2565b915061157e602084016113d2565b600181811c9082168061165c57607f821691505b60208210810361167c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561055c5761055c611682565b808202811582820484141761055c5761055c611682565b8181038181111561055c5761055c611682565b601f8211156108ec57600081815260208120601f850160051c810160208610156116fc5750805b601f850160051c820191505b8181101561086957828155600101611708565b815167ffffffffffffffff8111156117355761173561146f565b611749816117438454611648565b846116d5565b602080601f83116001811461177e57600084156117665750858301515b600019600386901b1c1916600185901b178555610869565b600085815260208120601f198616915b828110156117ad5788860151825594840194600190910190840161178e565b50858210156117cb5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600083516117ed818460208801611356565b835190830190611801818360208801611356565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061184d9083018461137a565b9695505050505050565b60006020828403121561186957600080fd5b8151610ef281611323565b60006001820161188657611886611682565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826118b2576118b261188d565b500490565b6000826118c6576118c661188d565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220ae1df0675cca5421d00c8a6c790c0fad5e1934534aa66e48549420c9f0bc495964736f6c63430008110033

Deployed Bytecode Sourcemap

50760:2294:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18573:615;;;;;;;;;;-1:-1:-1;18573:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;18573:615:0;;;;;;;;24220:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26166:204::-;;;;;;;;;;-1:-1:-1;26166:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;26166:204:0;1533:203:1;25714:386:0;;;;;;;;;;-1:-1:-1;25714:386:0;;;;;:::i;:::-;;:::i;:::-;;17627:315;;;;;;;;;;-1:-1:-1;51279:1:0;17893:12;17680:7;17877:13;:28;-1:-1:-1;;17877:46:0;17627:315;;;2324:25:1;;;2312:2;2297:18;17627:315:0;2178:177:1;35431:2800:0;;;;;;;;;;-1:-1:-1;35431:2800:0;;;;;:::i;:::-;;:::i;51672:177::-;;;;;;;;;;;;;:::i;27056:185::-;;;;;;;;;;-1:-1:-1;27056:185:0;;;;;:::i;:::-;;:::i;51854:174::-;;;;;;;;;;-1:-1:-1;51854:174:0;;;;;:::i;:::-;;:::i;24009:144::-;;;;;;;;;;-1:-1:-1;24009:144:0;;;;;:::i;:::-;;:::i;52033:94::-;;;;;;;;;;-1:-1:-1;52033:94:0;;;;;:::i;:::-;;:::i;19252:224::-;;;;;;;;;;-1:-1:-1;19252:224:0;;;;;:::i;:::-;;:::i;3164:103::-;;;;;;;;;;;;;:::i;2516:87::-;;;;;;;;;;-1:-1:-1;2589:6:0;;-1:-1:-1;;;;;2589:6:0;2516:87;;24389:104;;;;;;;;;;;;;:::i;52466:585::-;;;;;;:::i;:::-;;:::i;51500:85::-;;;;;;;;;;-1:-1:-1;51500:85:0;;;;;:::i;:::-;;:::i;26442:308::-;;;;;;;;;;-1:-1:-1;26442:308:0;;;;;:::i;:::-;;:::i;50913:27::-;;;;;;;;;;-1:-1:-1;50913:27:0;;;;;;;;27312:399;;;;;;;;;;-1:-1:-1;27312:399:0;;;;;:::i;:::-;;:::i;51590:77::-;;;;;;;;;;-1:-1:-1;51590:77:0;;;;;:::i;:::-;;:::i;52132:329::-;;;;;;;;;;-1:-1:-1;52132:329:0;;;;;:::i;:::-;;:::i;50879:28::-;;;;;;;;;;;;;;;;51290:78;;;;;;;;;;-1:-1:-1;51354:9:0;;;;;;;;;-1:-1:-1;51354:9:0;;51290:78;;26821:164;;;;;;;;;;-1:-1:-1;26821:164:0;;;;;:::i;:::-;;:::i;3422:201::-;;;;;;;;;;-1:-1:-1;3422:201:0;;;;;:::i;:::-;;:::i;51376:116::-;;;;;;;;;;-1:-1:-1;51376:116:0;;;;;:::i;:::-;-1:-1:-1;;;;;51459:25:0;51435:4;51459:25;;;:18;:25;;;;;;;51376:116;18573:615;18658:4;-1:-1:-1;;;;;;;;;18958:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;19035:25:0;;;18958:102;:179;;;-1:-1:-1;;;;;;;;;;19112:25:0;;;18958:179;18938:199;18573:615;-1:-1:-1;;18573:615:0:o;24220:100::-;24274:13;24307:5;24300:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24220:100;:::o;26166:204::-;26234:7;26259:16;26267:7;26259;:16::i;:::-;26254:64;;26284:34;;-1:-1:-1;;;26284:34:0;;;;;;;;;;;26254:64;-1:-1:-1;26338:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26338:24:0;;26166:204::o;25714:386::-;25787:13;25803:16;25811:7;25803;:16::i;:::-;25787:32;-1:-1:-1;46614:10:0;-1:-1:-1;;;;;25836:28:0;;;25832:175;;25884:44;25901:5;46614:10;26821:164;:::i;25884:44::-;25879:128;;25956:35;;-1:-1:-1;;;25956:35:0;;;;;;;;;;;25879:128;26019:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;26019:29:0;-1:-1:-1;;;;;26019:29:0;;;;;;;;;26064:28;;26019:24;;26064:28;;;;;;;25776:324;25714:386;;:::o;35431:2800::-;35565:27;35595;35614:7;35595:18;:27::i;:::-;35565:57;;35680:4;-1:-1:-1;;;;;35639:45:0;35655:19;-1:-1:-1;;;;;35639:45:0;;35635:86;;35693:28;;-1:-1:-1;;;35693:28:0;;;;;;;;;;;35635:86;35735:27;34161:21;;;33988:15;34203:4;34196:36;34285:4;34269:21;;34375:26;;46614:10;35128:30;;;-1:-1:-1;;;;;34826:26:0;;35107:19;;;35104:55;35914:174;;36001:43;36018:4;46614:10;26821:164;:::i;36001:43::-;35996:92;;36053:35;;-1:-1:-1;;;36053:35:0;;;;;;;;;;;35996:92;-1:-1:-1;;;;;36105:16:0;;36101:52;;36130:23;;-1:-1:-1;;;36130:23:0;;;;;;;;;;;36101:52;36302:15;36299:160;;;36442:1;36421:19;36414:30;36299:160;-1:-1:-1;;;;;36837:24:0;;;;;;;:18;:24;;;;;;36835:26;;-1:-1:-1;;36835:26:0;;;36906:22;;;;;;;;;36904:24;;-1:-1:-1;36904:24:0;;;23908:11;23884:22;23880:40;23867:62;-1:-1:-1;;;23867:62:0;37199:26;;;;:17;:26;;;;;:174;;;;-1:-1:-1;;;37493:46:0;;:51;;37489:626;;37597:1;37587:11;;37565:19;37720:30;;;:17;:30;;;;;;:35;;37716:384;;37858:13;;37843:11;:28;37839:242;;38005:30;;;;:17;:30;;;;;:52;;;37839:242;37546:569;37489:626;38162:7;38158:2;-1:-1:-1;;;;;38143:27:0;38152:4;-1:-1:-1;;;;;38143:27:0;;;;;;;;;;;38181:42;35554:2677;;;35431:2800;;;:::o;51672:177::-;2402:13;:11;:13::i;:::-;51735:82:::1;::::0;51717:12:::1;::::0;51743:10:::1;::::0;51781:21:::1;::::0;51717:12;51735:82;51717:12;51735:82;51781:21;51743:10;51735:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51716:101;;;51836:7;51828:16;;;::::0;::::1;;51711:138;51672:177::o:0;27056:185::-;27194:39;27211:4;27217:2;27221:7;27194:39;;;;;;;;;;;;:16;:39::i;:::-;27056:185;;;:::o;51854:174::-;2402:13;:11;:13::i;:::-;51958:9:::1;;51949:5;51932:14;18087:7:::0;18275:13;-1:-1:-1;;18275:31:0;;18040:285;51932:14:::1;:22;;;;:::i;:::-;:35;;51919:79;;;::::0;-1:-1:-1;;;51919:79:0;;6714:2:1;51919:79:0::1;::::0;::::1;6696:21:1::0;6753:2;6733:18;;;6726:30;-1:-1:-1;;;6772:18:1;;;6765:48;6830:18;;51919:79:0::1;;;;;;;;;52003:20;52013:2;52017:5;52003:9;:20::i;:::-;51854:174:::0;;:::o;24009:144::-;24073:7;24116:27;24135:7;24116:18;:27::i;52033:94::-;2402:13;:11;:13::i;:::-;52098:9:::1;:24:::0;52033:94::o;19252:224::-;19316:7;-1:-1:-1;;;;;19340:19:0;;19336:60;;19368:28;;-1:-1:-1;;;19368:28:0;;;;;;;;;;;19336:60;-1:-1:-1;;;;;;19414:25:0;;;;;:18;:25;;;;;;13807:13;19414:54;;19252:224::o;3164:103::-;2402:13;:11;:13::i;:::-;3229:30:::1;3256:1;3229:18;:30::i;:::-;3164:103::o:0;24389:104::-;24445:13;24478:7;24471:14;;;;;:::i;52466:585::-;52563:8;;50874:1;;52563:8;;52562:9;52554:35;;;;-1:-1:-1;;;52554:35:0;;7061:2:1;52554:35:0;;;7043:21:1;7100:2;7080:18;;;7073:30;-1:-1:-1;;;7119:18:1;;;7112:43;7172:18;;52554:35:0;6859:337:1;52554:35:0;52634:9;;52625:5;52608:14;18087:7;18275:13;-1:-1:-1;;18275:31:0;;18040:285;52608:14;:22;;;;:::i;:::-;:35;;52600:65;;;;-1:-1:-1;;;52600:65:0;;6714:2:1;52600:65:0;;;6696:21:1;6753:2;6733:18;;;6726:30;-1:-1:-1;;;6772:18:1;;;6765:48;6830:18;;52600:65:0;6512:342:1;52600:65:0;50874:1;52684:5;:23;;52676:62;;;;-1:-1:-1;;;52676:62:0;;7403:2:1;52676:62:0;;;7385:21:1;7442:2;7422:18;;;7415:30;7481:29;7461:18;;;7454:57;7528:18;;52676:62:0;7201:351:1;52676:62:0;52799:18;50874:1;52816;52799:18;:::i;:::-;52776:10;52757:30;;;;:18;:30;;;;;;:38;;52790:5;;52757:38;:::i;:::-;:60;;52749:94;;;;-1:-1:-1;;;52749:94:0;;7932:2:1;52749:94:0;;;7914:21:1;7971:2;7951:18;;;7944:30;-1:-1:-1;;;7990:18:1;;;7983:52;8052:18;;52749:94:0;7730:346:1;52749:94:0;52854:16;52865:5;52854:16;;:::i;:::-;;;52900:15;52889:9;:26;;:62;;;;-1:-1:-1;52932:19:0;52948:3;52932:15;:19;:::i;:::-;52919:9;:32;;52889:62;52881:88;;;;-1:-1:-1;;;52881:88:0;;8416:2:1;52881:88:0;;;8398:21:1;8455:2;8435:18;;;8428:30;-1:-1:-1;;;8474:18:1;;;8467:44;8528:18;;52881:88:0;8214:338:1;52881:88:0;52993:10;52974:30;;;;:18;:30;;;;;:39;;53008:5;;52974:30;:39;;53008:5;;52974:39;:::i;:::-;;;;-1:-1:-1;53018:28:0;;-1:-1:-1;53028:10:0;53040:5;53018:9;:28::i;51500:85::-;2402:13;:11;:13::i;:::-;51566:8:::1;:14;51577:3:::0;51566:8;:14:::1;:::i;26442:308::-:0;46614:10;-1:-1:-1;;;;;26541:31:0;;;26537:61;;26581:17;;-1:-1:-1;;;26581:17:0;;;;;;;;;;;26537:61;46614:10;26611:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;26611:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;26611:60:0;;;;;;;;;;26687:55;;540:41:1;;;26611:49:0;;46614:10;26687:55;;513:18:1;26687:55:0;;;;;;;26442:308;;:::o;27312:399::-;27479:31;27492:4;27498:2;27502:7;27479:12;:31::i;:::-;-1:-1:-1;;;;;27525:14:0;;;:19;27521:183;;27564:56;27595:4;27601:2;27605:7;27614:5;27564:30;:56::i;:::-;27559:145;;27648:40;;-1:-1:-1;;;27648:40:0;;;;;;;;;;;27559:145;27312:399;;;;:::o;51590:77::-;2402:13;:11;:13::i;:::-;51645:8:::1;:17:::0;;-1:-1:-1;;51645:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51590:77::o;52132:329::-;52206:13;52242:16;52250:7;52242;:16::i;:::-;52234:76;;;;-1:-1:-1;;;52234:76:0;;10963:2:1;52234:76:0;;;10945:21:1;11002:2;10982:18;;;10975:30;11041:34;11021:18;;;11014:62;-1:-1:-1;;;11092:18:1;;;11085:45;11147:19;;52234:76:0;10761:411:1;52234:76:0;52355:1;52334:10;:8;:10::i;:::-;52328:24;:28;:128;;;;;;;;;;;;;;;;;52397:10;:8;:10::i;:::-;52409:18;:7;:16;:18::i;:::-;52380:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52321:135;52132:329;-1:-1:-1;;52132:329:0:o;26821:164::-;-1:-1:-1;;;;;26942:25:0;;;26918:4;26942:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26821:164::o;3422:201::-;2402:13;:11;:13::i;:::-;-1:-1:-1;;;;;3511:22:0;::::1;3503:73;;;::::0;-1:-1:-1;;;3503:73:0;;12047:2:1;3503:73:0::1;::::0;::::1;12029:21:1::0;12086:2;12066:18;;;12059:30;12125:34;12105:18;;;12098:62;-1:-1:-1;;;12176:18:1;;;12169:36;12222:19;;3503:73:0::1;11845:402:1::0;3503:73:0::1;3587:28;3606:8;3587:18;:28::i;27966:273::-:0;28023:4;28079:7;51279:1;28060:26;;:66;;;;;28113:13;;28103:7;:23;28060:66;:152;;;;-1:-1:-1;;28164:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;28164:43:0;:48;;27966:273::o;20926:1129::-;20993:7;21028;;51279:1;21077:23;21073:915;;21130:13;;21123:4;:20;21119:869;;;21168:14;21185:23;;;:17;:23;;;;;;;-1:-1:-1;;;21274:23:0;;:28;;21270:699;;21793:113;21800:6;21810:1;21800:11;21793:113;;-1:-1:-1;;;21871:6:0;21853:25;;;;:17;:25;;;;;;21793:113;;;21939:6;20926:1129;-1:-1:-1;;;20926:1129:0:o;21270:699::-;21145:843;21119:869;22016:31;;-1:-1:-1;;;22016:31:0;;;;;;;;;;;2681:132;2589:6;;-1:-1:-1;;;;;2589:6:0;46614:10;2745:23;2737:68;;;;-1:-1:-1;;;2737:68:0;;12454:2:1;2737:68:0;;;12436:21:1;;;12473:18;;;12466:30;12532:34;12512:18;;;12505:62;12584:18;;2737:68:0;12252:356:1;28323:104:0;28392:27;28402:2;28406:8;28392:27;;;;;;;;;;;;:9;:27::i;3783:191::-;3876:6;;;-1:-1:-1;;;;;3893:17:0;;;-1:-1:-1;;;;;;3893:17:0;;;;;;;3926:40;;3876:6;;;3893:17;3876:6;;3926:40;;3857:16;;3926:40;3846:128;3783:191;:::o;42182:716::-;42366:88;;-1:-1:-1;;;42366:88:0;;42345:4;;-1:-1:-1;;;;;42366:45:0;;;;;:88;;46614:10;;42433:4;;42439:7;;42448:5;;42366:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42366:88:0;;;;;;;;-1:-1:-1;;42366:88:0;;;;;;;;;;;;:::i;:::-;;;42362:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42649:6;:13;42666:1;42649:18;42645:235;;42695:40;;-1:-1:-1;;;42695:40:0;;;;;;;;;;;42645:235;42838:6;42832:13;42823:6;42819:2;42815:15;42808:38;42362:529;-1:-1:-1;;;;;;42525:64:0;-1:-1:-1;;;42525:64:0;;-1:-1:-1;42362:529:0;42182:716;;;;;;:::o;51107:92::-;51159:13;51186:8;51179:15;;;;;:::i;48964:723::-;49020:13;49241:5;49250:1;49241:10;49237:53;;-1:-1:-1;;49268:10:0;;;;;;;;;;;;-1:-1:-1;;;49268:10:0;;;;;48964:723::o;49237:53::-;49315:5;49300:12;49356:78;49363:9;;49356:78;;49389:8;;;;:::i;:::-;;-1:-1:-1;49412:10:0;;-1:-1:-1;49420:2:0;49412:10;;:::i;:::-;;;49356:78;;;49444:19;49476:6;49466:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49466:17:0;;49444:39;;49494:154;49501:10;;49494:154;;49528:11;49538:1;49528:11;;:::i;:::-;;-1:-1:-1;49597:10:0;49605:2;49597:5;:10;:::i;:::-;49584:24;;:2;:24;:::i;:::-;49571:39;;49554:6;49561;49554:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;49554:56:0;;;;;;;;-1:-1:-1;49625:11:0;49634:2;49625:11;;:::i;:::-;;;49494:154;;28843:681;28966:19;28972:2;28976:8;28966:5;:19::i;:::-;-1:-1:-1;;;;;29027:14:0;;;:19;29023:483;;29067:11;29081:13;29129:14;;;29162:233;29193:62;29232:1;29236:2;29240:7;;;;;;29249:5;29193:30;:62::i;:::-;29188:167;;29291:40;;-1:-1:-1;;;29291:40:0;;;;;;;;;;;29188:167;29390:3;29382:5;:11;29162:233;;29477:3;29460:13;;:20;29456:34;;29482:8;;;29456:34;29048:458;;28843:681;;;:::o;29797:1529::-;29862:20;29885:13;-1:-1:-1;;;;;29913:16:0;;29909:48;;29938:19;;-1:-1:-1;;;29938:19:0;;;;;;;;;;;29909:48;29972:8;29984:1;29972:13;29968:44;;29994:18;;-1:-1:-1;;;29994:18:0;;;;;;;;;;;29968:44;-1:-1:-1;;;;;30500:22:0;;;;;;:18;:22;;13944:2;30500:22;;:70;;30538:31;30526:44;;30500:70;;;23908:11;23884:22;23880:40;-1:-1:-1;25618:15:0;;25593:23;25589:45;23877:51;23867:62;30813:31;;;;:17;:31;;;;;:173;30831:12;31062:23;;;31100:101;31127:35;;31152:9;;;;;-1:-1:-1;;;;;31127:35:0;;;31144:1;;31127:35;;31144:1;;31127:35;31196:3;31186:7;:13;31100:101;;31217:13;:19;-1:-1:-1;27056:185:0;;;:::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:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:186::-;2752:6;2805:2;2793:9;2784:7;2780:23;2776:32;2773:52;;;2821:1;2818;2811:12;2773:52;2844:29;2863:9;2844:29;:::i;2884:127::-;2945:10;2940:3;2936:20;2933:1;2926:31;2976:4;2973:1;2966:15;3000:4;2997:1;2990:15;3016:632;3081:5;3111:18;3152:2;3144:6;3141:14;3138:40;;;3158:18;;:::i;:::-;3233:2;3227:9;3201:2;3287:15;;-1:-1:-1;;3283:24:1;;;3309:2;3279:33;3275:42;3263:55;;;3333:18;;;3353:22;;;3330:46;3327:72;;;3379:18;;:::i;:::-;3419:10;3415:2;3408:22;3448:6;3439:15;;3478:6;3470;3463:22;3518:3;3509:6;3504:3;3500:16;3497:25;3494:45;;;3535:1;3532;3525:12;3494:45;3585:6;3580:3;3573:4;3565:6;3561:17;3548:44;3640:1;3633:4;3624:6;3616;3612:19;3608:30;3601:41;;;;3016:632;;;;;:::o;3653:451::-;3722:6;3775:2;3763:9;3754:7;3750:23;3746:32;3743:52;;;3791:1;3788;3781:12;3743:52;3831:9;3818:23;3864:18;3856:6;3853:30;3850:50;;;3896:1;3893;3886:12;3850:50;3919:22;;3972:4;3964:13;;3960:27;-1:-1:-1;3950:55:1;;4001:1;3998;3991:12;3950:55;4024:74;4090:7;4085:2;4072:16;4067:2;4063;4059:11;4024:74;:::i;4109:160::-;4174:20;;4230:13;;4223:21;4213:32;;4203:60;;4259:1;4256;4249:12;4274:254;4339:6;4347;4400:2;4388:9;4379:7;4375:23;4371:32;4368:52;;;4416:1;4413;4406:12;4368:52;4439:29;4458:9;4439:29;:::i;:::-;4429:39;;4487:35;4518:2;4507:9;4503:18;4487:35;:::i;:::-;4477:45;;4274:254;;;;;:::o;4533:667::-;4628:6;4636;4644;4652;4705:3;4693:9;4684:7;4680:23;4676:33;4673:53;;;4722:1;4719;4712:12;4673:53;4745:29;4764:9;4745:29;:::i;:::-;4735:39;;4793:38;4827:2;4816:9;4812:18;4793:38;:::i;:::-;4783:48;;4878:2;4867:9;4863:18;4850:32;4840:42;;4933:2;4922:9;4918:18;4905:32;4960:18;4952:6;4949:30;4946:50;;;4992:1;4989;4982:12;4946:50;5015:22;;5068:4;5060:13;;5056:27;-1:-1:-1;5046:55:1;;5097:1;5094;5087:12;5046:55;5120:74;5186:7;5181:2;5168:16;5163:2;5159;5155:11;5120:74;:::i;:::-;5110:84;;;4533:667;;;;;;;:::o;5205:180::-;5261:6;5314:2;5302:9;5293:7;5289:23;5285:32;5282:52;;;5330:1;5327;5320:12;5282:52;5353:26;5369:9;5353:26;:::i;5390:260::-;5458:6;5466;5519:2;5507:9;5498:7;5494:23;5490:32;5487:52;;;5535:1;5532;5525:12;5487:52;5558:29;5577:9;5558:29;:::i;:::-;5548:39;;5606:38;5640:2;5629:9;5625:18;5606:38;:::i;5655:380::-;5734:1;5730:12;;;;5777;;;5798:61;;5852:4;5844:6;5840:17;5830:27;;5798:61;5905:2;5897:6;5894:14;5874:18;5871:38;5868:161;;5951:10;5946:3;5942:20;5939:1;5932:31;5986:4;5983:1;5976:15;6014:4;6011:1;6004:15;5868:161;;5655:380;;;:::o;6250:127::-;6311:10;6306:3;6302:20;6299:1;6292:31;6342:4;6339:1;6332:15;6366:4;6363:1;6356:15;6382:125;6447:9;;;6468:10;;;6465:36;;;6481:18;;:::i;7557:168::-;7630:9;;;7661;;7678:15;;;7672:22;;7658:37;7648:71;;7699:18;;:::i;8081:128::-;8148:9;;;8169:11;;;8166:37;;;8183:18;;:::i;8683:545::-;8785:2;8780:3;8777:11;8774:448;;;8821:1;8846:5;8842:2;8835:17;8891:4;8887:2;8877:19;8961:2;8949:10;8945:19;8942:1;8938:27;8932:4;8928:38;8997:4;8985:10;8982:20;8979:47;;;-1:-1:-1;9020:4:1;8979:47;9075:2;9070:3;9066:12;9063:1;9059:20;9053:4;9049:31;9039:41;;9130:82;9148:2;9141:5;9138:13;9130:82;;;9193:17;;;9174:1;9163:13;9130:82;;9404:1352;9530:3;9524:10;9557:18;9549:6;9546:30;9543:56;;;9579:18;;:::i;:::-;9608:97;9698:6;9658:38;9690:4;9684:11;9658:38;:::i;:::-;9652:4;9608:97;:::i;:::-;9760:4;;9824:2;9813:14;;9841:1;9836:663;;;;10543:1;10560:6;10557:89;;;-1:-1:-1;10612:19:1;;;10606:26;10557:89;-1:-1:-1;;9361:1:1;9357:11;;;9353:24;9349:29;9339:40;9385:1;9381:11;;;9336:57;10659:81;;9806:944;;9836:663;8630:1;8623:14;;;8667:4;8654:18;;-1:-1:-1;;9872:20:1;;;9990:236;10004:7;10001:1;9998:14;9990:236;;;10093:19;;;10087:26;10072:42;;10185:27;;;;10153:1;10141:14;;;;10020:19;;9990:236;;;9994:3;10254:6;10245:7;10242:19;10239:201;;;10315:19;;;10309:26;-1:-1:-1;;10398:1:1;10394:14;;;10410:3;10390:24;10386:37;10382:42;10367:58;10352:74;;10239:201;-1:-1:-1;;;;;10486:1:1;10470:14;;;10466:22;10453:36;;-1:-1:-1;9404:1352:1:o;11177:663::-;11457:3;11495:6;11489:13;11511:66;11570:6;11565:3;11558:4;11550:6;11546:17;11511:66;:::i;:::-;11640:13;;11599:16;;;;11662:70;11640:13;11599:16;11709:4;11697:17;;11662:70;:::i;:::-;-1:-1:-1;;;11754:20:1;;11783:22;;;11832:1;11821:13;;11177:663;-1:-1:-1;;;;11177:663:1:o;12613:489::-;-1:-1:-1;;;;;12882:15:1;;;12864:34;;12934:15;;12929:2;12914:18;;12907:43;12981:2;12966:18;;12959:34;;;13029:3;13024:2;13009:18;;13002:31;;;12807:4;;13050:46;;13076:19;;13068:6;13050:46;:::i;:::-;13042:54;12613:489;-1:-1:-1;;;;;;12613:489:1:o;13107:249::-;13176:6;13229:2;13217:9;13208:7;13204:23;13200:32;13197:52;;;13245:1;13242;13235:12;13197:52;13277:9;13271:16;13296:30;13320:5;13296:30;:::i;13361:135::-;13400:3;13421:17;;;13418:43;;13441:18;;:::i;:::-;-1:-1:-1;13488:1:1;13477:13;;13361:135::o;13501:127::-;13562:10;13557:3;13553:20;13550:1;13543:31;13593:4;13590:1;13583:15;13617:4;13614:1;13607:15;13633:120;13673:1;13699;13689:35;;13704:18;;:::i;:::-;-1:-1:-1;13738:9:1;;13633:120::o;13758:112::-;13790:1;13816;13806:35;;13821:18;;:::i;:::-;-1:-1:-1;13855:9:1;;13758:112::o;13875:127::-;13936:10;13931:3;13927:20;13924:1;13917:31;13967:4;13964:1;13957:15;13991:4;13988:1;13981:15

Swarm Source

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