Token Mambonauts

Overview ERC721

Total Supply:
3,069 MAMBO

Holders:
653 addresses

Transfers:
-

Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

Click here to update the token ICO / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Mambonauts

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
istanbul EvmVersion, GNU GPLv3 license
File 1 of 6 : Mambonauts.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.11;

import "Strings.sol";
import "ERC721A.sol";
import "Context.sol";
import "Ownable.sol";

contract Mambonauts is Ownable, ERC721A  {
    using Strings for uint256;

    bytes4 private constant _ERC2981_INTERFACE_ID = 0x2a55205a;

    uint256 public MAX_SUPPLY                    = 3069;
    
    uint256 public maxPerTxDuringMint           = 20;
    
    uint256 public price                        = 0.2 ether;
    bool    public saleIsActive                 = false;


    string private _baseTokenURI;
    string public baseExtension = "";
    
    uint96 private contractRoyalties = 400; //4%
    address private royaltyReceiver;

    mapping(address => uint) public whitelisted;

    constructor(
        string memory _name,
        string memory _symbol
    ) ERC721A(_name, _symbol) {
        royaltyReceiver = owner();
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721A)
        returns (bool)
    {
        if (interfaceId == _ERC2981_INTERFACE_ID) {
            return true;
        }

        return super.supportsInterface(interfaceId);
    }

    function setTokenRoyalties(uint96 _royalties) external onlyOwner {
        contractRoyalties = _royalties;
    }

    function setRoyaltyPayoutAddress(address _payoutAddress)
        external
        onlyOwner
    {
        royaltyReceiver = _payoutAddress;
    }

    function royaltyInfo(
        uint256 _tokenId, 
        uint256 _salePrice
    ) external view returns (address receiver, uint256 royaltyAmount) {
        return (royaltyReceiver, ((_salePrice * contractRoyalties) / 10000));
    }

    /*
    @function setBaseExtension(newBaseExtension)
    @description - Sets base extension (string)
    */
    function setBaseExtension(string memory newBaseExtension) public onlyOwner {
        baseExtension = newBaseExtension;
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function setMaxPerTx(uint256 _amount) external onlyOwner {
        maxPerTxDuringMint = _amount;
    }

    function flipSale() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

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

    function whitelist(address[] memory _addressList, uint count) external onlyOwner {
        require(_addressList.length > 0, "Error: list is empty");
        for (uint i = 0; i < _addressList.length; ++i) {
            require(_addressList[i] != address(0), "Address cannot be 0.");
            whitelisted[_addressList[i]] = count;
        }
    }

    modifier mintCompliance {
        require(saleIsActive, "Sale is not active yet.");
        _;
    }

    /*
      @function airDrop(to, numberOfTokens)
      @description - Air drop an nft to address
      @param <address> to - The address to airdrop nft
      @param <uint256> numberOfTokens - Number to drop
    */
    function airdrop(address to, uint256 numberOfTokens)
        external
        onlyOwner
    {
        require(
            numberOfTokens > 0 && numberOfTokens + totalSupply() <= MAX_SUPPLY,
            "Not enough left"
        );

        _safeMint(to, numberOfTokens);
    }


    function mint(uint256 _quantity) external payable mintCompliance {
        require(_quantity > 0, "You must mint at least 1 Mambonaut!");
        require(_quantity <= maxPerTxDuringMint, "Limited to 20 per TX");
        require(
            msg.value >= price * _quantity,
            "Insufficient Fund."
        );
        require(
            MAX_SUPPLY >= totalSupply() + _quantity,
            "Exceeds max supply."
        );
        _safeMint(msg.sender, _quantity);
    }

    function whitelistMint() external mintCompliance {
        uint256 mintsAvailable = whitelisted[msg.sender];
        uint256 mints = _numberMinted(msg.sender);
        require(mints < mintsAvailable, "Already claimed mints!");
        uint256 numberToMint = mintsAvailable - mints;
        require(
            MAX_SUPPLY >= totalSupply() + numberToMint,
            "Exceeds max supply."
        );
        _safeMint(msg.sender, numberToMint);
    }

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

    function mintCount(address _address) external view returns (uint256) {
        return _numberMinted(_address);
    }

    function tokensOfOwner(address _address) external view returns (uint256[] memory) {
        uint256 ownerTokenCount = balanceOf(_address);
		uint256[] memory ownedTokenIDs = new uint256[](ownerTokenCount);
		uint256 tokenIndex = 1;
		uint256 ownedTokenIndex = 0;

		while (ownedTokenIndex < ownerTokenCount && tokenIndex <= MAX_SUPPLY) {
			address owner = ownerOf(tokenIndex);

			if (owner == _address) {
				ownedTokenIDs[ownedTokenIndex] = tokenIndex;

				ownedTokenIndex++;
			}

			tokenIndex++;
		}
		return ownedTokenIDs;
    }

    /*
        @function tokenURI(tokenId)
        @description - Gets the tokenId's URI
    */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

File 2 of 6 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 3 of 6 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import "IERC721A.sol";

/**
 * @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 (_addressToUint256(owner) == 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 (_addressToUint256(to) == 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 (_addressToUint256(to) == 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();

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            approvedAddress == _msgSenderERC721A());

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            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));
        address approvedAddress = _tokenApprovals[tokenId];

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            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 4 of 6 : IERC721A.sol
// SPDX-License-Identifier: MIT
// 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 5 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// 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 6 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "Context.sol";

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

Settings
{
  "evmVersion": "istanbul",
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "libraries": {
    "Mambonauts.sol": {}
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"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":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSale","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":"maxPerTxDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"mintCount","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_payoutAddress","type":"address"}],"name":"setRoyaltyPayoutAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint96","name":"_royalties","type":"uint96"}],"name":"setTokenRoyalties","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":[{"internalType":"address","name":"_address","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addressList","type":"address[]"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"whitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

610bfd6009556014600a556702c68af0bb140000600b55600c805460ff1916905560a06040819052600060808190526200003c91600e916200014a565b50600f80546001600160601b0319166101901790553480156200005e57600080fd5b506040516200276c3803806200276c8339810160408190526200008191620002bd565b81816200008e33620000fa565b8151620000a39060039060208501906200014a565b508051620000b99060049060208401906200014a565b506001805550506000546001600160a01b0316600f600c6101000a8154816001600160a01b0302191690836001600160a01b03160217905550505062000364565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001589062000327565b90600052602060002090601f0160209004810192826200017c5760008555620001c7565b82601f106200019757805160ff1916838001178555620001c7565b82800160010185558215620001c7579182015b82811115620001c7578251825591602001919060010190620001aa565b50620001d5929150620001d9565b5090565b5b80821115620001d55760008155600101620001da565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200021857600080fd5b81516001600160401b0380821115620002355762000235620001f0565b604051601f8301601f19908116603f01168101908282118183101715620002605762000260620001f0565b816040528381526020925086838588010111156200027d57600080fd5b600091505b83821015620002a1578582018301518183018401529082019062000282565b83821115620002b35760008385830101525b9695505050505050565b60008060408385031215620002d157600080fd5b82516001600160401b0380821115620002e957600080fd5b620002f78683870162000206565b935060208501519150808211156200030e57600080fd5b506200031d8582860162000206565b9150509250929050565b600181811c908216806200033c57607f821691505b602082108114156200035e57634e487b7160e01b600052602260045260246000fd5b50919050565b6123f880620003746000396000f3fe6080604052600436106102255760003560e01c80638ba4cc3c11610123578063c6f6f216116100ab578063e2e6c8bc1161006f578063e2e6c8bc14610644578063e985e9c514610664578063eb8d2444146106ad578063ed9ec888146106c7578063f2fde38b146106e757600080fd5b8063c6f6f216146105a1578063c87b56dd146105c1578063d3464cbd146105e1578063d936547e146105f7578063da3ef23f1461062457600080fd5b8063a035b1fe116100f2578063a035b1fe14610523578063a0712d6814610539578063a22cb4651461054c578063b88d4fde1461056c578063c66828621461058c57600080fd5b80638ba4cc3c146104b05780638da5cb5b146104d057806391b7f5ed146104ee57806395d89b411461050e57600080fd5b80633ccfd60b116101b157806370a082311161017557806370a0823114610424578063715018a6146104445780637ba5e62114610459578063804f43cd1461046e5780638462151c1461048357600080fd5b80633ccfd60b1461039c57806342842e0e146103a457806345aeefde146103c457806355f804b3146103e45780636352211e1461040457600080fd5b806318160ddd116101f857806318160ddd146102db5780631ebdcaae1461030757806323b872dd146103275780632a55205a1461034757806332cb6b0c1461038657600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004611c9c565b610707565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b50610274610739565b6040516102569190611d11565b34801561028d57600080fd5b506102a161029c366004611d24565b6107cb565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d4366004611d59565b61080f565b005b3480156102e757600080fd5b506102f9600254600154036000190190565b604051908152602001610256565b34801561031357600080fd5b506102d9610322366004611d83565b6108e2565b34801561033357600080fd5b506102d9610342366004611dac565b61093c565b34801561035357600080fd5b50610367610362366004611de8565b61094c565b604080516001600160a01b039093168352602083019190915201610256565b34801561039257600080fd5b506102f960095481565b6102d9610991565b3480156103b057600080fd5b506102d96103bf366004611dac565b610a54565b3480156103d057600080fd5b506102d96103df366004611e0a565b610a6f565b3480156103f057600080fd5b506102d96103ff366004611e25565b610ac1565b34801561041057600080fd5b506102a161041f366004611d24565b610af7565b34801561043057600080fd5b506102f961043f366004611e0a565b610b02565b34801561045057600080fd5b506102d9610b48565b34801561046557600080fd5b506102d9610b7e565b34801561047a57600080fd5b506102d9610bbc565b34801561048f57600080fd5b506104a361049e366004611e0a565b610cf5565b6040516102569190611e97565b3480156104bc57600080fd5b506102d96104cb366004611d59565b610dd6565b3480156104dc57600080fd5b506000546001600160a01b03166102a1565b3480156104fa57600080fd5b506102d9610509366004611d24565b610e78565b34801561051a57600080fd5b50610274610ea7565b34801561052f57600080fd5b506102f9600b5481565b6102d9610547366004611d24565b610eb6565b34801561055857600080fd5b506102d9610567366004611edb565b611066565b34801561057857600080fd5b506102d9610587366004611fb6565b6110fc565b34801561059857600080fd5b50610274611146565b3480156105ad57600080fd5b506102d96105bc366004611d24565b6111d4565b3480156105cd57600080fd5b506102746105dc366004611d24565b611203565b3480156105ed57600080fd5b506102f9600a5481565b34801561060357600080fd5b506102f9610612366004611e0a565b60106020526000908152604090205481565b34801561063057600080fd5b506102d961063f366004612032565b6112d1565b34801561065057600080fd5b506102d961065f36600461207b565b61130e565b34801561067057600080fd5b5061024a61067f36600461212e565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156106b957600080fd5b50600c5461024a9060ff1681565b3480156106d357600080fd5b506102f96106e2366004611e0a565b611453565b3480156106f357600080fd5b506102d9610702366004611e0a565b61147e565b60006001600160e01b0319821663152a902d60e11b141561072a57506001919050565b61073382611516565b92915050565b60606003805461074890612161565b80601f016020809104026020016040519081016040528092919081815260200182805461077490612161565b80156107c15780601f10610796576101008083540402835291602001916107c1565b820191906000526020600020905b8154815290600101906020018083116107a457829003601f168201915b5050505050905090565b60006107d682611564565b6107f3576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061081a82611599565b9050806001600160a01b0316836001600160a01b0316141561084f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461088657610869813361067f565b610886576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b031633146109155760405162461bcd60e51b815260040161090c9061219c565b60405180910390fd5b600f80546bffffffffffffffffffffffff19166001600160601b0392909216919091179055565b610947838383611602565b505050565b600f5460009081906001600160a01b03600160601b820416906127109061097c906001600160601b0316866121e7565b610986919061221c565b915091509250929050565b6000546001600160a01b031633146109bb5760405162461bcd60e51b815260040161090c9061219c565b600080546040516001600160a01b039091169047908381818185875af1925050503d8060008114610a08576040519150601f19603f3d011682016040523d82523d6000602084013e610a0d565b606091505b5050905080610a515760405162461bcd60e51b815260206004820152601060248201526f3a3930b739b332b9103330b4b632b21760811b604482015260640161090c565b50565b610947838383604051806020016040528060008152506110fc565b6000546001600160a01b03163314610a995760405162461bcd60e51b815260040161090c9061219c565b600f80546001600160a01b03909216600160601b026001600160601b03909216919091179055565b6000546001600160a01b03163314610aeb5760405162461bcd60e51b815260040161090c9061219c565b610947600d8383611b79565b600061073382611599565b600081610b22576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610b725760405162461bcd60e51b815260040161090c9061219c565b610b7c60006117b2565b565b6000546001600160a01b03163314610ba85760405162461bcd60e51b815260040161090c9061219c565b600c805460ff19811660ff90911615179055565b600c5460ff16610c085760405162461bcd60e51b815260206004820152601760248201527629b0b6329034b9903737ba1030b1ba34bb32903cb2ba1760491b604482015260640161090c565b336000908152601060209081526040808320546006909252918290205490911c67ffffffffffffffff16818110610c7a5760405162461bcd60e51b8152602060048201526016602482015275416c726561647920636c61696d6564206d696e74732160501b604482015260640161090c565b6000610c868284612230565b905080610c9a600254600154036000190190565b610ca49190612247565b6009541015610ceb5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604482015260640161090c565b6109473382611802565b60606000610d0283610b02565b905060008167ffffffffffffffff811115610d1f57610d1f611f17565b604051908082528060200260200182016040528015610d48578160200160208202803683370190505b509050600160005b8381108015610d6157506009548211155b15610dcc576000610d7183610af7565b9050866001600160a01b0316816001600160a01b03161415610db95782848381518110610da057610da061225f565b602090810291909101015281610db581612275565b9250505b82610dc381612275565b93505050610d50565b5090949350505050565b6000546001600160a01b03163314610e005760405162461bcd60e51b815260040161090c9061219c565b600081118015610e2c5750600954610e1f600254600154036000190190565b610e299083612247565b11155b610e6a5760405162461bcd60e51b815260206004820152600f60248201526e139bdd08195b9bdd59da081b19599d608a1b604482015260640161090c565b610e748282611802565b5050565b6000546001600160a01b03163314610ea25760405162461bcd60e51b815260040161090c9061219c565b600b55565b60606004805461074890612161565b600c5460ff16610f025760405162461bcd60e51b815260206004820152601760248201527629b0b6329034b9903737ba1030b1ba34bb32903cb2ba1760491b604482015260640161090c565b60008111610f5e5760405162461bcd60e51b815260206004820152602360248201527f596f75206d757374206d696e74206174206c656173742031204d616d626f6e6160448201526275742160e81b606482015260840161090c565b600a54811115610fa75760405162461bcd60e51b8152602060048201526014602482015273098d2dad2e8cac840e8de40646040e0cae440a8b60631b604482015260640161090c565b80600b54610fb591906121e7565b341015610ff95760405162461bcd60e51b815260206004820152601260248201527124b739bab33334b1b4b2b73a10233ab7321760711b604482015260640161090c565b8061100b600254600154036000190190565b6110159190612247565b600954101561105c5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b2b2399036b0bc1039bab838363c9760691b604482015260640161090c565b610a513382611802565b6001600160a01b0382163314156110905760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611107848484611602565b6001600160a01b0383163b15611140576111238484848461181c565b611140576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600e805461115390612161565b80601f016020809104026020016040519081016040528092919081815260200182805461117f90612161565b80156111cc5780601f106111a1576101008083540402835291602001916111cc565b820191906000526020600020905b8154815290600101906020018083116111af57829003601f168201915b505050505081565b6000546001600160a01b031633146111fe5760405162461bcd60e51b815260040161090c9061219c565b600a55565b606061120e82611564565b6112725760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161090c565b600061127c611905565b9050600081511161129c57604051806020016040528060008152506112ca565b806112a684611914565b600e6040516020016112ba93929190612290565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146112fb5760405162461bcd60e51b815260040161090c9061219c565b8051610e7490600e906020840190611bfd565b6000546001600160a01b031633146113385760405162461bcd60e51b815260040161090c9061219c565b60008251116113805760405162461bcd60e51b81526020600482015260146024820152734572726f723a206c69737420697320656d70747960601b604482015260640161090c565b60005b82518110156109475760006001600160a01b03168382815181106113a9576113a961225f565b60200260200101516001600160a01b031614156113ff5760405162461bcd60e51b815260206004820152601460248201527320b2323932b9b99031b0b73737ba10313290181760611b604482015260640161090c565b81601060008584815181106114165761141661225f565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508061144c90612275565b9050611383565b6001600160a01b0381166000908152600660205260408082205467ffffffffffffffff911c16610733565b6000546001600160a01b031633146114a85760405162461bcd60e51b815260040161090c9061219c565b6001600160a01b03811661150d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161090c565b610a51816117b2565b60006301ffc9a760e01b6001600160e01b03198316148061154757506380ac58cd60e01b6001600160e01b03198316145b806107335750506001600160e01b031916635b5e139f60e01b1490565b600081600111158015611578575060015482105b8015610733575050600090815260056020526040902054600160e01b161590565b600081806001116115e9576001548110156115e957600081815260056020526040902054600160e01b81166115e7575b806112ca5750600019016000818152600560205260409020546115c9565b505b604051636f96cda160e11b815260040160405180910390fd5b600061160d82611599565b9050836001600160a01b0316816001600160a01b0316146116405760405162a1148160e81b815260040160405180910390fd5b6000828152600760205260408120546001600160a01b03908116919086163314806116705750611670863361067f565b8061168357506001600160a01b03821633145b9050806116a357604051632ce44b5f60e11b815260040160405180910390fd5b846116c157604051633a954ecd60e21b815260040160405180910390fd5b81156116e457600084815260076020526040902080546001600160a01b03191690555b6001600160a01b03868116600090815260066020908152604080832080546000190190559288168252828220805460010190558682526005905220600160e11b4260a01b87178117909155831661176957600184016000818152600560205260409020546117675760015481146117675760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610e74828260405180602001604052806000815250611a12565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611851903390899088908890600401612354565b6020604051808303816000875af192505050801561188c575060408051601f3d908101601f1916820190925261188991810190612391565b60015b6118e7573d8080156118ba576040519150601f19603f3d011682016040523d82523d6000602084013e6118bf565b606091505b5080516118df576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600d805461074890612161565b6060816119385750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611962578061194c81612275565b915061195b9050600a8361221c565b915061193c565b60008167ffffffffffffffff81111561197d5761197d611f17565b6040519080825280601f01601f1916602001820160405280156119a7576020820181803683370190505b5090505b84156118fd576119bc600183612230565b91506119c9600a866123ae565b6119d4906030612247565b60f81b8183815181106119e9576119e961225f565b60200101906001600160f81b031916908160001a905350611a0b600a8661221c565b94506119ab565b60015483611a3257604051622e076360e81b815260040160405180910390fd5b82611a505760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526006602090815260408083208054680100000000000000018902019055848352600590915290204260a01b86176001861460e11b1790558190818501903b15611b25575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611aee600087848060010195508761181c565b611b0b576040516368d2bf6b60e11b815260040160405180910390fd5b808210611aa3578260015414611b2057600080fd5b611b6a565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611b26575b50600155611140600085838684565b828054611b8590612161565b90600052602060002090601f016020900481019282611ba75760008555611bed565b82601f10611bc05782800160ff19823516178555611bed565b82800160010185558215611bed579182015b82811115611bed578235825591602001919060010190611bd2565b50611bf9929150611c71565b5090565b828054611c0990612161565b90600052602060002090601f016020900481019282611c2b5760008555611bed565b82601f10611c4457805160ff1916838001178555611bed565b82800160010185558215611bed579182015b82811115611bed578251825591602001919060010190611c56565b5b80821115611bf95760008155600101611c72565b6001600160e01b031981168114610a5157600080fd5b600060208284031215611cae57600080fd5b81356112ca81611c86565b60005b83811015611cd4578181015183820152602001611cbc565b838111156111405750506000910152565b60008151808452611cfd816020860160208601611cb9565b601f01601f19169290920160200192915050565b6020815260006112ca6020830184611ce5565b600060208284031215611d3657600080fd5b5035919050565b80356001600160a01b0381168114611d5457600080fd5b919050565b60008060408385031215611d6c57600080fd5b611d7583611d3d565b946020939093013593505050565b600060208284031215611d9557600080fd5b81356001600160601b03811681146112ca57600080fd5b600080600060608486031215611dc157600080fd5b611dca84611d3d565b9250611dd860208501611d3d565b9150604084013590509250925092565b60008060408385031215611dfb57600080fd5b50508035926020909101359150565b600060208284031215611e1c57600080fd5b6112ca82611d3d565b60008060208385031215611e3857600080fd5b823567ffffffffffffffff80821115611e5057600080fd5b818501915085601f830112611e6457600080fd5b813581811115611e7357600080fd5b866020828501011115611e8557600080fd5b60209290920196919550909350505050565b6020808252825182820181905260009190848201906040850190845b81811015611ecf57835183529284019291840191600101611eb3565b50909695505050505050565b60008060408385031215611eee57600080fd5b611ef783611d3d565b915060208301358015158114611f0c57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611f5657611f56611f17565b604052919050565b600067ffffffffffffffff831115611f7857611f78611f17565b611f8b601f8401601f1916602001611f2d565b9050828152838383011115611f9f57600080fd5b828260208301376000602084830101529392505050565b60008060008060808587031215611fcc57600080fd5b611fd585611d3d565b9350611fe360208601611d3d565b925060408501359150606085013567ffffffffffffffff81111561200657600080fd5b8501601f8101871361201757600080fd5b61202687823560208401611f5e565b91505092959194509250565b60006020828403121561204457600080fd5b813567ffffffffffffffff81111561205b57600080fd5b8201601f8101841361206c57600080fd5b6118fd84823560208401611f5e565b6000806040838503121561208e57600080fd5b823567ffffffffffffffff808211156120a657600080fd5b818501915085601f8301126120ba57600080fd5b81356020828211156120ce576120ce611f17565b8160051b92506120df818401611f2d565b82815292840181019281810190898511156120f957600080fd5b948201945b8486101561211e5761210f86611d3d565b825294820194908201906120fe565b9997909101359750505050505050565b6000806040838503121561214157600080fd5b61214a83611d3d565b915061215860208401611d3d565b90509250929050565b600181811c9082168061217557607f821691505b6020821081141561219657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612201576122016121d1565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261222b5761222b612206565b500490565b600082821015612242576122426121d1565b500390565b6000821982111561225a5761225a6121d1565b500190565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612289576122896121d1565b5060010190565b6000845160206122a38285838a01611cb9565b8551918401916122b68184848a01611cb9565b8554920191600090600181811c90808316806122d357607f831692505b8583108114156122f157634e487b7160e01b85526022600452602485fd5b808015612305576001811461231657612343565b60ff19851688528388019550612343565b60008b81526020902060005b8581101561233b5781548a820152908401908801612322565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061238790830184611ce5565b9695505050505050565b6000602082840312156123a357600080fd5b81516112ca81611c86565b6000826123bd576123bd612206565b50069056fea2646970667358221220f07863e1d034c3ff26b71ab4882ea274b68ed2f8f78b25fb11605c191353e92a64736f6c634300080b003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000a4d616d626f6e617574730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054d414d424f000000000000000000000000000000000000000000000000000000

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000a4d616d626f6e617574730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054d414d424f000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Mambonauts
Arg [1] : _symbol (string): MAMBO

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [3] : 4d616d626f6e6175747300000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 4d414d424f000000000000000000000000000000000000000000000000000000


Deployed ByteCode Sourcemap

151:5660:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1005:276;;;;;;;;;;-1:-1:-1;1005:276:3;;;;;:::i;:::-;;:::i;:::-;;;565:14:6;;558:22;540:41;;528:2;513:18;1005:276:3;;;;;;;;9770:98:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;11771:200::-;;;;;;;;;;-1:-1:-1;11771:200:1;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:6;;;1674:51;;1662:2;1647:18;11771:200:1;1528:203:6;11247:463:1;;;;;;;;;;-1:-1:-1;11247:463:1;;;;;:::i;:::-;;:::i;:::-;;3955:309;;;;;;;;;;;;4217:12;;991:1:3;4201:13:1;:28;-1:-1:-1;;4201:46:1;;3955:309;;;;2319:25:6;;;2307:2;2292:18;3955:309:1;2173:177:6;1287:112:3;;;;;;;;;;-1:-1:-1;1287:112:3;;;;;:::i;:::-;;:::i;12631:164:1:-;;;;;;;;;;-1:-1:-1;12631:164:1;;;;;:::i;:::-;;:::i;1556:231:3:-;;;;;;;;;;-1:-1:-1;1556:231:3;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3430:32:6;;;3412:51;;3494:2;3479:18;;3472:34;;;;3385:18;1556:231:3;3238:274:6;295:51:3;;;;;;;;;;;;;;;;4448:206;;;:::i;12861:179:1:-;;;;;;;;;;-1:-1:-1;12861:179:1;;;;;:::i;:::-;;:::i;1405:145:3:-;;;;;;;;;;-1:-1:-1;1405:145:3;;;;;:::i;:::-;;:::i;2320:104::-;;;;;;;;;;-1:-1:-1;2320:104:3;;;;;:::i;:::-;;:::i;9566:142:1:-;;;;;;;;;;-1:-1:-1;9566:142:1;;;;;:::i;:::-;;:::i;5538:231::-;;;;;;;;;;-1:-1:-1;5538:231:1;;;;;:::i;:::-;;:::i;1659:101:4:-;;;;;;;;;;;;;:::i;2232:82:3:-;;;;;;;;;;;;;:::i;3992:450::-;;;;;;;;;;;;;:::i;4782:536::-;;;;;;;;;;-1:-1:-1;4782:536:3;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3223:277::-;;;;;;;;;;-1:-1:-1;3223:277:3;;;;;:::i;:::-;;:::i;1027:85:4:-;;;;;;;;;;-1:-1:-1;1073:7:4;1099:6;-1:-1:-1;;;;;1099:6:4;1027:85;;2034:84:3;;;;;;;;;;-1:-1:-1;2034:84:3;;;;;:::i;:::-;;:::i;9932:102:1:-;;;;;;;;;;;;;:::i;416:55:3:-;;;;;;;;;;;;;;;;3507:479;;;;;;:::i;:::-;;:::i;12038:303:1:-;;;;;;;;;;-1:-1:-1;12038:303:1;;;;;:::i;:::-;;:::i;13106:385::-;;;;;;;;;;-1:-1:-1;13106:385:1;;;;;:::i;:::-;;:::i;570:32:3:-;;;;;;;;;;;;;:::i;2124:102::-;;;;;;;;;;-1:-1:-1;2124:102:3;;;;;:::i;:::-;;:::i;5420:389::-;;;;;;;;;;-1:-1:-1;5420:389:3;;;;;:::i;:::-;;:::i;357:48::-;;;;;;;;;;;;;;;;700:43;;;;;;;;;;-1:-1:-1;700:43:3;;;;;:::i;:::-;;;;;;;;;;;;;;1904:124;;;;;;;;;;-1:-1:-1;1904:124:3;;;;;:::i;:::-;;:::i;2548:347::-;;;;;;;;;;-1:-1:-1;2548:347:3;;;;;:::i;:::-;;:::i;12407:162:1:-;;;;;;;;;;-1:-1:-1;12407:162:1;;;;;:::i;:::-;-1:-1:-1;;;;;12527:25:1;;;12504:4;12527:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;12407:162;477:51:3;;;;;;;;;;-1:-1:-1;477:51:3;;;;;;;;4660:116;;;;;;;;;;-1:-1:-1;4660:116:3;;;;;:::i;:::-;;:::i;1909:198:4:-;;;;;;;;;;-1:-1:-1;1909:198:4;;;;;:::i;:::-;;:::i;1005:276:3:-;1123:4;-1:-1:-1;;;;;;1147:36:3;;-1:-1:-1;;;1147:36:3;1143:78;;;-1:-1:-1;1206:4:3;;1005:276;-1:-1:-1;1005:276:3:o;1143:78::-;1238:36;1262:11;1238:23;:36::i;:::-;1231:43;1005:276;-1:-1:-1;;1005:276:3:o;9770:98:1:-;9824:13;9856:5;9849:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9770:98;:::o;11771:200::-;11839:7;11863:16;11871:7;11863;:16::i;:::-;11858:64;;11888:34;;-1:-1:-1;;;11888:34:1;;;;;;;;;;;11858:64;-1:-1:-1;11940:24:1;;;;:15;:24;;;;;;-1:-1:-1;;;;;11940:24:1;;11771:200::o;11247:463::-;11319:13;11351:27;11370:7;11351:18;:27::i;:::-;11319:61;;11400:5;-1:-1:-1;;;;;11394:11:1;:2;-1:-1:-1;;;;;11394:11:1;;11390:48;;;11414:24;;-1:-1:-1;;;11414:24:1;;;;;;;;;;;11390:48;27726:10;-1:-1:-1;;;;;11453:28:1;;;11449:172;;11500:44;11517:5;27726:10;12407:162;:::i;11500:44::-;11495:126;;11571:35;;-1:-1:-1;;;11571:35:1;;;;;;;;;;;11495:126;11631:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;11631:29:1;-1:-1:-1;;;;;11631:29:1;;;;;;;;;11675:28;;11631:24;;11675:28;;;;;;;11309:401;11247:463;;:::o;1287:112:3:-;1073:7:4;1099:6;-1:-1:-1;;;;;1099:6:4;27726:10:1;1239:23:4;1231:68;;;;-1:-1:-1;;;1231:68:4;;;;;;;:::i;:::-;;;;;;;;;1362:17:3::1;:30:::0;;-1:-1:-1;;1362:30:3::1;-1:-1:-1::0;;;;;1362:30:3;;;::::1;::::0;;;::::1;::::0;;1287:112::o;12631:164:1:-;12760:28;12770:4;12776:2;12780:7;12760:9;:28::i;:::-;12631:164;;;:::o;1556:231:3:-;1720:15;;1661:16;;;;-1:-1:-1;;;;;;;;1720:15:3;;;;1773:5;;1739:30;;-1:-1:-1;;;;;1752:17:3;1739:10;:30;:::i;:::-;1738:40;;;;:::i;:::-;1712:68;;;;1556:231;;;;;:::o;4448:206::-;1073:7:4;1099:6;-1:-1:-1;;;;;1099:6:4;27726:10:1;1239:23:4;1231:68;;;;-1:-1:-1;;;1231:68:4;;;;;;;:::i;:::-;4506:12:3::1;1099:6:4::0;;4524:77:3::1;::::0;-1:-1:-1;;;;;1099:6:4;;;;4566:21:3::1;::::0;4506:12;4524:77;4506:12;4524:77;4566:21;1099:6:4;4524:77:3::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4505:96;;;4619:7;4611:36;;;::::0;-1:-1:-1;;;4611:36:3;;10255:2:6;4611:36:3::1;::::0;::::1;10237:21:6::0;10294:2;10274:18;;;10267:30;-1:-1:-1;;;10313:18:6;;;10306:46;10369:18;;4611:36:3::1;10053:340:6::0;4611:36:3::1;4495:159;4448:206::o:0;12861:179:1:-;12994:39;13011:4;13017:2;13021:7;12994:39;;;;;;;;;;;;:16;:39::i;1405:145:3:-;1073:7:4;1099:6;-1:-1:-1;;;;;1099:6:4;27726:10:1;1239:23:4;1231:68;;;;-1:-1:-1;;;1231:68:4;;;;;;;:::i;:::-;1511:15:3::1;:32:::0;;-1:-1:-1;;;;;1511:32:3;;::::1;-1:-1:-1::0;;;1511:32:3::1;-1:-1:-1::0;;;;;1511:32:3;;::::1;::::0;;;::::1;::::0;;1405:145::o;2320:104::-;1073:7:4;1099:6;-1:-1:-1;;;;;1099:6:4;27726:10:1;1239:23:4;1231:68;;;;-1:-1:-1;;;1231:68:4;;;;;;;:::i;:::-;2394:23:3::1;:13;2410:7:::0;;2394:23:::1;:::i;9566:142:1:-:0;9630:7;9672:27;9691:7;9672:18;:27::i;5538:231::-;5602:7;5643:5;5621:70;;5663:28;;-1:-1:-1;;;5663:28:1;;;;;;;;;;;5621:70;-1:-1:-1;;;;;;5708:25:1;;;;;:18;:25;;;;;;1015:13;5708:54;;5538:231::o;1659:101:4:-;1073:7;1099:6;-1:-1:-1;;;;;1099:6:4;27726:10:1;1239:23:4;1231:68;;;;-1:-1:-1;;;1231:68:4;;;;;;;:::i;:::-;1723:30:::1;1750:1;1723:18;:30::i;:::-;1659:101::o:0;2232:82:3:-;1073:7:4;1099:6;-1:-1:-1;;;;;1099:6:4;27726:10:1;1239:23:4;1231:68;;;;-1:-1:-1;;;1231:68:4;;;;;;;:::i;:::-;2295:12:3::1;::::0;;-1:-1:-1;;2279:28:3;::::1;2295:12;::::0;;::::1;2294:13;2279:28;::::0;;2232:82::o;3992:450::-;2943:12;;;;2935:48;;;;-1:-1:-1;;;2935:48:3;;10600:2:6;2935:48:3;;;10582:21:6;10639:2;10619:18;;;10612:30;-1:-1:-1;;;10658:18:6;;;10651:53;10721:18;;2935:48:3;10398:347:6;2935:48:3;4088:10:::1;4051:22;4076:23:::0;;;:11:::1;:23;::::0;;;;;;;;5934:18:1;:25;;;;;;;;4076:23:3;;5934:49:1;1015:13;5933:80;4168:22:3;;::::1;4160:57;;;::::0;-1:-1:-1;;;4160:57:3;;10952:2:6;4160:57:3::1;::::0;::::1;10934:21:6::0;10991:2;10971:18;;;10964:30;-1:-1:-1;;;11010:18:6;;;11003:52;11072:18;;4160:57:3::1;10750:346:6::0;4160:57:3::1;4227:20;4250:22;4267:5:::0;4250:14;:22:::1;:::i;:::-;4227:45;;4333:12;4317:13;4217:12:1::0;;991:1:3;4201:13:1;:28;-1:-1:-1;;4201:46:1;;3955:309;4317:13:3::1;:28;;;;:::i;:::-;4303:10;;:42;;4282:108;;;::::0;-1:-1:-1;;;4282:108:3;;11566:2:6;4282:108:3::1;::::0;::::1;11548:21:6::0;11605:2;11585:18;;;11578:30;-1:-1:-1;;;11624:18:6;;;11617:49;11683:18;;4282:108:3::1;11364:343:6::0;4282:108:3::1;4400:35;4410:10;4422:12;4400:9;:35::i;4782:536::-:0;4846:16;4874:23;4900:19;4910:8;4900:9;:19::i;:::-;4874:45;;4923:30;4970:15;4956:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4956:30:3;-1:-1:-1;4923:63:3;-1:-1:-1;5011:1:3;4990:18;5048:240;5073:15;5055;:33;:61;;;;;5106:10;;5092;:24;;5055:61;5048:240;;;5123:13;5139:19;5147:10;5139:7;:19::i;:::-;5123:35;;5177:8;-1:-1:-1;;;;;5168:17:3;:5;-1:-1:-1;;;;;5168:17:3;;5164:102;;;5226:10;5193:13;5207:15;5193:30;;;;;;;;:::i;:::-;;;;;;;;;;:43;5243:17;;;;:::i;:::-;;;;5164:102;5271:12;;;;:::i;:::-;;;;5118:170;5048:240;;;-1:-1:-1;5298:13:3;;4782:536;-1:-1:-1;;;;4782:536:3:o;3223:277::-;1073:7:4;1099:6;-1:-1:-1;;;;;1099:6:4;27726:10:1;1239:23:4;1231:68;;;;-1:-1:-1;;;1231:68:4;;;;;;;:::i;:::-;3363:1:3::1;3346:14;:18;:66;;;;;3402:10;;3385:13;4217:12:1::0;;991:1:3;4201:13:1;:28;-1:-1:-1;;4201:46:1;;3955:309;3385:13:3::1;3368:30;::::0;:14;:30:::1;:::i;:::-;:44;;3346:66;3325:128;;;::::0;-1:-1:-1;;;3325:128:3;;12186:2:6;3325:128:3::1;::::0;::::1;12168:21:6::0;12225:2;12205:18;;;12198:30;-1:-1:-1;;;12244:18:6;;;12237:45;12299:18;;3325:128:3::1;11984:339:6::0;3325:128:3::1;3464:29;3474:2;3478:14;3464:9;:29::i;:::-;3223:277:::0;;:::o;2034:84::-;1073:7:4;1099:6;-1:-1:-1;;;;;1099:6:4;27726:10:1;1239:23:4;1231:68;;;;-1:-1:-1;;;1231:68:4;;;;;;;:::i;:::-;2097:5:3::1;:14:::0;2034:84::o;9932:102:1:-;9988:13;10020:7;10013:14;;;;;:::i;3507:479:3:-;2943:12;;;;2935:48;;;;-1:-1:-1;;;2935:48:3;;10600:2:6;2935:48:3;;;10582:21:6;10639:2;10619:18;;;10612:30;-1:-1:-1;;;10658:18:6;;;10651:53;10721:18;;2935:48:3;10398:347:6;2935:48:3;3602:1:::1;3590:9;:13;3582:61;;;::::0;-1:-1:-1;;;3582:61:3;;12530:2:6;3582:61:3::1;::::0;::::1;12512:21:6::0;12569:2;12549:18;;;12542:30;12608:34;12588:18;;;12581:62;-1:-1:-1;;;12659:18:6;;;12652:33;12702:19;;3582:61:3::1;12328:399:6::0;3582:61:3::1;3674:18;;3661:9;:31;;3653:64;;;::::0;-1:-1:-1;;;3653:64:3;;12934:2:6;3653:64:3::1;::::0;::::1;12916:21:6::0;12973:2;12953:18;;;12946:30;-1:-1:-1;;;12992:18:6;;;12985:50;13052:18;;3653:64:3::1;12732:344:6::0;3653:64:3::1;3769:9;3761:5;;:17;;;;:::i;:::-;3748:9;:30;;3727:95;;;::::0;-1:-1:-1;;;3727:95:3;;13283:2:6;3727:95:3::1;::::0;::::1;13265:21:6::0;13322:2;13302:18;;;13295:30;-1:-1:-1;;;13341:18:6;;;13334:48;13399:18;;3727:95:3::1;13081:342:6::0;3727:95:3::1;3883:9;3867:13;4217:12:1::0;;991:1:3;4201:13:1;:28;-1:-1:-1;;4201:46:1;;3955:309;3867:13:3::1;:25;;;;:::i;:::-;3853:10;;:39;;3832:105;;;::::0;-1:-1:-1;;;3832:105:3;;11566:2:6;3832:105:3::1;::::0;::::1;11548:21:6::0;11605:2;11585:18;;;11578:30;-1:-1:-1;;;11624:18:6;;;11617:49;11683:18;;3832:105:3::1;11364:343:6::0;3832:105:3::1;3947:32;3957:10;3969:9;3947;:32::i;12038:303:1:-:0;-1:-1:-1;;;;;12136:31:1;;27726:10;12136:31;12132:61;;;12176:17;;-1:-1:-1;;;12176:17:1;;;;;;;;;;;12132:61;27726:10;12204:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;12204:49:1;;;;;;;;;;;;:60;;-1:-1:-1;;12204:60:1;;;;;;;;;;12279:55;;540:41:6;;;12204:49:1;;27726:10;12279:55;;513:18:6;12279:55:1;;;;;;;12038:303;;:::o;13106:385::-;13267:28;13277:4;13283:2;13287:7;13267:9;:28::i;:::-;-1:-1:-1;;;;;13309:14:1;;;:19;13305:180;;13347:56;13378:4;13384:2;13388:7;13397:5;13347:30;:56::i;:::-;13342:143;;13430:40;;-1:-1:-1;;;13430:40:1;;;;;;;;;;;13342:143;13106:385;;;;:::o;570:32:3:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2124:102::-;1073:7:4;1099:6;-1:-1:-1;;;;;1099:6:4;27726:10:1;1239:23:4;1231:68;;;;-1:-1:-1;;;1231:68:4;;;;;;;:::i;:::-;2191:18:3::1;:28:::0;2124:102::o;5420:389::-;5493:13;5526:16;5534:7;5526;:16::i;:::-;5518:76;;;;-1:-1:-1;;;5518:76:3;;13630:2:6;5518:76:3;;;13612:21:6;13669:2;13649:18;;;13642:30;13708:34;13688:18;;;13681:62;-1:-1:-1;;;13759:18:6;;;13752:45;13814:19;;5518:76:3;13428:411:6;5518:76:3;5605:28;5636:10;:8;:10::i;:::-;5605:41;;5694:1;5669:14;5663:28;:32;:139;;;;;;;;;;;;;;;;;5734:14;5750:18;:7;:16;:18::i;:::-;5770:13;5717:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5663:139;5656:146;5420:389;-1:-1:-1;;;5420:389:3:o;1904:124::-;1073:7:4;1099:6;-1:-1:-1;;;;;1099:6:4;27726:10:1;1239:23:4;1231:68;;;;-1:-1:-1;;;1231:68:4;;;;;;;:::i;:::-;1989:32:3;;::::1;::::0;:13:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;2548:347::-:0;1073:7:4;1099:6;-1:-1:-1;;;;;1099:6:4;27726:10:1;1239:23:4;1231:68;;;;-1:-1:-1;;;1231:68:4;;;;;;;:::i;:::-;2669:1:3::1;2647:12;:19;:23;2639:56;;;::::0;-1:-1:-1;;;2639:56:3;;15704:2:6;2639:56:3::1;::::0;::::1;15686:21:6::0;15743:2;15723:18;;;15716:30;-1:-1:-1;;;15762:18:6;;;15755:50;15822:18;;2639:56:3::1;15502:344:6::0;2639:56:3::1;2710:6;2705:184;2726:12;:19;2722:1;:23;2705:184;;;2801:1;-1:-1:-1::0;;;;;2774:29:3::1;:12;2787:1;2774:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;2774:29:3::1;;;2766:62;;;::::0;-1:-1:-1;;;2766:62:3;;16053:2:6;2766:62:3::1;::::0;::::1;16035:21:6::0;16092:2;16072:18;;;16065:30;-1:-1:-1;;;16111:18:6;;;16104:50;16171:18;;2766:62:3::1;15851:344:6::0;2766:62:3::1;2873:5;2842:11;:28;2854:12;2867:1;2854:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;2842:28:3::1;-1:-1:-1::0;;;;;2842:28:3::1;;;;;;;;;;;;:36;;;;2747:3;;;;:::i;:::-;;;2705:184;;4660:116:::0;-1:-1:-1;;;;;5934:25:1;;4720:7:3;5934:25:1;;;:18;:25;;1149:2;5934:25;;;;1015:13;5934:49;;5933:80;4746:23:3;5846:174:1;1909:198:4;1073:7;1099:6;-1:-1:-1;;;;;1099:6:4;27726:10:1;1239:23:4;1231:68;;;;-1:-1:-1;;;1231:68:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;1997:22:4;::::1;1989:73;;;::::0;-1:-1:-1;;;1989:73:4;;16402:2:6;1989:73:4::1;::::0;::::1;16384:21:6::0;16441:2;16421:18;;;16414:30;16480:34;16460:18;;;16453:62;-1:-1:-1;;;16531:18:6;;;16524:36;16577:19;;1989:73:4::1;16200:402:6::0;1989:73:4::1;2072:28;2091:8;2072:18;:28::i;4872:607:1:-:0;4957:4;-1:-1:-1;;;;;;;;;5252:25:1;;;;:101;;-1:-1:-1;;;;;;;;;;5328:25:1;;;5252:101;:177;;;-1:-1:-1;;;;;;;;5404:25:1;-1:-1:-1;;;5404:25:1;;4872:607::o;13737:268::-;13794:4;13848:7;991:1:3;13829:26:1;;:65;;;;;13881:13;;13871:7;:23;13829:65;:150;;;;-1:-1:-1;;13931:26:1;;;;:17;:26;;;;;;-1:-1:-1;;;13931:43:1;:48;;13737:268::o;7143:1105::-;7210:7;7244;;991:1:3;7290:23:1;7286:898;;7342:13;;7335:4;:20;7331:853;;;7379:14;7396:23;;;:17;:23;;;;;;-1:-1:-1;;;7483:23:1;;7479:687;;7994:111;8001:11;7994:111;;-1:-1:-1;;;8071:6:1;8053:25;;;;:17;:25;;;;;;7994:111;;7479:687;7357:827;7331:853;8210:31;;-1:-1:-1;;;8210:31:1;;;;;;;;;;;18857:2595;18967:27;18997;19016:7;18997:18;:27::i;:::-;18967:57;;19080:4;-1:-1:-1;;;;;19039:45:1;19055:19;-1:-1:-1;;;;;19039:45:1;;19035:86;;19093:28;;-1:-1:-1;;;19093:28:1;;;;;;;;;;;19035:86;19132:23;19158:24;;;:15;:24;;;;;;-1:-1:-1;;;;;19158:24:1;;;;19132:23;19219:27;;27726:10;19219:27;;:86;;-1:-1:-1;19262:43:1;19279:4;27726:10;12407:162;:::i;19262:43::-;19219:140;;;-1:-1:-1;;;;;;19321:38:1;;27726:10;19321:38;19219:140;19193:167;;19376:17;19371:66;;19402:35;;-1:-1:-1;;;19402:35:1;;;;;;;;;;;19371:66;19469:2;19447:62;;19486:23;;-1:-1:-1;;;19486:23:1;;;;;;;;;;;19447:62;19648:15;19630:39;19626:101;;19692:24;;;;:15;:24;;;;;19685:31;;-1:-1:-1;;;;;;19685:31:1;;;19626:101;-1:-1:-1;;;;;20087:24:1;;;;;;;:18;:24;;;;;;;;20085:26;;-1:-1:-1;;20085:26:1;;;20155:22;;;;;;;;20153:24;;-1:-1:-1;20153:24:1;;;20441:26;;;:17;:26;;;-1:-1:-1;;;20527:15:1;1654:3;20527:41;20486:83;;:126;;20441:171;;;20729:46;;20725:616;;20832:1;20822:11;;20800:19;20953:30;;;:17;:30;;;;;;20949:378;;21089:13;;21074:11;:28;21070:239;;21234:30;;;;:17;:30;;;;;:52;;;21070:239;20782:559;20725:616;21385:7;21381:2;-1:-1:-1;;;;;21366:27:1;21375:4;-1:-1:-1;;;;;21366:27:1;;;;;;;;;;;18957:2495;;;18857:2595;;;:::o;2261:187:4:-;2334:16;2353:6;;-1:-1:-1;;;;;2369:17:4;;;-1:-1:-1;;;;;;2369:17:4;;;;;;2401:40;;2353:6;;;;;;;2401:40;;2334:16;2401:40;2324:124;2261:187;:::o;14084:102:1:-;14152:27;14162:2;14166:8;14152:27;;;;;;;;;;;;:9;:27::i;25180:697::-;25358:88;;-1:-1:-1;;;25358:88:1;;25338:4;;-1:-1:-1;;;;;25358:45:1;;;;;:88;;27726:10;;25425:4;;25431:7;;25440:5;;25358:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25358:88:1;;;;;;;;-1:-1:-1;;25358:88:1;;;;;;;;;;;;:::i;:::-;;;25354:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25636:13:1;;25632:229;;25681:40;;-1:-1:-1;;;25681:40:1;;;;;;;;;;;25632:229;25821:6;25815:13;25806:6;25802:2;25798:15;25791:38;25354:517;-1:-1:-1;;;;;;25514:64:1;-1:-1:-1;;;25514:64:1;;-1:-1:-1;25354:517:1;25180:697;;;;;;:::o;2430:112:3:-;2490:13;2522;2515:20;;;;;:::i;328:703:5:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:5;;;;;;;;;;;;-1:-1:-1;;;627:10:5;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:5;;-1:-1:-1;773:2:5;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:5;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:5;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:5;;;;;;;;-1:-1:-1;972:11:5;981:2;972:11;;:::i;:::-;;;844:150;;14546:2194:1;14687:13;;14732:2;14710:58;;14749:19;;-1:-1:-1;;;14749:19:1;;;;;;;;;;;14710:58;14782:13;14778:44;;14804:18;;-1:-1:-1;;;14804:18:1;;;;;;;;;;;14778:44;-1:-1:-1;;;;;15358:22:1;;;;;;:18;:22;;;;1149:2;15358:22;;;:70;;15396:31;15384:44;;15358:70;;;15664:31;;;:17;:31;;;;;15755:15;1654:3;15755:41;15714:83;;-1:-1:-1;15832:13:1;;1907:3;15817:56;15714:160;15664:210;;:31;;15952:23;;;;15994:14;:19;15990:622;;16033:308;16063:38;;16088:12;;-1:-1:-1;;;;;16063:38:1;;;16080:1;;16063:38;;16080:1;;16063:38;16128:69;16167:1;16171:2;16175:14;;;;;;16191:5;16128:30;:69::i;:::-;16123:172;;16232:40;;-1:-1:-1;;;16232:40:1;;;;;;;;;;;16123:172;16336:3;16321:12;:18;16033:308;;16420:12;16403:13;;:29;16399:43;;16434:8;;;16399:43;15990:622;;;16481:117;16511:40;;16536:14;;;;;-1:-1:-1;;;;;16511:40:1;;;16528:1;;16511:40;;16528:1;;16511:40;16593:3;16578:12;:18;16481:117;;15990:622;-1:-1:-1;16625:13:1;:28;16673:60;16702:1;16706:2;16710:12;16724:8;16673:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:6;-1:-1:-1;;;;;;88:32:6;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:6;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:6;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:6:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:6;;1343:180;-1:-1:-1;1343:180:6:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:6;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:6:o;2355:292::-;2413:6;2466:2;2454:9;2445:7;2441:23;2437:32;2434:52;;;2482:1;2479;2472:12;2434:52;2521:9;2508:23;-1:-1:-1;;;;;2564:5:6;2560:38;2553:5;2550:49;2540:77;;2613:1;2610;2603:12;2652:328;2729:6;2737;2745;2798:2;2786:9;2777:7;2773:23;2769:32;2766:52;;;2814:1;2811;2804:12;2766:52;2837:29;2856:9;2837:29;:::i;:::-;2827:39;;2885:38;2919:2;2908:9;2904:18;2885:38;:::i;:::-;2875:48;;2970:2;2959:9;2955:18;2942:32;2932:42;;2652:328;;;;;:::o;2985:248::-;3053:6;3061;3114:2;3102:9;3093:7;3089:23;3085:32;3082:52;;;3130:1;3127;3120:12;3082:52;-1:-1:-1;;3153:23:6;;;3223:2;3208:18;;;3195:32;;-1:-1:-1;2985:248:6:o;3517:186::-;3576:6;3629:2;3617:9;3608:7;3604:23;3600:32;3597:52;;;3645:1;3642;3635:12;3597:52;3668:29;3687:9;3668:29;:::i;3708:592::-;3779:6;3787;3840:2;3828:9;3819:7;3815:23;3811:32;3808:52;;;3856:1;3853;3846:12;3808:52;3896:9;3883:23;3925:18;3966:2;3958:6;3955:14;3952:34;;;3982:1;3979;3972:12;3952:34;4020:6;4009:9;4005:22;3995:32;;4065:7;4058:4;4054:2;4050:13;4046:27;4036:55;;4087:1;4084;4077:12;4036:55;4127:2;4114:16;4153:2;4145:6;4142:14;4139:34;;;4169:1;4166;4159:12;4139:34;4214:7;4209:2;4200:6;4196:2;4192:15;4188:24;4185:37;4182:57;;;4235:1;4232;4225:12;4182:57;4266:2;4258:11;;;;;4288:6;;-1:-1:-1;3708:592:6;;-1:-1:-1;;;;3708:592:6:o;4305:632::-;4476:2;4528:21;;;4598:13;;4501:18;;;4620:22;;;4447:4;;4476:2;4699:15;;;;4673:2;4658:18;;;4447:4;4742:169;4756:6;4753:1;4750:13;4742:169;;;4817:13;;4805:26;;4886:15;;;;4851:12;;;;4778:1;4771:9;4742:169;;;-1:-1:-1;4928:3:6;;4305:632;-1:-1:-1;;;;;;4305:632:6:o;4942:347::-;5007:6;5015;5068:2;5056:9;5047:7;5043:23;5039:32;5036:52;;;5084:1;5081;5074:12;5036:52;5107:29;5126:9;5107:29;:::i;:::-;5097:39;;5186:2;5175:9;5171:18;5158:32;5233:5;5226:13;5219:21;5212:5;5209:32;5199:60;;5255:1;5252;5245:12;5199:60;5278:5;5268:15;;;4942:347;;;;;:::o;5294:127::-;5355:10;5350:3;5346:20;5343:1;5336:31;5386:4;5383:1;5376:15;5410:4;5407:1;5400:15;5426:275;5497:2;5491:9;5562:2;5543:13;;-1:-1:-1;;5539:27:6;5527:40;;5597:18;5582:34;;5618:22;;;5579:62;5576:88;;;5644:18;;:::i;:::-;5680:2;5673:22;5426:275;;-1:-1:-1;5426:275:6:o;5706:406::-;5770:5;5804:18;5796:6;5793:30;5790:56;;;5826:18;;:::i;:::-;5864:57;5909:2;5888:15;;-1:-1:-1;;5884:29:6;5915:4;5880:40;5864:57;:::i;:::-;5855:66;;5944:6;5937:5;5930:21;5984:3;5975:6;5970:3;5966:16;5963:25;5960:45;;;6001:1;5998;5991:12;5960:45;6050:6;6045:3;6038:4;6031:5;6027:16;6014:43;6104:1;6097:4;6088:6;6081:5;6077:18;6073:29;6066:40;5706:406;;;;;:::o;6117:666::-;6212:6;6220;6228;6236;6289:3;6277:9;6268:7;6264:23;6260:33;6257:53;;;6306:1;6303;6296:12;6257:53;6329:29;6348:9;6329:29;:::i;:::-;6319:39;;6377:38;6411:2;6400:9;6396:18;6377:38;:::i;:::-;6367:48;;6462:2;6451:9;6447:18;6434:32;6424:42;;6517:2;6506:9;6502:18;6489:32;6544:18;6536:6;6533:30;6530:50;;;6576:1;6573;6566:12;6530:50;6599:22;;6652:4;6644:13;;6640:27;-1:-1:-1;6630:55:6;;6681:1;6678;6671:12;6630:55;6704:73;6769:7;6764:2;6751:16;6746:2;6742;6738:11;6704:73;:::i;:::-;6694:83;;;6117:666;;;;;;;:::o;6788:450::-;6857:6;6910:2;6898:9;6889:7;6885:23;6881:32;6878:52;;;6926:1;6923;6916:12;6878:52;6966:9;6953:23;6999:18;6991:6;6988:30;6985:50;;;7031:1;7028;7021:12;6985:50;7054:22;;7107:4;7099:13;;7095:27;-1:-1:-1;7085:55:6;;7136:1;7133;7126:12;7085:55;7159:73;7224:7;7219:2;7206:16;7201:2;7197;7193:11;7159:73;:::i;7243:1022::-;7336:6;7344;7397:2;7385:9;7376:7;7372:23;7368:32;7365:52;;;7413:1;7410;7403:12;7365:52;7453:9;7440:23;7482:18;7523:2;7515:6;7512:14;7509:34;;;7539:1;7536;7529:12;7509:34;7577:6;7566:9;7562:22;7552:32;;7622:7;7615:4;7611:2;7607:13;7603:27;7593:55;;7644:1;7641;7634:12;7593:55;7680:2;7667:16;7702:4;7725:2;7721;7718:10;7715:36;;;7731:18;;:::i;:::-;7777:2;7774:1;7770:10;7760:20;;7800:28;7824:2;7820;7816:11;7800:28;:::i;:::-;7862:15;;;7932:11;;;7928:20;;;7893:12;;;;7960:19;;;7957:39;;;7992:1;7989;7982:12;7957:39;8016:11;;;;8036:148;8052:6;8047:3;8044:15;8036:148;;;8118:23;8137:3;8118:23;:::i;:::-;8106:36;;8069:12;;;;8162;;;;8036:148;;;8203:5;8240:18;;;;8227:32;;-1:-1:-1;;;;;;;7243:1022:6:o;8270:260::-;8338:6;8346;8399:2;8387:9;8378:7;8374:23;8370:32;8367:52;;;8415:1;8412;8405:12;8367:52;8438:29;8457:9;8438:29;:::i;:::-;8428:39;;8486:38;8520:2;8509:9;8505:18;8486:38;:::i;:::-;8476:48;;8270:260;;;;;:::o;8535:380::-;8614:1;8610:12;;;;8657;;;8678:61;;8732:4;8724:6;8720:17;8710:27;;8678:61;8785:2;8777:6;8774:14;8754:18;8751:38;8748:161;;;8831:10;8826:3;8822:20;8819:1;8812:31;8866:4;8863:1;8856:15;8894:4;8891:1;8884:15;8748:161;;8535:380;;;:::o;8920:356::-;9122:2;9104:21;;;9141:18;;;9134:30;9200:34;9195:2;9180:18;;9173:62;9267:2;9252:18;;8920:356::o;9281:127::-;9342:10;9337:3;9333:20;9330:1;9323:31;9373:4;9370:1;9363:15;9397:4;9394:1;9387:15;9413:168;9453:7;9519:1;9515;9511:6;9507:14;9504:1;9501:21;9496:1;9489:9;9482:17;9478:45;9475:71;;;9526:18;;:::i;:::-;-1:-1:-1;9566:9:6;;9413:168::o;9586:127::-;9647:10;9642:3;9638:20;9635:1;9628:31;9678:4;9675:1;9668:15;9702:4;9699:1;9692:15;9718:120;9758:1;9784;9774:35;;9789:18;;:::i;:::-;-1:-1:-1;9823:9:6;;9718:120::o;11101:125::-;11141:4;11169:1;11166;11163:8;11160:34;;;11174:18;;:::i;:::-;-1:-1:-1;11211:9:6;;11101:125::o;11231:128::-;11271:3;11302:1;11298:6;11295:1;11292:13;11289:39;;;11308:18;;:::i;:::-;-1:-1:-1;11344:9:6;;11231:128::o;11712:127::-;11773:10;11768:3;11764:20;11761:1;11754:31;11804:4;11801:1;11794:15;11828:4;11825:1;11818:15;11844:135;11883:3;-1:-1:-1;;11904:17:6;;11901:43;;;11924:18;;:::i;:::-;-1:-1:-1;11971:1:6;11960:13;;11844:135::o;13970:1527::-;14194:3;14232:6;14226:13;14258:4;14271:51;14315:6;14310:3;14305:2;14297:6;14293:15;14271:51;:::i;:::-;14385:13;;14344:16;;;;14407:55;14385:13;14344:16;14429:15;;;14407:55;:::i;:::-;14551:13;;14484:20;;;14524:1;;14611;14633:18;;;;14686;;;;14713:93;;14791:4;14781:8;14777:19;14765:31;;14713:93;14854:2;14844:8;14841:16;14821:18;14818:40;14815:167;;;-1:-1:-1;;;14881:33:6;;14937:4;14934:1;14927:15;14967:4;14888:3;14955:17;14815:167;14998:18;15025:110;;;;15149:1;15144:328;;;;14991:481;;15025:110;-1:-1:-1;;15060:24:6;;15046:39;;15105:20;;;;-1:-1:-1;15025:110:6;;15144:328;13917:1;13910:14;;;13954:4;13941:18;;15239:1;15253:169;15267:8;15264:1;15261:15;15253:169;;;15349:14;;15334:13;;;15327:37;15392:16;;;;15284:10;;15253:169;;;15257:3;;15453:8;15446:5;15442:20;15435:27;;14991:481;-1:-1:-1;15488:3:6;;13970:1527;-1:-1:-1;;;;;;;;;;;13970:1527:6:o;16607:489::-;-1:-1:-1;;;;;16876:15:6;;;16858:34;;16928:15;;16923:2;16908:18;;16901:43;16975:2;16960:18;;16953:34;;;17023:3;17018:2;17003:18;;16996:31;;;16801:4;;17044:46;;17070:19;;17062:6;17044:46;:::i;:::-;17036:54;16607:489;-1:-1:-1;;;;;;16607:489:6:o;17101:249::-;17170:6;17223:2;17211:9;17202:7;17198:23;17194:32;17191:52;;;17239:1;17236;17229:12;17191:52;17271:9;17265:16;17290:30;17314:5;17290:30;:::i;17355:112::-;17387:1;17413;17403:35;;17418:18;;:::i;:::-;-1:-1:-1;17452:9:6;;17355:112::o

Swarm Source

ipfs://f07863e1d034c3ff26b71ab4882ea274b68ed2f8f78b25fb11605c191353e92a
Loading