ETH Price: $3,449.46 (-0.90%)
Gas: 12 Gwei

Token

Merge Blobs (MEBLO)
 

Overview

Max Total Supply

3,332 MEBLO

Holders

1,666

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 MEBLO
0x6cadab5c73751c8979e1701329d412320f479bee
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
MergeBlob

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
pragma solidity 0.8.16;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @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() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 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`,
     * 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,
        bytes calldata data
    ) external;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom}
     * whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the
     * zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        /// @solidity memory-safe-assembly
        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}

contract MergeBlob is IERC721A { 

    address private _owner;
    modifier onlyOwner() { 
        require(_owner==msg.sender, "No!"); 
        _; 
    }

    uint256 public constant MAX_PER_WALLET = 10;
    uint256 public constant COST = 0 ether;
    uint256 public MAX_SUPPLY = 3333;
    uint256 public MAX_FREE_PER_WALLET = 2;
    mapping(uint256 => uint256) grown;


    constructor() {
        _owner = msg.sender;
    }

    function freeMint() external{
        uint256 amount = MAX_FREE_PER_WALLET;
        address _caller = _msgSenderERC721A();

        require(totalSupply() + amount <= MAX_SUPPLY, "SoldOut");
        require(amount + _numberMinted(msg.sender) <= MAX_FREE_PER_WALLET, "AccLimit");

        _mint(_caller, amount);
    }


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

    // The number of tokens burned.
    // uint256 private _burnCounter;


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


   

    /**
     * @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 - _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 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 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 'Merge Blobs';
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return 'MEBLO';
    }


    function render(uint256 _tokenId) internal view returns (string memory) {
		
        uint256 growth = grown[_tokenId];
		string memory size = _toString(100 + growth*10);

        return string.concat(
			'<svg xmlns="http://www.w3.org/2000/svg" id="x" preserveAspectRatio="xMinYMin meet" viewBox="0 0 1000 1000">',
			'<rect fill="#000000" width="1000" height="1000"/>',
			'<circle cx="500" cy="500" r="',size,'" fill="#FF0000"  />',
			'</svg>',
			''
        );
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "token does not exists");

        string memory svg = string(abi.encodePacked(render(_tokenId)));
        string memory json = Base64.encode(
            abi.encodePacked(
				'{"name": "Merge Blobs #',_toString(_tokenId),'"',
				',"description":"Merge some Blobs"',
                ',"image": "data:image/svg+xml;base64,', Base64.encode(bytes(svg)), '"}'
            )
        );

        return string(abi.encodePacked("data:application/json;base64,", json));
    }

    function contractURI() public view returns (string memory) {
        return 'ipfs://Qmbc2ZyoEnYDVZjXcxqN3PLQvghxgdRvEwybyFBqvGkY7E';
    }

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

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

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

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


        // 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 growth = balanceOf(to);
        grown[tokenId] += growth;

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

        //X if (_addressToUint256(to) == 0) revert TransferToZeroAddress();


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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052610d0560015560028055600060045534801561001f57600080fd5b50600080546001600160a01b03191633179055611259806100416000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c80636352211e116100ad578063b88d4fde11610071578063b88d4fde14610281578063bf8fbbd214610294578063c87b56dd1461029c578063e8a3d485146102af578063e985e9c5146102b757600080fd5b80636352211e1461021e57806370a082311461023157806395d89b411461024457806398710d1e14610265578063a22cb4651461026e57600080fd5b806318160ddd116100f457806318160ddd146101df57806323b872dd146101e757806332cb6b0c146101fa57806342842e0e146102035780635b70ea9f1461021657600080fd5b806301ffc9a71461013157806306fdde0314610159578063081812fc14610189578063095ea7b3146101b45780630f2cdd6c146101c9575b600080fd5b61014461013f366004610c3e565b6102ca565b60405190151581526020015b60405180910390f35b60408051808201909152600b81526a4d6572676520426c6f627360a81b60208201525b6040516101509190610c8c565b61019c610197366004610cbf565b61031c565b6040516001600160a01b039091168152602001610150565b6101c76101c2366004610cf4565b610362565b005b6101d1600a81565b604051908152602001610150565b6004546101d1565b6101c76101f5366004610d1e565b610420565b6101d160015481565b6101c7610211366004610d1e565b610430565b6101c761044b565b61019c61022c366004610cbf565b610515565b6101d161023f366004610d5a565b610520565b6040805180820190915260058152644d45424c4f60d81b602082015261017c565b6101d160025481565b6101c761027c366004610d75565b610569565b6101c761028f366004610dc7565b6105fe565b6101d1600081565b61017c6102aa366004610cbf565b61060f565b61017c6106f3565b6101446102c5366004610ea3565b610713565b60006301ffc9a760e01b6001600160e01b0319831614806102fb57506380ac58cd60e01b6001600160e01b03198316145b806103165750635b5e139f60e01b6001600160e01b03198316145b92915050565b6000610329826004541190565b610346576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061036d82610741565b9050806001600160a01b0316836001600160a01b03160361038d57600080fd5b336001600160a01b038216146103c4576103a78133610713565b6103c4576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61042b8383836107af565b505050565b61042b838383604051806020016040528060008152506105fe565b60025460015433908261045d60045490565b6104679190610eec565b11156104a45760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b60448201526064015b60405180910390fd5b6002543360009081526006602052604090819020546104ce911c67ffffffffffffffff1684610eec565b11156105075760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b604482015260640161049b565b610511818361097e565b5050565b600061031682610741565b600081600003610543576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b336001600160a01b038316036105925760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6106098484846107af565b50505050565b606061061c826004541190565b6106605760405162461bcd60e51b8152602060048201526015602482015274746f6b656e20646f6573206e6f742065786973747360581b604482015260640161049b565b600061066b83610a59565b60405160200161067b9190610eff565b604051602081830303815290604052905060006106c861069a85610a9c565b6106a384610aeb565b6040516020016106b4929190610f1b565b604051602081830303815290604052610aeb565b9050806040516020016106db9190610ff0565b60405160208183030381529060405292505050919050565b60606040518060600160405280603581526020016111ef60359139905090565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b6000816004548110156107965760008181526005602052604081205490600160e01b82169003610794575b8060000361078d57506000190160008181526005602052604090205461076c565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b60006107ba83610520565b9050806003600084815260200190815260200160002060008282546107df9190610eec565b90915550600090506107f083610741565b9050846001600160a01b0316816001600160a01b0316146108235760405162a1148160e81b815260040160405180910390fd5b6000838152600760205260408120546001600160a01b039081169190871633148061085357506108538733610713565b8061086657506001600160a01b03821633145b90508061088657604051632ce44b5f60e11b815260040160405180910390fd5b81156108a957600085815260076020526040902080546001600160a01b03191690555b6001600160a01b038781166000908152600660209081526040808320805460001901905592891682528282208054600101905587825260059052908120600160e11b4260a01b8917811790915584169003610934576001850160008181526005602052604081205490036109325760045481146109325760008181526005602052604090208490555b505b84866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450505050505050565b600454826000036109a157604051622e076360e81b815260040160405180910390fd5b816000036109c25760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526006602090815260408083208054680100000000000000018702019055838352600590915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610a0d5750600455505050565b600081815260036020526040812054606091610a89610a7983600a611035565b610a84906064610eec565b610a9c565b9050806040516020016106db9190611054565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610ad957600183039250600a81066030018353600a9004610abb565b50819003601f19909101908152919050565b60608151600003610b0a57505060408051602081019091526000815290565b60006040518060600160405280604081526020016111af6040913990506000600384516002610b399190610eec565b610b43919061118c565b610b4e906004611035565b67ffffffffffffffff811115610b6657610b66610db1565b6040519080825280601f01601f191660200182016040528015610b90576020820181803683370190505b509050600182016020820185865187015b80821015610bfc576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845350600183019250610ba1565b5050600386510660018114610c185760028114610c2b57610c33565b603d6001830353603d6002830353610c33565b603d60018303535b509195945050505050565b600060208284031215610c5057600080fd5b81356001600160e01b03198116811461078d57600080fd5b60005b83811015610c83578181015183820152602001610c6b565b50506000910152565b6020815260008251806020840152610cab816040850160208701610c68565b601f01601f19169190910160400192915050565b600060208284031215610cd157600080fd5b5035919050565b80356001600160a01b0381168114610cef57600080fd5b919050565b60008060408385031215610d0757600080fd5b610d1083610cd8565b946020939093013593505050565b600080600060608486031215610d3357600080fd5b610d3c84610cd8565b9250610d4a60208501610cd8565b9150604084013590509250925092565b600060208284031215610d6c57600080fd5b61078d82610cd8565b60008060408385031215610d8857600080fd5b610d9183610cd8565b915060208301358015158114610da657600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215610ddd57600080fd5b610de685610cd8565b9350610df460208601610cd8565b925060408501359150606085013567ffffffffffffffff80821115610e1857600080fd5b818701915087601f830112610e2c57600080fd5b813581811115610e3e57610e3e610db1565b604051601f8201601f19908116603f01168101908382118183101715610e6657610e66610db1565b816040528281528a6020848701011115610e7f57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215610eb657600080fd5b610ebf83610cd8565b9150610ecd60208401610cd8565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561031657610316610ed6565b60008251610f11818460208701610c68565b9190910192915050565b7f7b226e616d65223a20224d6572676520426c6f62732023000000000000000000815260008351610f53816017850160208801610c68565b601160f91b60179184019182018190527f2c226465736372697074696f6e223a224d6572676520736f6d6520426c6f6273601883015260388201527f2c22696d616765223a2022646174613a696d6167652f7376672b786d6c3b62616039820152641cd94d8d0b60da1b60598201528351610fd581605e840160208801610c68565b61227d60f01b605e9290910191820152606001949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161102881601d850160208701610c68565b91909101601d0192915050565b600081600019048311821515161561104f5761104f610ed6565b500290565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323081527f30302f737667222069643d22782220707265736572766541737065637452617460208201527f696f3d22784d696e594d696e206d656574222076696577426f783d223020302060408201526a189818181018981818111f60a91b60608201527f3c726563742066696c6c3d2223303030303030222077696474683d2231303030606b8201527011103432b4b3b43a1e911898181811179f60791b608b8201527f3c636972636c652063783d22353030222063793d223530302220723d22000000609c820152600082516111528160b9850160208701610c68565b7311103334b6361e9111a32318181818111010179f60611b60b9939091019283015250651e17b9bb339f60d11b60cd82015260d301919050565b6000826111a957634e487b7160e01b600052601260045260246000fd5b50049056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f697066733a2f2f516d6263325a796f456e5944565a6a586378714e33504c517667687867645276457779627946427176476b593745a2646970667358221220ecf36ef97c88b3a00c004c48f91bb42db7a6b89322a6f67463e4712013fc1cfc64736f6c63430008100033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c80636352211e116100ad578063b88d4fde11610071578063b88d4fde14610281578063bf8fbbd214610294578063c87b56dd1461029c578063e8a3d485146102af578063e985e9c5146102b757600080fd5b80636352211e1461021e57806370a082311461023157806395d89b411461024457806398710d1e14610265578063a22cb4651461026e57600080fd5b806318160ddd116100f457806318160ddd146101df57806323b872dd146101e757806332cb6b0c146101fa57806342842e0e146102035780635b70ea9f1461021657600080fd5b806301ffc9a71461013157806306fdde0314610159578063081812fc14610189578063095ea7b3146101b45780630f2cdd6c146101c9575b600080fd5b61014461013f366004610c3e565b6102ca565b60405190151581526020015b60405180910390f35b60408051808201909152600b81526a4d6572676520426c6f627360a81b60208201525b6040516101509190610c8c565b61019c610197366004610cbf565b61031c565b6040516001600160a01b039091168152602001610150565b6101c76101c2366004610cf4565b610362565b005b6101d1600a81565b604051908152602001610150565b6004546101d1565b6101c76101f5366004610d1e565b610420565b6101d160015481565b6101c7610211366004610d1e565b610430565b6101c761044b565b61019c61022c366004610cbf565b610515565b6101d161023f366004610d5a565b610520565b6040805180820190915260058152644d45424c4f60d81b602082015261017c565b6101d160025481565b6101c761027c366004610d75565b610569565b6101c761028f366004610dc7565b6105fe565b6101d1600081565b61017c6102aa366004610cbf565b61060f565b61017c6106f3565b6101446102c5366004610ea3565b610713565b60006301ffc9a760e01b6001600160e01b0319831614806102fb57506380ac58cd60e01b6001600160e01b03198316145b806103165750635b5e139f60e01b6001600160e01b03198316145b92915050565b6000610329826004541190565b610346576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061036d82610741565b9050806001600160a01b0316836001600160a01b03160361038d57600080fd5b336001600160a01b038216146103c4576103a78133610713565b6103c4576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61042b8383836107af565b505050565b61042b838383604051806020016040528060008152506105fe565b60025460015433908261045d60045490565b6104679190610eec565b11156104a45760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b60448201526064015b60405180910390fd5b6002543360009081526006602052604090819020546104ce911c67ffffffffffffffff1684610eec565b11156105075760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b604482015260640161049b565b610511818361097e565b5050565b600061031682610741565b600081600003610543576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b336001600160a01b038316036105925760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6106098484846107af565b50505050565b606061061c826004541190565b6106605760405162461bcd60e51b8152602060048201526015602482015274746f6b656e20646f6573206e6f742065786973747360581b604482015260640161049b565b600061066b83610a59565b60405160200161067b9190610eff565b604051602081830303815290604052905060006106c861069a85610a9c565b6106a384610aeb565b6040516020016106b4929190610f1b565b604051602081830303815290604052610aeb565b9050806040516020016106db9190610ff0565b60405160208183030381529060405292505050919050565b60606040518060600160405280603581526020016111ef60359139905090565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b6000816004548110156107965760008181526005602052604081205490600160e01b82169003610794575b8060000361078d57506000190160008181526005602052604090205461076c565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b60006107ba83610520565b9050806003600084815260200190815260200160002060008282546107df9190610eec565b90915550600090506107f083610741565b9050846001600160a01b0316816001600160a01b0316146108235760405162a1148160e81b815260040160405180910390fd5b6000838152600760205260408120546001600160a01b039081169190871633148061085357506108538733610713565b8061086657506001600160a01b03821633145b90508061088657604051632ce44b5f60e11b815260040160405180910390fd5b81156108a957600085815260076020526040902080546001600160a01b03191690555b6001600160a01b038781166000908152600660209081526040808320805460001901905592891682528282208054600101905587825260059052908120600160e11b4260a01b8917811790915584169003610934576001850160008181526005602052604081205490036109325760045481146109325760008181526005602052604090208490555b505b84866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450505050505050565b600454826000036109a157604051622e076360e81b815260040160405180910390fd5b816000036109c25760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526006602090815260408083208054680100000000000000018702019055838352600590915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610a0d5750600455505050565b600081815260036020526040812054606091610a89610a7983600a611035565b610a84906064610eec565b610a9c565b9050806040516020016106db9190611054565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610ad957600183039250600a81066030018353600a9004610abb565b50819003601f19909101908152919050565b60608151600003610b0a57505060408051602081019091526000815290565b60006040518060600160405280604081526020016111af6040913990506000600384516002610b399190610eec565b610b43919061118c565b610b4e906004611035565b67ffffffffffffffff811115610b6657610b66610db1565b6040519080825280601f01601f191660200182016040528015610b90576020820181803683370190505b509050600182016020820185865187015b80821015610bfc576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845350600183019250610ba1565b5050600386510660018114610c185760028114610c2b57610c33565b603d6001830353603d6002830353610c33565b603d60018303535b509195945050505050565b600060208284031215610c5057600080fd5b81356001600160e01b03198116811461078d57600080fd5b60005b83811015610c83578181015183820152602001610c6b565b50506000910152565b6020815260008251806020840152610cab816040850160208701610c68565b601f01601f19169190910160400192915050565b600060208284031215610cd157600080fd5b5035919050565b80356001600160a01b0381168114610cef57600080fd5b919050565b60008060408385031215610d0757600080fd5b610d1083610cd8565b946020939093013593505050565b600080600060608486031215610d3357600080fd5b610d3c84610cd8565b9250610d4a60208501610cd8565b9150604084013590509250925092565b600060208284031215610d6c57600080fd5b61078d82610cd8565b60008060408385031215610d8857600080fd5b610d9183610cd8565b915060208301358015158114610da657600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215610ddd57600080fd5b610de685610cd8565b9350610df460208601610cd8565b925060408501359150606085013567ffffffffffffffff80821115610e1857600080fd5b818701915087601f830112610e2c57600080fd5b813581811115610e3e57610e3e610db1565b604051601f8201601f19908116603f01168101908382118183101715610e6657610e66610db1565b816040528281528a6020848701011115610e7f57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215610eb657600080fd5b610ebf83610cd8565b9150610ecd60208401610cd8565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561031657610316610ed6565b60008251610f11818460208701610c68565b9190910192915050565b7f7b226e616d65223a20224d6572676520426c6f62732023000000000000000000815260008351610f53816017850160208801610c68565b601160f91b60179184019182018190527f2c226465736372697074696f6e223a224d6572676520736f6d6520426c6f6273601883015260388201527f2c22696d616765223a2022646174613a696d6167652f7376672b786d6c3b62616039820152641cd94d8d0b60da1b60598201528351610fd581605e840160208801610c68565b61227d60f01b605e9290910191820152606001949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161102881601d850160208701610c68565b91909101601d0192915050565b600081600019048311821515161561104f5761104f610ed6565b500290565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323081527f30302f737667222069643d22782220707265736572766541737065637452617460208201527f696f3d22784d696e594d696e206d656574222076696577426f783d223020302060408201526a189818181018981818111f60a91b60608201527f3c726563742066696c6c3d2223303030303030222077696474683d2231303030606b8201527011103432b4b3b43a1e911898181811179f60791b608b8201527f3c636972636c652063783d22353030222063793d223530302220723d22000000609c820152600082516111528160b9850160208701610c68565b7311103334b6361e9111a32318181818111010179f60611b60b9939091019283015250651e17b9bb339f60d11b60cd82015260d301919050565b6000826111a957634e487b7160e01b600052601260045260246000fd5b50049056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f697066733a2f2f516d6263325a796f456e5944565a6a586378714e33504c517667687867645276457779627946427176476b593745a2646970667358221220ecf36ef97c88b3a00c004c48f91bb42db7a6b89322a6f67463e4712013fc1cfc64736f6c63430008100033

Deployed Bytecode Sourcemap

12405:21813:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16817:615;;;;;;:::i;:::-;;:::i;:::-;;;470:14:1;;463:22;445:41;;433:2;418:18;16817:615:0;;;;;;;;21570:108;21650:20;;;;;;;;;;;;-1:-1:-1;;;21650:20:0;;;;21570:108;;;;;;;:::i;24181:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1502:32:1;;;1484:51;;1472:2;1457:18;24181:204:0;1338:203:1;23664:451:0;;;;;;:::i;:::-;;:::i;:::-;;12572:43;;12613:2;12572:43;;;;;2129:25:1;;;2117:2;2102:18;12572:43:0;1983:177:1;16060:300:0;16310:13;;16060:300;;25067:190;;;;;;:::i;:::-;;:::i;12667:32::-;;;;;;25328:205;;;;;;:::i;:::-;;:::i;12855:324::-;;;:::i;21359:144::-;;;;;;:::i;:::-;;:::i;17496:234::-;;;;;;:::i;:::-;;:::i;21747:104::-;21829:14;;;;;;;;;;;;-1:-1:-1;;;21829:14:0;;;;21747:104;;12706:38;;;;;;24457:308;;;;;;:::i;:::-;;:::i;25604:227::-;;;;;;:::i;:::-;;:::i;12622:38::-;;12653:7;12622:38;;22351:641;;;;;;:::i;:::-;;:::i;23000:140::-;;;:::i;24836:164::-;;;;;;:::i;:::-;;:::i;16817:615::-;16902:4;-1:-1:-1;;;;;;;;;17202:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;17279:25:0;;;17202:102;:179;;;-1:-1:-1;;;;;;;;;;17356:25:0;;;17202:179;17182:199;16817:615;-1:-1:-1;;16817:615:0:o;24181:204::-;24249:7;24274:16;24282:7;26233:13;;-1:-1:-1;26223:23:0;26086:168;24274:16;24269:64;;24299:34;;-1:-1:-1;;;24299:34:0;;;;;;;;;;;24269:64;-1:-1:-1;24353:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24353:24:0;;24181:204::o;23664:451::-;23737:13;23769:27;23788:7;23769:18;:27::i;:::-;23737:61;;23819:5;-1:-1:-1;;;;;23813:11:0;:2;-1:-1:-1;;;;;23813:11:0;;23809:25;;23826:8;;;23809:25;32209:10;-1:-1:-1;;;;;23851:28:0;;;23847:175;;23899:44;23916:5;32209:10;24836:164;:::i;23899:44::-;23894:128;;23971:35;;-1:-1:-1;;;23971:35:0;;;;;;;;;;;23894:128;24034:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;24034:29:0;-1:-1:-1;;;;;24034:29:0;;;;;;;;;24079:28;;24034:24;;24079:28;;;;;;;23726:389;23664:451;;:::o;25067:190::-;25221:28;25231:4;25237:2;25241:7;25221:9;:28::i;:::-;25067:190;;;:::o;25328:205::-;25486:39;25503:4;25509:2;25513:7;25486:39;;;;;;;;;;;;:16;:39::i;12855:324::-;12911:19;;13025:10;;32209;;12911:19;12999:13;16310;;;16060:300;12999:13;:22;;;;:::i;:::-;:36;;12991:56;;;;-1:-1:-1;;;12991:56:0;;5045:2:1;12991:56:0;;;5027:21:1;5084:1;5064:18;;;5057:29;-1:-1:-1;;;5102:18:1;;;5095:37;5149:18;;12991:56:0;;;;;;;;;13104:19;;13089:10;17873:7;17901:25;;;:18;:25;;13429:2;17901:25;;;;;13066:34;;17901:49;13292:13;17900:80;13066:6;:34;:::i;:::-;:57;;13058:78;;;;-1:-1:-1;;;13058:78:0;;5380:2:1;13058:78:0;;;5362:21:1;5419:1;5399:18;;;5392:29;-1:-1:-1;;;5437:18:1;;;5430:38;5485:18;;13058:78:0;5178:331:1;13058:78:0;13149:22;13155:7;13164:6;13149:5;:22::i;:::-;12883:296;;12855:324::o;21359:144::-;21423:7;21466:27;21485:7;21466:18;:27::i;17496:234::-;17560:7;17602:5;17612:1;17584:29;17580:70;;17622:28;;-1:-1:-1;;;17622:28:0;;;;;;;;;;;17580:70;-1:-1:-1;;;;;;17668:25:0;;;;;:18;:25;;;;;;13292:13;17668:54;;17496:234::o;24457:308::-;32209:10;-1:-1:-1;;;;;24556:31:0;;;24552:61;;24596:17;;-1:-1:-1;;;24596:17:0;;;;;;;;;;;24552:61;32209:10;24626:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;24626:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;24626:60:0;;;;;;;;;;24702:55;;445:41:1;;;24626:49:0;;32209:10;24702:55;;418:18:1;24702:55:0;;;;;;;24457:308;;:::o;25604:227::-;25795:28;25805:4;25811:2;25815:7;25795:9;:28::i;:::-;25604:227;;;;:::o;22351:641::-;22453:13;22492:17;22500:8;26233:13;;-1:-1:-1;26223:23:0;26086:168;22492:17;22484:51;;;;-1:-1:-1;;;22484:51:0;;5716:2:1;22484:51:0;;;5698:21:1;5755:2;5735:18;;;5728:30;-1:-1:-1;;;5774:18:1;;;5767:51;5835:18;;22484:51:0;5514:345:1;22484:51:0;22548:17;22592:16;22599:8;22592:6;:16::i;:::-;22575:34;;;;;;;;:::i;:::-;;;;;;;;;;;;;22548:62;;22621:18;22642:259;22719:19;22729:8;22719:9;:19::i;:::-;22844:25;22864:3;22844:13;:25::i;:::-;22670:220;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22642:13;:259::i;:::-;22621:280;;22978:4;22928:55;;;;;;;;:::i;:::-;;;;;;;;;;;;;22914:70;;;;22351:641;;;:::o;23000:140::-;23044:13;23070:62;;;;;;;;;;;;;;;;;;;23000:140;:::o;24836:164::-;-1:-1:-1;;;;;24957:25:0;;;24933:4;24957:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24836:164::o;18874:1129::-;18941:7;18976;19078:13;;19071:4;:20;19067:869;;;19116:14;19133:23;;;:17;:23;;;;;;;-1:-1:-1;;;19222:23:0;;:28;;19218:699;;19741:113;19748:6;19758:1;19748:11;19741:113;;-1:-1:-1;;;19819:6:0;19801:25;;;;:17;:25;;;;;;19741:113;;;19887:6;18874:1129;-1:-1:-1;;;18874:1129:0:o;19218:699::-;19093:843;19067:869;19964:31;;-1:-1:-1;;;19964:31:0;;;;;;;;;;;28370:2714;28507:14;28524:13;28534:2;28524:9;:13::i;:::-;28507:30;;28566:6;28548:5;:14;28554:7;28548:14;;;;;;;;;;;;:24;;;;;;;:::i;:::-;;;;-1:-1:-1;28585:27:0;;-1:-1:-1;28615:27:0;28634:7;28615:18;:27::i;:::-;28585:57;;28700:4;-1:-1:-1;;;;;28659:45:0;28675:19;-1:-1:-1;;;;;28659:45:0;;28655:86;;28713:28;;-1:-1:-1;;;28713:28:0;;;;;;;;;;;28655:86;28754:23;28780:24;;;:15;:24;;;;;;-1:-1:-1;;;;;28780:24:0;;;;28754:23;28843:27;;32209:10;28843:27;;:91;;-1:-1:-1;28891:43:0;28908:4;32209:10;24836:164;:::i;28891:43::-;28843:150;;;-1:-1:-1;;;;;;28955:38:0;;32209:10;28955:38;28843:150;28817:177;;29012:17;29007:66;;29038:35;;-1:-1:-1;;;29038:35:0;;;;;;;;;;;29007:66;29242:15;29224:39;29220:103;;29287:24;;;;:15;:24;;;;;29280:31;;-1:-1:-1;;;;;;29280:31:0;;;29220:103;-1:-1:-1;;;;;29690:24:0;;;;;;;:18;:24;;;;;;;;29688:26;;-1:-1:-1;;29688:26:0;;;29759:22;;;;;;;;29757:24;;-1:-1:-1;29757:24:0;;;30052:26;;;:17;:26;;;;;-1:-1:-1;;;30140:15:0;13946:3;30140:41;30098:84;;:128;;30052:174;;;30346:46;;:51;;30342:626;;30450:1;30440:11;;30418:19;30573:30;;;:17;:30;;;;;;:35;;30569:384;;30711:13;;30696:11;:28;30692:242;;30858:30;;;;:17;:30;;;;;:52;;;30692:242;30399:569;30342:626;31015:7;31011:2;-1:-1:-1;;;;;30996:27:0;31005:4;-1:-1:-1;;;;;30996:27:0;;;;;;;;;;;28494:2590;;;;28370:2714;;;:::o;26513:1594::-;26601:13;;26647:2;26654:1;26629:26;26625:58;;26664:19;;-1:-1:-1;;;26664:19:0;;;;;;;;;;;26625:58;26698:8;26710:1;26698:13;26694:44;;26720:18;;-1:-1:-1;;;26720:18:0;;;;;;;;;;;26694:44;-1:-1:-1;;;;;27215:22:0;;;;;;:18;:22;;;;13429:2;27215:22;;;:70;;27253:31;27241:44;;27215:70;;;27528:31;;;:17;:31;;;;;27621:15;13946:3;27621:41;27579:84;;-1:-1:-1;27699:13:0;;14205:3;27684:56;27579:162;27528:213;;:31;27822:23;;;27862:111;27889:40;;27914:14;;;;;-1:-1:-1;;;;;27889:40:0;;;27906:1;;27889:40;;27906:1;;27889:40;27968:3;27953:12;:18;27862:111;;-1:-1:-1;27989:13:0;:28;25067:190;;;:::o;21861:482::-;21948:14;21965:15;;;:5;:15;;;;;;21918:13;;22006:26;22022:9;21965:15;22029:2;22022:9;:::i;:::-;22016:15;;:3;:15;:::i;:::-;22006:9;:26::i;:::-;21985:47;;22275:4;22052:283;;;;;;;;:::i;32333:1882::-;32804:4;32798:11;;32811:3;32794:21;;32885:17;;;;33557:11;;;33434:5;33691:2;33705;33695:13;;33687:22;33557:11;33674:36;33747:2;33737:13;;33331:661;33763:4;33331:661;;;33931:1;33926:3;33922:11;33915:18;;33975:2;33969:4;33965:13;33961:2;33957:22;33952:3;33944:36;33848:2;33838:13;;33331:661;;;-1:-1:-1;34015:13:0;;;-1:-1:-1;;34124:12:0;;;34178:19;;;34124:12;32333:1882;-1:-1:-1;32333:1882:0:o;9301:3097::-;9359:13;9596:4;:11;9611:1;9596:16;9592:31;;-1:-1:-1;;9614:9:0;;;;;;;;;-1:-1:-1;9614:9:0;;;9301:3097::o;9592:31::-;9676:19;9698:6;;;;;;;;;;;;;;;;;9676:28;;10115:20;10174:1;10155:4;:11;10169:1;10155:15;;;;:::i;:::-;10154:21;;;;:::i;:::-;10149:27;;:1;:27;:::i;:::-;10138:39;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10138:39:0;;10115:62;;10357:1;10350:5;10346:13;10461:2;10453:6;10449:15;10572:4;10624;10618:11;10612:4;10608:22;10534:1432;10658:6;10649:7;10646:19;10534:1432;;;10764:1;10755:7;10751:15;10740:26;;10803:7;10797:14;11456:4;11448:5;11444:2;11440:14;11436:25;11426:8;11422:40;11416:47;11405:9;11397:67;11510:1;11499:9;11495:17;11482:30;;11602:4;11594:5;11590:2;11586:14;11582:25;11572:8;11568:40;11562:47;11551:9;11543:67;11656:1;11645:9;11641:17;11628:30;;11747:4;11739:5;11736:1;11732:13;11728:24;11718:8;11714:39;11708:46;11697:9;11689:66;11801:1;11790:9;11786:17;11773:30;;11884:4;11877:5;11873:16;11863:8;11859:31;11853:38;11842:9;11834:58;;11938:1;11927:9;11923:17;11910:30;;10534:1432;;;10538:107;;12128:1;12121:4;12115:11;12111:19;12149:1;12144:123;;;;12286:1;12281:73;;;;12104:250;;12144:123;12197:4;12193:1;12182:9;12178:17;12170:32;12247:4;12243:1;12232:9;12228:17;12220:32;12144:123;;12281:73;12334:4;12330:1;12319:9;12315:17;12307:32;12104:250;-1:-1:-1;12384:6:0;;9301:3097;-1:-1:-1;;;;;9301:3097:0:o;14:286:1:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:1;;209:43;;199:71;;266:1;263;256:12;497:250;582:1;592:113;606:6;603:1;600:13;592:113;;;682:11;;;676:18;663:11;;;656:39;628:2;621:10;592:113;;;-1:-1:-1;;739:1:1;721:16;;714:27;497:250::o;752:396::-;901:2;890:9;883:21;864:4;933:6;927:13;976:6;971:2;960:9;956:18;949:34;992:79;1064:6;1059:2;1048:9;1044:18;1039:2;1031:6;1027:15;992:79;:::i;:::-;1132:2;1111:15;-1:-1:-1;;1107:29:1;1092:45;;;;1139:2;1088:54;;752:396;-1:-1:-1;;752:396:1:o;1153:180::-;1212:6;1265:2;1253:9;1244:7;1240:23;1236:32;1233:52;;;1281:1;1278;1271:12;1233:52;-1:-1:-1;1304:23:1;;1153:180;-1:-1:-1;1153:180:1:o;1546:173::-;1614:20;;-1:-1:-1;;;;;1663:31:1;;1653:42;;1643:70;;1709:1;1706;1699:12;1643:70;1546:173;;;:::o;1724:254::-;1792:6;1800;1853:2;1841:9;1832:7;1828:23;1824:32;1821:52;;;1869:1;1866;1859:12;1821:52;1892:29;1911:9;1892:29;:::i;:::-;1882:39;1968:2;1953:18;;;;1940:32;;-1:-1:-1;;;1724:254:1:o;2165:328::-;2242:6;2250;2258;2311:2;2299:9;2290:7;2286:23;2282:32;2279:52;;;2327:1;2324;2317:12;2279:52;2350:29;2369:9;2350:29;:::i;:::-;2340:39;;2398:38;2432:2;2421:9;2417:18;2398:38;:::i;:::-;2388:48;;2483:2;2472:9;2468:18;2455:32;2445:42;;2165:328;;;;;:::o;2498:186::-;2557:6;2610:2;2598:9;2589:7;2585:23;2581:32;2578:52;;;2626:1;2623;2616:12;2578:52;2649:29;2668:9;2649:29;:::i;2689:347::-;2754:6;2762;2815:2;2803:9;2794:7;2790:23;2786:32;2783:52;;;2831:1;2828;2821:12;2783:52;2854:29;2873:9;2854:29;:::i;:::-;2844:39;;2933:2;2922:9;2918:18;2905:32;2980:5;2973:13;2966:21;2959:5;2956:32;2946:60;;3002:1;2999;2992:12;2946:60;3025:5;3015:15;;;2689:347;;;;;:::o;3041:127::-;3102:10;3097:3;3093:20;3090:1;3083:31;3133:4;3130:1;3123:15;3157:4;3154:1;3147:15;3173:1138;3268:6;3276;3284;3292;3345:3;3333:9;3324:7;3320:23;3316:33;3313:53;;;3362:1;3359;3352:12;3313:53;3385:29;3404:9;3385:29;:::i;:::-;3375:39;;3433:38;3467:2;3456:9;3452:18;3433:38;:::i;:::-;3423:48;;3518:2;3507:9;3503:18;3490:32;3480:42;;3573:2;3562:9;3558:18;3545:32;3596:18;3637:2;3629:6;3626:14;3623:34;;;3653:1;3650;3643:12;3623:34;3691:6;3680:9;3676:22;3666:32;;3736:7;3729:4;3725:2;3721:13;3717:27;3707:55;;3758:1;3755;3748:12;3707:55;3794:2;3781:16;3816:2;3812;3809:10;3806:36;;;3822:18;;:::i;:::-;3897:2;3891:9;3865:2;3951:13;;-1:-1:-1;;3947:22:1;;;3971:2;3943:31;3939:40;3927:53;;;3995:18;;;4015:22;;;3992:46;3989:72;;;4041:18;;:::i;:::-;4081:10;4077:2;4070:22;4116:2;4108:6;4101:18;4156:7;4151:2;4146;4142;4138:11;4134:20;4131:33;4128:53;;;4177:1;4174;4167:12;4128:53;4233:2;4228;4224;4220:11;4215:2;4207:6;4203:15;4190:46;4278:1;4273:2;4268;4260:6;4256:15;4252:24;4245:35;4299:6;4289:16;;;;;;;3173:1138;;;;;;;:::o;4316:260::-;4384:6;4392;4445:2;4433:9;4424:7;4420:23;4416:32;4413:52;;;4461:1;4458;4451:12;4413:52;4484:29;4503:9;4484:29;:::i;:::-;4474:39;;4532:38;4566:2;4555:9;4551:18;4532:38;:::i;:::-;4522:48;;4316:260;;;;;:::o;4581:127::-;4642:10;4637:3;4633:20;4630:1;4623:31;4673:4;4670:1;4663:15;4697:4;4694:1;4687:15;4713:125;4778:9;;;4799:10;;;4796:36;;;4812:18;;:::i;5864:289::-;5995:3;6033:6;6027:13;6049:66;6108:6;6103:3;6096:4;6088:6;6084:17;6049:66;:::i;:::-;6131:16;;;;;5864:289;-1:-1:-1;;5864:289:1:o;6158:1496::-;6872:66;6867:3;6860:79;6842:3;6968:6;6962:13;6984:75;7052:6;7047:2;7042:3;7038:12;7031:4;7023:6;7019:17;6984:75;:::i;:::-;-1:-1:-1;;;7149:2:1;7078:16;;;7141:11;;;7134:23;;;7186:66;7181:2;7173:11;;7166:87;7277:2;7269:11;;7262:23;7314:66;7309:2;7301:11;;7294:87;-1:-1:-1;;;7405:2:1;7397:11;;7390:28;7443:13;;7465:76;7443:13;7527:2;7519:11;;7512:4;7500:17;;7465:76;:::i;:::-;-1:-1:-1;;;7601:2:1;7560:17;;;;7593:11;;;7586:35;7645:2;7637:11;;6158:1496;-1:-1:-1;;;;6158:1496:1:o;7659:461::-;7921:31;7916:3;7909:44;7891:3;7982:6;7976:13;7998:75;8066:6;8061:2;8056:3;8052:12;8045:4;8037:6;8033:17;7998:75;:::i;:::-;8093:16;;;;8111:2;8089:25;;7659:461;-1:-1:-1;;7659:461:1:o;8125:168::-;8165:7;8231:1;8227;8223:6;8219:14;8216:1;8213:21;8208:1;8201:9;8194:17;8190:45;8187:71;;;8238:18;;:::i;:::-;-1:-1:-1;8278:9:1;;8125:168::o;8298:1645::-;9034:66;9029:3;9022:79;9131:66;9126:2;9121:3;9117:12;9110:88;9228:66;9223:2;9218:3;9214:12;9207:88;9334:24;9329:3;9325:34;9320:2;9315:3;9311:12;9304:56;9391:66;9385:3;9380;9376:13;9369:89;9498:36;9493:3;9489:46;9483:3;9478;9474:13;9467:69;9567:66;9561:3;9556;9552:13;9545:89;9004:3;9663:6;9657:13;9679:74;9746:6;9740:3;9735;9731:13;9726:2;9718:6;9714:15;9679:74;:::i;:::-;-1:-1:-1;;;9812:3:1;9772:16;;;;9804:12;;;9797:73;-1:-1:-1;;;;9894:3:1;9886:12;;9879:30;9933:3;9925:12;;8298:1645;-1:-1:-1;8298:1645:1:o;9948:217::-;9988:1;10014;10004:132;;10058:10;10053:3;10049:20;10046:1;10039:31;10093:4;10090:1;10083:15;10121:4;10118:1;10111:15;10004:132;-1:-1:-1;10150:9:1;;9948:217::o

Swarm Source

ipfs://ecf36ef97c88b3a00c004c48f91bb42db7a6b89322a6f67463e4712013fc1cfc
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.