ETH Price: $3,018.20 (+4.54%)
Gas: 2 Gwei

Token

DragonX Hybrid (DRAGONXHYBRID)
 

Overview

Max Total Supply

160 DRAGONXHYBRID

Holders

62

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
9 DRAGONXHYBRID
0xbc029759c82de86fc2c13b5018df8cf4b0dc5223
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:
DragonHybrid

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
Yes with 9999 runs

Other Settings:
paris EvmVersion
File 1 of 24 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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 2 of 24 : Ownable2Step.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable2Step.sol)

pragma solidity ^0.8.20;

import {Ownable} from "./Ownable.sol";

/**
 * @dev Contract module which provides access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is specified at deployment time in the constructor for `Ownable`. This
 * can later be changed with {transferOwnership} and {acceptOwnership}.
 *
 * This module is used through inheritance. It will make available all functions
 * from parent (Ownable).
 */
abstract contract Ownable2Step is Ownable {
    address private _pendingOwner;

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

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

    /**
     * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual override onlyOwner {
        _pendingOwner = newOwner;
        emit OwnershipTransferStarted(owner(), newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual override {
        delete _pendingOwner;
        super._transferOwnership(newOwner);
    }

    /**
     * @dev The new owner accepts the ownership transfer.
     */
    function acceptOwnership() public virtual {
        address sender = _msgSender();
        if (pendingOwner() != sender) {
            revert OwnableUnauthorizedAccount(sender);
        }
        _transferOwnership(sender);
    }
}

File 3 of 24 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

File 4 of 24 : IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 *
 * ==== Security Considerations
 *
 * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
 * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
 * considered as an intention to spend the allowance in any specific way. The second is that because permits have
 * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
 * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
 * generally recommended is:
 *
 * ```solidity
 * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
 *     try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
 *     doThing(..., value);
 * }
 *
 * function doThing(..., uint256 value) public {
 *     token.safeTransferFrom(msg.sender, address(this), value);
 *     ...
 * }
 * ```
 *
 * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
 * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
 * {SafeERC20-safeTransferFrom}).
 *
 * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
 * contracts should have entry points that don't rely on permit.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     *
     * CAUTION: See Security Considerations above.
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

File 5 of 24 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the value of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 value) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 value) external returns (bool);
}

File 6 of 24 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";
import {IERC20Permit} from "../extensions/IERC20Permit.sol";
import {Address} from "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    /**
     * @dev An operation with an ERC20 token failed.
     */
    error SafeERC20FailedOperation(address token);

    /**
     * @dev Indicates a failed `decreaseAllowance` request.
     */
    error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value)));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value)));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        forceApprove(token, spender, oldAllowance + value);
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no
     * value, non-reverting calls are assumed to be successful.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal {
        unchecked {
            uint256 currentAllowance = token.allowance(address(this), spender);
            if (currentAllowance < requestedDecrease) {
                revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
            }
            forceApprove(token, spender, currentAllowance - requestedDecrease);
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
     * to be set to zero before setting it to a non-zero value, such as USDT.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value));

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0)));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data);
        if (returndata.length != 0 && !abi.decode(returndata, (bool))) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0;
    }
}

File 7 of 24 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.20;

import {IERC721} from "./IERC721.sol";
import {IERC721Receiver} from "./IERC721Receiver.sol";
import {IERC721Metadata} from "./extensions/IERC721Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {Strings} from "../../utils/Strings.sol";
import {IERC165, ERC165} from "../../utils/introspection/ERC165.sol";
import {IERC721Errors} from "../../interfaces/draft-IERC6093.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Errors {
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    mapping(uint256 tokenId => address) private _owners;

    mapping(address owner => uint256) private _balances;

    mapping(uint256 tokenId => address) private _tokenApprovals;

    mapping(address owner => mapping(address operator => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual returns (uint256) {
        if (owner == address(0)) {
            revert ERC721InvalidOwner(address(0));
        }
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual returns (address) {
        return _requireOwned(tokenId);
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual returns (string memory) {
        _requireOwned(tokenId);

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string.concat(baseURI, tokenId.toString()) : "";
    }

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual {
        _approve(to, tokenId, _msgSender());
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual returns (address) {
        _requireOwned(tokenId);

        return _getApproved(tokenId);
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        // Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists
        // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here.
        address previousOwner = _update(to, tokenId, _msgSender());
        if (previousOwner != from) {
            revert ERC721IncorrectOwner(from, tokenId, previousOwner);
        }
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual {
        transferFrom(from, to, tokenId);
        _checkOnERC721Received(from, to, tokenId, data);
    }

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     *
     * IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the
     * core ERC721 logic MUST be matched with the use of {_increaseBalance} to keep balances
     * consistent with ownership. The invariant to preserve is that for any address `a` the value returned by
     * `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`.
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted.
     */
    function _getApproved(uint256 tokenId) internal view virtual returns (address) {
        return _tokenApprovals[tokenId];
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in
     * particular (ignoring whether it is owned by `owner`).
     *
     * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
     * assumption.
     */
    function _isAuthorized(address owner, address spender, uint256 tokenId) internal view virtual returns (bool) {
        return
            spender != address(0) &&
            (owner == spender || isApprovedForAll(owner, spender) || _getApproved(tokenId) == spender);
    }

    /**
     * @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner.
     * Reverts if `spender` does not have approval from the provided `owner` for the given token or for all its assets
     * the `spender` for the specific `tokenId`.
     *
     * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
     * assumption.
     */
    function _checkAuthorized(address owner, address spender, uint256 tokenId) internal view virtual {
        if (!_isAuthorized(owner, spender, tokenId)) {
            if (owner == address(0)) {
                revert ERC721NonexistentToken(tokenId);
            } else {
                revert ERC721InsufficientApproval(spender, tokenId);
            }
        }
    }

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that
     * a uint256 would ever overflow from increments when these increments are bounded to uint128 values.
     *
     * WARNING: Increasing an account's balance using this function tends to be paired with an override of the
     * {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership
     * remain consistent with one another.
     */
    function _increaseBalance(address account, uint128 value) internal virtual {
        unchecked {
            _balances[account] += value;
        }
    }

    /**
     * @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner
     * (or `to`) is the zero address. Returns the owner of the `tokenId` before the update.
     *
     * The `auth` argument is optional. If the value passed is non 0, then this function will check that
     * `auth` is either the owner of the token, or approved to operate on the token (by the owner).
     *
     * Emits a {Transfer} event.
     *
     * NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}.
     */
    function _update(address to, uint256 tokenId, address auth) internal virtual returns (address) {
        address from = _ownerOf(tokenId);

        // Perform (optional) operator check
        if (auth != address(0)) {
            _checkAuthorized(from, auth, tokenId);
        }

        // Execute the update
        if (from != address(0)) {
            // Clear approval. No need to re-authorize or emit the Approval event
            _approve(address(0), tokenId, address(0), false);

            unchecked {
                _balances[from] -= 1;
            }
        }

        if (to != address(0)) {
            unchecked {
                _balances[to] += 1;
            }
        }

        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        return from;
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        address previousOwner = _update(to, tokenId, address(0));
        if (previousOwner != address(0)) {
            revert ERC721InvalidSender(address(0));
        }
    }

    /**
     * @dev Mints `tokenId`, transfers it to `to` and checks for `to` acceptance.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual {
        _mint(to, tokenId);
        _checkOnERC721Received(address(0), to, tokenId, data);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal {
        address previousOwner = _update(address(0), tokenId, address(0));
        if (previousOwner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        }
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(address from, address to, uint256 tokenId) internal {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        address previousOwner = _update(to, tokenId, address(0));
        if (previousOwner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        } else if (previousOwner != from) {
            revert ERC721IncorrectOwner(from, tokenId, previousOwner);
        }
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients
     * are aware of the ERC721 standard to prevent tokens from being forever locked.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is like {safeTransferFrom} in the sense that it invokes
     * {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `tokenId` token must exist and be owned by `from`.
     * - `to` cannot be the zero address.
     * - `from` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(address from, address to, uint256 tokenId) internal {
        _safeTransfer(from, to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual {
        _transfer(from, to, tokenId);
        _checkOnERC721Received(from, to, tokenId, data);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is
     * either the owner of the token, or approved to operate on all tokens held by this owner.
     *
     * Emits an {Approval} event.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address to, uint256 tokenId, address auth) internal {
        _approve(to, tokenId, auth, true);
    }

    /**
     * @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not
     * emitted in the context of transfers.
     */
    function _approve(address to, uint256 tokenId, address auth, bool emitEvent) internal virtual {
        // Avoid reading the owner unless necessary
        if (emitEvent || auth != address(0)) {
            address owner = _requireOwned(tokenId);

            // We do not use _isAuthorized because single-token approvals should not be able to call approve
            if (auth != address(0) && owner != auth && !isApprovedForAll(owner, auth)) {
                revert ERC721InvalidApprover(auth);
            }

            if (emitEvent) {
                emit Approval(owner, to, tokenId);
            }
        }

        _tokenApprovals[tokenId] = to;
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Requirements:
     * - operator can't be the address zero.
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
        if (operator == address(0)) {
            revert ERC721InvalidOperator(operator);
        }
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned).
     * Returns the owner.
     *
     * Overrides to ownership logic should be done to {_ownerOf}.
     */
    function _requireOwned(uint256 tokenId) internal view returns (address) {
        address owner = _ownerOf(tokenId);
        if (owner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        }
        return owner;
    }

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target address. This will revert if the
     * recipient doesn't accept the token transfer. The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory data) private {
        if (to.code.length > 0) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                if (retval != IERC721Receiver.onERC721Received.selector) {
                    revert ERC721InvalidReceiver(to);
                }
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert ERC721InvalidReceiver(to);
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        }
    }
}

File 8 of 24 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.20;

import {ERC721} from "../ERC721.sol";
import {IERC721Enumerable} from "./IERC721Enumerable.sol";
import {IERC165} from "../../../utils/introspection/ERC165.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds enumerability
 * of all the token ids in the contract as well as all token ids owned by each account.
 *
 * CAUTION: `ERC721` extensions that implement custom `balanceOf` logic, such as `ERC721Consecutive`,
 * interfere with enumerability and should not be used together with `ERC721Enumerable`.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    mapping(address owner => mapping(uint256 index => uint256)) private _ownedTokens;
    mapping(uint256 tokenId => uint256) private _ownedTokensIndex;

    uint256[] private _allTokens;
    mapping(uint256 tokenId => uint256) private _allTokensIndex;

    /**
     * @dev An `owner`'s token query was out of bounds for `index`.
     *
     * NOTE: The owner being `address(0)` indicates a global out of bounds index.
     */
    error ERC721OutOfBoundsIndex(address owner, uint256 index);

    /**
     * @dev Batch mint is not allowed.
     */
    error ERC721EnumerableForbiddenBatchMint();

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual returns (uint256) {
        if (index >= balanceOf(owner)) {
            revert ERC721OutOfBoundsIndex(owner, index);
        }
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual returns (uint256) {
        if (index >= totalSupply()) {
            revert ERC721OutOfBoundsIndex(address(0), index);
        }
        return _allTokens[index];
    }

    /**
     * @dev See {ERC721-_update}.
     */
    function _update(address to, uint256 tokenId, address auth) internal virtual override returns (address) {
        address previousOwner = super._update(to, tokenId, auth);

        if (previousOwner == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (previousOwner != to) {
            _removeTokenFromOwnerEnumeration(previousOwner, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (previousOwner != to) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }

        return previousOwner;
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = balanceOf(to) - 1;
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = balanceOf(from);
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }

    /**
     * See {ERC721-_increaseBalance}. We need that to account tokens that were minted in batch
     */
    function _increaseBalance(address account, uint128 amount) internal virtual override {
        if (amount > 0) {
            revert ERC721EnumerableForbiddenBatchMint();
        }
        super._increaseBalance(account, amount);
    }
}

File 9 of 24 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.20;

import {IERC721} from "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 10 of 24 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.20;

import {IERC721} from "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

File 11 of 24 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.20;

import {IERC165} from "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon
     *   a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or
     *   {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon
     *   a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

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

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the address zero.
     *
     * 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);
}

File 12 of 24 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.20;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be
     * reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 13 of 24 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)

pragma solidity ^0.8.20;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error AddressInsufficientBalance(address account);

    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedInnerCall();

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        if (address(this).balance < amount) {
            revert AddressInsufficientBalance(address(this));
        }

        (bool success, ) = recipient.call{value: amount}("");
        if (!success) {
            revert FailedInnerCall();
        }
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason or custom error, it is bubbled
     * up by this function (like regular Solidity function calls). However, if
     * the call reverted with no returned reason, this function reverts with a
     * {FailedInnerCall} error.
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert AddressInsufficientBalance(address(this));
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
     * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
     * unsuccessful call.
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata
    ) internal view returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            // only check if target is a contract if the call was successful and the return data is empty
            // otherwise we already know that it was a contract
            if (returndata.length == 0 && target.code.length == 0) {
                revert AddressEmptyCode(target);
            }
            return returndata;
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
     * revert reason or with a default {FailedInnerCall} error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            return returndata;
        }
    }

    /**
     * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
     */
    function _revert(bytes memory returndata) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert FailedInnerCall();
        }
    }
}

File 14 of 24 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 15 of 24 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol)

pragma solidity ^0.8.20;

import {IERC165} from "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 16 of 24 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 17 of 24 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();

    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
     * denominator == 0.
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by
     * Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0 = x * y; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator.
            // Always >= 1. See https://cs.stackexchange.com/q/138556/92363.

            uint256 twos = denominator & (0 - denominator);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also
            // works in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
     * towards zero.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
        }
    }

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

File 18 of 24 : SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

File 19 of 24 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)

pragma solidity ^0.8.20;

import {Math} from "./math/Math.sol";
import {SignedMath} from "./math/SignedMath.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant HEX_DIGITS = "0123456789abcdef";
    uint8 private constant ADDRESS_LENGTH = 20;

    /**
     * @dev The `value` string doesn't fit in the specified `length`.
     */
    error StringsInsufficientHexLength(uint256 value, uint256 length);

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toStringSigned(int256 value) internal pure returns (string memory) {
        return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal
     * representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

File 20 of 24 : DragonBurnProxy.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.24;

// OpenZeppelin
import "@openzeppelin/contracts/utils/Context.sol";

// lib
import "./lib/interfaces/IDragonX.sol";
import "./lib/Constants.sol";

contract DragonBurnProxy is Context {
    // -----------------------------------------
    // Type declarations
    // -----------------------------------------

    // -----------------------------------------
    // State variables
    // -----------------------------------------
    /**
     * @notice The total amount of DragonX burned through the DragonX burn proxy
     */
    uint256 public totalDragonBurned;

    // -----------------------------------------
    // Events
    // -----------------------------------------
    /**
     * Emitted when burning all DragonX tokens hold by the DragonX burn proxy
     * @param caller the function caller
     * @param amount the amount burned
     */
    event Burned(address indexed caller, uint256 indexed amount);

    // -----------------------------------------
    // Errors
    // -----------------------------------------

    // -----------------------------------------
    // Modifiers
    // -----------------------------------------

    // -----------------------------------------
    // Constructor
    // -----------------------------------------

    // -----------------------------------------
    // Receive function
    // -----------------------------------------
    /**
     * @dev Receive function to handle plain Ether transfers.
     * Always revert.
     */
    receive() external payable {
        revert("noop");
    }

    // -----------------------------------------
    // Fallback function
    // -----------------------------------------
    /**
     * @dev Fallback function to handle non-function calls or Ether transfers if receive() doesn't exist.
     * Always revert.
     */
    fallback() external {
        revert("noop");
    }

    // -----------------------------------------
    // External functions
    // -----------------------------------------
    /**
     * @dev Burns tokens held by this contract and updates the total burned tokens count.
     *      Only callable by external addresses.
     *
     *      The function retrieves the balance of tokens (assumed to be DragonX tokens)
     *      held by the contract itself. If the balance is non-zero, it proceeds to burn
     *      those tokens by calling the `burn` method on the DragonX contract. After burning
     *      the tokens, it updates the `totalDragonBurned` state variable to reflect the new
     *      total amount of burned tokens. Finally, it emits a `Burned` event indicating
     *      the address that initiated the burn and the amount of tokens burned.
     *
     * Emits a `Burned` event with the caller's address and the amount burned.
     */
    function burn() external {
        IDragonX dragonX = IDragonX(DRAGONX_ADDRESS);
        uint256 toBurn = dragonX.balanceOf(address(this));

        // noop if nothing to burn
        if (toBurn == 0) {
            return;
        }

        // Burn tokens hold by the proxy
        dragonX.burn();

        // Update State
        totalDragonBurned += toBurn;

        // Emit events
        emit Burned(_msgSender(), toBurn);
    }

    // -----------------------------------------
    // Public functions
    // -----------------------------------------

    // -----------------------------------------
    // Internal functions
    // -----------------------------------------

    // -----------------------------------------
    // Private functions
    // -----------------------------------------
}

File 21 of 24 : DragonHybrid.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.24;

// OpenZeppelin
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable2Step.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

// lib
import "./lib/Constants.sol";
import "./lib/interfaces/IDragonX.sol";
import "./DragonBurnProxy.sol";

/*
 * @title The DragonX Hybrid Contract
 * @author The DragonX devs
 */
contract DragonHybrid is ERC721Enumerable, Ownable2Step {
    using SafeERC20 for IERC20;
    using SafeERC20 for IDragonX;
    using Strings for uint256;

    // -----------------------------------------
    // Type declarations
    // -----------------------------------------
    /**
     * @notice Detailed Ownership Info
     */
    struct DragonOwnerDetails {
        uint256[] tokenIds;
        uint256 balanceOf;
    }

    /**
     * @notice Owner Info Query
     */
    struct DragonOwnerInfo {
        DragonOwnerDetails Apprentice;
        DragonOwnerDetails Ninja;
        DragonOwnerDetails Samurai;
        DragonOwnerDetails Shogun;
        DragonOwnerDetails Emperor;
    }

    // -----------------------------------------
    // State variables
    // -----------------------------------------
    /**
     * @notice the current total supply per individual dragon type
     */
    mapping(DragonTypes dragonType => uint256 totalSupply)
        public totalSupplyPerDragon;

    /**
     * @notice balance of dragons per owner
     */
    mapping(address owner => mapping(DragonTypes dragonType => uint256 balanceOf))
        public balanceOfDragon;

    /**
     * @notice The total amount of TitanX collected and send to the
     * the DragonX vault for minting NFTs
     */
    uint256 public totalMintFee;

    /**
     * @notice The total amount of DragonX locked to burn NFTs
     */
    uint256 public totalBurnFee;

    /**
     * @notice The DragonX vault representing the tokens locked in the bridge
     */
    uint256 public vault;

    /**
     * @dev the next token ID for minting
     */
    uint256 private _nextTokenId = 1;

    /**
     * @dev the base URI for DragonX Hybrid
     */
    string private _baseTokenURI;

    /**
     * @dev the burn proxy contract for the burn fee
     */
    address immutable private _burnProxyAddress;

    /**
     * @notice maps NFT id to its metadata
     */
    mapping(uint256 => DragonTypes) private _tokenIdToDragonType;

    // -----------------------------------------
    // Events
    // -----------------------------------------
    /**
     * Emitted when a NFT is minted
     * @param owner the new owner
     * @param tokenId the token ID (NFT ID)
     * @param dragonType the dragon type
     * @param lockupAmount the amount locked in the bridge contract
     * @param fee the fee paid for minting (in liquid TitanX)
     */
    event Minted(
        address indexed owner,
        uint256 indexed tokenId,
        DragonTypes dragonType,
        uint256 lockupAmount,
        uint256 fee
    );

    /**
     * Emitted when a NFT is burned
     * @param owner the owner of the NFT
     * @param tokenId the token ID (NFT ID)
     * @param dragonType the dragon type
     * @param releasedAmount the released amount (released from bridge vault)
     * @param fee the fee payed to burn the token (in liquid DragonX)
     */
    event Burned(
        address indexed owner,
        uint256 indexed tokenId,
        DragonTypes dragonType,
        uint256 releasedAmount,
        uint256 fee
    );

    // -----------------------------------------
    // Errors
    // -----------------------------------------

    // -----------------------------------------
    // Modifiers
    // -----------------------------------------

    // -----------------------------------------
    // Constructor
    // -----------------------------------------
    /**
     * @dev Initializes a new instance of a contract that inherits from ERC721 and Ownable.
     *      This constructor sets up a new DragonX Hybrid NFT contract with a specified base URI
     *      for token metadata and a burn proxy address.
     *
     * @param baseTokenURI The base URI for token metadata. Must be a non-empty string.
     * @param burnProxy The address of the burn proxy. Must not be the zero address.
     */
    constructor(
        string memory baseTokenURI,
        address burnProxy
    ) ERC721("DragonX Hybrid", "DRAGONXHYBRID") Ownable(msg.sender) {
        require(burnProxy != address(0), "invalid burn proxy");
        require(bytes(baseTokenURI).length > 0, "invalid base URI");

        _baseTokenURI = baseTokenURI;
        _burnProxyAddress = burnProxy;
    }

    // -----------------------------------------
    // Receive function
    // -----------------------------------------

    // -----------------------------------------
    // Fallback function
    // -----------------------------------------

    // -----------------------------------------
    // External functions
    // -----------------------------------------
    /**
     * @dev Mints a new token of a specified dragon type.
     *
     * This function first determines the lock amount and mint fee for the specified
     * dragon type by calling `getDragonDetails`. It transfers the required amount of
     * DragonX tokens from the caller to the contract, updating the `vault`.
     * The TitanX mint fee is transferred from the caller to the DragonX vault, after which
     * the vault's balance is updated.
     * A new token ID is generated, and a new NFT is minted for the caller. The function
     * updates the total mint fee collected, maps the new token ID to its dragon type,
     * and increments the `_nextTokenId`.
     * Finally, the function emits a `Minted` event, detailing the minting transaction.
     *
     * @param dragonType The type of dragon to mint, as defined in the `DragonTypes` enum.
     * @return newTokenId The ID of the newly minted token.
     */

    function mint(
        DragonTypes dragonType
    ) external returns (uint256 newTokenId) {
        IDragonX dragonX = IDragonX(DRAGONX_ADDRESS);
        IERC20 titanX = IERC20(TITANX_ADDRESS);

        // Determine lock amount and mint fee based on the dragon type
        (uint256 mintFee, , uint256 lockAmount) = getDragonDetails(dragonType);

        // Transfer and lock DragonX in the NFT bridge
        dragonX.safeTransferFrom(msg.sender, address(this), lockAmount);
        vault += lockAmount;

        // Mint a new NFT
        newTokenId = _nextTokenId;

        // Map token ID to dragon type
        _tokenIdToDragonType[newTokenId] = dragonType;

        // Mint the new NFT (which will update balance tracking)
        _mint(msg.sender, newTokenId);

        // Update state
        totalMintFee += mintFee;
        _nextTokenId++;

        // Transfer TitanX mint fee to the DragonX vault and update the vault
        titanX.safeTransferFrom(msg.sender, DRAGONX_ADDRESS, mintFee);
        dragonX.updateVault();

        // Emit event
        emit Minted(msg.sender, newTokenId, dragonType, lockAmount, mintFee);
    }

    /**
     * @dev Burns a specific token (represented by `tokenId`) and handles associated fees and locked amounts.
     *
     *      The burn fee is transferred from the caller's address to the burn proxy address, and then
     *      the `burn` method is called on the burn proxy. The locked amount of tokens is released back
     *      to the NFT owner, and the `vault` state variable is decreased by the lock amount.
     *      Finally, the function emits a `Burned` event with details of the burn transaction.
     *
     * @param tokenId The ID of the token to be burned.
     */
    function burn(uint256 tokenId) external {
        IDragonX dragonX = IDragonX(DRAGONX_ADDRESS);
        DragonBurnProxy burnProxy = DragonBurnProxy(payable(_burnProxyAddress));
        DragonTypes dragonType = _tokenIdToDragonType[tokenId];

        // Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists
        // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here.
        address owner = _update(address(0), tokenId, msg.sender);

        // Determine locked amount and burn fee based on the dragon type
        (, uint256 burnFee, uint256 lockAmount) = getDragonDetails(dragonType);

        // Send burn fee to burn proxy
        dragonX.safeTransferFrom(msg.sender, _burnProxyAddress, burnFee);
        burnProxy.burn();

        // Update state
        totalBurnFee += burnFee;

        // Release tokens to NFT owner
        vault -= lockAmount;
        dragonX.safeTransfer(owner, lockAmount);

        // Emit event
        emit Burned(owner, tokenId, dragonType, lockAmount, burnFee);
    }

    /**
     * @dev Returns the dragon type associated with a given tokenId.
     * Requires that the tokenId exists (is owned), otherwise,
     * it reverts with `ERC721NonexistentToken`.
     *
     * @param tokenId The token ID for which to query the dragon type.
     * @return dragonType The type of the dragon associated with the given tokenId.
     */
    function tokenIdToDragonType(
        uint256 tokenId
    ) external view returns (DragonTypes dragonType) {
        // Reverts with ERC721NonexistentToken
        _requireOwned(tokenId);
        return _tokenIdToDragonType[tokenId];
    }

    /**
     * @notice Retrieves detailed dragon ownership information for a given owner.
     * @param owner The address whose dragon ownership information is being queried.
     * @return ownerInfo A DragonOwnerInfo struct containing detailed information about the dragons owned.
     */
    function dragonsOfOwner(
        address owner
    ) external view returns (DragonOwnerInfo memory ownerInfo) {
        // Initialize the balances
        ownerInfo.Apprentice.balanceOf = balanceOfDragon[owner][
            DragonTypes.Apprentice
        ];
        ownerInfo.Ninja.balanceOf = balanceOfDragon[owner][DragonTypes.Ninja];
        ownerInfo.Samurai.balanceOf = balanceOfDragon[owner][
            DragonTypes.Samurai
        ];
        ownerInfo.Shogun.balanceOf = balanceOfDragon[owner][DragonTypes.Shogun];
        ownerInfo.Emperor.balanceOf = balanceOfDragon[owner][
            DragonTypes.Emperor
        ];

        // Initialize the tokenIds arrays with the correct sizes
        ownerInfo.Apprentice.tokenIds = new uint256[](
            ownerInfo.Apprentice.balanceOf
        );
        ownerInfo.Ninja.tokenIds = new uint256[](ownerInfo.Ninja.balanceOf);
        ownerInfo.Samurai.tokenIds = new uint256[](ownerInfo.Samurai.balanceOf);
        ownerInfo.Shogun.tokenIds = new uint256[](ownerInfo.Shogun.balanceOf);
        ownerInfo.Emperor.tokenIds = new uint256[](ownerInfo.Emperor.balanceOf);

        uint256 ownerBalance = balanceOf(owner);
        uint256[] memory counters = new uint256[](5);

        // Loop to populate the tokenIds
        for (uint256 idx = 0; idx < ownerBalance; idx++) {
            uint256 tokenId = tokenOfOwnerByIndex(owner, idx);
            DragonTypes dragonType = _tokenIdToDragonType[tokenId];

            if (dragonType == DragonTypes.Apprentice) {
                ownerInfo.Apprentice.tokenIds[counters[0]++] = tokenId;
            }
            if (dragonType == DragonTypes.Ninja) {
                ownerInfo.Ninja.tokenIds[counters[1]++] = tokenId;
            }
            if (dragonType == DragonTypes.Samurai) {
                ownerInfo.Samurai.tokenIds[counters[2]++] = tokenId;
            }
            if (dragonType == DragonTypes.Shogun) {
                ownerInfo.Shogun.tokenIds[counters[3]++] = tokenId;
            }
            if (dragonType == DragonTypes.Emperor) {
                ownerInfo.Emperor.tokenIds[counters[4]++] = tokenId;
            }
        }

        return ownerInfo;
    }

    /**
     * @dev Sets the base URI for token metadata. This function can only be called by genesis (contract owner).
     * @param baseTokenURI The base URI to be set for the token metadata. Must be a non-empty string.
     */
    function setBaseURI(string memory baseTokenURI) external onlyOwner {
        require(bytes(baseTokenURI).length > 0, "invalid base URI");
        _baseTokenURI = baseTokenURI;
    }

    // -----------------------------------------
    // Public functions
    // -----------------------------------------
    /**
     * @dev Returns the URI for a given token ID. This URI points to the token's metadata.
     *
     *      The URI is constructed by concatenating the base URI with the string representation
     *      of the `dragonType` associated with the `tokenId`. This URI points to
     *      a JSON file hosted externally that includes metadata such as the token's name,
     *      description, and attributes.
     *
     * @param tokenId The unique identifier for a token.
     * @return A string representing the URI of the given token ID.
     */
    function tokenURI(
        uint256 tokenId
    ) public view virtual override returns (string memory) {
        _requireOwned(tokenId);
        DragonTypes dragonType = _tokenIdToDragonType[tokenId];

        string memory baseURI = _baseURI();
        return
            string.concat(baseURI, uint256(dragonType).toString());
    }

    /**
     * @dev Returns the details for a given dragon type, including mint fee, burn fee, and lock amount.
     *
     * @param dragonType The type of the dragon as defined in the `DragonTypes` enum.
     * @return mintFee The fee required to mint a dragon of the specified type.
     * @return burnFee The fee required to burn a dragon of the specified type.
     * @return lockAmount The amount that needs to be locked up for a dragon of the specified type.
     */
    function getDragonDetails(
        DragonTypes dragonType
    )
        public
        pure
        returns (uint256 mintFee, uint256 burnFee, uint256 lockAmount)
    {
        if (dragonType == DragonTypes.Apprentice) {
            burnFee = APPRENTICE_BURN_FEE;
            mintFee = APPRENTICE_MINT_FEE;
            lockAmount = APPRENTICE_LOCKUP_AMOUNT;
        }
        if (dragonType == DragonTypes.Ninja) {
            burnFee = NINJA_BURN_FEE;
            mintFee = NINJA_MINT_FEE;
            lockAmount = NINJA_LOCKUP_AMOUNT;
        }
        if (dragonType == DragonTypes.Samurai) {
            burnFee = SAMURAI_BURN_FEE;
            mintFee = SAMURAI_MINT_FEE;
            lockAmount = SAMURAI_LOCKUP_AMOUNT;
        }
        if (dragonType == DragonTypes.Shogun) {
            burnFee = SHOGUN_BURN_FEE;
            mintFee = SHOGUN_MINT_FEE;
            lockAmount = SHOGUN_LOCKUP_AMOUNT;
        }
        if (dragonType == DragonTypes.Emperor) {
            burnFee = EMPEROR_BURN_FEE;
            mintFee = EMPEROR_MINT_FEE;
            lockAmount = EMPEROR_LOCKUP_AMOUNT;
        }
    }

    // -----------------------------------------
    // Internal functions
    // -----------------------------------------
    /**
     * @dev override update implementation to keep Dragon balance and ownership information in sync
     * this will call the base ERC721 class to allow for standard ownership tracking
     * @param to the new token owner
     * @param tokenId the token ID
     * @param auth authentication if needed
     */
    function _update(
        address to,
        uint256 tokenId,
        address auth
    ) internal virtual override returns (address) {
        address previousOwner = super._update(to, tokenId, auth);
        DragonTypes dragonType = _tokenIdToDragonType[tokenId];

        if (previousOwner == address(0)) {
            _addDragonToTotalDragonSupply(dragonType);
            /* istanbul ignore else */
        } else if (previousOwner != to) {
            _removeDragonFromOwnerBalance(previousOwner, dragonType);
        }

        if (to == address(0)) {
            _removeDragonFromTotalDragonSupply(dragonType);
        } else if (previousOwner != to) {
            _addDragonToOwnerBalance(to, dragonType);
        }

        return previousOwner;
    }

    /**
     * @dev get the base URI
     */
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    // -----------------------------------------
    // Private functions
    // -----------------------------------------
    /**
     * @dev remove a dragon from the owner balance tracking
     * @param previousOwner the previous owner
     * @param dragonType the type of dragon the owner does not own anymore
     */
    function _removeDragonFromOwnerBalance(
        address previousOwner,
        DragonTypes dragonType
    ) private {
        balanceOfDragon[previousOwner][dragonType] -= 1;
    }

    /**
     * @dev add a dragon to the owner balance tracking
     * @param newOwner the new owner
     * @param dragonType the type of dragon the owner now owns
     */
    function _addDragonToOwnerBalance(
        address newOwner,
        DragonTypes dragonType
    ) private {
        balanceOfDragon[newOwner][dragonType] += 1;
    }

    /**
     * remove a dragon to the total dragon supply
     * @param dragonType the dragon type which was removed from circulation
     */
    function _removeDragonFromTotalDragonSupply(
        DragonTypes dragonType
    ) private {
        totalSupplyPerDragon[dragonType] -= 1;
    }

    /**
     * add a dragon to the total dragon supply
     * @param dragonType the dragon type which was added to circulation
     */
    function _addDragonToTotalDragonSupply(DragonTypes dragonType) private {
        totalSupplyPerDragon[dragonType] += 1;
    }
}

File 22 of 24 : Constants.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.24;

// Addresses
address constant DRAGONX_ADDRESS = 0x96a5399D07896f757Bd4c6eF56461F58DB951862;
address constant TITANX_ADDRESS = 0xF19308F923582A6f7c465e5CE7a9Dc1BEC6665B1;
address constant WETH9_ADDRESS = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
address constant UNI_SWAP_ROUTER = 0xE592427A0AEce92De3Edee1F18E0157C05861564;

/* Uniswap Liquidity Pools (DragonX, TitanX) */
uint24 constant FEE_TIER = 10000;

// Dragon Types
enum DragonTypes {
    Apprentice,
    Ninja,
    Samurai,
    Shogun,
    Emperor
}

// Constants for Apprentice
uint256 constant APPRENTICE_MINT_FEE = 8800 * 10 ** 18; // 8.8 K TitanX with 18 decimals
uint256 constant APPRENTICE_BURN_FEE = 8800 * 10 ** 18; // 8.8 K DragonX with 18 decimals
uint256 constant APPRENTICE_LOCKUP_AMOUNT = 8800000 * 10 ** 18; // 8.8 Million DragonX with 18 decimals

// Constants for Ninja
uint256 constant NINJA_MINT_FEE = 88000 * 10 ** 18; // 88 K TitanX with 18 decimals
uint256 constant NINJA_BURN_FEE = 88000 * 10 ** 18; // 88 K DragonX with 18 decimals
uint256 constant NINJA_LOCKUP_AMOUNT = 88000000 * 10 ** 18; // 88 Million DragonX with 18 decimals

// Constants for Samurai
uint256 constant SAMURAI_MINT_FEE = 880000 * 10 ** 18; // 880 K TitanX with 18 decimals
uint256 constant SAMURAI_BURN_FEE = 880000 * 10 ** 18; // 880 K DragonX with 18 decimals
uint256 constant SAMURAI_LOCKUP_AMOUNT = 888000000 * 10 ** 18; // 888 Million DragonX with 18 decimals

// Constants for Shogun
uint256 constant SHOGUN_MINT_FEE = 8800000 * 10 ** 18; // 8.8 Million TitanX with 18 decimals
uint256 constant SHOGUN_BURN_FEE = 8800000 * 10 ** 18; // 8.8 Million DragonX with 18 decimals
uint256 constant SHOGUN_LOCKUP_AMOUNT = 8800000000 * 10 ** 18; // 8.8 Billion DragonX with 18 decimals

// Constants for Emperor
uint256 constant EMPEROR_MINT_FEE = 88800000 * 10 ** 18; // 88.8 Million TitanX with 18 decimals
uint256 constant EMPEROR_BURN_FEE = 88800000 * 10 ** 18; // 88.8 Million DragonX with 18 decimals
uint256 constant EMPEROR_LOCKUP_AMOUNT = 88000000000 * 10 ** 18; // 88 Billion DragonX with 18 decimals

File 23 of 24 : IDragonX.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.24;

// OpenZeppelin
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

interface IDragonX is IERC20 {
    // External functions
    function mint(uint256 amount) external;
    function stake() external;
    function claim() external returns (uint256 claimedAmount);
    function totalStakesOpened() external view returns (uint256 totalStakes);
    function incentiveFeeForClaim() external view returns (uint256 fee);
    function stakeReachedMaturity() external view returns (bool hasStakesToEnd, address instanceAddress, uint256 sId);
    function burn() external;
    function vault() external view returns (uint256 vault);

    // Public functions
    function updateVault() external;
    function totalEthClaimable() external view returns (uint256 claimable);
}

File 24 of 24 : BurnDragonHybridProxy.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.24;

import "../DragonHybrid.sol";
import "../lib/interfaces/IDragonX.sol";

contract BurnDragonHybridProxy {
    function burn(uint256 id, uint256 burnFee, address dragonHybridAddress, address dragonAddress) external {
        IDragonX dragonX = IDragonX(dragonAddress);
        DragonHybrid dragonHybrid = DragonHybrid(payable(dragonHybridAddress));

        // Approve DragonX Hybrid to spent the burn fee
        dragonX.approve(dragonHybridAddress, burnFee);

        // Burn the NFT
        dragonHybrid.burn(id);
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 9999
  },
  "metadata": {
    "bytecodeHash": "none"
  },
  "evmVersion": "paris",
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseTokenURI","type":"string"},{"internalType":"address","name":"burnProxy","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[],"name":"ERC721EnumerableForbiddenBatchMint","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"ERC721OutOfBoundsIndex","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"enum DragonTypes","name":"dragonType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"releasedAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"fee","type":"uint256"}],"name":"Burned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"enum DragonTypes","name":"dragonType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"lockupAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"fee","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","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":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"enum DragonTypes","name":"dragonType","type":"uint8"}],"name":"balanceOfDragon","outputs":[{"internalType":"uint256","name":"balanceOf","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"dragonsOfOwner","outputs":[{"components":[{"components":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"uint256","name":"balanceOf","type":"uint256"}],"internalType":"struct DragonHybrid.DragonOwnerDetails","name":"Apprentice","type":"tuple"},{"components":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"uint256","name":"balanceOf","type":"uint256"}],"internalType":"struct DragonHybrid.DragonOwnerDetails","name":"Ninja","type":"tuple"},{"components":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"uint256","name":"balanceOf","type":"uint256"}],"internalType":"struct DragonHybrid.DragonOwnerDetails","name":"Samurai","type":"tuple"},{"components":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"uint256","name":"balanceOf","type":"uint256"}],"internalType":"struct DragonHybrid.DragonOwnerDetails","name":"Shogun","type":"tuple"},{"components":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"uint256","name":"balanceOf","type":"uint256"}],"internalType":"struct DragonHybrid.DragonOwnerDetails","name":"Emperor","type":"tuple"}],"internalType":"struct DragonHybrid.DragonOwnerInfo","name":"ownerInfo","type":"tuple"}],"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":"enum DragonTypes","name":"dragonType","type":"uint8"}],"name":"getDragonDetails","outputs":[{"internalType":"uint256","name":"mintFee","type":"uint256"},{"internalType":"uint256","name":"burnFee","type":"uint256"},{"internalType":"uint256","name":"lockAmount","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum DragonTypes","name":"dragonType","type":"uint8"}],"name":"mint","outputs":[{"internalType":"uint256","name":"newTokenId","type":"uint256"}],"stateMutability":"nonpayable","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":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseTokenURI","type":"string"}],"name":"setBaseURI","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenIdToDragonType","outputs":[{"internalType":"enum DragonTypes","name":"dragonType","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"totalBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMintFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum DragonTypes","name":"dragonType","type":"uint8"}],"name":"totalSupplyPerDragon","outputs":[{"internalType":"uint256","name":"totalSupply","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vault","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60a060405260016011553480156200001657600080fd5b506040516200320e3803806200320e83398101604081905262000039916200023e565b336040518060400160405280600e81526020016d111c9859dbdb9608121e589c9a5960921b8152506040518060400160405280600d81526020016c11149051d3d396121650949251609a1b8152508160009081620000989190620003b7565b506001620000a78282620003b7565b5050506001600160a01b038116620000da57604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b620000e5816200019b565b506001600160a01b038116620001335760405162461bcd60e51b8152602060048201526012602482015271696e76616c6964206275726e2070726f787960701b6044820152606401620000d1565b6000825111620001795760405162461bcd60e51b815260206004820152601060248201526f696e76616c696420626173652055524960801b6044820152606401620000d1565b6012620001878382620003b7565b506001600160a01b03166080525062000483565b600b80546001600160a01b0319169055620001b681620001b9565b50565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b80516001600160a01b03811681146200023957600080fd5b919050565b600080604083850312156200025257600080fd5b82516001600160401b03808211156200026a57600080fd5b818501915085601f8301126200027f57600080fd5b8151818111156200029457620002946200020b565b604051601f8201601f19908116603f01168101908382118183101715620002bf57620002bf6200020b565b81604052828152602093508884848701011115620002dc57600080fd5b600091505b82821015620003005784820184015181830185015290830190620002e1565b60008484830101528096505050506200031b81860162000221565b925050509250929050565b600181811c908216806200033b57607f821691505b6020821081036200035c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003b2576000816000526020600020601f850160051c810160208610156200038d5750805b601f850160051c820191505b81811015620003ae5782815560010162000399565b5050505b505050565b81516001600160401b03811115620003d357620003d36200020b565b620003eb81620003e4845462000326565b8462000362565b602080601f8311600181146200042357600084156200040a5750858301515b600019600386901b1c1916600185901b178555620003ae565b600085815260208120601f198616915b82811015620004545788860151825594840194600190910190840162000433565b5085821015620004735787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b608051612d68620004a66000396000818161089901526108ed0152612d686000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c80636ecd23061161010f578063a4c60e9c116100a2578063e30c397811610071578063e30c397814610460578063e985e9c514610471578063f2fde38b146104ad578063fbfa77cf146104c057600080fd5b8063a4c60e9c146103ef578063b88d4fde1461041a578063c87b56dd1461042d578063e201b3441461044057600080fd5b806388adb9ff116100de57806388adb9ff146103a35780638da5cb5b146103c357806395d89b41146103d4578063a22cb465146103dc57600080fd5b80636ecd23061461036d57806370a0823114610380578063715018a61461039357806379ba50971461039b57600080fd5b80632b24fb111161018757806342966c681161015657806342966c68146103215780634f6ccce71461033457806355f804b3146103475780636352211e1461035a57600080fd5b80632b24fb11146102d25780632f745c59146102f2578063324db30f1461030557806342842e0e1461030e57600080fd5b8063095ea7b3116101c3578063095ea7b31461027457806318160ddd14610289578063200636aa1461029157806323b872dd146102bf57600080fd5b806301ffc9a7146101f55780630211a53c1461021d57806306fdde0314610234578063081812fc14610249575b600080fd5b610208610203366004612582565b6104c9565b60405190151581526020015b60405180910390f35b610226600e5481565b604051908152602001610214565b61023c610525565b60405161021491906125ef565b61025c610257366004612602565b6105b7565b6040516001600160a01b039091168152602001610214565b610287610282366004612637565b6105e0565b005b600854610226565b6102a461029f366004612670565b6105ef565b60408051938452602084019290925290820152606001610214565b6102876102cd36600461268b565b610712565b6102266102e0366004612670565b600c6020526000908152604090205481565b610226610300366004612637565b6107d4565b610226600f5481565b61028761031c36600461268b565b610852565b61028761032f366004612602565b610872565b610226610342366004612602565b6109f9565b61028761035536600461276c565b610a6b565b61025c610368366004612602565b610aea565b61022661037b366004612670565b610af5565b61022661038e3660046127b5565b610cb5565b610287610d16565b610287610d2a565b6103b66103b13660046127b5565b610d87565b6040516102149190612824565b600a546001600160a01b031661025c565b61023c611213565b6102876103ea3660046128cd565b611222565b6102266103fd366004612904565b600d60209081526000928352604080842090915290825290205481565b610287610428366004612937565b61122d565b61023c61043b366004612602565b611244565b61045361044e366004612602565b6112b1565b6040516102149190612a1d565b600b546001600160a01b031661025c565b61020861047f366004612a2b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102876104bb3660046127b5565b6112d3565b61022660105481565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000148061051f575061051f8261135c565b92915050565b60606000805461053490612a55565b80601f016020809104026020016040519081016040528092919081815260200182805461056090612a55565b80156105ad5780601f10610582576101008083540402835291602001916105ad565b820191906000526020600020905b81548152906001019060200180831161059057829003601f168201915b5050505050905090565b60006105c28261143f565b506000828152600460205260409020546001600160a01b031661051f565b6105eb828233611491565b5050565b6000808080846004811115610606576106066129b3565b0361062957506901dd0c885f9a0d80000091508190506a074778f4b571c4bc0000005b600184600481111561063d5761063d6129b3565b0361066057506912a27d53bc048700000091508190506a48cab98f1671af580000005b6002846004811115610674576106746129b3565b03610698575069ba58e545582d4600000091508190506b02de89507556d846780000005b60038460048111156106ac576106ac6129b3565b036106d157506a074778f4b571c4bc00000091508190506b1c6f307be4c4687e600000005b60048460048111156106e5576106e56129b3565b0361070b57506a497421a5557c070c00000091508190506c011c57e4d6efac14efc00000005b9193909250565b6001600160a01b03821661075a576040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600060048201526024015b60405180910390fd5b600061076783833361149e565b9050836001600160a01b0316816001600160a01b0316146107ce576040517f64283d7b0000000000000000000000000000000000000000000000000000000081526001600160a01b0380861660048301526024820184905282166044820152606401610751565b50505050565b60006107df83610cb5565b8210610829576040517fa57d13dc0000000000000000000000000000000000000000000000000000000081526001600160a01b038416600482015260248101839052604401610751565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61086d8383836040518060200160405280600081525061122d565b505050565b6000818152601360205260408120547396a5399d07896f757bd4c6ef56461f58db951862917f00000000000000000000000000000000000000000000000000000000000000009160ff16906108c881863361149e565b90506000806108d6846105ef565b909350915061091290506001600160a01b038716337f00000000000000000000000000000000000000000000000000000000000000008561154a565b846001600160a01b03166344df8e706040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561094d57600080fd5b505af1158015610961573d6000803e3d6000fd5b5050505081600f60008282546109779190612ad7565b9250508190555080601060008282546109909190612aea565b909155506109aa90506001600160a01b03871684836115c6565b86836001600160a01b03167f789d35a777472980baffd36acb0eefeffca884b1e21ad63b3240d064790a7f358684866040516109e893929190612afd565b60405180910390a350505050505050565b6000610a0460085490565b8210610a46576040517fa57d13dc0000000000000000000000000000000000000000000000000000000081526000600482015260248101839052604401610751565b60088281548110610a5957610a59612b1c565b90600052602060002001549050919050565b610a736115f7565b6000815111610ade576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f696e76616c6964206261736520555249000000000000000000000000000000006044820152606401610751565b60126105eb8282612b9b565b600061051f8261143f565b60007396a5399d07896f757bd4c6ef56461f58db95186273f19308f923582a6f7c465e5ce7a9dc1bec6665b18280610b2c866105ef565b919350909150610b4990506001600160a01b03851633308461154a565b8060106000828254610b5b9190612ad7565b90915550506011546000818152601360205260409020805491965087917fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001836004811115610bae57610bae6129b3565b0217905550610bbd338661163d565b81600e6000828254610bcf9190612ad7565b909155505060118054906000610be483612c5b565b90915550610c1390506001600160a01b038416337396a5399d07896f757bd4c6ef56461f58db9518628561154a565b836001600160a01b0316637196e8416040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610c4e57600080fd5b505af1158015610c62573d6000803e3d6000fd5b5050505084336001600160a01b03167f65036dcb925a1caed31a9ef1b65aa1daec0ccbbdebe1d9f3ee33775a54ad7ba1888486604051610ca493929190612afd565b60405180910390a350505050919050565b60006001600160a01b038216610cfa576040517f89c62b6400000000000000000000000000000000000000000000000000000000815260006004820152602401610751565b506001600160a01b031660009081526003602052604090205490565b610d1e6115f7565b610d2860006116d4565b565b600b5433906001600160a01b03168114610d7b576040517f118cdaa70000000000000000000000000000000000000000000000000000000081526001600160a01b0382166004820152602401610751565b610d84816116d4565b50565b610d8f6124aa565b6001600160a01b0382166000908152600d60209081526040808320838052808352818420548551840152600184528083528184205485840151840152600284528083528184205485830151840152600384528083528184205460608601518401526004845282529091205460808301518201528151015167ffffffffffffffff811115610e1e57610e1e6126c7565b604051908082528060200260200182016040528015610e47578160200160208202803683370190505b50815152602080820151015167ffffffffffffffff811115610e6b57610e6b6126c7565b604051908082528060200260200182016040528015610e94578160200160208202803683370190505b50602080830151919091526040820151015167ffffffffffffffff811115610ebe57610ebe6126c7565b604051908082528060200260200182016040528015610ee7578160200160208202803683370190505b5060408201515260608101516020015167ffffffffffffffff811115610f0f57610f0f6126c7565b604051908082528060200260200182016040528015610f38578160200160208202803683370190505b5060608201515260808101516020015167ffffffffffffffff811115610f6057610f606126c7565b604051908082528060200260200182016040528015610f89578160200160208202803683370190505b506080820151526000610f9b83610cb5565b60408051600580825260c08201909252919250600091906020820160a08036833701905050905060005b8281101561120b576000610fd986836107d4565b60008181526013602052604081205491925060ff90911690816004811115611003576110036129b3565b0361105957818660000151600001518560008151811061102557611025612b1c565b60200260200101805180919061103a90612c5b565b90528151811061104c5761104c612b1c565b6020026020010181815250505b600181600481111561106d5761106d6129b3565b036110c357818660200151600001518560018151811061108f5761108f612b1c565b6020026020010180518091906110a490612c5b565b9052815181106110b6576110b6612b1c565b6020026020010181815250505b60028160048111156110d7576110d76129b3565b0361112d5781866040015160000151856002815181106110f9576110f9612b1c565b60200260200101805180919061110e90612c5b565b90528151811061112057611120612b1c565b6020026020010181815250505b6003816004811115611141576111416129b3565b0361119757818660600151600001518560038151811061116357611163612b1c565b60200260200101805180919061117890612c5b565b90528151811061118a5761118a612b1c565b6020026020010181815250505b60048160048111156111ab576111ab6129b3565b036112015781866080015160000151856004815181106111cd576111cd612b1c565b6020026020010180518091906111e290612c5b565b9052815181106111f4576111f4612b1c565b6020026020010181815250505b5050600101610fc5565b505050919050565b60606001805461053490612a55565b6105eb338383611705565b611238848484610712565b6107ce848484846117db565b606061124f8261143f565b5060008281526013602052604081205460ff169061126b611980565b905080611288836004811115611283576112836129b3565b61198f565b604051602001611299929190612c75565b60405160208183030381529060405292505050919050565b60006112bc8261143f565b505060009081526013602052604090205460ff1690565b6112db6115f7565b600b80546001600160a01b0383167fffffffffffffffffffffffff00000000000000000000000000000000000000009091168117909155611324600a546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806113ef57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061051f57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff0000000000000000000000000000000000000000000000000000000083161461051f565b6000818152600260205260408120546001600160a01b03168061051f576040517f7e27328900000000000000000000000000000000000000000000000000000000815260048101849052602401610751565b61086d8383836001611a2f565b6000806114ac858585611b85565b60008581526013602052604090205490915060ff166001600160a01b0382166114dd576114d881611c5a565b611500565b856001600160a01b0316826001600160a01b031614611500576115008282611ca8565b6001600160a01b03861661151c5761151781611d0c565b61153f565b856001600160a01b0316826001600160a01b03161461153f5761153f8682611d52565b5090505b9392505050565b6040516001600160a01b0384811660248301528381166044830152606482018390526107ce9186918216906323b872dd906084015b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611dad565b6040516001600160a01b0383811660248301526044820183905261086d91859182169063a9059cbb9060640161157f565b600a546001600160a01b03163314610d28576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610751565b6001600160a01b038216611680576040517f64a0ae9200000000000000000000000000000000000000000000000000000000815260006004820152602401610751565b600061168e8383600061149e565b90506001600160a01b0381161561086d576040517f73c6ac6e00000000000000000000000000000000000000000000000000000000815260006004820152602401610751565b600b80547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055610d8481611e29565b6001600160a01b038216611750576040517f5b08ba180000000000000000000000000000000000000000000000000000000081526001600160a01b0383166004820152602401610751565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0383163b156107ce576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0384169063150b7a0290611836903390889087908790600401612ca4565b6020604051808303816000875af1925050508015611871575060408051601f3d908101601f1916820190925261186e91810190612cd6565b60015b6118f3573d80801561189f576040519150601f19603f3d011682016040523d82523d6000602084013e6118a4565b606091505b5080516000036118eb576040517f64a0ae920000000000000000000000000000000000000000000000000000000081526001600160a01b0385166004820152602401610751565b805181602001fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081167f150b7a020000000000000000000000000000000000000000000000000000000014611979576040517f64a0ae920000000000000000000000000000000000000000000000000000000081526001600160a01b0385166004820152602401610751565b5050505050565b60606012805461053490612a55565b6060600061199c83611e93565b600101905060008167ffffffffffffffff8111156119bc576119bc6126c7565b6040519080825280601f01601f1916602001820160405280156119e6576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85049450846119f057509392505050565b8080611a4357506001600160a01b03821615155b15611b3d576000611a538461143f565b90506001600160a01b03831615801590611a7f5750826001600160a01b0316816001600160a01b031614155b8015611ab157506001600160a01b0380821660009081526005602090815260408083209387168352929052205460ff16155b15611af3576040517fa9fbf51f0000000000000000000000000000000000000000000000000000000081526001600160a01b0384166004820152602401610751565b8115611b3b5783856001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b5050600090815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b600080611b93858585611f75565b90506001600160a01b038116611bf057611beb84600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611c13565b846001600160a01b0316816001600160a01b031614611c1357611c138185612086565b6001600160a01b038516611c2f57611c2a84612117565b611c52565b846001600160a01b0316816001600160a01b031614611c5257611c5285856121c6565b949350505050565b6001600c6000836004811115611c7257611c726129b3565b6004811115611c8357611c836129b3565b81526020019081526020016000206000828254611ca09190612ad7565b909155505050565b6001600160a01b0382166000908152600d60205260408120600191836004811115611cd557611cd56129b3565b6004811115611ce657611ce66129b3565b81526020019081526020016000206000828254611d039190612aea565b90915550505050565b6001600c6000836004811115611d2457611d246129b3565b6004811115611d3557611d356129b3565b81526020019081526020016000206000828254611ca09190612aea565b6001600160a01b0382166000908152600d60205260408120600191836004811115611d7f57611d7f6129b3565b6004811115611d9057611d906129b3565b81526020019081526020016000206000828254611d039190612ad7565b6000611dc26001600160a01b03841683612216565b90508051600014158015611de7575080806020019051810190611de59190612cf3565b155b1561086d576040517f5274afe70000000000000000000000000000000000000000000000000000000081526001600160a01b0384166004820152602401610751565b600a80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611edc577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef81000000008310611f08576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611f2657662386f26fc10000830492506010015b6305f5e1008310611f3e576305f5e100830492506008015b6127108310611f5257612710830492506004015b60648310611f64576064830492506002015b600a831061051f5760010192915050565b6000828152600260205260408120546001600160a01b0390811690831615611fa257611fa2818486612224565b6001600160a01b03811615611fe057611fbf600085600080611a2f565b6001600160a01b038116600090815260036020526040902080546000190190555b6001600160a01b0385161561200f576001600160a01b0385166000908152600360205260409020805460010190555b60008481526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0389811691821790925591518793918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4949350505050565b600061209183610cb5565b6000838152600760205260409020549091508082146120e4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061212990600190612aea565b6000838152600960205260408120546008805493945090928490811061215157612151612b1c565b90600052602060002001549050806008838154811061217257612172612b1c565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806121aa576121aa612d10565b6001900381819060005260206000200160009055905550505050565b600060016121d384610cb5565b6121dd9190612aea565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6060611543838360006122ba565b61222f838383612370565b61086d576001600160a01b038316612276576040517f7e27328900000000000000000000000000000000000000000000000000000000815260048101829052602401610751565b6040517f177e802f0000000000000000000000000000000000000000000000000000000081526001600160a01b038316600482015260248101829052604401610751565b6060814710156122f8576040517fcd786059000000000000000000000000000000000000000000000000000000008152306004820152602401610751565b600080856001600160a01b031684866040516123149190612d3f565b60006040518083038185875af1925050503d8060008114612351576040519150601f19603f3d011682016040523d82523d6000602084013e612356565b606091505b50915091506123668683836123f3565b9695505050505050565b60006001600160a01b03831615801590611c525750826001600160a01b0316846001600160a01b031614806123ca57506001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b80611c525750506000908152600460205260409020546001600160a01b03908116911614919050565b6060826124085761240382612468565b611543565b815115801561241f57506001600160a01b0384163b155b15612461576040517f9996b3150000000000000000000000000000000000000000000000000000000081526001600160a01b0385166004820152602401610751565b5080611543565b8051156124785780518082602001fd5b6040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040805160e08101909152606060a08201908152600060c0830152819081526020016124e9604051806040016040528060608152602001600081525090565b815260200161250b604051806040016040528060608152602001600081525090565b815260200161252d604051806040016040528060608152602001600081525090565b815260200161254f604051806040016040528060608152602001600081525090565b905290565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610d8457600080fd5b60006020828403121561259457600080fd5b813561154381612554565b60005b838110156125ba5781810151838201526020016125a2565b50506000910152565b600081518084526125db81602086016020860161259f565b601f01601f19169290920160200192915050565b60208152600061154360208301846125c3565b60006020828403121561261457600080fd5b5035919050565b80356001600160a01b038116811461263257600080fd5b919050565b6000806040838503121561264a57600080fd5b6126538361261b565b946020939093013593505050565b80356005811061263257600080fd5b60006020828403121561268257600080fd5b61154382612661565b6000806000606084860312156126a057600080fd5b6126a98461261b565b92506126b76020850161261b565b9150604084013590509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115612711576127116126c7565b604051601f8501601f19908116603f01168101908282118183101715612739576127396126c7565b8160405280935085815286868601111561275257600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561277e57600080fd5b813567ffffffffffffffff81111561279557600080fd5b8201601f810184136127a657600080fd5b611c52848235602084016126f6565b6000602082840312156127c757600080fd5b6115438261261b565b805160408084528151908401819052600091602091908201906060860190845b8181101561280c578351835292840192918401916001016127f0565b50506020850151602087015280935050505092915050565b602081526000825160a0602084015261284060c08401826127d0565b90506020840151601f198085840301604086015261285e83836127d0565b9250604086015191508085840301606086015261287b83836127d0565b9250606086015191508085840301608086015261289883836127d0565b925060808601519150808584030160a0860152506128b682826127d0565b95945050505050565b8015158114610d8457600080fd5b600080604083850312156128e057600080fd5b6128e98361261b565b915060208301356128f9816128bf565b809150509250929050565b6000806040838503121561291757600080fd5b6129208361261b565b915061292e60208401612661565b90509250929050565b6000806000806080858703121561294d57600080fd5b6129568561261b565b93506129646020860161261b565b925060408501359150606085013567ffffffffffffffff81111561298757600080fd5b8501601f8101871361299857600080fd5b6129a7878235602084016126f6565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60058110612a19577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b9052565b6020810161051f82846129e2565b60008060408385031215612a3e57600080fd5b612a478361261b565b915061292e6020840161261b565b600181811c90821680612a6957607f821691505b602082108103612aa2577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082018082111561051f5761051f612aa8565b8181038181111561051f5761051f612aa8565b60608101612b0b82866129e2565b602082019390935260400152919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b601f82111561086d576000816000526020600020601f850160051c81016020861015612b745750805b601f850160051c820191505b81811015612b9357828155600101612b80565b505050505050565b815167ffffffffffffffff811115612bb557612bb56126c7565b612bc981612bc38454612a55565b84612b4b565b602080601f831160018114612bfe5760008415612be65750858301515b600019600386901b1c1916600185901b178555612b93565b600085815260208120601f198616915b82811015612c2d57888601518255948401946001909101908401612c0e565b5085821015612c4b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006000198203612c6e57612c6e612aa8565b5060010190565b60008351612c8781846020880161259f565b835190830190612c9b81836020880161259f565b01949350505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261236660808301846125c3565b600060208284031215612ce857600080fd5b815161154381612554565b600060208284031215612d0557600080fd5b8151611543816128bf565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60008251612d5181846020870161259f565b919091019291505056fea164736f6c6343000818000a00000000000000000000000000000000000000000000000000000000000000400000000000000000000000001d59429571d8fde785f45bf593e94f2da6072edb0000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656964326b703370346b343579707a6a706469786e636a6c3771616276683534627977347634366c656e7272676b73626977636f7a6d2f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101f05760003560e01c80636ecd23061161010f578063a4c60e9c116100a2578063e30c397811610071578063e30c397814610460578063e985e9c514610471578063f2fde38b146104ad578063fbfa77cf146104c057600080fd5b8063a4c60e9c146103ef578063b88d4fde1461041a578063c87b56dd1461042d578063e201b3441461044057600080fd5b806388adb9ff116100de57806388adb9ff146103a35780638da5cb5b146103c357806395d89b41146103d4578063a22cb465146103dc57600080fd5b80636ecd23061461036d57806370a0823114610380578063715018a61461039357806379ba50971461039b57600080fd5b80632b24fb111161018757806342966c681161015657806342966c68146103215780634f6ccce71461033457806355f804b3146103475780636352211e1461035a57600080fd5b80632b24fb11146102d25780632f745c59146102f2578063324db30f1461030557806342842e0e1461030e57600080fd5b8063095ea7b3116101c3578063095ea7b31461027457806318160ddd14610289578063200636aa1461029157806323b872dd146102bf57600080fd5b806301ffc9a7146101f55780630211a53c1461021d57806306fdde0314610234578063081812fc14610249575b600080fd5b610208610203366004612582565b6104c9565b60405190151581526020015b60405180910390f35b610226600e5481565b604051908152602001610214565b61023c610525565b60405161021491906125ef565b61025c610257366004612602565b6105b7565b6040516001600160a01b039091168152602001610214565b610287610282366004612637565b6105e0565b005b600854610226565b6102a461029f366004612670565b6105ef565b60408051938452602084019290925290820152606001610214565b6102876102cd36600461268b565b610712565b6102266102e0366004612670565b600c6020526000908152604090205481565b610226610300366004612637565b6107d4565b610226600f5481565b61028761031c36600461268b565b610852565b61028761032f366004612602565b610872565b610226610342366004612602565b6109f9565b61028761035536600461276c565b610a6b565b61025c610368366004612602565b610aea565b61022661037b366004612670565b610af5565b61022661038e3660046127b5565b610cb5565b610287610d16565b610287610d2a565b6103b66103b13660046127b5565b610d87565b6040516102149190612824565b600a546001600160a01b031661025c565b61023c611213565b6102876103ea3660046128cd565b611222565b6102266103fd366004612904565b600d60209081526000928352604080842090915290825290205481565b610287610428366004612937565b61122d565b61023c61043b366004612602565b611244565b61045361044e366004612602565b6112b1565b6040516102149190612a1d565b600b546001600160a01b031661025c565b61020861047f366004612a2b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102876104bb3660046127b5565b6112d3565b61022660105481565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000148061051f575061051f8261135c565b92915050565b60606000805461053490612a55565b80601f016020809104026020016040519081016040528092919081815260200182805461056090612a55565b80156105ad5780601f10610582576101008083540402835291602001916105ad565b820191906000526020600020905b81548152906001019060200180831161059057829003601f168201915b5050505050905090565b60006105c28261143f565b506000828152600460205260409020546001600160a01b031661051f565b6105eb828233611491565b5050565b6000808080846004811115610606576106066129b3565b0361062957506901dd0c885f9a0d80000091508190506a074778f4b571c4bc0000005b600184600481111561063d5761063d6129b3565b0361066057506912a27d53bc048700000091508190506a48cab98f1671af580000005b6002846004811115610674576106746129b3565b03610698575069ba58e545582d4600000091508190506b02de89507556d846780000005b60038460048111156106ac576106ac6129b3565b036106d157506a074778f4b571c4bc00000091508190506b1c6f307be4c4687e600000005b60048460048111156106e5576106e56129b3565b0361070b57506a497421a5557c070c00000091508190506c011c57e4d6efac14efc00000005b9193909250565b6001600160a01b03821661075a576040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600060048201526024015b60405180910390fd5b600061076783833361149e565b9050836001600160a01b0316816001600160a01b0316146107ce576040517f64283d7b0000000000000000000000000000000000000000000000000000000081526001600160a01b0380861660048301526024820184905282166044820152606401610751565b50505050565b60006107df83610cb5565b8210610829576040517fa57d13dc0000000000000000000000000000000000000000000000000000000081526001600160a01b038416600482015260248101839052604401610751565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61086d8383836040518060200160405280600081525061122d565b505050565b6000818152601360205260408120547396a5399d07896f757bd4c6ef56461f58db951862917f0000000000000000000000001d59429571d8fde785f45bf593e94f2da6072edb9160ff16906108c881863361149e565b90506000806108d6846105ef565b909350915061091290506001600160a01b038716337f0000000000000000000000001d59429571d8fde785f45bf593e94f2da6072edb8561154a565b846001600160a01b03166344df8e706040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561094d57600080fd5b505af1158015610961573d6000803e3d6000fd5b5050505081600f60008282546109779190612ad7565b9250508190555080601060008282546109909190612aea565b909155506109aa90506001600160a01b03871684836115c6565b86836001600160a01b03167f789d35a777472980baffd36acb0eefeffca884b1e21ad63b3240d064790a7f358684866040516109e893929190612afd565b60405180910390a350505050505050565b6000610a0460085490565b8210610a46576040517fa57d13dc0000000000000000000000000000000000000000000000000000000081526000600482015260248101839052604401610751565b60088281548110610a5957610a59612b1c565b90600052602060002001549050919050565b610a736115f7565b6000815111610ade576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f696e76616c6964206261736520555249000000000000000000000000000000006044820152606401610751565b60126105eb8282612b9b565b600061051f8261143f565b60007396a5399d07896f757bd4c6ef56461f58db95186273f19308f923582a6f7c465e5ce7a9dc1bec6665b18280610b2c866105ef565b919350909150610b4990506001600160a01b03851633308461154a565b8060106000828254610b5b9190612ad7565b90915550506011546000818152601360205260409020805491965087917fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001836004811115610bae57610bae6129b3565b0217905550610bbd338661163d565b81600e6000828254610bcf9190612ad7565b909155505060118054906000610be483612c5b565b90915550610c1390506001600160a01b038416337396a5399d07896f757bd4c6ef56461f58db9518628561154a565b836001600160a01b0316637196e8416040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610c4e57600080fd5b505af1158015610c62573d6000803e3d6000fd5b5050505084336001600160a01b03167f65036dcb925a1caed31a9ef1b65aa1daec0ccbbdebe1d9f3ee33775a54ad7ba1888486604051610ca493929190612afd565b60405180910390a350505050919050565b60006001600160a01b038216610cfa576040517f89c62b6400000000000000000000000000000000000000000000000000000000815260006004820152602401610751565b506001600160a01b031660009081526003602052604090205490565b610d1e6115f7565b610d2860006116d4565b565b600b5433906001600160a01b03168114610d7b576040517f118cdaa70000000000000000000000000000000000000000000000000000000081526001600160a01b0382166004820152602401610751565b610d84816116d4565b50565b610d8f6124aa565b6001600160a01b0382166000908152600d60209081526040808320838052808352818420548551840152600184528083528184205485840151840152600284528083528184205485830151840152600384528083528184205460608601518401526004845282529091205460808301518201528151015167ffffffffffffffff811115610e1e57610e1e6126c7565b604051908082528060200260200182016040528015610e47578160200160208202803683370190505b50815152602080820151015167ffffffffffffffff811115610e6b57610e6b6126c7565b604051908082528060200260200182016040528015610e94578160200160208202803683370190505b50602080830151919091526040820151015167ffffffffffffffff811115610ebe57610ebe6126c7565b604051908082528060200260200182016040528015610ee7578160200160208202803683370190505b5060408201515260608101516020015167ffffffffffffffff811115610f0f57610f0f6126c7565b604051908082528060200260200182016040528015610f38578160200160208202803683370190505b5060608201515260808101516020015167ffffffffffffffff811115610f6057610f606126c7565b604051908082528060200260200182016040528015610f89578160200160208202803683370190505b506080820151526000610f9b83610cb5565b60408051600580825260c08201909252919250600091906020820160a08036833701905050905060005b8281101561120b576000610fd986836107d4565b60008181526013602052604081205491925060ff90911690816004811115611003576110036129b3565b0361105957818660000151600001518560008151811061102557611025612b1c565b60200260200101805180919061103a90612c5b565b90528151811061104c5761104c612b1c565b6020026020010181815250505b600181600481111561106d5761106d6129b3565b036110c357818660200151600001518560018151811061108f5761108f612b1c565b6020026020010180518091906110a490612c5b565b9052815181106110b6576110b6612b1c565b6020026020010181815250505b60028160048111156110d7576110d76129b3565b0361112d5781866040015160000151856002815181106110f9576110f9612b1c565b60200260200101805180919061110e90612c5b565b90528151811061112057611120612b1c565b6020026020010181815250505b6003816004811115611141576111416129b3565b0361119757818660600151600001518560038151811061116357611163612b1c565b60200260200101805180919061117890612c5b565b90528151811061118a5761118a612b1c565b6020026020010181815250505b60048160048111156111ab576111ab6129b3565b036112015781866080015160000151856004815181106111cd576111cd612b1c565b6020026020010180518091906111e290612c5b565b9052815181106111f4576111f4612b1c565b6020026020010181815250505b5050600101610fc5565b505050919050565b60606001805461053490612a55565b6105eb338383611705565b611238848484610712565b6107ce848484846117db565b606061124f8261143f565b5060008281526013602052604081205460ff169061126b611980565b905080611288836004811115611283576112836129b3565b61198f565b604051602001611299929190612c75565b60405160208183030381529060405292505050919050565b60006112bc8261143f565b505060009081526013602052604090205460ff1690565b6112db6115f7565b600b80546001600160a01b0383167fffffffffffffffffffffffff00000000000000000000000000000000000000009091168117909155611324600a546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806113ef57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061051f57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff0000000000000000000000000000000000000000000000000000000083161461051f565b6000818152600260205260408120546001600160a01b03168061051f576040517f7e27328900000000000000000000000000000000000000000000000000000000815260048101849052602401610751565b61086d8383836001611a2f565b6000806114ac858585611b85565b60008581526013602052604090205490915060ff166001600160a01b0382166114dd576114d881611c5a565b611500565b856001600160a01b0316826001600160a01b031614611500576115008282611ca8565b6001600160a01b03861661151c5761151781611d0c565b61153f565b856001600160a01b0316826001600160a01b03161461153f5761153f8682611d52565b5090505b9392505050565b6040516001600160a01b0384811660248301528381166044830152606482018390526107ce9186918216906323b872dd906084015b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611dad565b6040516001600160a01b0383811660248301526044820183905261086d91859182169063a9059cbb9060640161157f565b600a546001600160a01b03163314610d28576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610751565b6001600160a01b038216611680576040517f64a0ae9200000000000000000000000000000000000000000000000000000000815260006004820152602401610751565b600061168e8383600061149e565b90506001600160a01b0381161561086d576040517f73c6ac6e00000000000000000000000000000000000000000000000000000000815260006004820152602401610751565b600b80547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055610d8481611e29565b6001600160a01b038216611750576040517f5b08ba180000000000000000000000000000000000000000000000000000000081526001600160a01b0383166004820152602401610751565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0383163b156107ce576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0384169063150b7a0290611836903390889087908790600401612ca4565b6020604051808303816000875af1925050508015611871575060408051601f3d908101601f1916820190925261186e91810190612cd6565b60015b6118f3573d80801561189f576040519150601f19603f3d011682016040523d82523d6000602084013e6118a4565b606091505b5080516000036118eb576040517f64a0ae920000000000000000000000000000000000000000000000000000000081526001600160a01b0385166004820152602401610751565b805181602001fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081167f150b7a020000000000000000000000000000000000000000000000000000000014611979576040517f64a0ae920000000000000000000000000000000000000000000000000000000081526001600160a01b0385166004820152602401610751565b5050505050565b60606012805461053490612a55565b6060600061199c83611e93565b600101905060008167ffffffffffffffff8111156119bc576119bc6126c7565b6040519080825280601f01601f1916602001820160405280156119e6576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85049450846119f057509392505050565b8080611a4357506001600160a01b03821615155b15611b3d576000611a538461143f565b90506001600160a01b03831615801590611a7f5750826001600160a01b0316816001600160a01b031614155b8015611ab157506001600160a01b0380821660009081526005602090815260408083209387168352929052205460ff16155b15611af3576040517fa9fbf51f0000000000000000000000000000000000000000000000000000000081526001600160a01b0384166004820152602401610751565b8115611b3b5783856001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b5050600090815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b600080611b93858585611f75565b90506001600160a01b038116611bf057611beb84600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611c13565b846001600160a01b0316816001600160a01b031614611c1357611c138185612086565b6001600160a01b038516611c2f57611c2a84612117565b611c52565b846001600160a01b0316816001600160a01b031614611c5257611c5285856121c6565b949350505050565b6001600c6000836004811115611c7257611c726129b3565b6004811115611c8357611c836129b3565b81526020019081526020016000206000828254611ca09190612ad7565b909155505050565b6001600160a01b0382166000908152600d60205260408120600191836004811115611cd557611cd56129b3565b6004811115611ce657611ce66129b3565b81526020019081526020016000206000828254611d039190612aea565b90915550505050565b6001600c6000836004811115611d2457611d246129b3565b6004811115611d3557611d356129b3565b81526020019081526020016000206000828254611ca09190612aea565b6001600160a01b0382166000908152600d60205260408120600191836004811115611d7f57611d7f6129b3565b6004811115611d9057611d906129b3565b81526020019081526020016000206000828254611d039190612ad7565b6000611dc26001600160a01b03841683612216565b90508051600014158015611de7575080806020019051810190611de59190612cf3565b155b1561086d576040517f5274afe70000000000000000000000000000000000000000000000000000000081526001600160a01b0384166004820152602401610751565b600a80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611edc577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef81000000008310611f08576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611f2657662386f26fc10000830492506010015b6305f5e1008310611f3e576305f5e100830492506008015b6127108310611f5257612710830492506004015b60648310611f64576064830492506002015b600a831061051f5760010192915050565b6000828152600260205260408120546001600160a01b0390811690831615611fa257611fa2818486612224565b6001600160a01b03811615611fe057611fbf600085600080611a2f565b6001600160a01b038116600090815260036020526040902080546000190190555b6001600160a01b0385161561200f576001600160a01b0385166000908152600360205260409020805460010190555b60008481526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0389811691821790925591518793918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4949350505050565b600061209183610cb5565b6000838152600760205260409020549091508082146120e4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061212990600190612aea565b6000838152600960205260408120546008805493945090928490811061215157612151612b1c565b90600052602060002001549050806008838154811061217257612172612b1c565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806121aa576121aa612d10565b6001900381819060005260206000200160009055905550505050565b600060016121d384610cb5565b6121dd9190612aea565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6060611543838360006122ba565b61222f838383612370565b61086d576001600160a01b038316612276576040517f7e27328900000000000000000000000000000000000000000000000000000000815260048101829052602401610751565b6040517f177e802f0000000000000000000000000000000000000000000000000000000081526001600160a01b038316600482015260248101829052604401610751565b6060814710156122f8576040517fcd786059000000000000000000000000000000000000000000000000000000008152306004820152602401610751565b600080856001600160a01b031684866040516123149190612d3f565b60006040518083038185875af1925050503d8060008114612351576040519150601f19603f3d011682016040523d82523d6000602084013e612356565b606091505b50915091506123668683836123f3565b9695505050505050565b60006001600160a01b03831615801590611c525750826001600160a01b0316846001600160a01b031614806123ca57506001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b80611c525750506000908152600460205260409020546001600160a01b03908116911614919050565b6060826124085761240382612468565b611543565b815115801561241f57506001600160a01b0384163b155b15612461576040517f9996b3150000000000000000000000000000000000000000000000000000000081526001600160a01b0385166004820152602401610751565b5080611543565b8051156124785780518082602001fd5b6040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040805160e08101909152606060a08201908152600060c0830152819081526020016124e9604051806040016040528060608152602001600081525090565b815260200161250b604051806040016040528060608152602001600081525090565b815260200161252d604051806040016040528060608152602001600081525090565b815260200161254f604051806040016040528060608152602001600081525090565b905290565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610d8457600080fd5b60006020828403121561259457600080fd5b813561154381612554565b60005b838110156125ba5781810151838201526020016125a2565b50506000910152565b600081518084526125db81602086016020860161259f565b601f01601f19169290920160200192915050565b60208152600061154360208301846125c3565b60006020828403121561261457600080fd5b5035919050565b80356001600160a01b038116811461263257600080fd5b919050565b6000806040838503121561264a57600080fd5b6126538361261b565b946020939093013593505050565b80356005811061263257600080fd5b60006020828403121561268257600080fd5b61154382612661565b6000806000606084860312156126a057600080fd5b6126a98461261b565b92506126b76020850161261b565b9150604084013590509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115612711576127116126c7565b604051601f8501601f19908116603f01168101908282118183101715612739576127396126c7565b8160405280935085815286868601111561275257600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561277e57600080fd5b813567ffffffffffffffff81111561279557600080fd5b8201601f810184136127a657600080fd5b611c52848235602084016126f6565b6000602082840312156127c757600080fd5b6115438261261b565b805160408084528151908401819052600091602091908201906060860190845b8181101561280c578351835292840192918401916001016127f0565b50506020850151602087015280935050505092915050565b602081526000825160a0602084015261284060c08401826127d0565b90506020840151601f198085840301604086015261285e83836127d0565b9250604086015191508085840301606086015261287b83836127d0565b9250606086015191508085840301608086015261289883836127d0565b925060808601519150808584030160a0860152506128b682826127d0565b95945050505050565b8015158114610d8457600080fd5b600080604083850312156128e057600080fd5b6128e98361261b565b915060208301356128f9816128bf565b809150509250929050565b6000806040838503121561291757600080fd5b6129208361261b565b915061292e60208401612661565b90509250929050565b6000806000806080858703121561294d57600080fd5b6129568561261b565b93506129646020860161261b565b925060408501359150606085013567ffffffffffffffff81111561298757600080fd5b8501601f8101871361299857600080fd5b6129a7878235602084016126f6565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60058110612a19577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b9052565b6020810161051f82846129e2565b60008060408385031215612a3e57600080fd5b612a478361261b565b915061292e6020840161261b565b600181811c90821680612a6957607f821691505b602082108103612aa2577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082018082111561051f5761051f612aa8565b8181038181111561051f5761051f612aa8565b60608101612b0b82866129e2565b602082019390935260400152919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b601f82111561086d576000816000526020600020601f850160051c81016020861015612b745750805b601f850160051c820191505b81811015612b9357828155600101612b80565b505050505050565b815167ffffffffffffffff811115612bb557612bb56126c7565b612bc981612bc38454612a55565b84612b4b565b602080601f831160018114612bfe5760008415612be65750858301515b600019600386901b1c1916600185901b178555612b93565b600085815260208120601f198616915b82811015612c2d57888601518255948401946001909101908401612c0e565b5085821015612c4b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006000198203612c6e57612c6e612aa8565b5060010190565b60008351612c8781846020880161259f565b835190830190612c9b81836020880161259f565b01949350505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261236660808301846125c3565b600060208284031215612ce857600080fd5b815161154381612554565b600060208284031215612d0557600080fd5b8151611543816128bf565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60008251612d5181846020870161259f565b919091019291505056fea164736f6c6343000818000a

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000001d59429571d8fde785f45bf593e94f2da6072edb0000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656964326b703370346b343579707a6a706469786e636a6c3771616276683534627977347634366c656e7272676b73626977636f7a6d2f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseTokenURI (string): ipfs://bafybeid2kp3p4k45ypzjpdixncjl7qabvh54byw4v46lenrrgksbiwcozm/
Arg [1] : burnProxy (address): 0x1d59429571d8Fde785F45bf593E94F2Da6072Edb

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000001d59429571d8fde785f45bf593e94f2da6072edb
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [3] : 697066733a2f2f6261667962656964326b703370346b343579707a6a70646978
Arg [4] : 6e636a6c3771616276683534627977347634366c656e7272676b73626977636f
Arg [5] : 7a6d2f0000000000000000000000000000000000000000000000000000000000


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.