ETH Price: $3,957.07 (+1.55%)

Dragon Bibi (Dragon Bibi)
 

Overview

TokenID

175

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

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:
DragonBibi

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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 v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.0.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();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

    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;
    }

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

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.0.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 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`
    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 auxillary 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 auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            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;
    }

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

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

        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-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

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

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

// File: contracts/Dragonbibi_final.sol


pragma solidity ^0.8.4;



contract DragonBibi is ERC721A, Ownable {
    uint256 MAX_MINTS = 3500;
    uint256 MAX_SUPPLY = 3500;
    uint256 public mintRate = 0 ether;

    string public baseURI = "ipfs://QmTLpcMnYgbWRHEnsyiaKxkzmPqnwPyBozirFmJrANruoX/";

    constructor() ERC721A("Dragon Bibi", "Dragon Bibi") {}

    function mint(uint256 quantity) external payable {
        // _safeMint's second argument now takes in a quantity, not a tokenId.
        require(quantity + _numberMinted(msg.sender) <= MAX_MINTS, "Exceeded the limit");
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
        require(msg.value >= (mintRate * quantity), "Not enough ether sent");
        _safeMint(msg.sender, quantity);
    }

function withdraw() public payable onlyOwner {
 
    (bool hs, ) = payable(0x3197AFEdd20125C6dEf13dc6a1a13c678133ebaC).call{value: address(this).balance * 40 / 100}("");
    require(hs);

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



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

    function setMintRate(uint256 _mintRate) public onlyOwner {
        mintRate = _mintRate;


        
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintRate","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":"uint256","name":"_mintRate","type":"uint256"}],"name":"setMintRate","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":"payable","type":"function"}]

610dac6009819055600a556000600b5560e060405260366080818152906200177960a03980516200003991600c916020909101906200010e565b503480156200004757600080fd5b50604080518082018252600b8082526a447261676f6e204269626960a81b6020808401828152855180870190965292855284015281519192916200008e916002916200010e565b508051620000a49060039060208401906200010e565b50506000805550620000b633620000bc565b620001f1565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011c90620001b4565b90600052602060002090601f0160209004810192826200014057600085556200018b565b82601f106200015b57805160ff19168380011785556200018b565b828001600101855582156200018b579182015b828111156200018b5782518255916020019190600101906200016e565b50620001999291506200019d565b5090565b5b808211156200019957600081556001016200019e565b600181811c90821680620001c957607f821691505b60208210811415620001eb57634e487b7160e01b600052602260045260246000fd5b50919050565b61157880620002016000396000f3fe6080604052600436106101355760003560e01c8063715018a6116100ab578063b88d4fde1161006f578063b88d4fde14610326578063c87b56dd14610346578063ca0dcf1614610366578063dbe2193f1461037c578063e985e9c51461039c578063f2fde38b146103e557600080fd5b8063715018a6146102ab5780638da5cb5b146102c057806395d89b41146102de578063a0712d68146102f3578063a22cb4651461030657600080fd5b806323b872dd116100fd57806323b872dd1461020e5780633ccfd60b1461022e57806342842e0e146102365780636352211e146102565780636c0360eb1461027657806370a082311461028b57600080fd5b806301ffc9a71461013a57806306fdde031461016f578063081812fc14610191578063095ea7b3146101c957806318160ddd146101eb575b600080fd5b34801561014657600080fd5b5061015a610155366004611312565b610405565b60405190151581526020015b60405180910390f35b34801561017b57600080fd5b50610184610457565b60405161016691906113fa565b34801561019d57600080fd5b506101b16101ac36600461134a565b6104e9565b6040516001600160a01b039091168152602001610166565b3480156101d557600080fd5b506101e96101e43660046112e9565b61052d565b005b3480156101f757600080fd5b50600154600054035b604051908152602001610166565b34801561021a57600080fd5b506101e961022936600461119f565b610600565b6101e9610610565b34801561024257600080fd5b506101e961025136600461119f565b610735565b34801561026257600080fd5b506101b161027136600461134a565b610750565b34801561028257600080fd5b5061018461075b565b34801561029757600080fd5b506102006102a6366004611153565b6107e9565b3480156102b757600080fd5b506101e9610838565b3480156102cc57600080fd5b506008546001600160a01b03166101b1565b3480156102ea57600080fd5b5061018461086e565b6101e961030136600461134a565b61087d565b34801561031257600080fd5b506101e96103213660046112af565b6109ae565b34801561033257600080fd5b506101e96103413660046111da565b610a44565b34801561035257600080fd5b5061018461036136600461134a565b610a8e565b34801561037257600080fd5b50610200600b5481565b34801561038857600080fd5b506101e961039736600461134a565b610b13565b3480156103a857600080fd5b5061015a6103b736600461116d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156103f157600080fd5b506101e9610400366004611153565b610b42565b60006301ffc9a760e01b6001600160e01b03198316148061043657506380ac58cd60e01b6001600160e01b03198316145b806104515750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610466906114c5565b80601f0160208091040260200160405190810160405280929190818152602001828054610492906114c5565b80156104df5780601f106104b4576101008083540402835291602001916104df565b820191906000526020600020905b8154815290600101906020018083116104c257829003601f168201915b5050505050905090565b60006104f482610bda565b610511576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061053882610c01565b9050806001600160a01b0316836001600160a01b0316141561056d5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146105a45761058781336103b7565b6105a4576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61060b838383610c62565b505050565b6008546001600160a01b031633146106435760405162461bcd60e51b815260040161063a9061140d565b60405180910390fd5b6000733197afedd20125c6def13dc6a1a13c678133ebac606461066747602861147a565b610671919061145a565b604051600081818185875af1925050503d80600081146106ad576040519150601f19603f3d011682016040523d82523d6000602084013e6106b2565b606091505b50509050806106c057600080fd5b60006106d46008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461071e576040519150601f19603f3d011682016040523d82523d6000602084013e610723565b606091505b505090508061073157600080fd5b5050565b61060b83838360405180602001604052806000815250610a44565b600061045182610c01565b600c8054610768906114c5565b80601f0160208091040260200160405190810160405280929190818152602001828054610794906114c5565b80156107e15780601f106107b6576101008083540402835291602001916107e1565b820191906000526020600020905b8154815290600101906020018083116107c457829003601f168201915b505050505081565b60006001600160a01b038216610812576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146108625760405162461bcd60e51b815260040161063a9061140d565b61086c6000610e05565b565b606060038054610466906114c5565b6009543360009081526005602052604090819020546108a7911c67ffffffffffffffff1683611442565b11156108ea5760405162461bcd60e51b8152602060048201526012602482015271115e18d959591959081d1a19481b1a5b5a5d60721b604482015260640161063a565b600a54816108fb6001546000540390565b6109059190611442565b111561094c5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604482015260640161063a565b80600b5461095a919061147a565b3410156109a15760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b604482015260640161063a565b6109ab3382610e57565b50565b6001600160a01b0382163314156109d85760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610a4f848484610c62565b6001600160a01b0383163b15610a8857610a6b84848484610e71565b610a88576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610a9982610bda565b610ab657604051630a14c4b560e41b815260040160405180910390fd5b6000610ac0610f68565b9050805160001415610ae15760405180602001604052806000815250610b0c565b80610aeb84610f77565b604051602001610afc92919061138e565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610b3d5760405162461bcd60e51b815260040161063a9061140d565b600b55565b6008546001600160a01b03163314610b6c5760405162461bcd60e51b815260040161063a9061140d565b6001600160a01b038116610bd15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161063a565b6109ab81610e05565b6000805482108015610451575050600090815260046020526040902054600160e01b161590565b600081600054811015610c4957600081815260046020526040902054600160e01b8116610c47575b80610b0c575060001901600081815260046020526040902054610c29565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610c6d82610c01565b9050836001600160a01b0316816001600160a01b031614610ca05760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610cbe5750610cbe85336103b7565b80610cd9575033610cce846104e9565b6001600160a01b0316145b905080610cf957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610d2057604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b861781179091558216610dbd5760018301600081815260046020526040902054610dbb576000548114610dbb5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610731828260405180602001604052806000815250610fc6565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610ea69033908990889088906004016113bd565b602060405180830381600087803b158015610ec057600080fd5b505af1925050508015610ef0575060408051601f3d908101601f19168201909252610eed9181019061132e565b60015b610f4b573d808015610f1e576040519150601f19603f3d011682016040523d82523d6000602084013e610f23565b606091505b508051610f43576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600c8054610466906114c5565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610fb457600183039250600a81066030018353600a9004610f96565b50819003601f19909101908152919050565b6000546001600160a01b038416610fef57604051622e076360e81b815260040160405180910390fd5b8261100d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b156110e2575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46110ab6000878480600101955087610e71565b6110c8576040516368d2bf6b60e11b815260040160405180910390fd5b8082106110605782600054146110dd57600080fd5b611127565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106110e3575b506000908155610a889085838684565b80356001600160a01b038116811461114e57600080fd5b919050565b600060208284031215611164578081fd5b610b0c82611137565b6000806040838503121561117f578081fd5b61118883611137565b915061119660208401611137565b90509250929050565b6000806000606084860312156111b3578081fd5b6111bc84611137565b92506111ca60208501611137565b9150604084013590509250925092565b600080600080608085870312156111ef578081fd5b6111f885611137565b935061120660208601611137565b925060408501359150606085013567ffffffffffffffff80821115611229578283fd5b818701915087601f83011261123c578283fd5b81358181111561124e5761124e611516565b604051601f8201601f19908116603f0116810190838211818310171561127657611276611516565b816040528281528a602084870101111561128e578586fd5b82602086016020830137918201602001949094529598949750929550505050565b600080604083850312156112c1578182fd5b6112ca83611137565b9150602083013580151581146112de578182fd5b809150509250929050565b600080604083850312156112fb578182fd5b61130483611137565b946020939093013593505050565b600060208284031215611323578081fd5b8135610b0c8161152c565b60006020828403121561133f578081fd5b8151610b0c8161152c565b60006020828403121561135b578081fd5b5035919050565b6000815180845261137a816020860160208601611499565b601f01601f19169290920160200192915050565b600083516113a0818460208801611499565b8351908301906113b4818360208801611499565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906113f090830184611362565b9695505050505050565b602081526000610b0c6020830184611362565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561145557611455611500565b500190565b60008261147557634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561149457611494611500565b500290565b60005b838110156114b457818101518382015260200161149c565b83811115610a885750506000910152565b600181811c908216806114d957607f821691505b602082108114156114fa57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109ab57600080fdfea264697066735822122038f0c7f381e500228a72a770f0f06a5b3899f24a47c49e92aa188d179f2c125664736f6c63430008040033697066733a2f2f516d544c70634d6e596762575248456e737969614b786b7a6d50716e775079426f7a6972466d4a72414e72756f582f

Deployed Bytecode

0x6080604052600436106101355760003560e01c8063715018a6116100ab578063b88d4fde1161006f578063b88d4fde14610326578063c87b56dd14610346578063ca0dcf1614610366578063dbe2193f1461037c578063e985e9c51461039c578063f2fde38b146103e557600080fd5b8063715018a6146102ab5780638da5cb5b146102c057806395d89b41146102de578063a0712d68146102f3578063a22cb4651461030657600080fd5b806323b872dd116100fd57806323b872dd1461020e5780633ccfd60b1461022e57806342842e0e146102365780636352211e146102565780636c0360eb1461027657806370a082311461028b57600080fd5b806301ffc9a71461013a57806306fdde031461016f578063081812fc14610191578063095ea7b3146101c957806318160ddd146101eb575b600080fd5b34801561014657600080fd5b5061015a610155366004611312565b610405565b60405190151581526020015b60405180910390f35b34801561017b57600080fd5b50610184610457565b60405161016691906113fa565b34801561019d57600080fd5b506101b16101ac36600461134a565b6104e9565b6040516001600160a01b039091168152602001610166565b3480156101d557600080fd5b506101e96101e43660046112e9565b61052d565b005b3480156101f757600080fd5b50600154600054035b604051908152602001610166565b34801561021a57600080fd5b506101e961022936600461119f565b610600565b6101e9610610565b34801561024257600080fd5b506101e961025136600461119f565b610735565b34801561026257600080fd5b506101b161027136600461134a565b610750565b34801561028257600080fd5b5061018461075b565b34801561029757600080fd5b506102006102a6366004611153565b6107e9565b3480156102b757600080fd5b506101e9610838565b3480156102cc57600080fd5b506008546001600160a01b03166101b1565b3480156102ea57600080fd5b5061018461086e565b6101e961030136600461134a565b61087d565b34801561031257600080fd5b506101e96103213660046112af565b6109ae565b34801561033257600080fd5b506101e96103413660046111da565b610a44565b34801561035257600080fd5b5061018461036136600461134a565b610a8e565b34801561037257600080fd5b50610200600b5481565b34801561038857600080fd5b506101e961039736600461134a565b610b13565b3480156103a857600080fd5b5061015a6103b736600461116d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156103f157600080fd5b506101e9610400366004611153565b610b42565b60006301ffc9a760e01b6001600160e01b03198316148061043657506380ac58cd60e01b6001600160e01b03198316145b806104515750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610466906114c5565b80601f0160208091040260200160405190810160405280929190818152602001828054610492906114c5565b80156104df5780601f106104b4576101008083540402835291602001916104df565b820191906000526020600020905b8154815290600101906020018083116104c257829003601f168201915b5050505050905090565b60006104f482610bda565b610511576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061053882610c01565b9050806001600160a01b0316836001600160a01b0316141561056d5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146105a45761058781336103b7565b6105a4576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61060b838383610c62565b505050565b6008546001600160a01b031633146106435760405162461bcd60e51b815260040161063a9061140d565b60405180910390fd5b6000733197afedd20125c6def13dc6a1a13c678133ebac606461066747602861147a565b610671919061145a565b604051600081818185875af1925050503d80600081146106ad576040519150601f19603f3d011682016040523d82523d6000602084013e6106b2565b606091505b50509050806106c057600080fd5b60006106d46008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461071e576040519150601f19603f3d011682016040523d82523d6000602084013e610723565b606091505b505090508061073157600080fd5b5050565b61060b83838360405180602001604052806000815250610a44565b600061045182610c01565b600c8054610768906114c5565b80601f0160208091040260200160405190810160405280929190818152602001828054610794906114c5565b80156107e15780601f106107b6576101008083540402835291602001916107e1565b820191906000526020600020905b8154815290600101906020018083116107c457829003601f168201915b505050505081565b60006001600160a01b038216610812576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146108625760405162461bcd60e51b815260040161063a9061140d565b61086c6000610e05565b565b606060038054610466906114c5565b6009543360009081526005602052604090819020546108a7911c67ffffffffffffffff1683611442565b11156108ea5760405162461bcd60e51b8152602060048201526012602482015271115e18d959591959081d1a19481b1a5b5a5d60721b604482015260640161063a565b600a54816108fb6001546000540390565b6109059190611442565b111561094c5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604482015260640161063a565b80600b5461095a919061147a565b3410156109a15760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b604482015260640161063a565b6109ab3382610e57565b50565b6001600160a01b0382163314156109d85760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610a4f848484610c62565b6001600160a01b0383163b15610a8857610a6b84848484610e71565b610a88576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610a9982610bda565b610ab657604051630a14c4b560e41b815260040160405180910390fd5b6000610ac0610f68565b9050805160001415610ae15760405180602001604052806000815250610b0c565b80610aeb84610f77565b604051602001610afc92919061138e565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610b3d5760405162461bcd60e51b815260040161063a9061140d565b600b55565b6008546001600160a01b03163314610b6c5760405162461bcd60e51b815260040161063a9061140d565b6001600160a01b038116610bd15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161063a565b6109ab81610e05565b6000805482108015610451575050600090815260046020526040902054600160e01b161590565b600081600054811015610c4957600081815260046020526040902054600160e01b8116610c47575b80610b0c575060001901600081815260046020526040902054610c29565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610c6d82610c01565b9050836001600160a01b0316816001600160a01b031614610ca05760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610cbe5750610cbe85336103b7565b80610cd9575033610cce846104e9565b6001600160a01b0316145b905080610cf957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610d2057604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b861781179091558216610dbd5760018301600081815260046020526040902054610dbb576000548114610dbb5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610731828260405180602001604052806000815250610fc6565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610ea69033908990889088906004016113bd565b602060405180830381600087803b158015610ec057600080fd5b505af1925050508015610ef0575060408051601f3d908101601f19168201909252610eed9181019061132e565b60015b610f4b573d808015610f1e576040519150601f19603f3d011682016040523d82523d6000602084013e610f23565b606091505b508051610f43576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600c8054610466906114c5565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610fb457600183039250600a81066030018353600a9004610f96565b50819003601f19909101908152919050565b6000546001600160a01b038416610fef57604051622e076360e81b815260040160405180910390fd5b8261100d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b156110e2575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46110ab6000878480600101955087610e71565b6110c8576040516368d2bf6b60e11b815260040160405180910390fd5b8082106110605782600054146110dd57600080fd5b611127565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106110e3575b506000908155610a889085838684565b80356001600160a01b038116811461114e57600080fd5b919050565b600060208284031215611164578081fd5b610b0c82611137565b6000806040838503121561117f578081fd5b61118883611137565b915061119660208401611137565b90509250929050565b6000806000606084860312156111b3578081fd5b6111bc84611137565b92506111ca60208501611137565b9150604084013590509250925092565b600080600080608085870312156111ef578081fd5b6111f885611137565b935061120660208601611137565b925060408501359150606085013567ffffffffffffffff80821115611229578283fd5b818701915087601f83011261123c578283fd5b81358181111561124e5761124e611516565b604051601f8201601f19908116603f0116810190838211818310171561127657611276611516565b816040528281528a602084870101111561128e578586fd5b82602086016020830137918201602001949094529598949750929550505050565b600080604083850312156112c1578182fd5b6112ca83611137565b9150602083013580151581146112de578182fd5b809150509250929050565b600080604083850312156112fb578182fd5b61130483611137565b946020939093013593505050565b600060208284031215611323578081fd5b8135610b0c8161152c565b60006020828403121561133f578081fd5b8151610b0c8161152c565b60006020828403121561135b578081fd5b5035919050565b6000815180845261137a816020860160208601611499565b601f01601f19169290920160200192915050565b600083516113a0818460208801611499565b8351908301906113b4818360208801611499565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906113f090830184611362565b9695505050505050565b602081526000610b0c6020830184611362565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561145557611455611500565b500190565b60008261147557634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561149457611494611500565b500290565b60005b838110156114b457818101518382015260200161149c565b83811115610a885750506000910152565b600181811c908216806114d957607f821691505b602082108114156114fa57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109ab57600080fdfea264697066735822122038f0c7f381e500228a72a770f0f06a5b3899f24a47c49e92aa188d179f2c125664736f6c63430008040033

Deployed Bytecode Sourcemap

41879:1265:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16529:615;;;;;;;;;;-1:-1:-1;16529:615:0;;;;;:::i;:::-;;:::i;:::-;;;5372:14:1;;5365:22;5347:41;;5335:2;5320:18;16529:615:0;;;;;;;;21542:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23610:204::-;;;;;;;;;;-1:-1:-1;23610:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4670:32:1;;;4652:51;;4640:2;4625:18;23610:204:0;4607:102:1;23070:474:0;;;;;;;;;;-1:-1:-1;23070:474:0;;;;;:::i;:::-;;:::i;:::-;;15583:315;;;;;;;;;;-1:-1:-1;15849:12:0;;15636:7;15833:13;:28;15583:315;;;7585:25:1;;;7573:2;7558:18;15583:315:0;7540:76:1;24496:170:0;;;;;;;;;;-1:-1:-1;24496:170:0;;;;;:::i;:::-;;:::i;42619:292::-;;;:::i;24737:185::-;;;;;;;;;;-1:-1:-1;24737:185:0;;;;;:::i;:::-;;:::i;21331:144::-;;;;;;;;;;-1:-1:-1;21331:144:0;;;;;:::i;:::-;;:::i;42031:80::-;;;;;;;;;;;;;:::i;17208:224::-;;;;;;;;;;-1:-1:-1;17208:224:0;;;;;:::i;:::-;;:::i;2639:103::-;;;;;;;;;;;;;:::i;1988:87::-;;;;;;;;;;-1:-1:-1;2061:6:0;;-1:-1:-1;;;;;2061:6:0;1988:87;;21711:104;;;;;;;;;;;;;:::i;42182:433::-;;;;;;:::i;:::-;;:::i;23886:308::-;;;;;;;;;;-1:-1:-1;23886:308:0;;;;;:::i;:::-;;:::i;24993:396::-;;;;;;;;;;-1:-1:-1;24993:396:0;;;;;:::i;:::-;;:::i;21886:318::-;;;;;;;;;;-1:-1:-1;21886:318:0;;;;;:::i;:::-;;:::i;41989:33::-;;;;;;;;;;;;;;;;43031:110;;;;;;;;;;-1:-1:-1;43031:110:0;;;;;:::i;:::-;;:::i;24265:164::-;;;;;;;;;;-1:-1:-1;24265:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24386:25:0;;;24362:4;24386:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24265:164;2897:201;;;;;;;;;;-1:-1:-1;2897:201:0;;;;;:::i;:::-;;:::i;16529:615::-;16614:4;-1:-1:-1;;;;;;;;;16914:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;16991:25:0;;;16914:102;:179;;;-1:-1:-1;;;;;;;;;;17068:25:0;;;16914:179;16894:199;16529:615;-1:-1:-1;;16529:615:0:o;21542:100::-;21596:13;21629:5;21622:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21542:100;:::o;23610:204::-;23678:7;23703:16;23711:7;23703;:16::i;:::-;23698:64;;23728:34;;-1:-1:-1;;;23728:34:0;;;;;;;;;;;23698:64;-1:-1:-1;23782:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23782:24:0;;23610:204::o;23070:474::-;23143:13;23175:27;23194:7;23175:18;:27::i;:::-;23143:61;;23225:5;-1:-1:-1;;;;;23219:11:0;:2;-1:-1:-1;;;;;23219:11:0;;23215:48;;;23239:24;;-1:-1:-1;;;23239:24:0;;;;;;;;;;;23215:48;39713:10;-1:-1:-1;;;;;23280:28:0;;;23276:175;;23328:44;23345:5;39713:10;24265:164;:::i;23328:44::-;23323:128;;23400:35;;-1:-1:-1;;;23400:35:0;;;;;;;;;;;23323:128;23463:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;23463:29:0;-1:-1:-1;;;;;23463:29:0;;;;;;;;;23508:28;;23463:24;;23508:28;;;;;;;23070:474;;;:::o;24496:170::-;24630:28;24640:4;24646:2;24650:7;24630:9;:28::i;:::-;24496:170;;;:::o;42619:292::-;2061:6;;-1:-1:-1;;;;;2061:6:0;39713:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;;;;;;;;;42675:7:::1;42696:42;42781:3;42752:26;:21;42776:2;42752:26;:::i;:::-;:32;;;;:::i;:::-;42688:101;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42674:115;;;42804:2;42796:11;;;::::0;::::1;;42817:7;42838;2061:6:::0;;-1:-1:-1;;;;;2061:6:0;;1988:87;42838:7:::1;-1:-1:-1::0;;;;;42830:21:0::1;42859;42830:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42816:69;;;42900:2;42892:11;;;::::0;::::1;;2279:1;;42619:292::o:0;24737:185::-;24875:39;24892:4;24898:2;24902:7;24875:39;;;;;;;;;;;;:16;:39::i;21331:144::-;21395:7;21438:27;21457:7;21438:18;:27::i;42031:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;17208:224::-;17272:7;-1:-1:-1;;;;;17296:19:0;;17292:60;;17324:28;;-1:-1:-1;;;17324:28:0;;;;;;;;;;;17292:60;-1:-1:-1;;;;;;17370:25:0;;;;;:18;:25;;;;;;12547:13;17370:54;;17208:224::o;2639:103::-;2061:6;;-1:-1:-1;;;;;2061:6:0;39713:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;2704:30:::1;2731:1;2704:18;:30::i;:::-;2639:103::o:0;21711:104::-;21767:13;21800:7;21793:14;;;;;:::i;42182:433::-;42370:9;;42355:10;17575:7;17603:25;;;:18;:25;;12684:2;17603:25;;;;;42330:36;;17603:49;12547:13;17602:80;42330:8;:36;:::i;:::-;:49;;42322:80;;;;-1:-1:-1;;;42322:80:0;;6232:2:1;42322:80:0;;;6214:21:1;6271:2;6251:18;;;6244:30;-1:-1:-1;;;6290:18:1;;;6283:48;6348:18;;42322:80:0;6204:168:1;42322:80:0;42449:10;;42437:8;42421:13;15849:12;;15636:7;15833:13;:28;;15583:315;42421:13;:24;;;;:::i;:::-;:38;;42413:73;;;;-1:-1:-1;;;42413:73:0;;6579:2:1;42413:73:0;;;6561:21:1;6618:2;6598:18;;;6591:30;-1:-1:-1;;;6637:18:1;;;6630:52;6699:18;;42413:73:0;6551:172:1;42413:73:0;42530:8;42519;;:19;;;;:::i;:::-;42505:9;:34;;42497:68;;;;-1:-1:-1;;;42497:68:0;;7291:2:1;42497:68:0;;;7273:21:1;7330:2;7310:18;;;7303:30;-1:-1:-1;;;7349:18:1;;;7342:51;7410:18;;42497:68:0;7263:171:1;42497:68:0;42576:31;42586:10;42598:8;42576:9;:31::i;:::-;42182:433;:::o;23886:308::-;-1:-1:-1;;;;;23985:31:0;;39713:10;23985:31;23981:61;;;24025:17;;-1:-1:-1;;;24025:17:0;;;;;;;;;;;23981:61;39713:10;24055:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;24055:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;24055:60:0;;;;;;;;;;24131:55;;5347:41:1;;;24055:49:0;;39713:10;24131:55;;5320:18:1;24131:55:0;;;;;;;23886:308;;:::o;24993:396::-;25160:28;25170:4;25176:2;25180:7;25160:9;:28::i;:::-;-1:-1:-1;;;;;25203:14:0;;;:19;25199:183;;25242:56;25273:4;25279:2;25283:7;25292:5;25242:30;:56::i;:::-;25237:145;;25326:40;;-1:-1:-1;;;25326:40:0;;;;;;;;;;;25237:145;24993:396;;;;:::o;21886:318::-;21959:13;21990:16;21998:7;21990;:16::i;:::-;21985:59;;22015:29;;-1:-1:-1;;;22015:29:0;;;;;;;;;;;21985:59;22057:21;22081:10;:8;:10::i;:::-;22057:34;;22115:7;22109:21;22134:1;22109:26;;:87;;;;;;;;;;;;;;;;;22162:7;22171:18;22181:7;22171:9;:18::i;:::-;22145:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22109:87;22102:94;21886:318;-1:-1:-1;;;21886:318:0:o;43031:110::-;2061:6;;-1:-1:-1;;;;;2061:6:0;39713:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;43099:8:::1;:20:::0;43031:110::o;2897:201::-;2061:6;;-1:-1:-1;;;;;2061:6:0;39713:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2986:22:0;::::1;2978:73;;;::::0;-1:-1:-1;;;2978:73:0;;5825:2:1;2978:73:0::1;::::0;::::1;5807:21:1::0;5864:2;5844:18;;;5837:30;5903:34;5883:18;;;5876:62;-1:-1:-1;;;5954:18:1;;;5947:36;6000:19;;2978:73:0::1;5797:228:1::0;2978:73:0::1;3062:28;3081:8;3062:18;:28::i;25644:273::-:0;25701:4;25791:13;;25781:7;:23;25738:152;;;;-1:-1:-1;;25842:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;25842:43:0;:48;;25644:273::o;18846:1129::-;18913:7;18948;19050:13;;19043:4;:20;19039:869;;;19088:14;19105:23;;;:17;:23;;;;;;-1:-1:-1;;;19194:23:0;;19190:699;;19713:113;19720:11;19713:113;;-1:-1:-1;;;19791:6:0;19773:25;;;;:17;:25;;;;;;19713:113;;19190:699;19039:869;;19936:31;;-1:-1:-1;;;19936:31:0;;;;;;;;;;;30883:2515;30998:27;31028;31047:7;31028:18;:27::i;:::-;30998:57;;31113:4;-1:-1:-1;;;;;31072:45:0;31088:19;-1:-1:-1;;;;;31072:45:0;;31068:86;;31126:28;;-1:-1:-1;;;31126:28:0;;;;;;;;;;;31068:86;31167:22;39713:10;-1:-1:-1;;;;;31193:27:0;;;;:87;;-1:-1:-1;31237:43:0;31254:4;39713:10;24265:164;:::i;31237:43::-;31193:147;;;-1:-1:-1;39713:10:0;31297:20;31309:7;31297:11;:20::i;:::-;-1:-1:-1;;;;;31297:43:0;;31193:147;31167:174;;31359:17;31354:66;;31385:35;;-1:-1:-1;;;31385:35:0;;;;;;;;;;;31354:66;-1:-1:-1;;;;;31435:16:0;;31431:52;;31460:23;;-1:-1:-1;;;31460:23:0;;;;;;;;;;;31431:52;31612:24;;;;:15;:24;;;;;;;;31605:31;;-1:-1:-1;;;;;;31605:31:0;;;-1:-1:-1;;;;;32004:24:0;;;;;:18;:24;;;;;32002:26;;-1:-1:-1;;32002:26:0;;;32073:22;;;;;;;32071:24;;-1:-1:-1;32071:24:0;;;32366:26;;;:17;:26;;;;;-1:-1:-1;;;32454:15:0;13201:3;32454:41;32412:84;;:128;;32366:174;;;32660:46;;32656:626;;32764:1;32754:11;;32732:19;32887:30;;;:17;:30;;;;;;32883:384;;33025:13;;33010:11;:28;33006:242;;33172:30;;;;:17;:30;;;;;:52;;;33006:242;32656:626;;33329:7;33325:2;-1:-1:-1;;;;;33310:27:0;33319:4;-1:-1:-1;;;;;33310:27:0;;;;;;;;;;;30883:2515;;;;;:::o;3258:191::-;3351:6;;;-1:-1:-1;;;;;3368:17:0;;;-1:-1:-1;;;;;;3368:17:0;;;;;;;3401:40;;3351:6;;;3368:17;3351:6;;3401:40;;3332:16;;3401:40;3258:191;;:::o;26001:104::-;26070:27;26080:2;26084:8;26070:27;;;;;;;;;;;;:9;:27::i;37095:716::-;37279:88;;-1:-1:-1;;;37279:88:0;;37258:4;;-1:-1:-1;;;;;37279:45:0;;;;;:88;;39713:10;;37346:4;;37352:7;;37361:5;;37279:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37279:88:0;;;;;;;;-1:-1:-1;;37279:88:0;;;;;;;;;;;;:::i;:::-;;;37275:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37562:13:0;;37558:235;;37608:40;;-1:-1:-1;;;37608:40:0;;;;;;;;;;;37558:235;37751:6;37745:13;37736:6;37732:2;37728:15;37721:38;37275:529;-1:-1:-1;;;;;;37438:64:0;-1:-1:-1;;;37438:64:0;;-1:-1:-1;37095:716:0;;;;;;:::o;42923:100::-;42975:13;43008:7;43001:14;;;;;:::i;39837:1959::-;40308:4;40302:11;;40315:3;40298:21;;40393:17;;;;41090:11;;;40969:5;41222:2;41236;41226:13;;41218:22;41090:11;41205:36;41277:2;41267:13;;40860:682;41296:4;40860:682;;;41471:1;41466:3;41462:11;41455:18;;41522:2;41516:4;41512:13;41508:2;41504:22;41499:3;41491:36;41392:2;41382:13;;40860:682;;;-1:-1:-1;41584:13:0;;;-1:-1:-1;;41699:12:0;;;41759:19;;;41699:12;39933:1856;-1:-1:-1;39933:1856:0:o;26478:2236::-;26601:20;26624:13;-1:-1:-1;;;;;26652:16:0;;26648:48;;26677:19;;-1:-1:-1;;;26677:19:0;;;;;;;;;;;26648:48;26711:13;26707:44;;26733:18;;-1:-1:-1;;;26733:18:0;;;;;;;;;;;26707:44;-1:-1:-1;;;;;27300:22:0;;;;;;:18;:22;;;;12684:2;27300:22;;;:70;;27338:31;27326:44;;27300:70;;;27613:31;;;:17;:31;;;;;27706:15;13201:3;27706:41;27664:84;;-1:-1:-1;27784:13:0;;13464:3;27769:56;27664:162;27613:213;;:31;;27907:23;;;;27951:14;:19;27947:635;;27991:313;28022:38;;28047:12;;-1:-1:-1;;;;;28022:38:0;;;28039:1;;28022:38;;28039:1;;28022:38;28088:69;28127:1;28131:2;28135:14;;;;;;28151:5;28088:30;:69::i;:::-;28083:174;;28193:40;;-1:-1:-1;;;28193:40:0;;;;;;;;;;;28083:174;28299:3;28284:12;:18;27991:313;;28385:12;28368:13;;:29;28364:43;;28399:8;;;28364:43;27947:635;;;28448:119;28479:40;;28504:14;;;;;-1:-1:-1;;;;;28479:40:0;;;28496:1;;28479:40;;28496:1;;28479:40;28562:3;28547:12;:18;28448:119;;27947:635;-1:-1:-1;28596:13:0;:28;;;28646:60;;28679:2;28683:12;28697:8;28646:60;:::i;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:1183::-;1106:6;1114;1122;1130;1183:3;1171:9;1162:7;1158:23;1154:33;1151:2;;;1205:6;1197;1190:22;1151:2;1233:29;1252:9;1233:29;:::i;:::-;1223:39;;1281:38;1315:2;1304:9;1300:18;1281:38;:::i;:::-;1271:48;;1366:2;1355:9;1351:18;1338:32;1328:42;;1421:2;1410:9;1406:18;1393:32;1444:18;1485:2;1477:6;1474:14;1471:2;;;1506:6;1498;1491:22;1471:2;1549:6;1538:9;1534:22;1524:32;;1594:7;1587:4;1583:2;1579:13;1575:27;1565:2;;1621:6;1613;1606:22;1565:2;1662;1649:16;1684:2;1680;1677:10;1674:2;;;1690:18;;:::i;:::-;1765:2;1759:9;1733:2;1819:13;;-1:-1:-1;;1815:22:1;;;1839:2;1811:31;1807:40;1795:53;;;1863:18;;;1883:22;;;1860:46;1857:2;;;1909:18;;:::i;:::-;1949:10;1945:2;1938:22;1984:2;1976:6;1969:18;2024:7;2019:2;2014;2010;2006:11;2002:20;1999:33;1996:2;;;2050:6;2042;2035:22;1996:2;2111;2106;2102;2098:11;2093:2;2085:6;2081:15;2068:46;2134:15;;;2151:2;2130:24;2123:40;;;;1141:1053;;;;-1:-1:-1;1141:1053:1;;-1:-1:-1;;;;1141:1053:1:o;2199:367::-;2264:6;2272;2325:2;2313:9;2304:7;2300:23;2296:32;2293:2;;;2346:6;2338;2331:22;2293:2;2374:29;2393:9;2374:29;:::i;:::-;2364:39;;2453:2;2442:9;2438:18;2425:32;2500:5;2493:13;2486:21;2479:5;2476:32;2466:2;;2527:6;2519;2512:22;2466:2;2555:5;2545:15;;;2283:283;;;;;:::o;2571:264::-;2639:6;2647;2700:2;2688:9;2679:7;2675:23;2671:32;2668:2;;;2721:6;2713;2706:22;2668:2;2749:29;2768:9;2749:29;:::i;:::-;2739:39;2825:2;2810:18;;;;2797:32;;-1:-1:-1;;;2658:177:1:o;2840:255::-;2898:6;2951:2;2939:9;2930:7;2926:23;2922:32;2919:2;;;2972:6;2964;2957:22;2919:2;3016:9;3003:23;3035:30;3059:5;3035:30;:::i;3100:259::-;3169:6;3222:2;3210:9;3201:7;3197:23;3193:32;3190:2;;;3243:6;3235;3228:22;3190:2;3280:9;3274:16;3299:30;3323:5;3299:30;:::i;3364:190::-;3423:6;3476:2;3464:9;3455:7;3451:23;3447:32;3444:2;;;3497:6;3489;3482:22;3444:2;-1:-1:-1;3525:23:1;;3434:120;-1:-1:-1;3434:120:1:o;3559:257::-;3600:3;3638:5;3632:12;3665:6;3660:3;3653:19;3681:63;3737:6;3730:4;3725:3;3721:14;3714:4;3707:5;3703:16;3681:63;:::i;:::-;3798:2;3777:15;-1:-1:-1;;3773:29:1;3764:39;;;;3805:4;3760:50;;3608:208;-1:-1:-1;;3608:208:1:o;3821:470::-;4000:3;4038:6;4032:13;4054:53;4100:6;4095:3;4088:4;4080:6;4076:17;4054:53;:::i;:::-;4170:13;;4129:16;;;;4192:57;4170:13;4129:16;4226:4;4214:17;;4192:57;:::i;:::-;4265:20;;4008:283;-1:-1:-1;;;;4008:283:1:o;4714:488::-;-1:-1:-1;;;;;4983:15:1;;;4965:34;;5035:15;;5030:2;5015:18;;5008:43;5082:2;5067:18;;5060:34;;;5130:3;5125:2;5110:18;;5103:31;;;4908:4;;5151:45;;5176:19;;5168:6;5151:45;:::i;:::-;5143:53;4917:285;-1:-1:-1;;;;;;4917:285:1:o;5399:219::-;5548:2;5537:9;5530:21;5511:4;5568:44;5608:2;5597:9;5593:18;5585:6;5568:44;:::i;6728:356::-;6930:2;6912:21;;;6949:18;;;6942:30;7008:34;7003:2;6988:18;;6981:62;7075:2;7060:18;;6902:182::o;7621:128::-;7661:3;7692:1;7688:6;7685:1;7682:13;7679:2;;;7698:18;;:::i;:::-;-1:-1:-1;7734:9:1;;7669:80::o;7754:217::-;7794:1;7820;7810:2;;-1:-1:-1;;;7845:31:1;;7899:4;7896:1;7889:15;7927:4;7852:1;7917:15;7810:2;-1:-1:-1;7956:9:1;;7800:171::o;7976:168::-;8016:7;8082:1;8078;8074:6;8070:14;8067:1;8064:21;8059:1;8052:9;8045:17;8041:45;8038:2;;;8089:18;;:::i;:::-;-1:-1:-1;8129:9:1;;8028:116::o;8149:258::-;8221:1;8231:113;8245:6;8242:1;8239:13;8231:113;;;8321:11;;;8315:18;8302:11;;;8295:39;8267:2;8260:10;8231:113;;;8362:6;8359:1;8356:13;8353:2;;;-1:-1:-1;;8397:1:1;8379:16;;8372:27;8202:205::o;8412:380::-;8491:1;8487:12;;;;8534;;;8555:2;;8609:4;8601:6;8597:17;8587:27;;8555:2;8662;8654:6;8651:14;8631:18;8628:38;8625:2;;;8708:10;8703:3;8699:20;8696:1;8689:31;8743:4;8740:1;8733:15;8771:4;8768:1;8761:15;8625:2;;8467:325;;;:::o;8797:127::-;8858:10;8853:3;8849:20;8846:1;8839:31;8889:4;8886:1;8879:15;8913:4;8910:1;8903:15;8929:127;8990:10;8985:3;8981:20;8978:1;8971:31;9021:4;9018:1;9011:15;9045:4;9042:1;9035:15;9061:131;-1:-1:-1;;;;;;9135:32:1;;9125:43;;9115:2;;9182:1;9179;9172:12

Swarm Source

ipfs://38f0c7f381e500228a72a770f0f06a5b3899f24a47c49e92aa188d179f2c1256
Loading...
Loading
Loading...
Loading
[ 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.