ETH Price: $2,160.04 (-1.35%)

Transaction Decoder

Block:
14338149 at Mar-07-2022 06:32:27 AM +UTC
Transaction Fee:
0.006624524818282908 ETH $14.31
Gas Used:
181,164 Gas / 36.566452597 Gwei

Emitted Events:

208 Loomlocknft.Approval( owner=[Sender] 0xd4628675a40691e365a7c62077fc36180ebc55ba, approved=0x00000000...000000000, tokenId=2806 )
209 Loomlocknft.Transfer( from=[Sender] 0xd4628675a40691e365a7c62077fc36180ebc55ba, to=[Receiver] Metalend, tokenId=2806 )
210 Metalend.lendingTransaction( loanId=1512, transactionCode=1000, borrower=[Sender] 0xd4628675a40691e365a7c62077fc36180ebc55ba, tokenId=2806, transactionValue=400000000000000000, transactionFee=30000000000000000, loanEndDate=1654410747, effectiveDate=1646634747 )

Account State Difference:

  Address   Before After State Difference Code
0x1D20A51F...9aB5C07Ea
(Miner: 0x6eb...31a)
539.670248658289029337 Eth539.670520404289029337 Eth0.000271746
0x778064DC...0Ea540329 24.13 Eth23.73 Eth0.4
0xd4628675...80eBC55Ba
0.205810840055871941 Eth
Nonce: 57
0.599186315237589033 Eth
Nonce: 58
0.393375475181717092

Execution Trace

Metalend.takeLoan( tokenId=2806 )
  • Loomlocknft.safeTransferFrom( from=0xd4628675A40691E365A7C62077fC36180eBC55Ba, to=0x778064DCbc663DCBB8DCfdeD2a929D60Ea540329, tokenId=2806 )
    • Metalend.onERC721Received( 0x778064DCbc663DCBB8DCfdeD2a929D60Ea540329, 0xd4628675A40691E365A7C62077fC36180eBC55Ba, 2806, 0x )
    • ETH 0.4 0xd4628675a40691e365a7c62077fc36180ebc55ba.CALL( )
      File 1 of 2: Metalend
      // SPDX-License-Identifier: BUSL-1.1
      pragma solidity 0.8.9;
      import "@openzeppelin/contracts/access/Ownable.sol";
      import "@openzeppelin/contracts/security/Pausable.sol";
      import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
      import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
      import {Sunsetable} from "./Sunsetable.sol";
      import {Constants} from "./Constants.sol";
      contract Metalend is IERC721Receiver, Ownable, Pausable, Sunsetable {
        /** -----------------------------------------------------------------------------
         *   State variable definitions
         *   -----------------------------------------------------------------------------
         */
        // struct object that represents a single instance of a loan:
        struct LoanItem {
          // Storage packing - try and use the smallest number of slots!
          // (One slot is 32 bytes, or 256 bits, and you have to declare
          // these in order for the EVM to pack them together. . .)
          // Addresses are 20 bytes.
          // Slot 1, 256:
          uint128 loanId;
          uint128 currentBalance;
          // Slot 2, 248:
          bool isCurrent;
          address payable borrower;
          uint32 startDate;
          uint32 endDate;
          uint16 tokenId;
        }
        // Slot 1 192 (160 + 16 + 16)
        // This designates the eligible NFT address, i.e. the address from which NFTs can
        // receive loans in exchange for custodied collateral (the NFT itself):
        // Contract implementation of ERC721
        IERC721 public tokenContract;
        // Term in days:
        uint16 public termInDays;
        // How close to the end date do we need to be to extend in days?
        uint16 public extensionHorizon;
        // Slot 2 256 (128 + 64 + 64)
        // In this version the loan amount is a fixed amount:
        uint128 public loanAmount;
        // Each loan attracts a lending fee. The amount the borrower has to repay to redeem the
        // NFT is the loan amount plus the lending fee:
        uint64 public lendingFee;
        // A fee to extend the loan by another loan term:
        uint64 public extensionFee;
        // Slot 3 - 160 (160)
        // Reposession address - this is the address that NFTs will be send to on the expiry
        // of the loan term.
        address public repoAddress;
        // The array of items under loan:
        LoanItem[] public itemsUnderLoan;
        /** -----------------------------------------------------------------------------
         *   Contract event definitions
         *   -----------------------------------------------------------------------------
         */
        // Events are broadcast and can be watched and tracked on chain:
        event lendingTransaction(
          uint128 indexed loanId,
          uint256 indexed transactionCode,
          address indexed borrower,
          uint16 tokenId,
          uint256 transactionValue,
          uint256 transactionFee,
          uint256 loanEndDate,
          uint256 effectiveDate
        );
        event eligibleNFTAddressSet(address indexed nftAddress);
        event repoAddressSet(address indexed repoAddress);
        event loanAmountSet(uint128 indexed loanAmount);
        event lendingFeeSet(uint64 indexed lendingFee);
        event extensionFeeSet(uint64 indexed extensionFee);
        event termInDaysSet(uint16 indexed termInDays);
        event extensionHorizonSet(uint16 indexed extensionHorizon);
        event ethWithdrawn(uint256 indexed withdrawal, uint256 effectiveDate);
        event ethDeposited(uint256 indexed deposit, uint256 effectiveDate);
        constructor(
          address _tokenAddress,
          uint128 _loanAmount,
          uint16 _termInDays,
          address _repoAddress,
          uint64 _lendingFee,
          uint64 _extensionFee,
          uint16 _extensionHorizon
        ) {
          tokenContract = IERC721(_tokenAddress);
          loanAmount = _loanAmount;
          termInDays = _termInDays;
          repoAddress = _repoAddress;
          lendingFee = _lendingFee;
          extensionFee = _extensionFee;
          extensionHorizon = _extensionHorizon;
          pause();
        }
        /** -----------------------------------------------------------------------------
         *   Modifier definitions
         *   -----------------------------------------------------------------------------
         */
        // Check to see if the array item has the borrower as the calling address:
        modifier OnlyItemBorrower(uint128 _loanId) {
          require(
            itemsUnderLoan[_loanId].borrower == msg.sender,
            "Payments can only be made by the borrower"
          );
          _;
        }
        // Check to see if the array item returned is no longer current:
        modifier IsUnderLoan(uint128 _loanId) {
          require(
            itemsUnderLoan[_loanId].isCurrent == true,
            "Item is not currently under loan"
          );
          _;
        }
        // Check to see if loan can be extended:
        modifier LoanEligibleForExtension(uint128 _loanId) {
          require(
            extensionsAllowed() == true,
            "Extensions currently not allowed"
          );
          require(
            isWithinExtensionHorizon(_loanId) == true,
            "Loan is not within extension horizon"
          );
          _;
        }
        // Check to see if loan is within term:
        modifier LoanWithinLoanTerm(uint128 _loanId) {
          require(
            isWithinLoanTerm(_loanId) == true,
            "Loan term has expired");
          _;
        }
        /** -----------------------------------------------------------------------------
         *   Set routines - these routines allow the owner to set parameters on this contract:
         *   -----------------------------------------------------------------------------
         */
        // Set the address that assets are transfered to on repossession:
        function setRepoAddress(address _repoAddress)
          external
          onlyOwner
          returns (bool)
        {
          repoAddress = _repoAddress;
          emit repoAddressSet(_repoAddress);
          return true;
        }
        // Set the loan amount:
        function setLoanAmount(uint128 _loanAmount)
          external
          onlyOwner
          returns (bool)
        {
          require(_loanAmount != loanAmount, "No change to loan amount");
          if (_loanAmount > loanAmount) {
              require(
                  (_loanAmount - loanAmount) <=
                      Constants.LOAN_AMOUNT_MAX_INCREMENT,
                  "Change exceeds max increment"
              );
          } else {
              require(
                  (loanAmount - _loanAmount) <=
                      Constants.LOAN_AMOUNT_MAX_INCREMENT,
                  "Change exceeds max increment"
              );
          }
          loanAmount = _loanAmount;
          emit loanAmountSet(_loanAmount);
          return true;
        }
        // Set the lending fee:
        function setLendingFee(uint64 _lendingFee) external onlyOwner returns (bool) {
          require(_lendingFee != lendingFee, "No change to lending fee");
          if (_lendingFee > lendingFee) {
            require(
              (_lendingFee - lendingFee) <= Constants.FEE_MAX_INCREMENT,
              "Change exceeds max increment"
            );
            } else {
              require(
                (lendingFee - _lendingFee) <= Constants.FEE_MAX_INCREMENT,
                "Change exceeds max increment"
                );
            }
          lendingFee = _lendingFee;
          emit lendingFeeSet(_lendingFee);
          return true;
        }
        // Set the extension fee:
        function setExtensionFee(uint64 _extensionFee)
          external
          onlyOwner
          returns (bool)
        {
          require(_extensionFee != extensionFee, "No change to extension fee");
          if (_extensionFee > extensionFee) {
              require(
                  (_extensionFee - extensionFee) <= Constants.FEE_MAX_INCREMENT,
                  "Change exceeds max increment"
              );
          } else {
              require(
                  (extensionFee - _extensionFee) <= Constants.FEE_MAX_INCREMENT,
                  "Change exceeds max increment"
              );
          }
          extensionFee = _extensionFee;
          emit extensionFeeSet(_extensionFee);
          return true;
        }
        // Set the term in days:
        function setTermInDays(uint16 _termInDays) external onlyOwner returns (bool) {
          require(_termInDays != termInDays, "No change to term");
          require(
            _termInDays <= Constants.LOAN_TERM_MAX,
            "Change is more than max term"
          );
          require(
            _termInDays >= Constants.LOAN_TERM_MIN,
            "Change is less than min term"
          );
          require(
            _termInDays >= extensionHorizon,
            "Term must be greater than or equal to extension horizon"
          );
          termInDays = _termInDays;
          emit termInDaysSet(_termInDays);
          return true;
        }
        // Set extension horizon in days:
        function setExtensionHorizon(uint16 _extensionHorizon)
          external
          onlyOwner
          returns (bool)
        {
          require(_extensionHorizon != extensionHorizon, "No change to horizon");
          require(
            _extensionHorizon <= Constants.LOAN_TERM_MAX,
            "Change is more than max term"
          );
          require(
            _extensionHorizon >= Constants.LOAN_TERM_MIN,
            "Change is less than min term"
          );
          require(
            _extensionHorizon <= termInDays,
            "Extension horizon must be less than or equal to term"
          );
          extensionHorizon = _extensionHorizon;
          emit extensionHorizonSet(_extensionHorizon);
          return true;
        }
        /** -----------------------------------------------------------------------------
         *   Contract routines - these do all the work:
         *   -----------------------------------------------------------------------------
         */
        //Always returns `IERC721Receiver.onERC721Received.selector`. We need this to custody NFTs on the contract:
        function onERC721Received(
          address,
          address,
          uint256,
          bytes memory
        ) external virtual override returns (bytes4) {
          return this.onERC721Received.selector;
        }
        // Allow contract to receive ETH:
        receive() external payable {
          require(msg.sender == owner(), "Only owner can fund contract.");
          require(msg.value > 0, "No ether was sent.");
          emit ethDeposited(msg.value, block.timestamp);
        }
        // The fallback function is executed on a call to the contract if
        // none of the other functions match the given function signature.
        fallback() external payable {
          revert();
        }
        function getParameters()
          external
          view
          returns (
            address _tokenAddress,
            uint32 _loanTerm,
            uint128 _loanAmount,
            uint128 _loanFee,
            uint64 _extensionHorizon,
            uint128 _extensionFee,
            bool _isPaused,
            bool _isSunset
          )
        {
          return (
            address(tokenContract),
            termInDays,
            loanAmount,
            lendingFee,
            extensionHorizon,
            extensionFee,
            paused(),
            sunsetModeActive()
          );
        }
        function getLoans() external view returns (LoanItem[] memory) {
          return itemsUnderLoan;
        }
        function pause() public onlyOwner {
          _pause();
        }
        function unpause() external onlyOwner {
          _unpause();
        }
        function sunset() external onlyOwner {
          _sunset();
        }
        function sunrise() external onlyOwner {
          _sunrise();
        }
        function extensionsAllowed() public view returns (bool) {
          return (extensionFee > 0);
        }
        function isWithinExtensionHorizon(uint128 _loanId) public view returns (bool) {
          return
            (block.timestamp +
            (extensionHorizon * Constants.SECONDS_TO_DAYS_FACTOR) >=
            itemsUnderLoan[_loanId].endDate);
        }
        function isWithinLoanTerm(uint128 _loanId) public view returns (bool) {
          return (block.timestamp <= itemsUnderLoan[_loanId].endDate);
        }
        // Ensure that the owner can withdraw deposited ETH:
        function withdraw(uint256 _withdrawal) external onlyOwner returns (bool) {
          (bool success, ) = msg.sender.call{value: _withdrawal}("");
          require(success, "Transfer failed.");
          emit ethWithdrawn(_withdrawal, block.timestamp);
          return true;
        }
        // This function is called to advance the borrower ETH in exchange for taking
        // custody of the asset.
        function takeLoan(uint16 tokenId) external whenNotPaused whenSun {
          // The id is the length of the current array as this is the next item:
          uint256 newItemId = itemsUnderLoan.length;
          uint32 endDate = uint32(block.timestamp) +
            (termInDays * Constants.SECONDS_TO_DAYS_FACTOR);
          // Add this to the array:
          itemsUnderLoan.push(
            LoanItem(
              uint128(newItemId),
              loanAmount + lendingFee,
              true,
              payable(msg.sender),
              uint32(block.timestamp),
              endDate,
              tokenId
            )
          );
          // Custody the asset to this contract:
          tokenContract.safeTransferFrom(msg.sender, address(this), tokenId);
          // Send the borrower their ETH:
          payable(msg.sender).transfer(loanAmount);
          emit lendingTransaction(
            uint128(newItemId),
            Constants.TXNCODE_LOAN_ADVANCED,
            msg.sender,
            tokenId,
            loanAmount,
            lendingFee,
            endDate,
            block.timestamp
          );
        }
        // This function is called when the borrower makes a payment. If the payment
        // clears the balance of the loan this routine will also return the NFT to the
        // borrower:
        function makeLoanPayment(uint128 _loanId)
          external
          payable
          IsUnderLoan(_loanId)
          OnlyItemBorrower(_loanId)
          LoanWithinLoanTerm(_loanId)
          whenNotPaused
        {
          require(
            msg.value <= itemsUnderLoan[_loanId].currentBalance,
            "Payment exceeds current balance"
          );
          // Reduce the balance outstanding by the amount of ETH received:
          itemsUnderLoan[_loanId].currentBalance -= uint128(msg.value);
          // See if this payment means the loan is done and we can return the asset:
          if (itemsUnderLoan[_loanId].currentBalance == 0) {
            _closeLoan(_loanId, msg.sender);
            emit lendingTransaction(
              _loanId,
              Constants.TXNCODE_ASSET_REDEEMED,
              msg.sender,
              itemsUnderLoan[_loanId].tokenId,
              msg.value,
              0,
              itemsUnderLoan[_loanId].endDate,
              block.timestamp
            );
          } else {
            // Emit this payment event:
            emit lendingTransaction(
              _loanId,
              Constants.TXNCODE_LOAN_PAYMENT_MADE,
              msg.sender,
              itemsUnderLoan[_loanId].tokenId,
              msg.value,
              0,
              itemsUnderLoan[_loanId].endDate,
              block.timestamp
            );
          }
        }
        // This function is called when the borrower extends a loan. The loan can be extended
        // by the original term in days for payment of the extension fee (if allowed):
        function extendLoan(uint128 _loanId)
          external
          payable
          IsUnderLoan(_loanId)
          OnlyItemBorrower(_loanId)
          LoanWithinLoanTerm(_loanId)
          LoanEligibleForExtension(_loanId)
          whenNotPaused
          whenSun
        {
          require(msg.value == extensionFee, "Payment must equal the extension fee");
          // Extend the term, that's all we need to do
          itemsUnderLoan[_loanId].endDate += (termInDays *
            Constants.SECONDS_TO_DAYS_FACTOR);
          // Emit the extension events:
          emit lendingTransaction(
            _loanId,
            Constants.TXNCODE_ASSET_EXTENDED,
            msg.sender,
            itemsUnderLoan[_loanId].tokenId,
            msg.value,
            msg.value,
            itemsUnderLoan[_loanId].endDate,
            block.timestamp
          );
        }
        // This function is called when an item is repossessed. This is ONLY possible when the
        // loan has lapsed.
        function repossessItem(uint128 _loanId) public IsUnderLoan(_loanId) {
          require(
            itemsUnderLoan[_loanId].endDate < block.timestamp,
            "Loan term has not yet elapsed"
          );
          _closeLoan(_loanId, repoAddress);
          emit lendingTransaction(
            _loanId,
            Constants.TXNCODE_ASSET_REPOSSESSED,
            itemsUnderLoan[_loanId].borrower,
            itemsUnderLoan[_loanId].tokenId,
            itemsUnderLoan[_loanId].currentBalance,
            0,
            itemsUnderLoan[_loanId].endDate,
            block.timestamp
          );
        }
        // Repossess eligible items in batches:
        function repossessItems(uint128[] calldata repoItems) external {
          for (uint256 i = 0; i < repoItems.length; i++) {
            repossessItem(repoItems[i]);
          }
        }
        // Handle loan closure and asset transfer:
        function _closeLoan(uint128 _closeLoanId, address _tokenTransferTo) internal {
          itemsUnderLoan[_closeLoanId].isCurrent = false;
          tokenContract.safeTransferFrom(
            address(this),
            _tokenTransferTo,
            itemsUnderLoan[_closeLoanId].tokenId
          );
        }
      }
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.0;
      import "../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.
       *
       * By default, the owner account will be the one that deploys the contract. This
       * can later be changed with {transferOwnership}.
       *
       * This module is used through inheritance. It will make available the modifier
       * `onlyOwner`, which can be applied to your functions to restrict their use to
       * the owner.
       */
      abstract contract Ownable is Context {
          address private _owner;
          event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
          /**
           * @dev Initializes the contract setting the deployer as the initial owner.
           */
          constructor() {
              _setOwner(_msgSender());
          }
          /**
           * @dev Returns the address of the current owner.
           */
          function owner() public view virtual returns (address) {
              return _owner;
          }
          /**
           * @dev Throws if called by any account other than the owner.
           */
          modifier onlyOwner() {
              require(owner() == _msgSender(), "Ownable: caller is not the owner");
              _;
          }
          /**
           * @dev Leaves the contract without owner. It will not be possible to call
           * `onlyOwner` functions anymore. Can only be called by the current owner.
           *
           * NOTE: Renouncing ownership will leave the contract without an owner,
           * thereby removing any functionality that is only available to the owner.
           */
          function renounceOwnership() public virtual onlyOwner {
              _setOwner(address(0));
          }
          /**
           * @dev Transfers ownership of the contract to a new account (`newOwner`).
           * Can only be called by the current owner.
           */
          function transferOwnership(address newOwner) public virtual onlyOwner {
              require(newOwner != address(0), "Ownable: new owner is the zero address");
              _setOwner(newOwner);
          }
          function _setOwner(address newOwner) private {
              address oldOwner = _owner;
              _owner = newOwner;
              emit OwnershipTransferred(oldOwner, newOwner);
          }
      }
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.0;
      import "../utils/Context.sol";
      /**
       * @dev Contract module which allows children to implement an emergency stop
       * mechanism that can be triggered by an authorized account.
       *
       * This module is used through inheritance. It will make available the
       * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
       * the functions of your contract. Note that they will not be pausable by
       * simply including this module, only once the modifiers are put in place.
       */
      abstract contract Pausable is Context {
          /**
           * @dev Emitted when the pause is triggered by `account`.
           */
          event Paused(address account);
          /**
           * @dev Emitted when the pause is lifted by `account`.
           */
          event Unpaused(address account);
          bool private _paused;
          /**
           * @dev Initializes the contract in unpaused state.
           */
          constructor() {
              _paused = false;
          }
          /**
           * @dev Returns true if the contract is paused, and false otherwise.
           */
          function paused() public view virtual returns (bool) {
              return _paused;
          }
          /**
           * @dev Modifier to make a function callable only when the contract is not paused.
           *
           * Requirements:
           *
           * - The contract must not be paused.
           */
          modifier whenNotPaused() {
              require(!paused(), "Pausable: paused");
              _;
          }
          /**
           * @dev Modifier to make a function callable only when the contract is paused.
           *
           * Requirements:
           *
           * - The contract must be paused.
           */
          modifier whenPaused() {
              require(paused(), "Pausable: not paused");
              _;
          }
          /**
           * @dev Triggers stopped state.
           *
           * Requirements:
           *
           * - The contract must not be paused.
           */
          function _pause() internal virtual whenNotPaused {
              _paused = true;
              emit Paused(_msgSender());
          }
          /**
           * @dev Returns to normal state.
           *
           * Requirements:
           *
           * - The contract must be paused.
           */
          function _unpause() internal virtual whenPaused {
              _paused = false;
              emit Unpaused(_msgSender());
          }
      }
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.0;
      import "../../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`, checking first that contract recipients
           * are aware of the ERC721 protocol to prevent tokens from being forever locked.
           *
           * Requirements:
           *
           * - `from` cannot be the zero address.
           * - `to` cannot be the zero address.
           * - `tokenId` token must exist and be owned by `from`.
           * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
           * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
           *
           * Emits a {Transfer} event.
           */
          function safeTransferFrom(
              address from,
              address to,
              uint256 tokenId
          ) external;
          /**
           * @dev Transfers `tokenId` token from `from` to `to`.
           *
           * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
           *
           * Requirements:
           *
           * - `from` cannot be the zero address.
           * - `to` cannot be the zero address.
           * - `tokenId` token must be owned by `from`.
           * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
           *
           * Emits a {Transfer} event.
           */
          function transferFrom(
              address from,
              address to,
              uint256 tokenId
          ) external;
          /**
           * @dev Gives permission to `to` to transfer `tokenId` token to another account.
           * The approval is cleared when the token is transferred.
           *
           * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
           *
           * Requirements:
           *
           * - The caller must own the token or be an approved operator.
           * - `tokenId` must exist.
           *
           * Emits an {Approval} event.
           */
          function approve(address to, uint256 tokenId) external;
          /**
           * @dev Returns the account approved for `tokenId` token.
           *
           * Requirements:
           *
           * - `tokenId` must exist.
           */
          function getApproved(uint256 tokenId) external view returns (address operator);
          /**
           * @dev Approve or remove `operator` as an operator for the caller.
           * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
           *
           * Requirements:
           *
           * - The `operator` cannot be the caller.
           *
           * Emits an {ApprovalForAll} event.
           */
          function setApprovalForAll(address operator, bool _approved) external;
          /**
           * @dev Returns 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);
          /**
           * @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;
      }
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.0;
      /**
       * @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 `IERC721.onERC721Received.selector`.
           */
          function onERC721Received(
              address operator,
              address from,
              uint256 tokenId,
              bytes calldata data
          ) external returns (bytes4);
      }
      // SPDX-License-Identifier: MIT
      pragma solidity 0.8.9;
      import "@openzeppelin/contracts/utils/Context.sol";
      /**
       * @dev Contract module which allows children to implement an sunset
       * mechanism that can be triggered by an authorized account.
       *
       * This module is used through inheritance. It will make available the
       * modifiers `whenSun` and `whenMoon`, which can be applied to
       * the functions of your contract. Note that they will not be useable by
       * simply including this module, only once the modifiers are put in place.
       */
      abstract contract Sunsetable is Context {
          /**
           * @dev Emitted when the sunset is triggered by `account`.
           */
          event Sunset(address account);
          /**
           * @dev Emitted when the sunrise is triggered by `account`.
           */
          event Sunrise(address account);
          bool private _sunsetModeActive;
          /**
           * @dev Initializes the contract in sunrised state.
           */
          constructor() {
              _sunsetModeActive = false;
          }
          /**
           * @dev Returns true if the sun has set, and false otherwise.
           */
          function sunsetModeActive() public view virtual returns (bool) {
              return _sunsetModeActive;
          }
          /**
           * @dev Modifier to make a function callable only when the sun is up.
           *
           * Requirements:
           *
           * - The contract must not be in sunset mode.
           */
          modifier whenSun() {
              require(!sunsetModeActive(), "Sunset: Sun has set on this contract");
              _;
          }
          /**
           * @dev Modifier to make a function callable only when the sun has set.
           *
           * Requirements:
           *
           * - The contract must be in sunset mode.
           */
          modifier whenMoon() {
              require(sunsetModeActive(), "Sunset: Sun has not set on this contract");
              _;
          }
          /**
           * @dev Triggers sunset state.
           *
           * Requirements:
           *
           * - The contract must not be in sunset already.
           */
          function _sunset() internal virtual whenSun {
              _sunsetModeActive = true;
              emit Sunset(_msgSender());
          }
          /**
           * @dev Returns to normal state.
           *
           * Requirements:
           *
           * - The contract must be in sunset mode.
           */
          function _sunrise() internal virtual whenMoon {
              _sunsetModeActive = false;
              emit Sunrise(_msgSender());
          }
      }
      // SPDX-License-Identifier: MIT
      pragma solidity 0.8.9;
      library Constants {
          // Transaction events
          uint256 constant TXNCODE_LOAN_ADVANCED = 1000;
          uint256 constant TXNCODE_LOAN_PAYMENT_MADE = 2000;
          uint256 constant TXNCODE_ASSET_REDEEMED = 3000;
          uint256 constant TXNCODE_ASSET_EXTENDED = 4000;
          uint256 constant TXNCODE_ASSET_REPOSSESSED = 5000;
          uint32 constant SECONDS_TO_DAYS_FACTOR = 86400;
          uint128 constant LOAN_AMOUNT_MAX_INCREMENT = 300000000000000000;
          uint64 constant FEE_MAX_INCREMENT = 30000000000000000;
          uint16 constant LOAN_TERM_MAX = 180;
          uint16 constant LOAN_TERM_MIN = 14;
      }
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.0;
      /**
       * @dev Provides information about the current execution context, including the
       * sender of the transaction and its data. While these are generally available
       * via msg.sender and msg.data, they should not be accessed in such a direct
       * manner, since when dealing with meta-transactions the account sending and
       * paying for execution may not be the actual sender (as far as an application
       * is concerned).
       *
       * This contract is only required for intermediate, library-like contracts.
       */
      abstract contract Context {
          function _msgSender() internal view virtual returns (address) {
              return msg.sender;
          }
          function _msgData() internal view virtual returns (bytes calldata) {
              return msg.data;
          }
      }
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.0;
      /**
       * @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 2 of 2: Loomlocknft
      // SPDX-License-Identifier: MIT
      pragma solidity 0.8.7;
      import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
      import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
      import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
      import "@openzeppelin/contracts/security/Pausable.sol";
      import "@openzeppelin/contracts/access/Ownable.sol";
      import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
      import "@openzeppelin/contracts/utils/Counters.sol";
      import "@chainlink/contracts/src/v0.8/VRFConsumerBase.sol";
      contract Loomlocknft is ERC721, ERC721Enumerable, Pausable, Ownable, ERC721Burnable, VRFConsumerBase {
        using Counters for Counters.Counter;
        using SafeERC20 for IERC20;
        // ERC-2981: NFT Royalty Standard
        bytes4 private constant _INTERFACE_ID_ERC2981 = 0x2a55205a;
        uint256 public constant RESERVED_TOKEN_COUNT = 1;
        uint256 public immutable maxSupply;
        uint256 public immutable developerAllocation;
        address public immutable developerAddress;
        uint256 public immutable revealTimestamp;
        address public immutable reservedTokenRecipient;
        string private _tokenBaseURI;
        string private _contractURI;
        Counters.Counter private _tokenIdCounter;
        Counters.Counter private _developerAllocationCounter;
        uint256 private _randomness;
        bool private _randomnessHasBeenSet;
        address payable private _royaltyReceipientAddress;
        uint256 private _royaltyPercentageBasisPoints;
        // Chainlink configuration.
        bytes32 internal keyHash;
        uint256 internal fee;
        constructor(
          address[] memory specialMintAddresses_,
          uint256 developerAllocation_,
          uint256 maxSupply_,
          uint256 revealTimestamp_,
          address payable royaltyReceipientAddress_,
          uint256 royaltyPercentageBasisPoints_,
          string[] memory uris_,
          address vrfCoordinator_,
          address link_,
          bytes32 keyHash_,
          uint256 fee_
        )
        ERC721("loomlocknft", "LL")
        VRFConsumerBase(vrfCoordinator_, link_) {
          reservedTokenRecipient = specialMintAddresses_[0];
          developerAddress = specialMintAddresses_[1];
          developerAllocation = developerAllocation_;
          maxSupply = maxSupply_;
          revealTimestamp = revealTimestamp_;
          _contractURI = uris_[0];
          _tokenBaseURI = uris_[1];
          _royaltyReceipientAddress = royaltyReceipientAddress_;
          _royaltyPercentageBasisPoints = royaltyPercentageBasisPoints_;
          keyHash = keyHash_;
          fee = fee_;
        }
        function mintedSupply() public view returns (uint256) {
          return _tokenIdCounter.current();
        }
        function mintedDeveloperAllocationCounter() public view returns (uint256) {
          return _developerAllocationCounter.current();
        }
        function getRandomness() public view returns (uint256) {
          return _randomness;
        }
        function getRandomnessHasBeenSet() public view returns (bool) {
          return _randomnessHasBeenSet;
        }
        // Requests randomness.
        function getRandomNumber() public onlyOwner returns (bytes32 requestId) {
          require(!_randomnessHasBeenSet);
          require(LINK.balanceOf(address(this)) >= fee, "Not enough LINK");
          return requestRandomness(keyHash, fee);
        }
        // Callback function used by VRF Coordinator.
        // This function is used to generate a random seed value to be used as the offset for minting.
        function fulfillRandomness(bytes32 requestId, uint256 randomness) internal override {
          require(!_randomnessHasBeenSet);
          _randomness = randomness;
          _randomnessHasBeenSet = true;
        }
        // A withdraw function to avoid locking ERC20 tokens in the contract forever.
        // Tokens can only be withdrawn by the owner, to the owner.
        function transferERC20Token(IERC20 token, uint256 amount) public onlyOwner {
          token.safeTransfer(owner(), amount);
        }
        function pause() public onlyOwner {
          _pause();
        }
        function unpause() public onlyOwner {
          _unpause();
        }
        // Token 0 is reserved for the fractionalised hexcode airdrop.
        function mintReservedToken(uint256 tokenId) public onlyOwner whenNotPaused {
          if (tokenId == 0) {
            require(mintedSupply() == 0, "Token 0 already minted");
            _safeMint(reservedTokenRecipient, tokenId);
            _tokenIdCounter.increment();
          } else {
            revert("Only for 0");
          }
        }
        // All tokens other than token 0 are minted using the random offset.
        // Tokens can only be minted once, even if burned.
        function mint(address to_) public onlyOwner whenNotPaused {
          require(mintedSupply() >= RESERVED_TOKEN_COUNT, "Token 0 must be minted first");
          require(_randomnessHasBeenSet, "Randomness must be set before minting");
          require(mintedSupply() < maxSupply, "Max supply minted");
          uint256 indexToMint = (mintedSupply() + _randomness) % (maxSupply - RESERVED_TOKEN_COUNT) + RESERVED_TOKEN_COUNT;
          if (mintedDeveloperAllocationCounter() < developerAllocation) {
            // The first developerAllocation tokens (excluding token 0) must be given to developerAddress.
            // These tokens and all others are subject to the random offset.
            require(to_ == developerAddress, "First batch for dev");
            // Preemptively increment this counter, since it's not used for safeMint.
            _developerAllocationCounter.increment();
          }
          _safeMint(to_, indexToMint);
          _tokenIdCounter.increment();
        }
        // Provide an array of addresses and a corresponding array of quantities.
        function mintBatch(address[] calldata addresses, uint256[] calldata quantities) public onlyOwner whenNotPaused {
          require(addresses.length == quantities.length, "Addresses & quantites length not equal");
          for (uint256 i = 0; i < addresses.length; i++) {
            for (uint256 j = 0; j < quantities[i]; j++) {
              mint(addresses[i]);
            }
          }
        }
        function addressHoldings(address _addr) external view returns (uint256[] memory) {
          uint256 tokenCount = balanceOf(_addr);
          uint256[] memory tokens = new uint256[](tokenCount);
          for (uint256 i = 0; i < tokenCount; i++) {
            tokens[i] = tokenOfOwnerByIndex(_addr, i);
          }
          return tokens;
        }
        function preRevealTokenURI(uint256 tokenId) public view returns (string memory) {
          return string(abi.encodePacked(super.tokenURI(tokenId), ".json"));
        }
        function tokenURI(uint256 tokenId) public view override returns (string memory) {
          require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
          // Return an empty string for the tokenURI until the reveal timestamp.
          if (block.timestamp >= revealTimestamp) {
            return preRevealTokenURI(tokenId);
          } else {
            return "";
          }
        }
        function setRoyaltyPercentageBasisPoints(uint256 royaltyPercentageBasisPoints_) public onlyOwner {
          _royaltyPercentageBasisPoints = royaltyPercentageBasisPoints_;
        }
        function setRoyaltyReceipientAddress(address payable royaltyReceipientAddress_) public onlyOwner {
          _royaltyReceipientAddress = royaltyReceipientAddress_;
        }
        // Contract-level metadata for OpenSea.
        function setContractURI(string calldata contractURI_) public onlyOwner {
          _contractURI = contractURI_;
        }
        // Contract-level metadata for OpenSea.
        function contractURI() public view returns (string memory) {
          return _contractURI;
        }
        function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view returns (address receiver, uint256 royaltyAmount) {
          uint256 royalty = (_salePrice * _royaltyPercentageBasisPoints) / 10000;
          return (_royaltyReceipientAddress, royalty);
        }
        function _baseURI() internal view override returns (string memory) {
          return _tokenBaseURI;
        }
        function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal whenNotPaused override(ERC721, ERC721Enumerable) {
          super._beforeTokenTransfer(from, to, tokenId);
        }
        function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) {
          return interfaceId == _INTERFACE_ID_ERC2981 || super.supportsInterface(interfaceId);
        }
      }
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.0;
      /**
       * @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);
      }
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.0;
      import "./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);
       * }
       * ```
       *
       * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
       */
      abstract contract ERC165 is IERC165 {
          /**
           * @dev See {IERC165-supportsInterface}.
           */
          function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
              return interfaceId == type(IERC165).interfaceId;
          }
      }
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.0;
      /**
       * @dev String operations.
       */
      library Strings {
          bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
          /**
           * @dev Converts a `uint256` to its ASCII `string` decimal representation.
           */
          function toString(uint256 value) internal pure returns (string memory) {
              // Inspired by OraclizeAPI's implementation - MIT licence
              // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
              if (value == 0) {
                  return "0";
              }
              uint256 temp = value;
              uint256 digits;
              while (temp != 0) {
                  digits++;
                  temp /= 10;
              }
              bytes memory buffer = new bytes(digits);
              while (value != 0) {
                  digits -= 1;
                  buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
                  value /= 10;
              }
              return string(buffer);
          }
          /**
           * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
           */
          function toHexString(uint256 value) internal pure returns (string memory) {
              if (value == 0) {
                  return "0x00";
              }
              uint256 temp = value;
              uint256 length = 0;
              while (temp != 0) {
                  length++;
                  temp >>= 8;
              }
              return toHexString(value, length);
          }
          /**
           * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
           */
          function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
              bytes memory buffer = new bytes(2 * length + 2);
              buffer[0] = "0";
              buffer[1] = "x";
              for (uint256 i = 2 * length + 1; i > 1; --i) {
                  buffer[i] = _HEX_SYMBOLS[value & 0xf];
                  value >>= 4;
              }
              require(value == 0, "Strings: hex length insufficient");
              return string(buffer);
          }
      }
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.0;
      /**
       * @title Counters
       * @author Matt Condon (@shrugs)
       * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
       * of elements in a mapping, issuing ERC721 ids, or counting request ids.
       *
       * Include with `using Counters for Counters.Counter;`
       */
      library Counters {
          struct Counter {
              // This variable should never be directly accessed by users of the library: interactions must be restricted to
              // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
              // this feature: see https://github.com/ethereum/solidity/issues/4637
              uint256 _value; // default: 0
          }
          function current(Counter storage counter) internal view returns (uint256) {
              return counter._value;
          }
          function increment(Counter storage counter) internal {
              unchecked {
                  counter._value += 1;
              }
          }
          function decrement(Counter storage counter) internal {
              uint256 value = counter._value;
              require(value > 0, "Counter: decrement overflow");
              unchecked {
                  counter._value = value - 1;
              }
          }
          function reset(Counter storage counter) internal {
              counter._value = 0;
          }
      }
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.0;
      /*
       * @dev Provides information about the current execution context, including the
       * sender of the transaction and its data. While these are generally available
       * via msg.sender and msg.data, they should not be accessed in such a direct
       * manner, since when dealing with meta-transactions the account sending and
       * paying for execution may not be the actual sender (as far as an application
       * is concerned).
       *
       * This contract is only required for intermediate, library-like contracts.
       */
      abstract contract Context {
          function _msgSender() internal view virtual returns (address) {
              return msg.sender;
          }
          function _msgData() internal view virtual returns (bytes calldata) {
              return msg.data;
          }
      }
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.0;
      /**
       * @dev Collection of functions related to the address type
       */
      library Address {
          /**
           * @dev Returns true if `account` is a contract.
           *
           * [IMPORTANT]
           * ====
           * It is unsafe to assume that an address for which this function returns
           * false is an externally-owned account (EOA) and not a contract.
           *
           * Among others, `isContract` will return false for the following
           * types of addresses:
           *
           *  - an externally-owned account
           *  - a contract in construction
           *  - an address where a contract will be created
           *  - an address where a contract lived, but was destroyed
           * ====
           */
          function isContract(address account) internal view returns (bool) {
              // This method relies on extcodesize, which returns 0 for contracts in
              // construction, since the code is only stored at the end of the
              // constructor execution.
              uint256 size;
              assembly {
                  size := extcodesize(account)
              }
              return size > 0;
          }
          /**
           * @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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
           */
          function sendValue(address payable recipient, uint256 amount) internal {
              require(address(this).balance >= amount, "Address: insufficient balance");
              (bool success, ) = recipient.call{value: amount}("");
              require(success, "Address: unable to send value, recipient may have reverted");
          }
          /**
           * @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, it is bubbled up by this
           * function (like regular Solidity function calls).
           *
           * 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.
           *
           * _Available since v3.1._
           */
          function functionCall(address target, bytes memory data) internal returns (bytes memory) {
              return functionCall(target, data, "Address: low-level call failed");
          }
          /**
           * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
           * `errorMessage` as a fallback revert reason when `target` reverts.
           *
           * _Available since v3.1._
           */
          function functionCall(
              address target,
              bytes memory data,
              string memory errorMessage
          ) internal returns (bytes memory) {
              return functionCallWithValue(target, data, 0, errorMessage);
          }
          /**
           * @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`.
           *
           * _Available since v3.1._
           */
          function functionCallWithValue(
              address target,
              bytes memory data,
              uint256 value
          ) internal returns (bytes memory) {
              return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
          }
          /**
           * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
           * with `errorMessage` as a fallback revert reason when `target` reverts.
           *
           * _Available since v3.1._
           */
          function functionCallWithValue(
              address target,
              bytes memory data,
              uint256 value,
              string memory errorMessage
          ) internal returns (bytes memory) {
              require(address(this).balance >= value, "Address: insufficient balance for call");
              require(isContract(target), "Address: call to non-contract");
              (bool success, bytes memory returndata) = target.call{value: value}(data);
              return _verifyCallResult(success, returndata, errorMessage);
          }
          /**
           * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
           * but performing a static call.
           *
           * _Available since v3.3._
           */
          function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
              return functionStaticCall(target, data, "Address: low-level static call failed");
          }
          /**
           * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
           * but performing a static call.
           *
           * _Available since v3.3._
           */
          function functionStaticCall(
              address target,
              bytes memory data,
              string memory errorMessage
          ) internal view returns (bytes memory) {
              require(isContract(target), "Address: static call to non-contract");
              (bool success, bytes memory returndata) = target.staticcall(data);
              return _verifyCallResult(success, returndata, errorMessage);
          }
          /**
           * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
           * but performing a delegate call.
           *
           * _Available since v3.4._
           */
          function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
              return functionDelegateCall(target, data, "Address: low-level delegate call failed");
          }
          /**
           * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
           * but performing a delegate call.
           *
           * _Available since v3.4._
           */
          function functionDelegateCall(
              address target,
              bytes memory data,
              string memory errorMessage
          ) internal returns (bytes memory) {
              require(isContract(target), "Address: delegate call to non-contract");
              (bool success, bytes memory returndata) = target.delegatecall(data);
              return _verifyCallResult(success, returndata, errorMessage);
          }
          function _verifyCallResult(
              bool success,
              bytes memory returndata,
              string memory errorMessage
          ) private pure returns (bytes memory) {
              if (success) {
                  return returndata;
              } else {
                  // 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
                      assembly {
                          let returndata_size := mload(returndata)
                          revert(add(32, returndata), returndata_size)
                      }
                  } else {
                      revert(errorMessage);
                  }
              }
          }
      }
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.0;
      import "../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);
      }
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.0;
      import "../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 tokenId);
          /**
           * @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);
      }
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.0;
      import "../ERC721.sol";
      import "./IERC721Enumerable.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.
       */
      abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
          // Mapping from owner to list of owned token IDs
          mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
          // Mapping from token ID to index of the owner tokens list
          mapping(uint256 => uint256) private _ownedTokensIndex;
          // Array with all token ids, used for enumeration
          uint256[] private _allTokens;
          // Mapping from token id to position in the allTokens array
          mapping(uint256 => uint256) private _allTokensIndex;
          /**
           * @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 override returns (uint256) {
              require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
              return _ownedTokens[owner][index];
          }
          /**
           * @dev See {IERC721Enumerable-totalSupply}.
           */
          function totalSupply() public view virtual override returns (uint256) {
              return _allTokens.length;
          }
          /**
           * @dev See {IERC721Enumerable-tokenByIndex}.
           */
          function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
              require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
              return _allTokens[index];
          }
          /**
           * @dev Hook that is called before any token transfer. This includes minting
           * and burning.
           *
           * Calling conditions:
           *
           * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
           * transferred to `to`.
           * - When `from` is zero, `tokenId` will be minted for `to`.
           * - When `to` is zero, ``from``'s `tokenId` will be burned.
           * - `from` cannot be the zero address.
           * - `to` cannot be the zero address.
           *
           * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
           */
          function _beforeTokenTransfer(
              address from,
              address to,
              uint256 tokenId
          ) internal virtual override {
              super._beforeTokenTransfer(from, to, tokenId);
              if (from == address(0)) {
                  _addTokenToAllTokensEnumeration(tokenId);
              } else if (from != to) {
                  _removeTokenFromOwnerEnumeration(from, tokenId);
              }
              if (to == address(0)) {
                  _removeTokenFromAllTokensEnumeration(tokenId);
              } else if (to != from) {
                  _addTokenToOwnerEnumeration(to, tokenId);
              }
          }
          /**
           * @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 = ERC721.balanceOf(to);
              _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 = ERC721.balanceOf(from) - 1;
              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();
          }
      }
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.0;
      import "../ERC721.sol";
      import "../../../utils/Context.sol";
      /**
       * @title ERC721 Burnable Token
       * @dev ERC721 Token that can be irreversibly burned (destroyed).
       */
      abstract contract ERC721Burnable is Context, ERC721 {
          /**
           * @dev Burns `tokenId`. See {ERC721-_burn}.
           *
           * Requirements:
           *
           * - The caller must own `tokenId` or be an approved operator.
           */
          function burn(uint256 tokenId) public virtual {
              //solhint-disable-next-line max-line-length
              require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
              _burn(tokenId);
          }
      }
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.0;
      /**
       * @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 `IERC721.onERC721Received.selector`.
           */
          function onERC721Received(
              address operator,
              address from,
              uint256 tokenId,
              bytes calldata data
          ) external returns (bytes4);
      }
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.0;
      import "../../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`, checking first that contract recipients
           * are aware of the ERC721 protocol to prevent tokens from being forever locked.
           *
           * Requirements:
           *
           * - `from` cannot be the zero address.
           * - `to` cannot be the zero address.
           * - `tokenId` token must exist and be owned by `from`.
           * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
           * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
           *
           * Emits a {Transfer} event.
           */
          function safeTransferFrom(
              address from,
              address to,
              uint256 tokenId
          ) external;
          /**
           * @dev Transfers `tokenId` token from `from` to `to`.
           *
           * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
           *
           * Requirements:
           *
           * - `from` cannot be the zero address.
           * - `to` cannot be the zero address.
           * - `tokenId` token must be owned by `from`.
           * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
           *
           * Emits a {Transfer} event.
           */
          function transferFrom(
              address from,
              address to,
              uint256 tokenId
          ) external;
          /**
           * @dev Gives permission to `to` to transfer `tokenId` token to another account.
           * The approval is cleared when the token is transferred.
           *
           * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
           *
           * Requirements:
           *
           * - The caller must own the token or be an approved operator.
           * - `tokenId` must exist.
           *
           * Emits an {Approval} event.
           */
          function approve(address to, uint256 tokenId) external;
          /**
           * @dev Returns the account approved for `tokenId` token.
           *
           * Requirements:
           *
           * - `tokenId` must exist.
           */
          function getApproved(uint256 tokenId) external view returns (address operator);
          /**
           * @dev Approve or remove `operator` as an operator for the caller.
           * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
           *
           * Requirements:
           *
           * - The `operator` cannot be the caller.
           *
           * Emits an {ApprovalForAll} event.
           */
          function setApprovalForAll(address operator, bool _approved) external;
          /**
           * @dev Returns 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);
          /**
           * @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;
      }
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.0;
      import "./IERC721.sol";
      import "./IERC721Receiver.sol";
      import "./extensions/IERC721Metadata.sol";
      import "../../utils/Address.sol";
      import "../../utils/Context.sol";
      import "../../utils/Strings.sol";
      import "../../utils/introspection/ERC165.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}.
       */
      contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
          using Address for address;
          using Strings for uint256;
          // Token name
          string private _name;
          // Token symbol
          string private _symbol;
          // Mapping from token ID to owner address
          mapping(uint256 => address) private _owners;
          // Mapping owner address to token count
          mapping(address => uint256) private _balances;
          // Mapping from token ID to approved address
          mapping(uint256 => address) private _tokenApprovals;
          // Mapping from owner to operator approvals
          mapping(address => mapping(address => bool)) private _operatorApprovals;
          /**
           * @dev 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 override returns (uint256) {
              require(owner != address(0), "ERC721: balance query for the zero address");
              return _balances[owner];
          }
          /**
           * @dev See {IERC721-ownerOf}.
           */
          function ownerOf(uint256 tokenId) public view virtual override returns (address) {
              address owner = _owners[tokenId];
              require(owner != address(0), "ERC721: owner query for nonexistent token");
              return owner;
          }
          /**
           * @dev See {IERC721Metadata-name}.
           */
          function name() public view virtual override returns (string memory) {
              return _name;
          }
          /**
           * @dev See {IERC721Metadata-symbol}.
           */
          function symbol() public view virtual override returns (string memory) {
              return _symbol;
          }
          /**
           * @dev See {IERC721Metadata-tokenURI}.
           */
          function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
              require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
              string memory baseURI = _baseURI();
              return bytes(baseURI).length > 0 ? string(abi.encodePacked(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 overriden in child contracts.
           */
          function _baseURI() internal view virtual returns (string memory) {
              return "";
          }
          /**
           * @dev See {IERC721-approve}.
           */
          function approve(address to, uint256 tokenId) public virtual override {
              address owner = ERC721.ownerOf(tokenId);
              require(to != owner, "ERC721: approval to current owner");
              require(
                  _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
                  "ERC721: approve caller is not owner nor approved for all"
              );
              _approve(to, tokenId);
          }
          /**
           * @dev See {IERC721-getApproved}.
           */
          function getApproved(uint256 tokenId) public view virtual override returns (address) {
              require(_exists(tokenId), "ERC721: approved query for nonexistent token");
              return _tokenApprovals[tokenId];
          }
          /**
           * @dev See {IERC721-setApprovalForAll}.
           */
          function setApprovalForAll(address operator, bool approved) public virtual override {
              require(operator != _msgSender(), "ERC721: approve to caller");
              _operatorApprovals[_msgSender()][operator] = approved;
              emit ApprovalForAll(_msgSender(), operator, approved);
          }
          /**
           * @dev See {IERC721-isApprovedForAll}.
           */
          function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
              return _operatorApprovals[owner][operator];
          }
          /**
           * @dev See {IERC721-transferFrom}.
           */
          function transferFrom(
              address from,
              address to,
              uint256 tokenId
          ) public virtual override {
              //solhint-disable-next-line max-line-length
              require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
              _transfer(from, to, tokenId);
          }
          /**
           * @dev See {IERC721-safeTransferFrom}.
           */
          function safeTransferFrom(
              address from,
              address to,
              uint256 tokenId
          ) public virtual override {
              safeTransferFrom(from, to, tokenId, "");
          }
          /**
           * @dev See {IERC721-safeTransferFrom}.
           */
          function safeTransferFrom(
              address from,
              address to,
              uint256 tokenId,
              bytes memory _data
          ) public virtual override {
              require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
              _safeTransfer(from, to, tokenId, _data);
          }
          /**
           * @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.
           *
           * `_data` is additional data, it has no specified format and it is sent in call to `to`.
           *
           * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
           * implement alternative mechanisms to perform token transfer, such as signature-based.
           *
           * Requirements:
           *
           * - `from` cannot be the zero address.
           * - `to` cannot be the zero address.
           * - `tokenId` token must exist and be owned by `from`.
           * - 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,
              bytes memory _data
          ) internal virtual {
              _transfer(from, to, tokenId);
              require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
          }
          /**
           * @dev Returns whether `tokenId` exists.
           *
           * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
           *
           * Tokens start existing when they are minted (`_mint`),
           * and stop existing when they are burned (`_burn`).
           */
          function _exists(uint256 tokenId) internal view virtual returns (bool) {
              return _owners[tokenId] != address(0);
          }
          /**
           * @dev Returns whether `spender` is allowed to manage `tokenId`.
           *
           * Requirements:
           *
           * - `tokenId` must exist.
           */
          function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
              require(_exists(tokenId), "ERC721: operator query for nonexistent token");
              address owner = ERC721.ownerOf(tokenId);
              return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
          }
          /**
           * @dev Safely mints `tokenId` and transfers it to `to`.
           *
           * 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 virtual {
              _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);
              require(
                  _checkOnERC721Received(address(0), to, tokenId, _data),
                  "ERC721: transfer to non ERC721Receiver implementer"
              );
          }
          /**
           * @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 virtual {
              require(to != address(0), "ERC721: mint to the zero address");
              require(!_exists(tokenId), "ERC721: token already minted");
              _beforeTokenTransfer(address(0), to, tokenId);
              _balances[to] += 1;
              _owners[tokenId] = to;
              emit Transfer(address(0), to, tokenId);
          }
          /**
           * @dev Destroys `tokenId`.
           * The approval is cleared when the token is burned.
           *
           * Requirements:
           *
           * - `tokenId` must exist.
           *
           * Emits a {Transfer} event.
           */
          function _burn(uint256 tokenId) internal virtual {
              address owner = ERC721.ownerOf(tokenId);
              _beforeTokenTransfer(owner, address(0), tokenId);
              // Clear approvals
              _approve(address(0), tokenId);
              _balances[owner] -= 1;
              delete _owners[tokenId];
              emit Transfer(owner, address(0), 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 virtual {
              require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
              require(to != address(0), "ERC721: transfer to the zero address");
              _beforeTokenTransfer(from, to, tokenId);
              // Clear approvals from the previous owner
              _approve(address(0), tokenId);
              _balances[from] -= 1;
              _balances[to] += 1;
              _owners[tokenId] = to;
              emit Transfer(from, to, tokenId);
          }
          /**
           * @dev Approve `to` to operate on `tokenId`
           *
           * Emits a {Approval} event.
           */
          function _approve(address to, uint256 tokenId) internal virtual {
              _tokenApprovals[tokenId] = to;
              emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
          }
          /**
           * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
           * 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
           * @return bool whether the call correctly returned the expected magic value
           */
          function _checkOnERC721Received(
              address from,
              address to,
              uint256 tokenId,
              bytes memory _data
          ) private returns (bool) {
              if (to.isContract()) {
                  try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                      return retval == IERC721Receiver(to).onERC721Received.selector;
                  } catch (bytes memory reason) {
                      if (reason.length == 0) {
                          revert("ERC721: transfer to non ERC721Receiver implementer");
                      } else {
                          assembly {
                              revert(add(32, reason), mload(reason))
                          }
                      }
                  }
              } else {
                  return true;
              }
          }
          /**
           * @dev Hook that is called before any token transfer. This includes minting
           * and burning.
           *
           * Calling conditions:
           *
           * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
           * transferred to `to`.
           * - When `from` is zero, `tokenId` will be minted for `to`.
           * - When `to` is zero, ``from``'s `tokenId` will be burned.
           * - `from` and `to` are never both zero.
           *
           * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
           */
          function _beforeTokenTransfer(
              address from,
              address to,
              uint256 tokenId
          ) internal virtual {}
      }
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.0;
      import "../IERC20.sol";
      import "../../../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;
          function safeTransfer(
              IERC20 token,
              address to,
              uint256 value
          ) internal {
              _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
          }
          function safeTransferFrom(
              IERC20 token,
              address from,
              address to,
              uint256 value
          ) internal {
              _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
          }
          /**
           * @dev Deprecated. This function has issues similar to the ones found in
           * {IERC20-approve}, and its usage is discouraged.
           *
           * Whenever possible, use {safeIncreaseAllowance} and
           * {safeDecreaseAllowance} instead.
           */
          function safeApprove(
              IERC20 token,
              address spender,
              uint256 value
          ) internal {
              // safeApprove should only be called when setting an initial allowance,
              // or when resetting it to zero. To increase and decrease it, use
              // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
              require(
                  (value == 0) || (token.allowance(address(this), spender) == 0),
                  "SafeERC20: approve from non-zero to non-zero allowance"
              );
              _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
          }
          function safeIncreaseAllowance(
              IERC20 token,
              address spender,
              uint256 value
          ) internal {
              uint256 newAllowance = token.allowance(address(this), spender) + value;
              _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
          }
          function safeDecreaseAllowance(
              IERC20 token,
              address spender,
              uint256 value
          ) internal {
              unchecked {
                  uint256 oldAllowance = token.allowance(address(this), spender);
                  require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
                  uint256 newAllowance = oldAllowance - value;
                  _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
              }
          }
          /**
           * @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, "SafeERC20: low-level call failed");
              if (returndata.length > 0) {
                  // Return data is optional
                  require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
              }
          }
      }
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.0;
      /**
       * @dev Interface of the ERC20 standard as defined in the EIP.
       */
      interface IERC20 {
          /**
           * @dev Returns the amount of tokens in existence.
           */
          function totalSupply() external view returns (uint256);
          /**
           * @dev Returns the amount of tokens owned by `account`.
           */
          function balanceOf(address account) external view returns (uint256);
          /**
           * @dev Moves `amount` tokens from the caller's account to `recipient`.
           *
           * Returns a boolean value indicating whether the operation succeeded.
           *
           * Emits a {Transfer} event.
           */
          function transfer(address recipient, uint256 amount) 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 `amount` 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 amount) external returns (bool);
          /**
           * @dev Moves `amount` tokens from `sender` to `recipient` using the
           * allowance mechanism. `amount` is then deducted from the caller's
           * allowance.
           *
           * Returns a boolean value indicating whether the operation succeeded.
           *
           * Emits a {Transfer} event.
           */
          function transferFrom(
              address sender,
              address recipient,
              uint256 amount
          ) external returns (bool);
          /**
           * @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);
      }
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.0;
      import "../utils/Context.sol";
      /**
       * @dev Contract module which allows children to implement an emergency stop
       * mechanism that can be triggered by an authorized account.
       *
       * This module is used through inheritance. It will make available the
       * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
       * the functions of your contract. Note that they will not be pausable by
       * simply including this module, only once the modifiers are put in place.
       */
      abstract contract Pausable is Context {
          /**
           * @dev Emitted when the pause is triggered by `account`.
           */
          event Paused(address account);
          /**
           * @dev Emitted when the pause is lifted by `account`.
           */
          event Unpaused(address account);
          bool private _paused;
          /**
           * @dev Initializes the contract in unpaused state.
           */
          constructor() {
              _paused = false;
          }
          /**
           * @dev Returns true if the contract is paused, and false otherwise.
           */
          function paused() public view virtual returns (bool) {
              return _paused;
          }
          /**
           * @dev Modifier to make a function callable only when the contract is not paused.
           *
           * Requirements:
           *
           * - The contract must not be paused.
           */
          modifier whenNotPaused() {
              require(!paused(), "Pausable: paused");
              _;
          }
          /**
           * @dev Modifier to make a function callable only when the contract is paused.
           *
           * Requirements:
           *
           * - The contract must be paused.
           */
          modifier whenPaused() {
              require(paused(), "Pausable: not paused");
              _;
          }
          /**
           * @dev Triggers stopped state.
           *
           * Requirements:
           *
           * - The contract must not be paused.
           */
          function _pause() internal virtual whenNotPaused {
              _paused = true;
              emit Paused(_msgSender());
          }
          /**
           * @dev Returns to normal state.
           *
           * Requirements:
           *
           * - The contract must be paused.
           */
          function _unpause() internal virtual whenPaused {
              _paused = false;
              emit Unpaused(_msgSender());
          }
      }
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.0;
      import "../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.
       *
       * By default, the owner account will be the one that deploys the contract. This
       * can later be changed with {transferOwnership}.
       *
       * This module is used through inheritance. It will make available the modifier
       * `onlyOwner`, which can be applied to your functions to restrict their use to
       * the owner.
       */
      abstract contract Ownable is Context {
          address private _owner;
          event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
          /**
           * @dev Initializes the contract setting the deployer as the initial owner.
           */
          constructor() {
              _setOwner(_msgSender());
          }
          /**
           * @dev Returns the address of the current owner.
           */
          function owner() public view virtual returns (address) {
              return _owner;
          }
          /**
           * @dev Throws if called by any account other than the owner.
           */
          modifier onlyOwner() {
              require(owner() == _msgSender(), "Ownable: caller is not the owner");
              _;
          }
          /**
           * @dev Leaves the contract without owner. It will not be possible to call
           * `onlyOwner` functions anymore. Can only be called by the current owner.
           *
           * NOTE: Renouncing ownership will leave the contract without an owner,
           * thereby removing any functionality that is only available to the owner.
           */
          function renounceOwnership() public virtual onlyOwner {
              _setOwner(address(0));
          }
          /**
           * @dev Transfers ownership of the contract to a new account (`newOwner`).
           * Can only be called by the current owner.
           */
          function transferOwnership(address newOwner) public virtual onlyOwner {
              require(newOwner != address(0), "Ownable: new owner is the zero address");
              _setOwner(newOwner);
          }
          function _setOwner(address newOwner) private {
              address oldOwner = _owner;
              _owner = newOwner;
              emit OwnershipTransferred(oldOwner, newOwner);
          }
      }
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.0;
      interface LinkTokenInterface {
        function allowance(
          address owner,
          address spender
        )
          external
          view
          returns (
            uint256 remaining
          );
        function approve(
          address spender,
          uint256 value
        )
          external
          returns (
            bool success
          );
        function balanceOf(
          address owner
        )
          external
          view
          returns (
            uint256 balance
          );
        function decimals()
          external
          view
          returns (
            uint8 decimalPlaces
          );
        function decreaseApproval(
          address spender,
          uint256 addedValue
        )
          external
          returns (
            bool success
          );
        function increaseApproval(
          address spender,
          uint256 subtractedValue
        ) external;
        function name()
          external
          view
          returns (
            string memory tokenName
          );
        function symbol()
          external
          view
          returns (
            string memory tokenSymbol
          );
        function totalSupply()
          external
          view
          returns (
            uint256 totalTokensIssued
          );
        function transfer(
          address to,
          uint256 value
        )
          external
          returns (
            bool success
          );
        function transferAndCall(
          address to,
          uint256 value,
          bytes calldata data
        )
          external
          returns (
            bool success
          );
        function transferFrom(
          address from,
          address to,
          uint256 value
        )
          external
          returns (
            bool success
          );
      }
      // SPDX-License-Identifier: MIT
      pragma solidity ^0.8.0;
      contract VRFRequestIDBase {
        /**
         * @notice returns the seed which is actually input to the VRF coordinator
         *
         * @dev To prevent repetition of VRF output due to repetition of the
         * @dev user-supplied seed, that seed is combined in a hash with the
         * @dev user-specific nonce, and the address of the consuming contract. The
         * @dev risk of repetition is mostly mitigated by inclusion of a blockhash in
         * @dev the final seed, but the nonce does protect against repetition in
         * @dev requests which are included in a single block.
         *
         * @param _userSeed VRF seed input provided by user
         * @param _requester Address of the requesting contract
         * @param _nonce User-specific nonce at the time of the request
         */
        function makeVRFInputSeed(
          bytes32 _keyHash,
          uint256 _userSeed,
          address _requester,
          uint256 _nonce
        )
          internal
          pure
          returns (
            uint256
          )
        {
          return uint256(keccak256(abi.encode(_keyHash, _userSeed, _requester, _nonce)));
        }
        /**
         * @notice Returns the id for this request
         * @param _keyHash The serviceAgreement ID to be used for this request
         * @param _vRFInputSeed The seed to be passed directly to the VRF
         * @return The id for this request
         *
         * @dev Note that _vRFInputSeed is not the seed passed by the consuming
         * @dev contract, but the one generated by makeVRFInputSeed
         */
        function makeRequestId(
          bytes32 _keyHash,
          uint256 _vRFInputSeed
        )
          internal
          pure
          returns (
            bytes32
          )
        {
          return keccak256(abi.encodePacked(_keyHash, _vRFInputSeed));
        }
      }// SPDX-License-Identifier: MIT
      pragma solidity ^0.8.0;
      import "./interfaces/LinkTokenInterface.sol";
      import "./VRFRequestIDBase.sol";
      /** ****************************************************************************
       * @notice Interface for contracts using VRF randomness
       * *****************************************************************************
       * @dev PURPOSE
       *
       * @dev Reggie the Random Oracle (not his real job) wants to provide randomness
       * @dev to Vera the verifier in such a way that Vera can be sure he's not
       * @dev making his output up to suit himself. Reggie provides Vera a public key
       * @dev to which he knows the secret key. Each time Vera provides a seed to
       * @dev Reggie, he gives back a value which is computed completely
       * @dev deterministically from the seed and the secret key.
       *
       * @dev Reggie provides a proof by which Vera can verify that the output was
       * @dev correctly computed once Reggie tells it to her, but without that proof,
       * @dev the output is indistinguishable to her from a uniform random sample
       * @dev from the output space.
       *
       * @dev The purpose of this contract is to make it easy for unrelated contracts
       * @dev to talk to Vera the verifier about the work Reggie is doing, to provide
       * @dev simple access to a verifiable source of randomness.
       * *****************************************************************************
       * @dev USAGE
       *
       * @dev Calling contracts must inherit from VRFConsumerBase, and can
       * @dev initialize VRFConsumerBase's attributes in their constructor as
       * @dev shown:
       *
       * @dev   contract VRFConsumer {
       * @dev     constuctor(<other arguments>, address _vrfCoordinator, address _link)
       * @dev       VRFConsumerBase(_vrfCoordinator, _link) public {
       * @dev         <initialization with other arguments goes here>
       * @dev       }
       * @dev   }
       *
       * @dev The oracle will have given you an ID for the VRF keypair they have
       * @dev committed to (let's call it keyHash), and have told you the minimum LINK
       * @dev price for VRF service. Make sure your contract has sufficient LINK, and
       * @dev call requestRandomness(keyHash, fee, seed), where seed is the input you
       * @dev want to generate randomness from.
       *
       * @dev Once the VRFCoordinator has received and validated the oracle's response
       * @dev to your request, it will call your contract's fulfillRandomness method.
       *
       * @dev The randomness argument to fulfillRandomness is the actual random value
       * @dev generated from your seed.
       *
       * @dev The requestId argument is generated from the keyHash and the seed by
       * @dev makeRequestId(keyHash, seed). If your contract could have concurrent
       * @dev requests open, you can use the requestId to track which seed is
       * @dev associated with which randomness. See VRFRequestIDBase.sol for more
       * @dev details. (See "SECURITY CONSIDERATIONS" for principles to keep in mind,
       * @dev if your contract could have multiple requests in flight simultaneously.)
       *
       * @dev Colliding `requestId`s are cryptographically impossible as long as seeds
       * @dev differ. (Which is critical to making unpredictable randomness! See the
       * @dev next section.)
       *
       * *****************************************************************************
       * @dev SECURITY CONSIDERATIONS
       *
       * @dev A method with the ability to call your fulfillRandomness method directly
       * @dev could spoof a VRF response with any random value, so it's critical that
       * @dev it cannot be directly called by anything other than this base contract
       * @dev (specifically, by the VRFConsumerBase.rawFulfillRandomness method).
       *
       * @dev For your users to trust that your contract's random behavior is free
       * @dev from malicious interference, it's best if you can write it so that all
       * @dev behaviors implied by a VRF response are executed *during* your
       * @dev fulfillRandomness method. If your contract must store the response (or
       * @dev anything derived from it) and use it later, you must ensure that any
       * @dev user-significant behavior which depends on that stored value cannot be
       * @dev manipulated by a subsequent VRF request.
       *
       * @dev Similarly, both miners and the VRF oracle itself have some influence
       * @dev over the order in which VRF responses appear on the blockchain, so if
       * @dev your contract could have multiple VRF requests in flight simultaneously,
       * @dev you must ensure that the order in which the VRF responses arrive cannot
       * @dev be used to manipulate your contract's user-significant behavior.
       *
       * @dev Since the ultimate input to the VRF is mixed with the block hash of the
       * @dev block in which the request is made, user-provided seeds have no impact
       * @dev on its economic security properties. They are only included for API
       * @dev compatability with previous versions of this contract.
       *
       * @dev Since the block hash of the block which contains the requestRandomness
       * @dev call is mixed into the input to the VRF *last*, a sufficiently powerful
       * @dev miner could, in principle, fork the blockchain to evict the block
       * @dev containing the request, forcing the request to be included in a
       * @dev different block with a different hash, and therefore a different input
       * @dev to the VRF. However, such an attack would incur a substantial economic
       * @dev cost. This cost scales with the number of blocks the VRF oracle waits
       * @dev until it calls responds to a request.
       */
      abstract contract VRFConsumerBase is VRFRequestIDBase {
        /**
         * @notice fulfillRandomness handles the VRF response. Your contract must
         * @notice implement it. See "SECURITY CONSIDERATIONS" above for important
         * @notice principles to keep in mind when implementing your fulfillRandomness
         * @notice method.
         *
         * @dev VRFConsumerBase expects its subcontracts to have a method with this
         * @dev signature, and will call it once it has verified the proof
         * @dev associated with the randomness. (It is triggered via a call to
         * @dev rawFulfillRandomness, below.)
         *
         * @param requestId The Id initially returned by requestRandomness
         * @param randomness the VRF output
         */
        function fulfillRandomness(
          bytes32 requestId,
          uint256 randomness
        )
          internal
          virtual;
        /**
         * @dev In order to keep backwards compatibility we have kept the user
         * seed field around. We remove the use of it because given that the blockhash
         * enters later, it overrides whatever randomness the used seed provides.
         * Given that it adds no security, and can easily lead to misunderstandings,
         * we have removed it from usage and can now provide a simpler API.
         */
        uint256 constant private USER_SEED_PLACEHOLDER = 0;
        /**
         * @notice requestRandomness initiates a request for VRF output given _seed
         *
         * @dev The fulfillRandomness method receives the output, once it's provided
         * @dev by the Oracle, and verified by the vrfCoordinator.
         *
         * @dev The _keyHash must already be registered with the VRFCoordinator, and
         * @dev the _fee must exceed the fee specified during registration of the
         * @dev _keyHash.
         *
         * @dev The _seed parameter is vestigial, and is kept only for API
         * @dev compatibility with older versions. It can't *hurt* to mix in some of
         * @dev your own randomness, here, but it's not necessary because the VRF
         * @dev oracle will mix the hash of the block containing your request into the
         * @dev VRF seed it ultimately uses.
         *
         * @param _keyHash ID of public key against which randomness is generated
         * @param _fee The amount of LINK to send with the request
         *
         * @return requestId unique ID for this request
         *
         * @dev The returned requestId can be used to distinguish responses to
         * @dev concurrent requests. It is passed as the first argument to
         * @dev fulfillRandomness.
         */
        function requestRandomness(
          bytes32 _keyHash,
          uint256 _fee
        )
          internal
          returns (
            bytes32 requestId
          )
        {
          LINK.transferAndCall(vrfCoordinator, _fee, abi.encode(_keyHash, USER_SEED_PLACEHOLDER));
          // This is the seed passed to VRFCoordinator. The oracle will mix this with
          // the hash of the block containing this request to obtain the seed/input
          // which is finally passed to the VRF cryptographic machinery.
          uint256 vRFSeed  = makeVRFInputSeed(_keyHash, USER_SEED_PLACEHOLDER, address(this), nonces[_keyHash]);
          // nonces[_keyHash] must stay in sync with
          // VRFCoordinator.nonces[_keyHash][this], which was incremented by the above
          // successful LINK.transferAndCall (in VRFCoordinator.randomnessRequest).
          // This provides protection against the user repeating their input seed,
          // which would result in a predictable/duplicate output, if multiple such
          // requests appeared in the same block.
          nonces[_keyHash] = nonces[_keyHash] + 1;
          return makeRequestId(_keyHash, vRFSeed);
        }
        LinkTokenInterface immutable internal LINK;
        address immutable private vrfCoordinator;
        // Nonces for each VRF key from which randomness has been requested.
        //
        // Must stay in sync with VRFCoordinator[_keyHash][this]
        mapping(bytes32 /* keyHash */ => uint256 /* nonce */) private nonces;
        /**
         * @param _vrfCoordinator address of VRFCoordinator contract
         * @param _link address of LINK token contract
         *
         * @dev https://docs.chain.link/docs/link-token-contracts
         */
        constructor(
          address _vrfCoordinator,
          address _link
        ) {
          vrfCoordinator = _vrfCoordinator;
          LINK = LinkTokenInterface(_link);
        }
        // rawFulfillRandomness is called by VRFCoordinator when it receives a valid VRF
        // proof. rawFulfillRandomness then calls fulfillRandomness, after validating
        // the origin of the call
        function rawFulfillRandomness(
          bytes32 requestId,
          uint256 randomness
        )
          external
        {
          require(msg.sender == vrfCoordinator, "Only VRFCoordinator can fulfill");
          fulfillRandomness(requestId, randomness);
        }
      }