ETH Price: $3,070.82 (-7.97%)
 

Overview

Max Total Supply

100 AZUL

Holders

95

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 AZUL
0xeb395578b16309cd0258f1233e9a2848f36caf3b
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:
Azul

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-27
*/

// SPDX-License-Identifier: MIT

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

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

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

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

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

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

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

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

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

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

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

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

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

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

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

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

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

    // =============================================================
    //                            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) 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: [ERC165](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.
    }

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

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

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

    /**
     * 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 initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns 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))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

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

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

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

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @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 virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

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

// File: https://github.com/Vectorized/solady/blob/main/src/utils/ECDSA.sol


pragma solidity ^0.8.4;

/// @notice Gas optimized ECDSA wrapper.
/// @author Solady (https://github.com/vectorized/solady/blob/main/src/utils/ECDSA.sol)
/// @author Modified from Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/ECDSA.sol)
/// @author Modified from OpenZeppelin (https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/cryptography/ECDSA.sol)
library ECDSA {
    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                         CONSTANTS                          */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev The number which `s` must not exceed in order for
    /// the signature to be non-malleable.
    bytes32 private constant _MALLEABILITY_THRESHOLD =
        0x7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0;

    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                    RECOVERY OPERATIONS                     */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev Recovers the signer's address from a message digest `hash`,
    /// and the `signature`.
    ///
    /// This function does NOT accept EIP-2098 short form signatures.
    /// Use `recover(bytes32 hash, bytes32 r, bytes32 vs)` for EIP-2098
    /// short form signatures instead.
    ///
    /// WARNING!
    /// The `result` will be the zero address upon recovery failure.
    /// As such, it is extremely important to ensure that the address which
    /// the `result` is compared against is never zero.
    function recover(bytes32 hash, bytes calldata signature) internal view returns (address result) {
        assembly {
            if eq(signature.length, 65) {
                // Copy the free memory pointer so that we can restore it later.
                let m := mload(0x40)
                // Directly copy `r` and `s` from the calldata.
                calldatacopy(0x40, signature.offset, 0x40)

                // If `s` in lower half order, such that the signature is not malleable.
                if iszero(gt(mload(0x60), _MALLEABILITY_THRESHOLD)) {
                    mstore(0x00, hash)
                    // Compute `v` and store it in the scratch space.
                    mstore(0x20, byte(0, calldataload(add(signature.offset, 0x40))))
                    pop(
                        staticcall(
                            gas(), // Amount of gas left for the transaction.
                            0x01, // Address of `ecrecover`.
                            0x00, // Start of input.
                            0x80, // Size of input.
                            0x40, // Start of output.
                            0x20 // Size of output.
                        )
                    )
                    // Restore the zero slot.
                    mstore(0x60, 0)
                    // `returndatasize()` will be `0x20` upon success, and `0x00` otherwise.
                    result := mload(sub(0x60, returndatasize()))
                }
                // Restore the free memory pointer.
                mstore(0x40, m)
            }
        }
    }

    /// @dev Recovers the signer's address from a message digest `hash`,
    /// and the EIP-2098 short form signature defined by `r` and `vs`.
    ///
    /// This function only accepts EIP-2098 short form signatures.
    /// See: https://eips.ethereum.org/EIPS/eip-2098
    ///
    /// To be honest, I do not recommend using EIP-2098 signatures
    /// for simplicity, performance, and security reasons. Most if not
    /// all clients support traditional non EIP-2098 signatures by default.
    /// As such, this method is intentionally not fully inlined.
    /// It is merely included for completeness.
    ///
    /// WARNING!
    /// The `result` will be the zero address upon recovery failure.
    /// As such, it is extremely important to ensure that the address which
    /// the `result` is compared against is never zero.
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal view returns (address result) {
        uint8 v;
        bytes32 s;
        assembly {
            s := shr(1, shl(1, vs))
            v := add(shr(255, vs), 27)
        }
        result = recover(hash, v, r, s);
    }

    /// @dev Recovers the signer's address from a message digest `hash`,
    /// and the signature defined by `v`, `r`, `s`.
    ///
    /// WARNING!
    /// The `result` will be the zero address upon recovery failure.
    /// As such, it is extremely important to ensure that the address which
    /// the `result` is compared against is never zero.
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal view returns (address result) {
        assembly {
            // Copy the free memory pointer so that we can restore it later.
            let m := mload(0x40)

            // If `s` in lower half order, such that the signature is not malleable.
            if iszero(gt(s, _MALLEABILITY_THRESHOLD)) {
                mstore(0x00, hash)
                mstore(0x20, v)
                mstore(0x40, r)
                mstore(0x60, s)
                pop(
                    staticcall(
                        gas(), // Amount of gas left for the transaction.
                        0x01, // Address of `ecrecover`.
                        0x00, // Start of input.
                        0x80, // Size of input.
                        0x40, // Start of output.
                        0x20 // Size of output.
                    )
                )
                // Restore the zero slot.
                mstore(0x60, 0)
                // `returndatasize()` will be `0x20` upon success, and `0x00` otherwise.
                result := mload(sub(0x60, returndatasize()))
            }
            // Restore the free memory pointer.
            mstore(0x40, m)
        }
    }

    /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
    /*                     HASHING OPERATIONS                     */
    /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/

    /// @dev Returns an Ethereum Signed Message, created from a `hash`.
    /// This produces a hash corresponding to the one signed with the
    /// [`eth_sign`](https://eth.wiki/json-rpc/API#eth_sign)
    /// JSON-RPC method as part of EIP-191.
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 result) {
        assembly {
            // Store into scratch space for keccak256.
            mstore(0x20, hash)
            mstore(0x00, "\x00\x00\x00\x00\x19Ethereum Signed Message:\n32")
            // 0x40 - 0x04 = 0x3c
            result := keccak256(0x04, 0x3c)
        }
    }

    /// @dev Returns an Ethereum Signed Message, created from `s`.
    /// This produces a hash corresponding to the one signed with the
    /// [`eth_sign`](https://eth.wiki/json-rpc/API#eth_sign)
    /// JSON-RPC method as part of EIP-191.
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32 result) {
        assembly {
            // We need at most 128 bytes for Ethereum signed message header.
            // The max length of the ASCII reprenstation of a uint256 is 78 bytes.
            // The length of "\x19Ethereum Signed Message:\n" is 26 bytes (i.e. 0x1a).
            // The next multiple of 32 above 78 + 26 is 128 (i.e. 0x80).

            // Instead of allocating, we temporarily copy the 128 bytes before the
            // start of `s` data to some variables.
            let m3 := mload(sub(s, 0x60))
            let m2 := mload(sub(s, 0x40))
            let m1 := mload(sub(s, 0x20))
            // The length of `s` is in bytes.
            let sLength := mload(s)

            let ptr := add(s, 0x20)

            // `end` marks the end of the memory which we will compute the keccak256 of.
            let end := add(ptr, sLength)

            // Convert the length of the bytes to ASCII decimal representation
            // and store it into the memory.
            // prettier-ignore
            for { let temp := sLength } 1 {} {
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            // Copy the header over to the memory.
            mstore(sub(ptr, 0x20), "\x00\x00\x00\x00\x00\x00\x19Ethereum Signed Message:\n")
            // Compute the keccak256 of the memory.
            result := keccak256(sub(ptr, 0x1a), sub(end, sub(ptr, 0x1a)))

            // Restore the previous memory.
            mstore(s, sLength)
            mstore(sub(s, 0x20), m1)
            mstore(sub(s, 0x40), m2)
            mstore(sub(s, 0x60), m3)
        }
    }
}

// File: contracts/azul.sol


pragma solidity 0.8.10;

contract Azul is ERC721A, Ownable {
    error PhaseInactive();
    error InvalidQuantity();
    error MintedOut();
    error NonSufficientFunds();
    error AlreadyMinted();
    error InvalidSignature();
    error ApprovalNotAllowedYet();

    address private constant _deployer = 0x81B0f36C06DBA182E0F3CF1394bB89A3592626d1;
    address private immutable _signer;
    uint256 private constant _maxMint = 1;

    uint256 private _price = 0.5 ether;
    uint256 private _maxSupply = 750;

    bool private _publicActive;
    bool private _whitelistActive;
    bool private _waitlistActive;
    bool private _approvalAllowed;

    string private _metadataUri;

    constructor(address signer, string memory metadataUri) ERC721A("Azul", "AZUL") {
        _signer = signer;
        _metadataUri = metadataUri;
    }

    function whitelistMint(uint256 quantity, bytes calldata signature) external payable
    {
        if (!_whitelistActive) revert PhaseInactive();
        if (totalSupply() == _maxSupply) revert MintedOut();
        if (msg.value < _price) revert NonSufficientFunds();
        if (_numberMinted(msg.sender) > 0) revert AlreadyMinted();
        if (quantity == _maxMint) {
            bytes32 data;
            assembly {
                //prepare signature data
                mstore(0x00, shl(0x60, caller()))
                mstore(0x20, keccak256(0x00, 0x14))
                mstore(0x00, "\x00\x00\x00\x00\x19Ethereum Signed Message:\n32")
                data := keccak256(0x04, 0x3c)
            }
            if (_signer == ECDSA.recover(data, signature)) _mint(msg.sender, _maxMint);
            else revert InvalidSignature();
        } 
        else revert InvalidQuantity();
    }

    function waitlistMint(uint256 quantity, bytes calldata signature) external payable
    {
        if (!_waitlistActive) revert PhaseInactive();
        if (totalSupply() == _maxSupply) revert MintedOut();
        if (msg.value < _price) revert NonSufficientFunds();
        if (_numberMinted(msg.sender) != 0) revert AlreadyMinted();
        if (quantity == _maxMint) {
            bytes32 data;
            assembly {
                //prepare signature data
                mstore(0x00, or(shl(0xF8, 0x1), shl(0x58, caller())))
                mstore(0x20, keccak256(0x00, 0x15))
                mstore(0x00, "\x00\x00\x00\x00\x19Ethereum Signed Message:\n32")
                data := keccak256(0x04, 0x3c)
            }
            if (_signer == ECDSA.recover(data, signature)) _mint(msg.sender, _maxMint);
            else revert InvalidSignature();
        }
        else revert InvalidQuantity();
    }

   function publicMint(uint256 quantity) external payable {
        if (!_publicActive) revert PhaseInactive();
        if (totalSupply() == _maxSupply) revert MintedOut();
        if (msg.value < _price) revert NonSufficientFunds();
        if (quantity == _maxMint) _mint(msg.sender, _maxMint);
        else revert InvalidQuantity();
    }

    //View functions
    function price() external view returns (uint256) {
        return _price;
    }

    function maxSupply() external view returns (uint256) {
        return _maxSupply;
    }

    function maxMint() external pure returns (uint256) {
        return _maxMint;
    }

    function approvalAllowed() external view returns (bool) {
        return _approvalAllowed;
    }

    function mintState() external view 
        returns (bool whitelistActive, bool waitlistActive, bool publicActive, bool soldOut)
    {
        return ( _whitelistActive,  _waitlistActive, _publicActive, totalSupply() == _maxSupply);
    }

	function approve(address to, uint256 tokenId) public payable virtual override {
        if(!_approvalAllowed)  revert ApprovalNotAllowedYet();
        super.approve(to, tokenId);
    }
 
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if(!_approvalAllowed)  revert ApprovalNotAllowedYet();
        super.setApprovalForAll(operator, approved);
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _metadataUri;
    }
    
    //Ownable Functions
    function publicSwitch() external onlyOwner {
        _publicActive = !_publicActive;
    }

    function whitelistSwitch() external onlyOwner {
        _whitelistActive = !_whitelistActive;
    }

    function waitlistSwitch() external onlyOwner {
        _waitlistActive = !_waitlistActive;
    }
    
    function allowApprovals() external onlyOwner {
        _approvalAllowed = true;
    }

    function withdraw() external onlyOwner {
       payable(_deployer).transfer(address(this).balance);
    }

   
    function setMetadataUri(string calldata _uri) external onlyOwner {
        _metadataUri = _uri;
    }

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

    function updateSupply(uint256 _newAmount) external onlyOwner {
        require(_newAmount > totalSupply(), "Error updating supply"); 
        _maxSupply = _newAmount;
    }
  
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"string","name":"metadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyMinted","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalNotAllowedYet","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQuantity","type":"error"},{"inputs":[],"name":"InvalidSignature","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedOut","type":"error"},{"inputs":[],"name":"NonSufficientFunds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"PhaseInactive","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"allowApprovals","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"approvalAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintState","outputs":[{"internalType":"bool","name":"whitelistActive","type":"bool"},{"internalType":"bool","name":"waitlistActive","type":"bool"},{"internalType":"bool","name":"publicActive","type":"bool"},{"internalType":"bool","name":"soldOut","type":"bool"}],"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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSwitch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","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":"_uri","type":"string"}],"name":"setMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"updateSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"waitlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"waitlistSwitch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistSwitch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526706f05b59d3b200006009556102ee600a553480156200002357600080fd5b5060405162001cac38038062001cac8339810160408190526200004691620001f9565b60405180604001604052806004815260200163105e9d5b60e21b815250604051806040016040528060048152602001631056955360e21b8152508160029080519060200190620000989291906200013d565b508051620000ae9060039060208401906200013d565b50506000805550620000c033620000eb565b6001600160a01b0382166080528051620000e290600c9060208401906200013d565b50505062000336565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014b90620002f9565b90600052602060002090601f0160209004810192826200016f5760008555620001ba565b82601f106200018a57805160ff1916838001178555620001ba565b82800160010185558215620001ba579182015b82811115620001ba5782518255916020019190600101906200019d565b50620001c8929150620001cc565b5090565b5b80821115620001c85760008155600101620001cd565b634e487b7160e01b600052604160045260246000fd5b600080604083850312156200020d57600080fd5b82516001600160a01b03811681146200022557600080fd5b602084810151919350906001600160401b03808211156200024557600080fd5b818601915086601f8301126200025a57600080fd5b8151818111156200026f576200026f620001e3565b604051601f8201601f19908116603f011681019083821181831017156200029a576200029a620001e3565b816040528281528986848701011115620002b357600080fd5b600093505b82841015620002d75784840186015181850187015292850192620002b8565b82841115620002e95760008684830101525b8096505050505050509250929050565b600181811c908216806200030e57607f821691505b602082108114156200033057634e487b7160e01b600052602260045260246000fd5b50919050565b60805161195a620003526000396000610be8015261195a6000f3fe6080604052600436106101ee5760003560e01c80637501f7411161010d578063b87c31d0116100a0578063c87b56dd1161006f578063c87b56dd1461050f578063d5abeb011461052f578063d63bdf6714610544578063e985e9c514610559578063f2fde38b146105a257600080fd5b8063b87c31d014610493578063b88d4fde146104a8578063bcd25ee5146104bb578063c051e38a146104d057600080fd5b80639e4ea218116100dc5780639e4ea218146104385780639e852f751461044b578063a035b1fe1461045e578063a22cb4651461047357600080fd5b80637501f741146103d15780638da5cb5b146103e557806391b7f5ed1461040357806395d89b411461042357600080fd5b806323b872dd116101855780636352211e116101545780636352211e1461035c5780636bd080491461037c57806370a082311461039c578063715018a6146103bc57600080fd5b806323b872dd1461030e5780632db11544146103215780633ccfd60b1461033457806342842e0e1461034957600080fd5b8063081812fc116101c1578063081812fc14610280578063095ea7b3146102b85780631130630c146102cb57806318160ddd146102eb57600080fd5b806301ffc9a7146101f357806303ef13791461022857806304b4a6561461023f57806306fdde031461025e575b600080fd5b3480156101ff57600080fd5b5061021361020e3660046114ea565b6105c2565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d610614565b005b34801561024b57600080fd5b50600b546301000000900460ff16610213565b34801561026a57600080fd5b5061027361063b565b60405161021f919061155f565b34801561028c57600080fd5b506102a061029b366004611572565b6106cd565b6040516001600160a01b03909116815260200161021f565b61023d6102c63660046115a7565b610711565b3480156102d757600080fd5b5061023d6102e636600461161a565b610749565b3480156102f757600080fd5b50600154600054035b60405190815260200161021f565b61023d61031c36600461165c565b610762565b61023d61032f366004611572565b6108f3565b34801561034057600080fd5b5061023d610992565b61023d61035736600461165c565b6109da565b34801561036857600080fd5b506102a0610377366004611572565b6109f5565b34801561038857600080fd5b5061023d610397366004611572565b610a00565b3480156103a857600080fd5b506103006103b7366004611698565b610a5f565b3480156103c857600080fd5b5061023d610aae565b3480156103dd57600080fd5b506001610300565b3480156103f157600080fd5b506008546001600160a01b03166102a0565b34801561040f57600080fd5b5061023d61041e366004611572565b610ac2565b34801561042f57600080fd5b50610273610acf565b61023d6104463660046116b3565b610ade565b61023d6104593660046116b3565b610c45565b34801561046a57600080fd5b50600954610300565b34801561047f57600080fd5b5061023d61048e3660046116ff565b610d3d565b34801561049f57600080fd5b5061023d610d71565b61023d6104b6366004611751565b610d8e565b3480156104c757600080fd5b5061023d610dd2565b3480156104dc57600080fd5b506104e5610df7565b6040805194151585529215156020850152901515918301919091521515606082015260800161021f565b34801561051b57600080fd5b5061027361052a366004611572565b610e38565b34801561053b57600080fd5b50600a54610300565b34801561055057600080fd5b5061023d610ebd565b34801561056557600080fd5b5061021361057436600461182d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105ae57600080fd5b5061023d6105bd366004611698565b610ed9565b60006301ffc9a760e01b6001600160e01b0319831614806105f357506380ac58cd60e01b6001600160e01b03198316145b8061060e5750635b5e139f60e01b6001600160e01b03198316145b92915050565b61061c610f4f565b600b805462ff0000198116620100009182900460ff1615909102179055565b60606002805461064a90611860565b80601f016020809104026020016040519081016040528092919081815260200182805461067690611860565b80156106c35780601f10610698576101008083540402835291602001916106c3565b820191906000526020600020905b8154815290600101906020018083116106a657829003601f168201915b5050505050905090565b60006106d882610fa9565b6106f5576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600b546301000000900460ff1661073b57604051637f04b5b560e11b815260040160405180910390fd5b6107458282610fd0565b5050565b610751610f4f565b61075d600c838361143b565b505050565b600061076d82611070565b9050836001600160a01b0316816001600160a01b0316146107a05760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176107ed576107d08633610574565b6107ed57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661081457604051633a954ecd60e21b815260040160405180910390fd5b801561081f57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b83166108aa57600184016000818152600460205260409020546108a85760005481146108a85760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600b5460ff16610916576040516321ab96fd60e11b815260040160405180910390fd5b600a5460015460005403141561093f57604051634237dcf160e11b815260040160405180910390fd5b6009543410156109625760405163995cb65760e01b815260040160405180910390fd5b6001811415610979576109763360016110d1565b50565b60405163524f409b60e01b815260040160405180910390fd5b61099a610f4f565b6040517381b0f36c06dba182e0f3cf1394bb89a3592626d1904780156108fc02916000818181858888f19350505050158015610976573d6000803e3d6000fd5b61075d83838360405180602001604052806000815250610d8e565b600061060e82611070565b610a08610f4f565b600154600054038111610a5a5760405162461bcd60e51b81526020600482015260156024820152744572726f72207570646174696e6720737570706c7960581b60448201526064015b60405180910390fd5b600a55565b60006001600160a01b038216610a88576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610ab6610f4f565b610ac060006111c8565b565b610aca610f4f565b600955565b60606003805461064a90611860565b600b5462010000900460ff16610b07576040516321ab96fd60e11b815260040160405180910390fd5b600a54600154600054031415610b3057604051634237dcf160e11b815260040160405180910390fd5b600954341015610b535760405163995cb65760e01b815260040160405180910390fd5b33600090815260056020526040908190205467ffffffffffffffff911c1615610b8f57604051631bbdf5c560e31b815260040160405180910390fd5b600183141561097957600160f81b3360581b176000908152601581206020527b19457468657265756d205369676e6564204d6573736167653a0a33329052603c600420610bdd81848461121a565b6001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161415610c2657610c213360016110d1565b610c3f565b604051638baa579f60e01b815260040160405180910390fd5b50505050565b600b54610100900460ff16610c6d576040516321ab96fd60e11b815260040160405180910390fd5b600a54600154600054031415610c9657604051634237dcf160e11b815260040160405180910390fd5b600954341015610cb95760405163995cb65760e01b815260040160405180910390fd5b336000908152600560205260408082205467ffffffffffffffff911c161115610cf557604051631bbdf5c560e31b815260040160405180910390fd5b6001831415610979573360601b6000908152601481206020527b19457468657265756d205369676e6564204d6573736167653a0a33329052603c600420610bdd81848461121a565b600b546301000000900460ff16610d6757604051637f04b5b560e11b815260040160405180910390fd5b610745828261128a565b610d79610f4f565b600b805463ff00000019166301000000179055565b610d99848484610762565b6001600160a01b0383163b15610c3f57610db5848484846112f6565b610c3f576040516368d2bf6b60e11b815260040160405180910390fd5b610dda610f4f565b600b805461ff001981166101009182900460ff1615909102179055565b600b54600a5460009182918291829160ff6101008304811692620100008104821692911690610e296001546000540390565b14935093509350935090919293565b6060610e4382610fa9565b610e6057604051630a14c4b560e41b815260040160405180910390fd5b6000610e6a6113de565b9050805160001415610e8b5760405180602001604052806000815250610eb6565b80610e95846113ed565b604051602001610ea692919061189b565b6040516020818303038152906040525b9392505050565b610ec5610f4f565b600b805460ff19811660ff90911615179055565b610ee1610f4f565b6001600160a01b038116610f465760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a51565b610976816111c8565b6008546001600160a01b03163314610ac05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a51565b600080548210801561060e575050600090815260046020526040902054600160e01b161590565b6000610fdb826109f5565b9050336001600160a01b0382161461101457610ff78133610574565b611014576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000816000548110156110b857600081815260046020526040902054600160e01b81166110b6575b80610eb6575060001901600081815260046020526040902054611098565b505b604051636f96cda160e11b815260040160405180910390fd5b600054816110f25760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146111a157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611169565b50816111bf57604051622e076360e81b815260040160405180910390fd5b60005550505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006041821415610eb6576040516040846040377f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0606051116112805784600052604084013560001a602052602060406080600060015afa5060006060523d6060035191505b6040529392505050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061132b9033908990889088906004016118ca565b6020604051808303816000875af1925050508015611366575060408051601f3d908101601f1916820190925261136391810190611907565b60015b6113c1573d808015611394576040519150601f19603f3d011682016040523d82523d6000602084013e611399565b606091505b5080516113b9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600c805461064a90611860565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a90048061142457611429565b611407565b50819003601f19909101908152919050565b82805461144790611860565b90600052602060002090601f01602090048101928261146957600085556114af565b82601f106114825782800160ff198235161785556114af565b828001600101855582156114af579182015b828111156114af578235825591602001919060010190611494565b506114bb9291506114bf565b5090565b5b808211156114bb57600081556001016114c0565b6001600160e01b03198116811461097657600080fd5b6000602082840312156114fc57600080fd5b8135610eb6816114d4565b60005b8381101561152257818101518382015260200161150a565b83811115610c3f5750506000910152565b6000815180845261154b816020860160208601611507565b601f01601f19169290920160200192915050565b602081526000610eb66020830184611533565b60006020828403121561158457600080fd5b5035919050565b80356001600160a01b03811681146115a257600080fd5b919050565b600080604083850312156115ba57600080fd5b6115c38361158b565b946020939093013593505050565b60008083601f8401126115e357600080fd5b50813567ffffffffffffffff8111156115fb57600080fd5b60208301915083602082850101111561161357600080fd5b9250929050565b6000806020838503121561162d57600080fd5b823567ffffffffffffffff81111561164457600080fd5b611650858286016115d1565b90969095509350505050565b60008060006060848603121561167157600080fd5b61167a8461158b565b92506116886020850161158b565b9150604084013590509250925092565b6000602082840312156116aa57600080fd5b610eb68261158b565b6000806000604084860312156116c857600080fd5b83359250602084013567ffffffffffffffff8111156116e657600080fd5b6116f2868287016115d1565b9497909650939450505050565b6000806040838503121561171257600080fd5b61171b8361158b565b91506020830135801515811461173057600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561176757600080fd5b6117708561158b565b935061177e6020860161158b565b925060408501359150606085013567ffffffffffffffff808211156117a257600080fd5b818701915087601f8301126117b657600080fd5b8135818111156117c8576117c861173b565b604051601f8201601f19908116603f011681019083821181831017156117f0576117f061173b565b816040528281528a602084870101111561180957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561184057600080fd5b6118498361158b565b91506118576020840161158b565b90509250929050565b600181811c9082168061187457607f821691505b6020821081141561189557634e487b7160e01b600052602260045260246000fd5b50919050565b600083516118ad818460208801611507565b8351908301906118c1818360208801611507565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906118fd90830184611533565b9695505050505050565b60006020828403121561191957600080fd5b8151610eb6816114d456fea26469706673582212201a182058d62da7f81fc113a46ae4b158a8b1d906eb9e590e44d6293fdf63c74864736f6c634300080a003300000000000000000000000024839b19402ed00dd9aa9e3fb3101600eb9957c70000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000005568747470733a2f2f617a756c746f6f6c732e6d7970696e6174612e636c6f75642f697066732f516d5652375744646b7a6a6a67535632543753626152747758444e7839506e6168536662386a5868503251736a412f0000000000000000000000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80637501f7411161010d578063b87c31d0116100a0578063c87b56dd1161006f578063c87b56dd1461050f578063d5abeb011461052f578063d63bdf6714610544578063e985e9c514610559578063f2fde38b146105a257600080fd5b8063b87c31d014610493578063b88d4fde146104a8578063bcd25ee5146104bb578063c051e38a146104d057600080fd5b80639e4ea218116100dc5780639e4ea218146104385780639e852f751461044b578063a035b1fe1461045e578063a22cb4651461047357600080fd5b80637501f741146103d15780638da5cb5b146103e557806391b7f5ed1461040357806395d89b411461042357600080fd5b806323b872dd116101855780636352211e116101545780636352211e1461035c5780636bd080491461037c57806370a082311461039c578063715018a6146103bc57600080fd5b806323b872dd1461030e5780632db11544146103215780633ccfd60b1461033457806342842e0e1461034957600080fd5b8063081812fc116101c1578063081812fc14610280578063095ea7b3146102b85780631130630c146102cb57806318160ddd146102eb57600080fd5b806301ffc9a7146101f357806303ef13791461022857806304b4a6561461023f57806306fdde031461025e575b600080fd5b3480156101ff57600080fd5b5061021361020e3660046114ea565b6105c2565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d610614565b005b34801561024b57600080fd5b50600b546301000000900460ff16610213565b34801561026a57600080fd5b5061027361063b565b60405161021f919061155f565b34801561028c57600080fd5b506102a061029b366004611572565b6106cd565b6040516001600160a01b03909116815260200161021f565b61023d6102c63660046115a7565b610711565b3480156102d757600080fd5b5061023d6102e636600461161a565b610749565b3480156102f757600080fd5b50600154600054035b60405190815260200161021f565b61023d61031c36600461165c565b610762565b61023d61032f366004611572565b6108f3565b34801561034057600080fd5b5061023d610992565b61023d61035736600461165c565b6109da565b34801561036857600080fd5b506102a0610377366004611572565b6109f5565b34801561038857600080fd5b5061023d610397366004611572565b610a00565b3480156103a857600080fd5b506103006103b7366004611698565b610a5f565b3480156103c857600080fd5b5061023d610aae565b3480156103dd57600080fd5b506001610300565b3480156103f157600080fd5b506008546001600160a01b03166102a0565b34801561040f57600080fd5b5061023d61041e366004611572565b610ac2565b34801561042f57600080fd5b50610273610acf565b61023d6104463660046116b3565b610ade565b61023d6104593660046116b3565b610c45565b34801561046a57600080fd5b50600954610300565b34801561047f57600080fd5b5061023d61048e3660046116ff565b610d3d565b34801561049f57600080fd5b5061023d610d71565b61023d6104b6366004611751565b610d8e565b3480156104c757600080fd5b5061023d610dd2565b3480156104dc57600080fd5b506104e5610df7565b6040805194151585529215156020850152901515918301919091521515606082015260800161021f565b34801561051b57600080fd5b5061027361052a366004611572565b610e38565b34801561053b57600080fd5b50600a54610300565b34801561055057600080fd5b5061023d610ebd565b34801561056557600080fd5b5061021361057436600461182d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105ae57600080fd5b5061023d6105bd366004611698565b610ed9565b60006301ffc9a760e01b6001600160e01b0319831614806105f357506380ac58cd60e01b6001600160e01b03198316145b8061060e5750635b5e139f60e01b6001600160e01b03198316145b92915050565b61061c610f4f565b600b805462ff0000198116620100009182900460ff1615909102179055565b60606002805461064a90611860565b80601f016020809104026020016040519081016040528092919081815260200182805461067690611860565b80156106c35780601f10610698576101008083540402835291602001916106c3565b820191906000526020600020905b8154815290600101906020018083116106a657829003601f168201915b5050505050905090565b60006106d882610fa9565b6106f5576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600b546301000000900460ff1661073b57604051637f04b5b560e11b815260040160405180910390fd5b6107458282610fd0565b5050565b610751610f4f565b61075d600c838361143b565b505050565b600061076d82611070565b9050836001600160a01b0316816001600160a01b0316146107a05760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176107ed576107d08633610574565b6107ed57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661081457604051633a954ecd60e21b815260040160405180910390fd5b801561081f57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b83166108aa57600184016000818152600460205260409020546108a85760005481146108a85760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600b5460ff16610916576040516321ab96fd60e11b815260040160405180910390fd5b600a5460015460005403141561093f57604051634237dcf160e11b815260040160405180910390fd5b6009543410156109625760405163995cb65760e01b815260040160405180910390fd5b6001811415610979576109763360016110d1565b50565b60405163524f409b60e01b815260040160405180910390fd5b61099a610f4f565b6040517381b0f36c06dba182e0f3cf1394bb89a3592626d1904780156108fc02916000818181858888f19350505050158015610976573d6000803e3d6000fd5b61075d83838360405180602001604052806000815250610d8e565b600061060e82611070565b610a08610f4f565b600154600054038111610a5a5760405162461bcd60e51b81526020600482015260156024820152744572726f72207570646174696e6720737570706c7960581b60448201526064015b60405180910390fd5b600a55565b60006001600160a01b038216610a88576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610ab6610f4f565b610ac060006111c8565b565b610aca610f4f565b600955565b60606003805461064a90611860565b600b5462010000900460ff16610b07576040516321ab96fd60e11b815260040160405180910390fd5b600a54600154600054031415610b3057604051634237dcf160e11b815260040160405180910390fd5b600954341015610b535760405163995cb65760e01b815260040160405180910390fd5b33600090815260056020526040908190205467ffffffffffffffff911c1615610b8f57604051631bbdf5c560e31b815260040160405180910390fd5b600183141561097957600160f81b3360581b176000908152601581206020527b19457468657265756d205369676e6564204d6573736167653a0a33329052603c600420610bdd81848461121a565b6001600160a01b03167f00000000000000000000000024839b19402ed00dd9aa9e3fb3101600eb9957c76001600160a01b03161415610c2657610c213360016110d1565b610c3f565b604051638baa579f60e01b815260040160405180910390fd5b50505050565b600b54610100900460ff16610c6d576040516321ab96fd60e11b815260040160405180910390fd5b600a54600154600054031415610c9657604051634237dcf160e11b815260040160405180910390fd5b600954341015610cb95760405163995cb65760e01b815260040160405180910390fd5b336000908152600560205260408082205467ffffffffffffffff911c161115610cf557604051631bbdf5c560e31b815260040160405180910390fd5b6001831415610979573360601b6000908152601481206020527b19457468657265756d205369676e6564204d6573736167653a0a33329052603c600420610bdd81848461121a565b600b546301000000900460ff16610d6757604051637f04b5b560e11b815260040160405180910390fd5b610745828261128a565b610d79610f4f565b600b805463ff00000019166301000000179055565b610d99848484610762565b6001600160a01b0383163b15610c3f57610db5848484846112f6565b610c3f576040516368d2bf6b60e11b815260040160405180910390fd5b610dda610f4f565b600b805461ff001981166101009182900460ff1615909102179055565b600b54600a5460009182918291829160ff6101008304811692620100008104821692911690610e296001546000540390565b14935093509350935090919293565b6060610e4382610fa9565b610e6057604051630a14c4b560e41b815260040160405180910390fd5b6000610e6a6113de565b9050805160001415610e8b5760405180602001604052806000815250610eb6565b80610e95846113ed565b604051602001610ea692919061189b565b6040516020818303038152906040525b9392505050565b610ec5610f4f565b600b805460ff19811660ff90911615179055565b610ee1610f4f565b6001600160a01b038116610f465760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a51565b610976816111c8565b6008546001600160a01b03163314610ac05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a51565b600080548210801561060e575050600090815260046020526040902054600160e01b161590565b6000610fdb826109f5565b9050336001600160a01b0382161461101457610ff78133610574565b611014576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000816000548110156110b857600081815260046020526040902054600160e01b81166110b6575b80610eb6575060001901600081815260046020526040902054611098565b505b604051636f96cda160e11b815260040160405180910390fd5b600054816110f25760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146111a157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611169565b50816111bf57604051622e076360e81b815260040160405180910390fd5b60005550505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006041821415610eb6576040516040846040377f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0606051116112805784600052604084013560001a602052602060406080600060015afa5060006060523d6060035191505b6040529392505050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061132b9033908990889088906004016118ca565b6020604051808303816000875af1925050508015611366575060408051601f3d908101601f1916820190925261136391810190611907565b60015b6113c1573d808015611394576040519150601f19603f3d011682016040523d82523d6000602084013e611399565b606091505b5080516113b9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600c805461064a90611860565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a90048061142457611429565b611407565b50819003601f19909101908152919050565b82805461144790611860565b90600052602060002090601f01602090048101928261146957600085556114af565b82601f106114825782800160ff198235161785556114af565b828001600101855582156114af579182015b828111156114af578235825591602001919060010190611494565b506114bb9291506114bf565b5090565b5b808211156114bb57600081556001016114c0565b6001600160e01b03198116811461097657600080fd5b6000602082840312156114fc57600080fd5b8135610eb6816114d4565b60005b8381101561152257818101518382015260200161150a565b83811115610c3f5750506000910152565b6000815180845261154b816020860160208601611507565b601f01601f19169290920160200192915050565b602081526000610eb66020830184611533565b60006020828403121561158457600080fd5b5035919050565b80356001600160a01b03811681146115a257600080fd5b919050565b600080604083850312156115ba57600080fd5b6115c38361158b565b946020939093013593505050565b60008083601f8401126115e357600080fd5b50813567ffffffffffffffff8111156115fb57600080fd5b60208301915083602082850101111561161357600080fd5b9250929050565b6000806020838503121561162d57600080fd5b823567ffffffffffffffff81111561164457600080fd5b611650858286016115d1565b90969095509350505050565b60008060006060848603121561167157600080fd5b61167a8461158b565b92506116886020850161158b565b9150604084013590509250925092565b6000602082840312156116aa57600080fd5b610eb68261158b565b6000806000604084860312156116c857600080fd5b83359250602084013567ffffffffffffffff8111156116e657600080fd5b6116f2868287016115d1565b9497909650939450505050565b6000806040838503121561171257600080fd5b61171b8361158b565b91506020830135801515811461173057600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561176757600080fd5b6117708561158b565b935061177e6020860161158b565b925060408501359150606085013567ffffffffffffffff808211156117a257600080fd5b818701915087601f8301126117b657600080fd5b8135818111156117c8576117c861173b565b604051601f8201601f19908116603f011681019083821181831017156117f0576117f061173b565b816040528281528a602084870101111561180957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561184057600080fd5b6118498361158b565b91506118576020840161158b565b90509250929050565b600181811c9082168061187457607f821691505b6020821081141561189557634e487b7160e01b600052602260045260246000fd5b50919050565b600083516118ad818460208801611507565b8351908301906118c1818360208801611507565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906118fd90830184611533565b9695505050505050565b60006020828403121561191957600080fd5b8151610eb6816114d456fea26469706673582212201a182058d62da7f81fc113a46ae4b158a8b1d906eb9e590e44d6293fdf63c74864736f6c634300080a0033

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

00000000000000000000000024839b19402ed00dd9aa9e3fb3101600eb9957c70000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000005568747470733a2f2f617a756c746f6f6c732e6d7970696e6174612e636c6f75642f697066732f516d5652375744646b7a6a6a67535632543753626152747758444e7839506e6168536662386a5868503251736a412f0000000000000000000000

-----Decoded View---------------
Arg [0] : signer (address): 0x24839B19402Ed00DD9Aa9E3fB3101600Eb9957C7
Arg [1] : metadataUri (string): https://azultools.mypinata.cloud/ipfs/QmVR7WDdkzjjgSV2T7SbaRtwXDNx9PnahSfb8jXhP2QsjA/

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 00000000000000000000000024839b19402ed00dd9aa9e3fb3101600eb9957c7
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000055
Arg [3] : 68747470733a2f2f617a756c746f6f6c732e6d7970696e6174612e636c6f7564
Arg [4] : 2f697066732f516d5652375744646b7a6a6a6753563254375362615274775844
Arg [5] : 4e7839506e6168536662386a5868503251736a412f0000000000000000000000


Deployed Bytecode Sourcemap

64711:5193:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22218:639;;;;;;;;;;-1:-1:-1;22218:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;22218:639:0;;;;;;;;69185:98;;;;;;;;;;;;;:::i;:::-;;68059;;;;;;;;;;-1:-1:-1;68133:16:0;;;;;;;68059:98;;23120:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29611:218::-;;;;;;;;;;-1:-1:-1;29611:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;29611:218:0;1528:203:1;68412:187:0;;;;;;:::i;:::-;;:::i;69510:103::-;;;;;;;;;;-1:-1:-1;69510:103:0;;;;;:::i;:::-;;:::i;18871:323::-;;;;;;;;;;-1:-1:-1;19145:12:0;;18932:7;19129:13;:28;18871:323;;;3088:25:1;;;3076:2;3061:18;18871:323:0;2942:177:1;33250:2825:0;;;;;;:::i;:::-;;:::i;67406:344::-;;;;;;:::i;:::-;;:::i;69390:107::-;;;;;;;;;;;;;:::i;36171:193::-;;;;;;:::i;:::-;;:::i;24513:152::-;;;;;;;;;;-1:-1:-1;24513:152:0;;;;;:::i;:::-;;:::i;69722:175::-;;;;;;;;;;-1:-1:-1;69722:175:0;;;;;:::i;:::-;;:::i;20055:233::-;;;;;;;;;;-1:-1:-1;20055:233:0;;;;;:::i;:::-;;:::i;2917:103::-;;;;;;;;;;;;;:::i;67966:85::-;;;;;;;;;;-1:-1:-1;65126:1:0;67966:85;;2269:87;;;;;;;;;;-1:-1:-1;2342:6:0;;-1:-1:-1;;;;;2342:6:0;2269:87;;69621:93;;;;;;;;;;-1:-1:-1;69621:93:0;;;;;:::i;:::-;;:::i;23296:104::-;;;;;;;;;;;;;:::i;66472:927::-;;;;;;:::i;:::-;;:::i;65555:909::-;;;;;;:::i;:::-;;:::i;67780:81::-;;;;;;;;;;-1:-1:-1;67847:6:0;;67780:81;;68608:210;;;;;;;;;;-1:-1:-1;68608:210:0;;;;;:::i;:::-;;:::i;69295:87::-;;;;;;;;;;;;;:::i;36962:407::-;;;;;;:::i;:::-;;:::i;69076:101::-;;;;;;;;;;;;;:::i;68165:242::-;;;;;;;;;;;;;:::i;:::-;;;;5990:14:1;;5983:22;5965:41;;6049:14;;6042:22;6037:2;6022:18;;6015:50;6108:14;;6101:22;6081:18;;;6074:50;;;;6167:14;6160:22;6155:2;6140:18;;6133:50;5952:3;5937:19;68165:242:0;5758:431:1;23506:318:0;;;;;;;;;;-1:-1:-1;23506:318:0;;;;;:::i;:::-;;:::i;67869:89::-;;;;;;;;;;-1:-1:-1;67940:10:0;;67869:89;;68976:92;;;;;;;;;;;;;:::i;30560:164::-;;;;;;;;;;-1:-1:-1;30560:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30681:25:0;;;30657:4;30681:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30560:164;3175:201;;;;;;;;;;-1:-1:-1;3175:201:0;;;;;:::i;:::-;;:::i;22218:639::-;22303:4;-1:-1:-1;;;;;;;;;22627:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;22704:25:0;;;22627:102;:179;;;-1:-1:-1;;;;;;;;;;22781:25:0;;;22627:179;22607:199;22218:639;-1:-1:-1;;22218:639:0:o;69185:98::-;2155:13;:11;:13::i;:::-;69260:15:::1;::::0;;-1:-1:-1;;69241:34:0;::::1;69260:15:::0;;;;::::1;;;69259:16;69241:34:::0;;::::1;;::::0;;69185:98::o;23120:100::-;23174:13;23207:5;23200:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23120:100;:::o;29611:218::-;29687:7;29712:16;29720:7;29712;:16::i;:::-;29707:64;;29737:34;;-1:-1:-1;;;29737:34:0;;;;;;;;;;;29707:64;-1:-1:-1;29791:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;29791:30:0;;29611:218::o;68412:187::-;68505:16;;;;;;;68501:53;;68531:23;;-1:-1:-1;;;68531:23:0;;;;;;;;;;;68501:53;68565:26;68579:2;68583:7;68565:13;:26::i;:::-;68412:187;;:::o;69510:103::-;2155:13;:11;:13::i;:::-;69586:19:::1;:12;69601:4:::0;;69586:19:::1;:::i;:::-;;69510:103:::0;;:::o;33250:2825::-;33392:27;33422;33441:7;33422:18;:27::i;:::-;33392:57;;33507:4;-1:-1:-1;;;;;33466:45:0;33482:19;-1:-1:-1;;;;;33466:45:0;;33462:86;;33520:28;;-1:-1:-1;;;33520:28:0;;;;;;;;;;;33462:86;33562:27;32358:24;;;:15;:24;;;;;32586:26;;53377:10;31983:30;;;-1:-1:-1;;;;;31676:28:0;;31961:20;;;31958:56;33748:180;;33841:43;33858:4;53377:10;30560:164;:::i;33841:43::-;33836:92;;33893:35;;-1:-1:-1;;;33893:35:0;;;;;;;;;;;33836:92;-1:-1:-1;;;;;33945:16:0;;33941:52;;33970:23;;-1:-1:-1;;;33970:23:0;;;;;;;;;;;33941:52;34142:15;34139:160;;;34282:1;34261:19;34254:30;34139:160;-1:-1:-1;;;;;34679:24:0;;;;;;;:18;:24;;;;;;34677:26;;-1:-1:-1;;34677:26:0;;;34748:22;;;;;;;;;34746:24;;-1:-1:-1;34746:24:0;;;27902:11;27877:23;27873:41;27860:63;-1:-1:-1;;;27860:63:0;35041:26;;;;:17;:26;;;;;:175;-1:-1:-1;;;35336:47:0;;35332:627;;35441:1;35431:11;;35409:19;35564:30;;;:17;:30;;;;;;35560:384;;35702:13;;35687:11;:28;35683:242;;35849:30;;;;:17;:30;;;;;:52;;;35683:242;35390:569;35332:627;36006:7;36002:2;-1:-1:-1;;;;;35987:27:0;35996:4;-1:-1:-1;;;;;35987:27:0;;;;;;;;;;;33381:2694;;;33250:2825;;;:::o;67406:344::-;67477:13;;;;67472:42;;67499:15;;-1:-1:-1;;;67499:15:0;;;;;;;;;;;67472:42;67546:10;;19145:12;;18932:7;19129:13;:28;67529:27;67525:51;;;67565:11;;-1:-1:-1;;;67565:11:0;;;;;;;;;;;67525:51;67603:6;;67591:9;:18;67587:51;;;67618:20;;-1:-1:-1;;;67618:20:0;;;;;;;;;;;67587:51;65126:1;67653:8;:20;67649:93;;;67675:27;67681:10;65126:1;67675:5;:27::i;:::-;67406:344;:::o;67649:93::-;67725:17;;-1:-1:-1;;;67725:17:0;;;;;;;;;;;69390:107;2155:13;:11;:13::i;:::-;69439:50:::1;::::0;65001:42:::1;::::0;69467:21:::1;69439:50:::0;::::1;;;::::0;::::1;::::0;;;69467:21;65001:42;69439:50;::::1;;;;;;;;;;;;;::::0;::::1;;;;36171:193:::0;36317:39;36334:4;36340:2;36344:7;36317:39;;;;;;;;;;;;:16;:39::i;24513:152::-;24585:7;24628:27;24647:7;24628:18;:27::i;69722:175::-;2155:13;:11;:13::i;:::-;19145:12;;18932:7;19129:13;:28;69802:10:::1;:26;69794:60;;;::::0;-1:-1:-1;;;69794:60:0;;7046:2:1;69794:60:0::1;::::0;::::1;7028:21:1::0;7085:2;7065:18;;;7058:30;-1:-1:-1;;;7104:18:1;;;7097:51;7165:18;;69794:60:0::1;;;;;;;;;69866:10;:23:::0;69722:175::o;20055:233::-;20127:7;-1:-1:-1;;;;;20151:19:0;;20147:60;;20179:28;;-1:-1:-1;;;20179:28:0;;;;;;;;;;;20147:60;-1:-1:-1;;;;;;20225:25:0;;;;;:18;:25;;;;;;14214:13;20225:55;;20055:233::o;2917:103::-;2155:13;:11;:13::i;:::-;2982:30:::1;3009:1;2982:18;:30::i;:::-;2917:103::o:0;69621:93::-;2155:13;:11;:13::i;:::-;69688:6:::1;:18:::0;69621:93::o;23296:104::-;23352:13;23385:7;23378:14;;;;;:::i;66472:927::-;66576:15;;;;;;;66571:44;;66600:15;;-1:-1:-1;;;66600:15:0;;;;;;;;;;;66571:44;66647:10;;19145:12;;18932:7;19129:13;:28;66630:27;66626:51;;;66666:11;;-1:-1:-1;;;66666:11:0;;;;;;;;;;;66626:51;66704:6;;66692:9;:18;66688:51;;;66719:20;;-1:-1:-1;;;66719:20:0;;;;;;;;;;;66688:51;66768:10;20431:7;20459:25;;;:18;:25;;14352:2;20459:25;;;;;14214:13;20459:50;;20458:82;66754:30;66750:58;;66793:15;;-1:-1:-1;;;66793:15:0;;;;;;;;;;;66750:58;65126:1;66823:8;:20;66819:572;;;-1:-1:-1;;;66999:8:0;66993:4;66989:19;66970:39;66860:12;66957:53;;;67057:4;67041:21;;67035:4;67028:35;67094:50;67081:64;;67187:4;67181;67171:21;67236:30;67171:21;67256:9;;67236:13;:30::i;:::-;-1:-1:-1;;;;;67225:41:0;:7;-1:-1:-1;;;;;67225:41:0;;67221:119;;;67268:27;67274:10;65126:1;67268:5;:27::i;:::-;67221:119;;;67322:18;;-1:-1:-1;;;67322:18:0;;;;;;;;;;;67221:119;66845:507;69586:19:::1;69510:103:::0;;:::o;65555:909::-;65660:16;;;;;;;65655:45;;65685:15;;-1:-1:-1;;;65685:15:0;;;;;;;;;;;65655:45;65732:10;;19145:12;;18932:7;19129:13;:28;65715:27;65711:51;;;65751:11;;-1:-1:-1;;;65751:11:0;;;;;;;;;;;65711:51;65789:6;;65777:9;:18;65773:51;;;65804:20;;-1:-1:-1;;;65804:20:0;;;;;;;;;;;65773:51;65853:10;65867:1;20459:25;;;:18;:25;;14352:2;20459:25;;;;14214:13;20459:50;;20458:82;65839:29;65835:57;;;65877:15;;-1:-1:-1;;;65877:15:0;;;;;;;;;;;65835:57;65126:1;65907:8;:20;65903:553;;;66064:8;66058:4;66054:19;65944:12;66041:33;;;66121:4;66105:21;;66099:4;66092:35;66158:50;66145:64;;66251:4;66245;66235:21;66300:30;66235:21;66320:9;;66300:13;:30::i;68608:210::-;68707:16;;;;;;;68703:53;;68733:23;;-1:-1:-1;;;68733:23:0;;;;;;;;;;;68703:53;68767:43;68791:8;68801;68767:23;:43::i;69295:87::-;2155:13;:11;:13::i;:::-;69351:16:::1;:23:::0;;-1:-1:-1;;69351:23:0::1;::::0;::::1;::::0;;69295:87::o;36962:407::-;37137:31;37150:4;37156:2;37160:7;37137:12;:31::i;:::-;-1:-1:-1;;;;;37183:14:0;;;:19;37179:183;;37222:56;37253:4;37259:2;37263:7;37272:5;37222:30;:56::i;:::-;37217:145;;37306:40;;-1:-1:-1;;;37306:40:0;;;;;;;;;;;69076:101;2155:13;:11;:13::i;:::-;69153:16:::1;::::0;;-1:-1:-1;;69133:36:0;::::1;69153:16;::::0;;;::::1;;;69152:17;69133:36:::0;;::::1;;::::0;;69076:101::o;68165:242::-;68320:16;;68388:10;;68219:20;;;;;;;;68320:16;;;;;;;68339:15;;;;;;68356:13;;;68371;19145:12;;18932:7;19129:13;:28;;18871:323;68371:13;:27;68311:88;;;;;;;;68165:242;;;;:::o;23506:318::-;23579:13;23610:16;23618:7;23610;:16::i;:::-;23605:59;;23635:29;;-1:-1:-1;;;23635:29:0;;;;;;;;;;;23605:59;23677:21;23701:10;:8;:10::i;:::-;23677:34;;23735:7;23729:21;23754:1;23729:26;;:87;;;;;;;;;;;;;;;;;23782:7;23791:18;23801:7;23791:9;:18::i;:::-;23765:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23729:87;23722:94;23506:318;-1:-1:-1;;;23506:318:0:o;68976:92::-;2155:13;:11;:13::i;:::-;69047::::1;::::0;;-1:-1:-1;;69030:30:0;::::1;69047:13;::::0;;::::1;69046:14;69030:30;::::0;;68976:92::o;3175:201::-;2155:13;:11;:13::i;:::-;-1:-1:-1;;;;;3264:22:0;::::1;3256:73;;;::::0;-1:-1:-1;;;3256:73:0;;7871:2:1;3256:73:0::1;::::0;::::1;7853:21:1::0;7910:2;7890:18;;;7883:30;7949:34;7929:18;;;7922:62;-1:-1:-1;;;8000:18:1;;;7993:36;8046:19;;3256:73:0::1;7669:402:1::0;3256:73:0::1;3340:28;3359:8;3340:18;:28::i;2434:132::-:0;2342:6;;-1:-1:-1;;;;;2342:6:0;53377:10;2498:23;2490:68;;;;-1:-1:-1;;;2490:68:0;;8278:2:1;2490:68:0;;;8260:21:1;;;8297:18;;;8290:30;8356:34;8336:18;;;8329:62;8408:18;;2490:68:0;8076:356:1;30982:282:0;31047:4;31137:13;;31127:7;:23;31084:153;;;;-1:-1:-1;;31188:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;31188:44:0;:49;;30982:282::o;29044:408::-;29133:13;29149:16;29157:7;29149;:16::i;:::-;29133:32;-1:-1:-1;53377:10:0;-1:-1:-1;;;;;29182:28:0;;;29178:175;;29230:44;29247:5;53377:10;30560:164;:::i;29230:44::-;29225:128;;29302:35;;-1:-1:-1;;;29302:35:0;;;;;;;;;;;29225:128;29365:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;29365:35:0;-1:-1:-1;;;;;29365:35:0;;;;;;;;;29416:28;;29365:24;;29416:28;;;;;;;29122:330;29044:408;;:::o;25668:1275::-;25735:7;25770;25872:13;;25865:4;:20;25861:1015;;;25910:14;25927:23;;;:17;:23;;;;;;-1:-1:-1;;;26016:24:0;;26012:845;;26681:113;26688:11;26681:113;;-1:-1:-1;;;26759:6:0;26741:25;;;;:17;:25;;;;;;26681:113;;26012:845;25887:989;25861:1015;26904:31;;-1:-1:-1;;;26904:31:0;;;;;;;;;;;40631:2966;40704:20;40727:13;40755;40751:44;;40777:18;;-1:-1:-1;;;40777:18:0;;;;;;;;;;;40751:44;-1:-1:-1;;;;;41283:22:0;;;;;;:18;:22;;;;14352:2;41283:22;;;:71;;41321:32;41309:45;;41283:71;;;41597:31;;;:17;:31;;;;;-1:-1:-1;28333:15:0;;28307:24;28303:46;27902:11;27877:23;27873:41;27870:52;27860:63;;41597:173;;41832:23;;;;41597:31;;41283:22;;42597:25;41283:22;;42450:335;43111:1;43097:12;43093:20;43051:346;43152:3;43143:7;43140:16;43051:346;;43370:7;43360:8;43357:1;43330:25;43327:1;43324;43319:59;43205:1;43192:15;43051:346;;;-1:-1:-1;43430:13:0;43426:45;;43452:19;;-1:-1:-1;;;43452:19:0;;;;;;;;;;;43426:45;43488:13;:19;-1:-1:-1;69586:19:0::1;69510:103:::0;;:::o;3536:191::-;3629:6;;;-1:-1:-1;;;;;3646:17:0;;;-1:-1:-1;;;;;;3646:17:0;;;;;;;3679:40;;3629:6;;;3646:17;3629:6;;3679:40;;3610:16;;3679:40;3599:128;3536:191;:::o;57112:1616::-;57192:14;57267:2;57249:16;57246:24;57243:1467;;;57387:4;57381:11;57512:4;57494:16;57488:4;57475:42;57653:23;57646:4;57640:11;57637:40;57627:982;;57715:4;57709;57702:18;57869:4;57851:16;57847:27;57834:41;57831:1;57826:50;57820:4;57813:64;58273:4;58218;58165;58111;58049;57970:5;57929:394;57899:447;58428:1;58422:4;58415:15;58572:16;58566:4;58562:27;58556:34;58546:44;;57627:982;58687:4;58680:15;57112:1616;;;;;:::o;30169:234::-;53377:10;30264:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;30264:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;30264:60:0;;;;;;;;;;30340:55;;540:41:1;;;30264:49:0;;53377:10;30340:55;;513:18:1;30340:55:0;;;;;;;30169:234;;:::o;39453:716::-;39637:88;;-1:-1:-1;;;39637:88:0;;39616:4;;-1:-1:-1;;;;;39637:45:0;;;;;:88;;53377:10;;39704:4;;39710:7;;39719:5;;39637:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39637:88:0;;;;;;;;-1:-1:-1;;39637:88:0;;;;;;;;;;;;:::i;:::-;;;39633:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39920:13:0;;39916:235;;39966:40;;-1:-1:-1;;;39966:40:0;;;;;;;;;;;39916:235;40109:6;40103:13;40094:6;40090:2;40086:15;40079:38;39633:529;-1:-1:-1;;;;;;39796:64:0;-1:-1:-1;;;39796:64:0;;-1:-1:-1;39453:716:0;;;;;;:::o;68826:113::-;68886:13;68919:12;68912:19;;;;;:::i;53497:1745::-;53562:17;53996:4;53989;53983:11;53979:22;54088:1;54082:4;54075:15;54163:4;54160:1;54156:12;54149:19;;;54245:1;54240:3;54233:14;54349:3;54588:5;54570:428;54636:1;54631:3;54627:11;54620:18;;54807:2;54801:4;54797:13;54793:2;54789:22;54784:3;54776:36;54901:2;54891:13;;;54958:25;;54976:5;;54958:25;54570:428;;;-1:-1:-1;55028:13:0;;;-1:-1:-1;;55143:14:0;;;55205:19;;;55143:14;53497:1745;-1:-1:-1;53497:1745:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:348::-;2225:8;2235:6;2289:3;2282:4;2274:6;2270:17;2266:27;2256:55;;2307:1;2304;2297:12;2256:55;-1:-1:-1;2330:20:1;;2373:18;2362:30;;2359:50;;;2405:1;2402;2395:12;2359:50;2442:4;2434:6;2430:17;2418:29;;2494:3;2487:4;2478:6;2470;2466:19;2462:30;2459:39;2456:59;;;2511:1;2508;2501:12;2456:59;2173:348;;;;;:::o;2526:411::-;2597:6;2605;2658:2;2646:9;2637:7;2633:23;2629:32;2626:52;;;2674:1;2671;2664:12;2626:52;2714:9;2701:23;2747:18;2739:6;2736:30;2733:50;;;2779:1;2776;2769:12;2733:50;2818:59;2869:7;2860:6;2849:9;2845:22;2818:59;:::i;:::-;2896:8;;2792:85;;-1:-1:-1;2526:411:1;-1:-1:-1;;;;2526:411:1:o;3124:328::-;3201:6;3209;3217;3270:2;3258:9;3249:7;3245:23;3241:32;3238:52;;;3286:1;3283;3276:12;3238:52;3309:29;3328:9;3309:29;:::i;:::-;3299:39;;3357:38;3391:2;3380:9;3376:18;3357:38;:::i;:::-;3347:48;;3442:2;3431:9;3427:18;3414:32;3404:42;;3124:328;;;;;:::o;3457:186::-;3516:6;3569:2;3557:9;3548:7;3544:23;3540:32;3537:52;;;3585:1;3582;3575:12;3537:52;3608:29;3627:9;3608:29;:::i;3648:478::-;3727:6;3735;3743;3796:2;3784:9;3775:7;3771:23;3767:32;3764:52;;;3812:1;3809;3802:12;3764:52;3848:9;3835:23;3825:33;;3909:2;3898:9;3894:18;3881:32;3936:18;3928:6;3925:30;3922:50;;;3968:1;3965;3958:12;3922:50;4007:59;4058:7;4049:6;4038:9;4034:22;4007:59;:::i;:::-;3648:478;;4085:8;;-1:-1:-1;3981:85:1;;-1:-1:-1;;;;3648:478:1:o;4131:347::-;4196:6;4204;4257:2;4245:9;4236:7;4232:23;4228:32;4225:52;;;4273:1;4270;4263:12;4225:52;4296:29;4315:9;4296:29;:::i;:::-;4286:39;;4375:2;4364:9;4360:18;4347:32;4422:5;4415:13;4408:21;4401:5;4398:32;4388:60;;4444:1;4441;4434:12;4388:60;4467:5;4457:15;;;4131:347;;;;;:::o;4483:127::-;4544:10;4539:3;4535:20;4532:1;4525:31;4575:4;4572:1;4565:15;4599:4;4596:1;4589:15;4615:1138;4710:6;4718;4726;4734;4787:3;4775:9;4766:7;4762:23;4758:33;4755:53;;;4804:1;4801;4794:12;4755:53;4827:29;4846:9;4827:29;:::i;:::-;4817:39;;4875:38;4909:2;4898:9;4894:18;4875:38;:::i;:::-;4865:48;;4960:2;4949:9;4945:18;4932:32;4922:42;;5015:2;5004:9;5000:18;4987:32;5038:18;5079:2;5071:6;5068:14;5065:34;;;5095:1;5092;5085:12;5065:34;5133:6;5122:9;5118:22;5108:32;;5178:7;5171:4;5167:2;5163:13;5159:27;5149:55;;5200:1;5197;5190:12;5149:55;5236:2;5223:16;5258:2;5254;5251:10;5248:36;;;5264:18;;:::i;:::-;5339:2;5333:9;5307:2;5393:13;;-1:-1:-1;;5389:22:1;;;5413:2;5385:31;5381:40;5369:53;;;5437:18;;;5457:22;;;5434:46;5431:72;;;5483:18;;:::i;:::-;5523:10;5519:2;5512:22;5558:2;5550:6;5543:18;5598:7;5593:2;5588;5584;5580:11;5576:20;5573:33;5570:53;;;5619:1;5616;5609:12;5570:53;5675:2;5670;5666;5662:11;5657:2;5649:6;5645:15;5632:46;5720:1;5715:2;5710;5702:6;5698:15;5694:24;5687:35;5741:6;5731:16;;;;;;;4615:1138;;;;;;;:::o;6194:260::-;6262:6;6270;6323:2;6311:9;6302:7;6298:23;6294:32;6291:52;;;6339:1;6336;6329:12;6291:52;6362:29;6381:9;6362:29;:::i;:::-;6352:39;;6410:38;6444:2;6433:9;6429:18;6410:38;:::i;:::-;6400:48;;6194:260;;;;;:::o;6459:380::-;6538:1;6534:12;;;;6581;;;6602:61;;6656:4;6648:6;6644:17;6634:27;;6602:61;6709:2;6701:6;6698:14;6678:18;6675:38;6672:161;;;6755:10;6750:3;6746:20;6743:1;6736:31;6790:4;6787:1;6780:15;6818:4;6815:1;6808:15;6672:161;;6459:380;;;:::o;7194:470::-;7373:3;7411:6;7405:13;7427:53;7473:6;7468:3;7461:4;7453:6;7449:17;7427:53;:::i;:::-;7543:13;;7502:16;;;;7565:57;7543:13;7502:16;7599:4;7587:17;;7565:57;:::i;:::-;7638:20;;7194:470;-1:-1:-1;;;;7194:470:1:o;8437:489::-;-1:-1:-1;;;;;8706:15:1;;;8688:34;;8758:15;;8753:2;8738:18;;8731:43;8805:2;8790:18;;8783:34;;;8853:3;8848:2;8833:18;;8826:31;;;8631:4;;8874:46;;8900:19;;8892:6;8874:46;:::i;:::-;8866:54;8437:489;-1:-1:-1;;;;;;8437:489:1:o;8931:249::-;9000:6;9053:2;9041:9;9032:7;9028:23;9024:32;9021:52;;;9069:1;9066;9059:12;9021:52;9101:9;9095:16;9120:30;9144:5;9120:30;:::i

Swarm Source

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