ETH Price: $3,544.42 (+4.64%)

Token

FWB Custom 0xTote (FWB)
 

Overview

Max Total Supply

20 FWB

Holders

19

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
rachaelsacks.eth
Balance
1 FWB
0x69d6075eacbbfd10504fcae62cd2d86660b0553d
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
CrowdmuseProduct

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion
File 1 of 27 : CrowdmuseProduct.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.10;

import "@openzeppelin/contracts/token/common/ERC2981.sol";
import { ERC721URIStorage } from "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import { ERC721Enumerable } from "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import { SafeMath } from "@openzeppelin/contracts/utils/math/SafeMath.sol";
import { ReentrancyGuard } from "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import { ERC721 } from "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import { Counters } from "@openzeppelin/contracts/utils/Counters.sol";
import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";
import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";

contract CrowdmuseProduct is ERC721, ERC721URIStorage, ERC721Enumerable, ERC2981, ReentrancyGuard, Ownable {

  using SafeMath for uint256;
  using Counters for Counters.Counter;
  using SafeERC20 for IERC20;

  Counters.Counter internal taskId;
  Counters.Counter internal contributionId;
  Counters.Counter public tokenId;

  ProductStatus public productStatus; // whether product is complete
  uint256 public buyNFTPrice; // nft price
  uint256 public contributorTotalSupply; // total supply of tokens for this project
  uint256 public contributorPointsAllocated; // used to ensure that the maximum supply of tokens is not exceeded
  uint256 public contributorPointsComplete; // used to distribute profits
  uint256 public garmentsAvailable; // remaining NFTs
  IERC20 public paymentToken; // ERC20 token address used for payment
  string public baseURI;

  enum ProductStatus {
    InProgress,
    Complete
  }

  enum NFTTypes {
    Default,
    Product,
    Contributor,
    Investor
  }

  enum TaskStatus {
    Open,
    Assigned,
    Complete
  }

  struct TaskInformation {
    uint256 taskId;
    uint256 contributionValue;
    address taskOwnerAddress;
    address taskContributor;
    uint256[] licensedProjects;
    uint24 feedbackScore;
    string submissionUri;
    string taskMetadataUri;
    TaskStatus taskStatus;
    uint256 taskType;
  }

  struct Task {
    uint256[] contributionValues;
    address[] taskContributors;
    TaskStatus[] taskStatus;
    uint256[] taskContributorTypes;
  }

  struct Inventory {
    string keyName;
    uint96 garmentsRemaining;
  }

  mapping(uint256 => TaskInformation) public taskByTaskId;
  mapping(uint256 => uint8) public NFTByType; // mapping that keeps the NFT type for each  NFT id
  mapping(uint256 => bytes32) public NFTBySize; // mapping that keeps the NFT type for each  NFT id
  mapping(address => bool) public contributors;


  // Variables for managing inventory //
  string public inventoryKey;
  string[] public garmentTypes;   // This is the format of the garmentTypes '{inventoryKey}:Green,size:large'
  uint96 public numberGarmentTypes;
  mapping(bytes32 => uint96) public inventoryGarmentsRemaining;
  mapping(bytes32 => uint96) public inventoryGarmentsOrdered;
  bool public madeToOrder;

  constructor(
    uint96 _feeNumerator,
    uint256 _contributorTotalSupply,
    uint256 _garmentsAvailable,
    Task memory _task,
    string memory _productName,
    string memory _productSymbol,
    string memory _baseUri,
    address _paymentTokenAddress,
    string memory _inventoryKey,
    Inventory[] memory _inventory,
    bool _madeToOrder
  ) ERC721(_productName, _productSymbol) {
    _setDefaultRoyalty(address(this), _feeNumerator);
    paymentToken = IERC20(_paymentTokenAddress);
    productStatus = ProductStatus.InProgress;
    contributorTotalSupply = _contributorTotalSupply;
    garmentsAvailable = _garmentsAvailable;
    createTasks(_task.contributionValues, _task.taskContributors, _task.taskStatus, _task.taskContributorTypes);
    
    if (!_madeToOrder) {
      uint96 totalGarmentsMatches;
      inventoryKey = _inventoryKey;
      for (uint256 i = 0; i < _inventory.length; i++) {
        totalGarmentsMatches += _inventory[i].garmentsRemaining;
        garmentTypes.push(_inventory[i].keyName);
        inventoryGarmentsRemaining[keccak256(abi.encodePacked(_inventory[i].keyName))] = _inventory[i].garmentsRemaining;
        numberGarmentTypes = uint96(_inventory.length);
      }
      require(totalGarmentsMatches == uint96(_garmentsAvailable), "garment numbers not matching");
    } else {
      madeToOrder = true;
    }

    if (bytes(_baseUri).length > 0) baseURI = _baseUri;
  }

  fallback() external payable {}

  receive() external payable  {}


  function createTasks(
    uint256[] memory _contributionValues,
    address[] memory _taskContributors,
    TaskStatus[] memory _taskStatus,
    uint256[] memory _taskType
  ) public onlyOwner {
    for (uint256 i = 0; i < _contributionValues.length; i++) {
      require(
        _contributionValues[i] + contributorPointsAllocated <= contributorTotalSupply,
        "Contribution value exceeds limit"
      );
      taskId.increment();
      uint256 _taskId = taskId.current();
      TaskInformation storage _taskByTaskId = taskByTaskId[_taskId];
      _taskByTaskId.taskId = _taskId;
      _taskByTaskId.taskOwnerAddress = msg.sender;
      _taskByTaskId.contributionValue = _contributionValues[i];
      _taskByTaskId.taskStatus = _taskStatus[i];
      _taskByTaskId.taskContributor = _taskContributors[i];
      _taskByTaskId.taskType = _taskType[i];
      contributorPointsAllocated += _contributionValues[i];
      if (_taskStatus[i] == TaskStatus.Complete) {
        contributorPointsComplete += _contributionValues[i];
        addContributor(_taskContributors[i]);
      }
    }
  }

  function submitProduct(uint256 _buyNFTPrice) public onlyOwner {
    require(productStatus != ProductStatus.Complete, "already submitted");
    productStatus = ProductStatus.Complete;
    buyNFTPrice = _buyNFTPrice;
  }

  function createTasksAndSubmitProduct(
    uint256[] memory _contributionValues,
    address[] memory _taskContributors,
    TaskStatus[] memory _taskStatus,
    uint256[] memory _taskType,
    uint256 _buyNFTPrice
  ) public onlyOwner {
    createTasks(_contributionValues, _taskContributors, _taskStatus, _taskType);
    submitProduct(_buyNFTPrice);
  }


  function buyNFT(address _to, bytes32 garmentType) public nonReentrant returns (uint256 _tokenId) {
    require(productStatus == ProductStatus.Complete, "Product not complete");
    require(paymentToken.balanceOf(msg.sender) >= buyNFTPrice, "Not enough balance");
    require(garmentsAvailable > 0, "No garments left");
    require(inventoryGarmentsRemaining[garmentType] > 0, "None of this type remaining");
    require(_to != address(0), "Address must not be zero");
    if (buyNFTPrice > 0) {
       paymentToken.safeTransferFrom(msg.sender, address(this), buyNFTPrice);
    }
    tokenId.increment();
    _tokenId = tokenId.current();
    _safeMint(_to, _tokenId);
    if (madeToOrder) {
      inventoryGarmentsOrdered[garmentType] += 1;
    } else {
      inventoryGarmentsRemaining[garmentType] -= 1;
    }
    garmentsAvailable -= 1;
    uint8 productTypeAsUint = uint8(NFTTypes.Product);
    NFTByType[_tokenId] = productTypeAsUint;
    NFTBySize[_tokenId] = garmentType;
  }


  function distributeRewards() public nonReentrant {
    uint256 currentBalance = paymentToken.balanceOf(address(this));
    require(currentBalance > 0, "No funds available");

    for (uint256 i = 1; i <= taskId.current(); i++) {
      if (taskByTaskId[i].taskStatus == TaskStatus.Complete) {
        uint256 amountToSend = currentBalance
          .mul(taskByTaskId[i].contributionValue)
          .mul(10000)
          .div(contributorPointsComplete)
          .div(10000); //This means that if  the person has less than 0.01% of the total tokens, they wont be eligible for a return
        paymentToken.safeTransfer(taskByTaskId[i].taskContributor, amountToSend);
      }
    }
  }

  function distributeRewardsNative() public nonReentrant {
    uint256 currentBalance = address(this).balance;
    require(currentBalance > 0, "No funds available");

    for (uint256 i = 1; i <= taskId.current(); i++) {
      if (taskByTaskId[i].taskStatus == TaskStatus.Complete) {
        uint256 amountToSend = currentBalance
          .mul(taskByTaskId[i].contributionValue)
          .mul(10000)
          .div(contributorPointsComplete)
          .div(10000); //This means that if  the person has less than 0.01% of the total tokens, they wont be eligible for a return
        (bool success, ) = taskByTaskId[i].taskContributor.call{ value: amountToSend }("");
        require(success, "Did not send"); // Make sure this reverts all the sends if one of them fails/ Make sure this reverts all the sends if one of them fails
      }
    }
  }

  function addContributor(address to) private {
    contributors[to] = true;
  }

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

  function changeBaseUri(string memory _newBaseUri) external onlyOwner {
    // In case the gateway breaks
    baseURI = _newBaseUri;
  }

  function _beforeTokenTransfer(
    address from,
    address to,
    uint256 tokenId,
    uint256 batchSize
  ) internal override(ERC721, ERC721Enumerable) {
    super._beforeTokenTransfer(from, to, tokenId, batchSize);
  }

  function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
    super._burn(tokenId);
  }

  function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) {
    return baseURI;
  }

  function supportsInterface(
    bytes4 interfaceId
  ) public view virtual override(ERC721, ERC721Enumerable, ERC721URIStorage, ERC2981) returns (bool) {
    return (interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId));
  }
}

File 2 of 27 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

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() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

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

File 3 of 27 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;

import "../utils/introspection/IERC165.sol";

File 4 of 27 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "../utils/introspection/IERC165.sol";

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(
        uint256 tokenId,
        uint256 salePrice
    ) external view returns (address receiver, uint256 royaltyAmount);
}

File 5 of 27 : IERC4906.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC4906.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";
import "./IERC721.sol";

/// @title EIP-721 Metadata Update Extension
interface IERC4906 is IERC165, IERC721 {
    /// @dev This event emits when the metadata of a token is changed.
    /// So that the third-party platforms such as NFT market could
    /// timely update the images and related attributes of the NFT.
    event MetadataUpdate(uint256 _tokenId);

    /// @dev This event emits when the metadata of a range of tokens is changed.
    /// So that the third-party platforms such as NFT market could
    /// timely update the images and related attributes of the NFTs.
    event BatchMetadataUpdate(uint256 _fromTokenId, uint256 _toTokenId);
}

File 6 of 27 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC721.sol)

pragma solidity ^0.8.0;

import "../token/ERC721/IERC721.sol";

File 7 of 27 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

File 8 of 27 : ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

import "../../interfaces/IERC2981.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(uint256 tokenId, address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

File 9 of 27 : IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

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

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

File 10 of 27 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Returns the 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

File 11 of 27 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../extensions/IERC20Permit.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;

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

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

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

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    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");
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
        }
    }

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

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

    /**
     * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.
     * Revert on invalid signature.
     */
    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @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");
        require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
    }

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

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

File 12 of 27 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/ERC721.sol)

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: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual 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 token owner or approved for all"
        );

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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: caller is not token owner or 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: caller is not token owner or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _ownerOf(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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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, 1);

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId, 1);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId, 1);

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId, 1);
    }

    /**
     * @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 from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId, 1);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
     * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
     * that `ownerOf(tokenId)` is `a`.
     */
    // solhint-disable-next-line func-name-mixedcase
    function __unsafe_increaseBalance(address account, uint256 amount) internal {
        _balances[account] += amount;
    }
}

File 13 of 27 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol)

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 See {ERC721-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, firstTokenId, batchSize);

        if (batchSize > 1) {
            // Will only trigger during construction. Batch transferring (minting) is not available afterwards.
            revert("ERC721Enumerable: consecutive transfers not supported");
        }

        uint256 tokenId = firstTokenId;

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

File 14 of 27 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "../../../interfaces/IERC4906.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is IERC4906, ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Emits {MetadataUpdate}.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;

        emit MetadataUpdate(tokenId);
    }

    /**
     * @dev See {ERC721-_burn}. This override additionally checks to see if a
     * token-specific URI was set for the token, and if so, it deletes the token URI from
     * the storage mapping.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 15 of 27 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

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

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

File 16 of 27 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

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

File 17 of 27 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol)

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

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

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

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

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

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

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

File 18 of 27 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 19 of 27 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.0/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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

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

File 20 of 27 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 21 of 27 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

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

File 22 of 27 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

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

File 23 of 27 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

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 24 of 27 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

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

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

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

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

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

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

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

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

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

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

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

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 25 of 27 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 26 of 27 : SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

File 27 of 27 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";
import "./math/SignedMath.sol";

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

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

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

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

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

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 1000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint96","name":"_feeNumerator","type":"uint96"},{"internalType":"uint256","name":"_contributorTotalSupply","type":"uint256"},{"internalType":"uint256","name":"_garmentsAvailable","type":"uint256"},{"components":[{"internalType":"uint256[]","name":"contributionValues","type":"uint256[]"},{"internalType":"address[]","name":"taskContributors","type":"address[]"},{"internalType":"enum CrowdmuseProduct.TaskStatus[]","name":"taskStatus","type":"uint8[]"},{"internalType":"uint256[]","name":"taskContributorTypes","type":"uint256[]"}],"internalType":"struct CrowdmuseProduct.Task","name":"_task","type":"tuple"},{"internalType":"string","name":"_productName","type":"string"},{"internalType":"string","name":"_productSymbol","type":"string"},{"internalType":"string","name":"_baseUri","type":"string"},{"internalType":"address","name":"_paymentTokenAddress","type":"address"},{"internalType":"string","name":"_inventoryKey","type":"string"},{"components":[{"internalType":"string","name":"keyName","type":"string"},{"internalType":"uint96","name":"garmentsRemaining","type":"uint96"}],"internalType":"struct CrowdmuseProduct.Inventory[]","name":"_inventory","type":"tuple[]"},{"internalType":"bool","name":"_madeToOrder","type":"bool"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_toTokenId","type":"uint256"}],"name":"BatchMetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"MetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"NFTBySize","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"NFTByType","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"bytes32","name":"garmentType","type":"bytes32"}],"name":"buyNFT","outputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyNFTPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseUri","type":"string"}],"name":"changeBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contributorPointsAllocated","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contributorPointsComplete","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contributorTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"contributors","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_contributionValues","type":"uint256[]"},{"internalType":"address[]","name":"_taskContributors","type":"address[]"},{"internalType":"enum CrowdmuseProduct.TaskStatus[]","name":"_taskStatus","type":"uint8[]"},{"internalType":"uint256[]","name":"_taskType","type":"uint256[]"}],"name":"createTasks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_contributionValues","type":"uint256[]"},{"internalType":"address[]","name":"_taskContributors","type":"address[]"},{"internalType":"enum CrowdmuseProduct.TaskStatus[]","name":"_taskStatus","type":"uint8[]"},{"internalType":"uint256[]","name":"_taskType","type":"uint256[]"},{"internalType":"uint256","name":"_buyNFTPrice","type":"uint256"}],"name":"createTasksAndSubmitProduct","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"distributeRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"distributeRewardsNative","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"garmentTypes","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"garmentsAvailable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"inventoryGarmentsOrdered","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"inventoryGarmentsRemaining","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"inventoryKey","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"madeToOrder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberGarmentTypes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paymentToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"productStatus","outputs":[{"internalType":"enum CrowdmuseProduct.ProductStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyNFTPrice","type":"uint256"}],"name":"submitProduct","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"taskByTaskId","outputs":[{"internalType":"uint256","name":"taskId","type":"uint256"},{"internalType":"uint256","name":"contributionValue","type":"uint256"},{"internalType":"address","name":"taskOwnerAddress","type":"address"},{"internalType":"address","name":"taskContributor","type":"address"},{"internalType":"uint24","name":"feedbackScore","type":"uint24"},{"internalType":"string","name":"submissionUri","type":"string"},{"internalType":"string","name":"taskMetadataUri","type":"string"},{"internalType":"enum CrowdmuseProduct.TaskStatus","name":"taskStatus","type":"uint8"},{"internalType":"uint256","name":"taskType","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenId","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b506040516200465e3803806200465e833981016040819052620000349162000cc0565b8651879087906200004d9060009060208501906200077f565b508051620000639060019060208401906200077f565b50506001600d55506200007633620002e4565b62000082308c62000336565b601880546001600160a01b0319166001600160a01b0386161790556012805460ff1916905560148a905560178990558751602089015160408a015160608b0151620000d09392919062000437565b80620002a6578251600090620000ee90601e9060208701906200077f565b5060005b8351811015620002375783818151811062000111576200011162000e54565b602002602001015160200151826200012a919062000e80565b9150601f84828151811062000143576200014362000e54565b60209081029190910181015151825460018101845560009384529282902081516200017894919091019291909101906200077f565b508381815181106200018e576200018e62000e54565b60200260200101516020015160216000868481518110620001b357620001b362000e54565b602002602001015160000151604051602001620001d1919062000eae565b60408051601f198184030181529181528151602092830120835282820193909352910160002080546001600160601b039384166001600160601b0319918216179091558651825493169216919091179055806200022e8162000ecc565b915050620000f2565b50896001600160601b0316816001600160601b0316146200029f5760405162461bcd60e51b815260206004820152601c60248201527f6761726d656e74206e756d62657273206e6f74206d61746368696e670000000060448201526064015b60405180910390fd5b50620002b4565b6023805460ff191660011790555b845115620002d3578451620002d19060199060208801906200077f565b505b505050505050505050505062000f42565b600e80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127106001600160601b0382161115620003a65760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b606482015260840162000296565b6001600160a01b038216620003fe5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640162000296565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600b55565b62000441620006f0565b60005b8451811015620006e95760145460155486838151811062000469576200046962000e54565b60200260200101516200047d919062000eea565b1115620004cd5760405162461bcd60e51b815260206004820181905260248201527f436f6e747269627574696f6e2076616c75652065786365656473206c696d6974604482015260640162000296565b620004e4600f6200074e60201b62001cbf1760201c565b6000620004fd600f6200075760201b62001cc81760201c565b6000818152601a602052604090208181556002810180546001600160a01b031916331790558751919250908790849081106200053d576200053d62000e54565b6020026020010151816001018190555084838151811062000562576200056262000e54565b602090810291909101015160088201805460ff191660018360028111156200058e576200058e62000e3e565b0217905550858381518110620005a857620005a862000e54565b60200260200101518160030160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550838381518110620005ed57620005ed62000e54565b6020026020010151816009018190555086838151811062000612576200061262000e54565b6020026020010151601560008282546200062d919062000eea565b90915550600290508584815181106200064a576200064a62000e54565b6020026020010151600281111562000666576200066662000e3e565b1415620006d15786838151811062000682576200068262000e54565b6020026020010151601660008282546200069d919062000eea565b92505081905550620006d1868481518110620006bd57620006bd62000e54565b60200260200101516200075b60201b60201c565b50508080620006e09062000ecc565b91505062000444565b5050505050565b600e546001600160a01b031633146200074c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000296565b565b80546001019055565b5490565b6001600160a01b03166000908152601d60205260409020805460ff19166001179055565b8280546200078d9062000f05565b90600052602060002090601f016020900481019282620007b15760008555620007fc565b82601f10620007cc57805160ff1916838001178555620007fc565b82800160010185558215620007fc579182015b82811115620007fc578251825591602001919060010190620007df565b506200080a9291506200080e565b5090565b5b808211156200080a57600081556001016200080f565b80516001600160601b03811681146200083d57600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b604051608081016001600160401b03811182821017156200087d576200087d62000842565b60405290565b604080519081016001600160401b03811182821017156200087d576200087d62000842565b604051601f8201601f191681016001600160401b0381118282101715620008d357620008d362000842565b604052919050565b60006001600160401b03821115620008f757620008f762000842565b5060051b60200190565b600082601f8301126200091357600080fd5b815160206200092c6200092683620008db565b620008a8565b82815260059290921b840181019181810190868411156200094c57600080fd5b8286015b8481101562000969578051835291830191830162000950565b509695505050505050565b80516001600160a01b03811681146200083d57600080fd5b600082601f8301126200099e57600080fd5b81516020620009b16200092683620008db565b82815260059290921b84018101918181019086841115620009d157600080fd5b8286015b848110156200096957620009e98162000974565b8352918301918301620009d5565b600082601f83011262000a0957600080fd5b8151602062000a1c6200092683620008db565b82815260059290921b8401810191818101908684111562000a3c57600080fd5b8286015b84811015620009695780516003811062000a5a5760008081fd5b835291830191830162000a40565b60006080828403121562000a7b57600080fd5b62000a8562000858565b82519091506001600160401b038082111562000aa057600080fd5b62000aae8583860162000901565b8352602084015191508082111562000ac557600080fd5b62000ad3858386016200098c565b6020840152604084015191508082111562000aed57600080fd5b62000afb85838601620009f7565b6040840152606084015191508082111562000b1557600080fd5b5062000b248482850162000901565b60608301525092915050565b60005b8381101562000b4d57818101518382015260200162000b33565b8381111562000b5d576000848401525b50505050565b600082601f83011262000b7557600080fd5b81516001600160401b0381111562000b915762000b9162000842565b62000ba6601f8201601f1916602001620008a8565b81815284602083860101111562000bbc57600080fd5b62000bcf82602083016020870162000b30565b949350505050565b600082601f83011262000be957600080fd5b8151602062000bfc6200092683620008db565b82815260059290921b8401810191818101908684111562000c1c57600080fd5b8286015b84811015620009695780516001600160401b038082111562000c425760008081fd5b908801906040828b03601f190181131562000c5d5760008081fd5b62000c6762000883565b878401518381111562000c7a5760008081fd5b62000c8a8d8a8388010162000b63565b82525062000c9a82850162000825565b81890152865250505091830191830162000c20565b805180151581146200083d57600080fd5b60008060008060008060008060008060006101608c8e03121562000ce357600080fd5b62000cee8c62000825565b60208d015160408e015160608f0151929d50909b5099506001600160401b0381111562000d1a57600080fd5b62000d288e828f0162000a68565b60808e015190995090506001600160401b0381111562000d4757600080fd5b62000d558e828f0162000b63565b60a08e015190985090506001600160401b0381111562000d7457600080fd5b62000d828e828f0162000b63565b60c08e015190975090506001600160401b0381111562000da157600080fd5b62000daf8e828f0162000b63565b95505062000dc060e08d0162000974565b6101008d01519094506001600160401b0381111562000dde57600080fd5b62000dec8e828f0162000b63565b6101208e015190945090506001600160401b0381111562000e0c57600080fd5b62000e1a8e828f0162000bd7565b92505062000e2c6101408d0162000caf565b90509295989b509295989b9093969950565b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001600160601b0382811684821680830382111562000ea55762000ea562000e6a565b01949350505050565b6000825162000ec281846020870162000b30565b9190910192915050565b600060001982141562000ee35762000ee362000e6a565b5060010190565b6000821982111562000f005762000f0062000e6a565b500190565b600181811c9082168062000f1a57607f821691505b6020821081141562000f3c57634e487b7160e01b600052602260045260246000fd5b50919050565b61370c8062000f526000396000f3fe6080604052600436106102d15760003560e01c80636c0360eb11610177578063b88d4fde116100d5578063d92cb69a11610084578063f2fde38b11610061578063f2fde38b146108de578063f90be237146108fe578063f99a4ffb1461091857005b8063d92cb69a14610859578063e8d1296b14610880578063e985e9c51461089557005b8063c7119e37116100b2578063c7119e37146107e4578063c87b56dd14610819578063cad11ec61461083957005b8063b88d4fde14610784578063c443665c146107a4578063c67a8391146107c457005b80638da5cb5b11610131578063a22cb4651161010e578063a22cb46514610739578063ac6b0dcc14610759578063b115406a1461076f57005b80638da5cb5b146106e657806395d89b4114610704578063a1fe4d511461071957005b806370a082311161015f57806370a0823114610691578063715018a6146106b157806381777642146106c657005b80636c0360eb146106675780636f4a2cd01461067c57005b806323b872dd1161022f57806344c6ca9e116101de5780635197c1ca116101bb5780635197c1ca1461061b57806358a09cfd146106315780636352211e1461064757005b806344c6ca9e14610599578063492d306b146105db5780634f6ccce7146105fb57005b80633013ce291161020c5780633013ce29146105395780633719743e1461055957806342842e0e1461057957005b806323b872dd146104ba5780632a55205a146104da5780632f745c591461051957005b80630b4b2c7b1161028b57806317d70f7c1161026857806317d70f7c1461045e57806318160ddd146104755780631f6d49421461048a57005b80630b4b2c7b146103d75780630f4dbdc01461040d57806316065fdd1461043157005b806306fdde03116102b957806306fdde031461035d578063081812fc1461037f578063095ea7b3146103b757005b806301ffc9a7146102da57806306c8286d1461030f57005b366102d857005b005b3480156102e657600080fd5b506102fa6102f5366004612e31565b61092e565b60405190151581526020015b60405180910390f35b34801561031b57600080fd5b5061034561032a366004612e4e565b6021602052600090815260409020546001600160601b031681565b6040516001600160601b039091168152602001610306565b34801561036957600080fd5b50610372610959565b6040516103069190612ebf565b34801561038b57600080fd5b5061039f61039a366004612e4e565b6109eb565b6040516001600160a01b039091168152602001610306565b3480156103c357600080fd5b506102d86103d2366004612eee565b610a12565b3480156103e357600080fd5b506103456103f2366004612e4e565b6022602052600090815260409020546001600160601b031681565b34801561041957600080fd5b5061042360155481565b604051908152602001610306565b34801561043d57600080fd5b5061042361044c366004612e4e565b601c6020526000908152604090205481565b34801561046a57600080fd5b506011546104239081565b34801561048157600080fd5b50600954610423565b34801561049657600080fd5b506102fa6104a5366004612f18565b601d6020526000908152604090205460ff1681565b3480156104c657600080fd5b506102d86104d5366004612f33565b610b49565b3480156104e657600080fd5b506104fa6104f5366004612f6f565b610bc0565b604080516001600160a01b039093168352602083019190915201610306565b34801561052557600080fd5b50610423610534366004612eee565b610c6c565b34801561054557600080fd5b5060185461039f906001600160a01b031681565b34801561056557600080fd5b506102d8610574366004613132565b610d14565b34801561058557600080fd5b506102d8610594366004612f33565b610d38565b3480156105a557600080fd5b506105c96105b4366004612e4e565b601b6020526000908152604090205460ff1681565b60405160ff9091168152602001610306565b3480156105e757600080fd5b506102d86105f636600461323f565b610d53565b34801561060757600080fd5b50610423610616366004612e4e565b610d72565b34801561062757600080fd5b5061042360175481565b34801561063d57600080fd5b5061042360165481565b34801561065357600080fd5b5061039f610662366004612e4e565b610e16565b34801561067357600080fd5b50610372610e7b565b34801561068857600080fd5b506102d8610f09565b34801561069d57600080fd5b506104236106ac366004612f18565b6110a4565b3480156106bd57600080fd5b506102d861113e565b3480156106d257600080fd5b506102d86106e1366004613288565b611150565b3480156106f257600080fd5b50600e546001600160a01b031661039f565b34801561071057600080fd5b506103726113d2565b34801561072557600080fd5b506102d8610734366004612e4e565b6113e1565b34801561074557600080fd5b506102d8610754366004613343565b611462565b34801561076557600080fd5b5061042360145481565b34801561077b57600080fd5b506102d861146d565b34801561079057600080fd5b506102d861079f36600461337a565b611605565b3480156107b057600080fd5b50602054610345906001600160601b031681565b3480156107d057600080fd5b506104236107df366004612eee565b611683565b3480156107f057600080fd5b506108046107ff366004612e4e565b6119f2565b60405161030699989796959493929190613400565b34801561082557600080fd5b50610372610834366004612e4e565b611b63565b34801561084557600080fd5b50610372610854366004612e4e565b611bf7565b34801561086557600080fd5b506012546108739060ff1681565b6040516103069190613483565b34801561088c57600080fd5b50610372611c22565b3480156108a157600080fd5b506102fa6108b036600461349d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156108ea57600080fd5b506102d86108f9366004612f18565b611c2f565b34801561090a57600080fd5b506023546102fa9060ff1681565b34801561092457600080fd5b5061042360135481565b60006001600160e01b0319821663152a902d60e11b1480610953575061095382611ccc565b92915050565b606060008054610968906134d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610994906134d0565b80156109e15780601f106109b6576101008083540402835291602001916109e1565b820191906000526020600020905b8154815290600101906020018083116109c457829003601f168201915b5050505050905090565b60006109f682611cf1565b506000908152600460205260409020546001600160a01b031690565b6000610a1d82610e16565b9050806001600160a01b0316836001600160a01b03161415610aac5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b336001600160a01b0382161480610ac85750610ac881336108b0565b610b3a5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610aa3565b610b448383611d55565b505050565b610b533382611dc3565b610bb55760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608401610aa3565b610b44838383611e42565b6000828152600c602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610c35575060408051808201909152600b546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610c54906001600160601b031687613521565b610c5e9190613540565b915196919550909350505050565b6000610c77836110a4565b8210610ceb5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610aa3565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b610d1c612048565b610d2885858585611150565b610d31816113e1565b5050505050565b610b4483838360405180602001604052806000815250611605565b610d5b612048565b8051610d6e906019906020840190612d82565b5050565b6000610d7d60095490565b8210610df15760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610aa3565b60098281548110610e0457610e04613562565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806109535760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610aa3565b60198054610e88906134d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb4906134d0565b8015610f015780601f10610ed657610100808354040283529160200191610f01565b820191906000526020600020905b815481529060010190602001808311610ee457829003601f168201915b505050505081565b610f116120a2565b6018546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610f5a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f7e9190613578565b905060008111610fd05760405162461bcd60e51b815260206004820152601260248201527f4e6f2066756e647320617661696c61626c6500000000000000000000000000006044820152606401610aa3565b60015b600f5481116110965760026000828152601a602052604090206008015460ff166002811115611004576110046133ea565b141561108457600061105361271061104d60165461104d612710611047601a60008a8152602001908152602001600020600101548a6120fc90919063ffffffff16565b906120fc565b9061210f565b6000838152601a6020526040902060030154601854919250611082916001600160a01b0390811691168361211b565b505b8061108e81613591565b915050610fd3565b50506110a26001600d55565b565b60006001600160a01b0382166111225760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e657200000000000000000000000000000000000000000000006064820152608401610aa3565b506001600160a01b031660009081526003602052604090205490565b611146612048565b6110a260006121ac565b611158612048565b60005b8451811015610d315760145460155486838151811061117c5761117c613562565b602002602001015161118e91906135ac565b11156111dc5760405162461bcd60e51b815260206004820181905260248201527f436f6e747269627574696f6e2076616c75652065786365656473206c696d69746044820152606401610aa3565b6111ea600f80546001019055565b60006111f5600f5490565b6000818152601a602052604090208181556002810180546001600160a01b0319163317905587519192509087908490811061123257611232613562565b6020026020010151816001018190555084838151811061125457611254613562565b602090810291909101015160088201805460ff1916600183600281111561127d5761127d6133ea565b021790555085838151811061129457611294613562565b60200260200101518160030160006101000a8154816001600160a01b0302191690836001600160a01b031602179055508383815181106112d6576112d6613562565b602002602001015181600901819055508683815181106112f8576112f8613562565b60200260200101516015600082825461131191906135ac565b909155506002905085848151811061132b5761132b613562565b60200260200101516002811115611344576113446133ea565b14156113bd5786838151811061135c5761135c613562565b60200260200101516016600082825461137591906135ac565b925050819055506113bd86848151811061139157611391613562565b60200260200101516001600160a01b03166000908152601d60205260409020805460ff19166001179055565b505080806113ca90613591565b91505061115b565b606060018054610968906134d0565b6113e9612048565b600160125460ff166001811115611402576114026133ea565b14156114505760405162461bcd60e51b815260206004820152601160248201527f616c7265616479207375626d69747465640000000000000000000000000000006044820152606401610aa3565b6012805460ff19166001179055601355565b610d6e3383836121fe565b6114756120a2565b47806114c35760405162461bcd60e51b815260206004820152601260248201527f4e6f2066756e647320617661696c61626c6500000000000000000000000000006044820152606401610aa3565b60015b600f5481116110965760026000828152601a602052604090206008015460ff1660028111156114f7576114f76133ea565b14156115f357600061153a61271061104d60165461104d612710611047601a60008a8152602001908152602001600020600101548a6120fc90919063ffffffff16565b6000838152601a602052604080822060030154905192935090916001600160a01b039091169083908381818185875af1925050503d806000811461159a576040519150601f19603f3d011682016040523d82523d6000602084013e61159f565b606091505b50509050806115f05760405162461bcd60e51b815260206004820152600c60248201527f446964206e6f742073656e6400000000000000000000000000000000000000006044820152606401610aa3565b50505b806115fd81613591565b9150506114c6565b61160f3383611dc3565b6116715760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608401610aa3565b61167d848484846122cd565b50505050565b600061168d6120a2565b600160125460ff1660018111156116a6576116a66133ea565b146116f35760405162461bcd60e51b815260206004820152601460248201527f50726f64756374206e6f7420636f6d706c6574650000000000000000000000006044820152606401610aa3565b6013546018546040516370a0823160e01b81523360048201526001600160a01b03909116906370a0823190602401602060405180830381865afa15801561173e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117629190613578565b10156117b05760405162461bcd60e51b815260206004820152601260248201527f4e6f7420656e6f7567682062616c616e636500000000000000000000000000006044820152606401610aa3565b6000601754116118025760405162461bcd60e51b815260206004820152601060248201527f4e6f206761726d656e7473206c656674000000000000000000000000000000006044820152606401610aa3565b6000828152602160205260409020546001600160601b03166118665760405162461bcd60e51b815260206004820152601b60248201527f4e6f6e65206f66207468697320747970652072656d61696e696e6700000000006044820152606401610aa3565b6001600160a01b0383166118bc5760405162461bcd60e51b815260206004820152601860248201527f41646472657373206d757374206e6f74206265207a65726f00000000000000006044820152606401610aa3565b601354156118e3576013546018546118e3916001600160a01b03909116903390309061234b565b6118f1601180546001019055565b506011546118ff838261239c565b60235460ff161561195b5760008281526022602052604081208054600192906119329084906001600160601b03166135c4565b92506101000a8154816001600160601b0302191690836001600160601b031602179055506119a8565b60008281526021602052604081208054600192906119839084906001600160601b03166135ef565b92506101000a8154816001600160601b0302191690836001600160601b031602179055505b6001601760008282546119bb9190613617565b90915550506000818152601b60209081526040808320805460ff19166001908117909155601c909252909120839055600d55610953565b601a60205260009081526040902080546001820154600283015460038401546005850154600686018054959694956001600160a01b0394851695949093169362ffffff90921692611a42906134d0565b80601f0160208091040260200160405190810160405280929190818152602001828054611a6e906134d0565b8015611abb5780601f10611a9057610100808354040283529160200191611abb565b820191906000526020600020905b815481529060010190602001808311611a9e57829003601f168201915b505050505090806007018054611ad0906134d0565b80601f0160208091040260200160405190810160405280929190818152602001828054611afc906134d0565b8015611b495780601f10611b1e57610100808354040283529160200191611b49565b820191906000526020600020905b815481529060010190602001808311611b2c57829003601f168201915b505050506008830154600990930154919260ff1691905089565b606060198054611b72906134d0565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9e906134d0565b8015611beb5780601f10611bc057610100808354040283529160200191611beb565b820191906000526020600020905b815481529060010190602001808311611bce57829003601f168201915b50505050509050919050565b601f8181548110611c0757600080fd5b906000526020600020016000915090508054610e88906134d0565b601e8054610e88906134d0565b611c37612048565b6001600160a01b038116611cb35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610aa3565b611cbc816121ac565b50565b80546001019055565b5490565b60006001600160e01b0319821663152a902d60e11b14806109535750610953826123b6565b6000818152600260205260409020546001600160a01b0316611cbc5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610aa3565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d8a82610e16565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611dcf83610e16565b9050806001600160a01b0316846001600160a01b03161480611e1657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611e3a5750836001600160a01b0316611e2f846109eb565b6001600160a01b0316145b949350505050565b826001600160a01b0316611e5582610e16565b6001600160a01b031614611eb95760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610aa3565b6001600160a01b038216611f345760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610aa3565b611f4183838360016123f4565b826001600160a01b0316611f5482610e16565b6001600160a01b031614611fb85760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610aa3565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600e546001600160a01b031633146110a25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610aa3565b6002600d5414156120f55760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610aa3565b6002600d55565b60006121088284613521565b9392505050565b60006121088284613540565b6040516001600160a01b038316602482015260448101829052610b449084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166001600160e01b031990931692909217909152612400565b600e80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156122605760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610aa3565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6122d8848484611e42565b6122e4848484846124e8565b61167d5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610aa3565b6040516001600160a01b038085166024830152831660448201526064810182905261167d9085907f23b872dd0000000000000000000000000000000000000000000000000000000090608401612160565b610d6e828260405180602001604052806000815250612631565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806109535750610953826126af565b61167d848484846126ed565b6000612455826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166128229092919063ffffffff16565b9050805160001480612476575080806020019051810190612476919061362e565b610b445760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610aa3565b60006001600160a01b0384163b1561262657604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061252c90339089908890889060040161364b565b6020604051808303816000875af1925050508015612567575060408051601f3d908101601f1916820190925261256491810190613687565b60015b61260c573d808015612595576040519150601f19603f3d011682016040523d82523d6000602084013e61259a565b606091505b5080516126045760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610aa3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e3a565b506001949350505050565b61263b8383612831565b61264860008484846124e8565b610b445760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610aa3565b60006001600160e01b031982167f490649060000000000000000000000000000000000000000000000000000000014806109535750610953826129ca565b60018111156127645760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e736563757469766520747260448201527f616e7366657273206e6f7420737570706f7274656400000000000000000000006064820152608401610aa3565b816001600160a01b0385166127c0576127bb81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b6127e3565b836001600160a01b0316856001600160a01b0316146127e3576127e38582612a65565b6001600160a01b0384166127ff576127fa81612b02565b610d31565b846001600160a01b0316846001600160a01b031614610d3157610d318482612bb1565b6060611e3a8484600085612bf5565b6001600160a01b0382166128875760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610aa3565b6000818152600260205260409020546001600160a01b0316156128ec5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610aa3565b6128fa6000838360016123f4565b6000818152600260205260409020546001600160a01b03161561295f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610aa3565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480612a2d57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061095357507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610953565b60006001612a72846110a4565b612a7c9190613617565b600083815260086020526040902054909150808214612acf576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090612b1490600190613617565b6000838152600a602052604081205460098054939450909284908110612b3c57612b3c613562565b906000526020600020015490508060098381548110612b5d57612b5d613562565b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480612b9557612b956136a4565b6001900381819060005260206000200160009055905550505050565b6000612bbc836110a4565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b606082471015612c6d5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610aa3565b600080866001600160a01b03168587604051612c8991906136ba565b60006040518083038185875af1925050503d8060008114612cc6576040519150601f19603f3d011682016040523d82523d6000602084013e612ccb565b606091505b5091509150612cdc87838387612ce7565b979650505050505050565b60608315612d53578251612d4c576001600160a01b0385163b612d4c5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610aa3565b5081611e3a565b611e3a8383815115612d685781518083602001fd5b8060405162461bcd60e51b8152600401610aa39190612ebf565b828054612d8e906134d0565b90600052602060002090601f016020900481019282612db05760008555612df6565b82601f10612dc957805160ff1916838001178555612df6565b82800160010185558215612df6579182015b82811115612df6578251825591602001919060010190612ddb565b50612e02929150612e06565b5090565b5b80821115612e025760008155600101612e07565b6001600160e01b031981168114611cbc57600080fd5b600060208284031215612e4357600080fd5b813561210881612e1b565b600060208284031215612e6057600080fd5b5035919050565b60005b83811015612e82578181015183820152602001612e6a565b8381111561167d5750506000910152565b60008151808452612eab816020860160208601612e67565b601f01601f19169290920160200192915050565b6020815260006121086020830184612e93565b80356001600160a01b0381168114612ee957600080fd5b919050565b60008060408385031215612f0157600080fd5b612f0a83612ed2565b946020939093013593505050565b600060208284031215612f2a57600080fd5b61210882612ed2565b600080600060608486031215612f4857600080fd5b612f5184612ed2565b9250612f5f60208501612ed2565b9150604084013590509250925092565b60008060408385031215612f8257600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612fd057612fd0612f91565b604052919050565b600067ffffffffffffffff821115612ff257612ff2612f91565b5060051b60200190565b600082601f83011261300d57600080fd5b8135602061302261301d83612fd8565b612fa7565b82815260059290921b8401810191818101908684111561304157600080fd5b8286015b8481101561305c5780358352918301918301613045565b509695505050505050565b600082601f83011261307857600080fd5b8135602061308861301d83612fd8565b82815260059290921b840181019181810190868411156130a757600080fd5b8286015b8481101561305c576130bc81612ed2565b83529183019183016130ab565b600082601f8301126130da57600080fd5b813560206130ea61301d83612fd8565b82815260059290921b8401810191818101908684111561310957600080fd5b8286015b8481101561305c578035600381106131255760008081fd5b835291830191830161310d565b600080600080600060a0868803121561314a57600080fd5b853567ffffffffffffffff8082111561316257600080fd5b61316e89838a01612ffc565b9650602088013591508082111561318457600080fd5b61319089838a01613067565b955060408801359150808211156131a657600080fd5b6131b289838a016130c9565b945060608801359150808211156131c857600080fd5b506131d588828901612ffc565b95989497509295608001359392505050565b600067ffffffffffffffff83111561320157613201612f91565b613214601f8401601f1916602001612fa7565b905082815283838301111561322857600080fd5b828260208301376000602084830101529392505050565b60006020828403121561325157600080fd5b813567ffffffffffffffff81111561326857600080fd5b8201601f8101841361327957600080fd5b611e3a848235602084016131e7565b6000806000806080858703121561329e57600080fd5b843567ffffffffffffffff808211156132b657600080fd5b6132c288838901612ffc565b955060208701359150808211156132d857600080fd5b6132e488838901613067565b945060408701359150808211156132fa57600080fd5b613306888389016130c9565b9350606087013591508082111561331c57600080fd5b5061332987828801612ffc565b91505092959194509250565b8015158114611cbc57600080fd5b6000806040838503121561335657600080fd5b61335f83612ed2565b9150602083013561336f81613335565b809150509250929050565b6000806000806080858703121561339057600080fd5b61339985612ed2565b93506133a760208601612ed2565b925060408501359150606085013567ffffffffffffffff8111156133ca57600080fd5b8501601f810187136133db57600080fd5b613329878235602084016131e7565b634e487b7160e01b600052602160045260246000fd5b60006101208b83528a60208401526001600160a01b03808b166040850152808a1660608501525062ffffff881660808401528060a084015261344481840188612e93565b905082810360c08401526134588187612e93565b9150506003841061346b5761346b6133ea565b60e08201939093526101000152979650505050505050565b6020810160028310613497576134976133ea565b91905290565b600080604083850312156134b057600080fd5b6134b983612ed2565b91506134c760208401612ed2565b90509250929050565b600181811c908216806134e457607f821691505b6020821081141561350557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561353b5761353b61350b565b500290565b60008261355d57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561358a57600080fd5b5051919050565b60006000198214156135a5576135a561350b565b5060010190565b600082198211156135bf576135bf61350b565b500190565b60006001600160601b038083168185168083038211156135e6576135e661350b565b01949350505050565b60006001600160601b038381169083168181101561360f5761360f61350b565b039392505050565b6000828210156136295761362961350b565b500390565b60006020828403121561364057600080fd5b815161210881613335565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261367d6080830184612e93565b9695505050505050565b60006020828403121561369957600080fd5b815161210881612e1b565b634e487b7160e01b600052603160045260246000fd5b600082516136cc818460208701612e67565b919091019291505056fea2646970667358221220cac5c64826badac6ad15fbdd9c9d304c6db6940be3a91c52aa8e5bbbcdb9b9e264736f6c634300080a003300000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000000960000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000036000000000000000000000000000000000000000000000000000000000000003800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001146574220437573746f6d203078546f746500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034657420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005d68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f6261666b726569673737326268766f6f377963716b7565337874766a7a34773771356e653435626e656b6e777a32756833323433776a65746a703400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000096000000000000000000000000000000000000000000000000000000000000000d73697a653a4f6e652073697a6500000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102d15760003560e01c80636c0360eb11610177578063b88d4fde116100d5578063d92cb69a11610084578063f2fde38b11610061578063f2fde38b146108de578063f90be237146108fe578063f99a4ffb1461091857005b8063d92cb69a14610859578063e8d1296b14610880578063e985e9c51461089557005b8063c7119e37116100b2578063c7119e37146107e4578063c87b56dd14610819578063cad11ec61461083957005b8063b88d4fde14610784578063c443665c146107a4578063c67a8391146107c457005b80638da5cb5b11610131578063a22cb4651161010e578063a22cb46514610739578063ac6b0dcc14610759578063b115406a1461076f57005b80638da5cb5b146106e657806395d89b4114610704578063a1fe4d511461071957005b806370a082311161015f57806370a0823114610691578063715018a6146106b157806381777642146106c657005b80636c0360eb146106675780636f4a2cd01461067c57005b806323b872dd1161022f57806344c6ca9e116101de5780635197c1ca116101bb5780635197c1ca1461061b57806358a09cfd146106315780636352211e1461064757005b806344c6ca9e14610599578063492d306b146105db5780634f6ccce7146105fb57005b80633013ce291161020c5780633013ce29146105395780633719743e1461055957806342842e0e1461057957005b806323b872dd146104ba5780632a55205a146104da5780632f745c591461051957005b80630b4b2c7b1161028b57806317d70f7c1161026857806317d70f7c1461045e57806318160ddd146104755780631f6d49421461048a57005b80630b4b2c7b146103d75780630f4dbdc01461040d57806316065fdd1461043157005b806306fdde03116102b957806306fdde031461035d578063081812fc1461037f578063095ea7b3146103b757005b806301ffc9a7146102da57806306c8286d1461030f57005b366102d857005b005b3480156102e657600080fd5b506102fa6102f5366004612e31565b61092e565b60405190151581526020015b60405180910390f35b34801561031b57600080fd5b5061034561032a366004612e4e565b6021602052600090815260409020546001600160601b031681565b6040516001600160601b039091168152602001610306565b34801561036957600080fd5b50610372610959565b6040516103069190612ebf565b34801561038b57600080fd5b5061039f61039a366004612e4e565b6109eb565b6040516001600160a01b039091168152602001610306565b3480156103c357600080fd5b506102d86103d2366004612eee565b610a12565b3480156103e357600080fd5b506103456103f2366004612e4e565b6022602052600090815260409020546001600160601b031681565b34801561041957600080fd5b5061042360155481565b604051908152602001610306565b34801561043d57600080fd5b5061042361044c366004612e4e565b601c6020526000908152604090205481565b34801561046a57600080fd5b506011546104239081565b34801561048157600080fd5b50600954610423565b34801561049657600080fd5b506102fa6104a5366004612f18565b601d6020526000908152604090205460ff1681565b3480156104c657600080fd5b506102d86104d5366004612f33565b610b49565b3480156104e657600080fd5b506104fa6104f5366004612f6f565b610bc0565b604080516001600160a01b039093168352602083019190915201610306565b34801561052557600080fd5b50610423610534366004612eee565b610c6c565b34801561054557600080fd5b5060185461039f906001600160a01b031681565b34801561056557600080fd5b506102d8610574366004613132565b610d14565b34801561058557600080fd5b506102d8610594366004612f33565b610d38565b3480156105a557600080fd5b506105c96105b4366004612e4e565b601b6020526000908152604090205460ff1681565b60405160ff9091168152602001610306565b3480156105e757600080fd5b506102d86105f636600461323f565b610d53565b34801561060757600080fd5b50610423610616366004612e4e565b610d72565b34801561062757600080fd5b5061042360175481565b34801561063d57600080fd5b5061042360165481565b34801561065357600080fd5b5061039f610662366004612e4e565b610e16565b34801561067357600080fd5b50610372610e7b565b34801561068857600080fd5b506102d8610f09565b34801561069d57600080fd5b506104236106ac366004612f18565b6110a4565b3480156106bd57600080fd5b506102d861113e565b3480156106d257600080fd5b506102d86106e1366004613288565b611150565b3480156106f257600080fd5b50600e546001600160a01b031661039f565b34801561071057600080fd5b506103726113d2565b34801561072557600080fd5b506102d8610734366004612e4e565b6113e1565b34801561074557600080fd5b506102d8610754366004613343565b611462565b34801561076557600080fd5b5061042360145481565b34801561077b57600080fd5b506102d861146d565b34801561079057600080fd5b506102d861079f36600461337a565b611605565b3480156107b057600080fd5b50602054610345906001600160601b031681565b3480156107d057600080fd5b506104236107df366004612eee565b611683565b3480156107f057600080fd5b506108046107ff366004612e4e565b6119f2565b60405161030699989796959493929190613400565b34801561082557600080fd5b50610372610834366004612e4e565b611b63565b34801561084557600080fd5b50610372610854366004612e4e565b611bf7565b34801561086557600080fd5b506012546108739060ff1681565b6040516103069190613483565b34801561088c57600080fd5b50610372611c22565b3480156108a157600080fd5b506102fa6108b036600461349d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156108ea57600080fd5b506102d86108f9366004612f18565b611c2f565b34801561090a57600080fd5b506023546102fa9060ff1681565b34801561092457600080fd5b5061042360135481565b60006001600160e01b0319821663152a902d60e11b1480610953575061095382611ccc565b92915050565b606060008054610968906134d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610994906134d0565b80156109e15780601f106109b6576101008083540402835291602001916109e1565b820191906000526020600020905b8154815290600101906020018083116109c457829003601f168201915b5050505050905090565b60006109f682611cf1565b506000908152600460205260409020546001600160a01b031690565b6000610a1d82610e16565b9050806001600160a01b0316836001600160a01b03161415610aac5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b336001600160a01b0382161480610ac85750610ac881336108b0565b610b3a5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610aa3565b610b448383611d55565b505050565b610b533382611dc3565b610bb55760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608401610aa3565b610b44838383611e42565b6000828152600c602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610c35575060408051808201909152600b546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610c54906001600160601b031687613521565b610c5e9190613540565b915196919550909350505050565b6000610c77836110a4565b8210610ceb5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610aa3565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b610d1c612048565b610d2885858585611150565b610d31816113e1565b5050505050565b610b4483838360405180602001604052806000815250611605565b610d5b612048565b8051610d6e906019906020840190612d82565b5050565b6000610d7d60095490565b8210610df15760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610aa3565b60098281548110610e0457610e04613562565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806109535760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610aa3565b60198054610e88906134d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb4906134d0565b8015610f015780601f10610ed657610100808354040283529160200191610f01565b820191906000526020600020905b815481529060010190602001808311610ee457829003601f168201915b505050505081565b610f116120a2565b6018546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610f5a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f7e9190613578565b905060008111610fd05760405162461bcd60e51b815260206004820152601260248201527f4e6f2066756e647320617661696c61626c6500000000000000000000000000006044820152606401610aa3565b60015b600f5481116110965760026000828152601a602052604090206008015460ff166002811115611004576110046133ea565b141561108457600061105361271061104d60165461104d612710611047601a60008a8152602001908152602001600020600101548a6120fc90919063ffffffff16565b906120fc565b9061210f565b6000838152601a6020526040902060030154601854919250611082916001600160a01b0390811691168361211b565b505b8061108e81613591565b915050610fd3565b50506110a26001600d55565b565b60006001600160a01b0382166111225760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e657200000000000000000000000000000000000000000000006064820152608401610aa3565b506001600160a01b031660009081526003602052604090205490565b611146612048565b6110a260006121ac565b611158612048565b60005b8451811015610d315760145460155486838151811061117c5761117c613562565b602002602001015161118e91906135ac565b11156111dc5760405162461bcd60e51b815260206004820181905260248201527f436f6e747269627574696f6e2076616c75652065786365656473206c696d69746044820152606401610aa3565b6111ea600f80546001019055565b60006111f5600f5490565b6000818152601a602052604090208181556002810180546001600160a01b0319163317905587519192509087908490811061123257611232613562565b6020026020010151816001018190555084838151811061125457611254613562565b602090810291909101015160088201805460ff1916600183600281111561127d5761127d6133ea565b021790555085838151811061129457611294613562565b60200260200101518160030160006101000a8154816001600160a01b0302191690836001600160a01b031602179055508383815181106112d6576112d6613562565b602002602001015181600901819055508683815181106112f8576112f8613562565b60200260200101516015600082825461131191906135ac565b909155506002905085848151811061132b5761132b613562565b60200260200101516002811115611344576113446133ea565b14156113bd5786838151811061135c5761135c613562565b60200260200101516016600082825461137591906135ac565b925050819055506113bd86848151811061139157611391613562565b60200260200101516001600160a01b03166000908152601d60205260409020805460ff19166001179055565b505080806113ca90613591565b91505061115b565b606060018054610968906134d0565b6113e9612048565b600160125460ff166001811115611402576114026133ea565b14156114505760405162461bcd60e51b815260206004820152601160248201527f616c7265616479207375626d69747465640000000000000000000000000000006044820152606401610aa3565b6012805460ff19166001179055601355565b610d6e3383836121fe565b6114756120a2565b47806114c35760405162461bcd60e51b815260206004820152601260248201527f4e6f2066756e647320617661696c61626c6500000000000000000000000000006044820152606401610aa3565b60015b600f5481116110965760026000828152601a602052604090206008015460ff1660028111156114f7576114f76133ea565b14156115f357600061153a61271061104d60165461104d612710611047601a60008a8152602001908152602001600020600101548a6120fc90919063ffffffff16565b6000838152601a602052604080822060030154905192935090916001600160a01b039091169083908381818185875af1925050503d806000811461159a576040519150601f19603f3d011682016040523d82523d6000602084013e61159f565b606091505b50509050806115f05760405162461bcd60e51b815260206004820152600c60248201527f446964206e6f742073656e6400000000000000000000000000000000000000006044820152606401610aa3565b50505b806115fd81613591565b9150506114c6565b61160f3383611dc3565b6116715760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608401610aa3565b61167d848484846122cd565b50505050565b600061168d6120a2565b600160125460ff1660018111156116a6576116a66133ea565b146116f35760405162461bcd60e51b815260206004820152601460248201527f50726f64756374206e6f7420636f6d706c6574650000000000000000000000006044820152606401610aa3565b6013546018546040516370a0823160e01b81523360048201526001600160a01b03909116906370a0823190602401602060405180830381865afa15801561173e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117629190613578565b10156117b05760405162461bcd60e51b815260206004820152601260248201527f4e6f7420656e6f7567682062616c616e636500000000000000000000000000006044820152606401610aa3565b6000601754116118025760405162461bcd60e51b815260206004820152601060248201527f4e6f206761726d656e7473206c656674000000000000000000000000000000006044820152606401610aa3565b6000828152602160205260409020546001600160601b03166118665760405162461bcd60e51b815260206004820152601b60248201527f4e6f6e65206f66207468697320747970652072656d61696e696e6700000000006044820152606401610aa3565b6001600160a01b0383166118bc5760405162461bcd60e51b815260206004820152601860248201527f41646472657373206d757374206e6f74206265207a65726f00000000000000006044820152606401610aa3565b601354156118e3576013546018546118e3916001600160a01b03909116903390309061234b565b6118f1601180546001019055565b506011546118ff838261239c565b60235460ff161561195b5760008281526022602052604081208054600192906119329084906001600160601b03166135c4565b92506101000a8154816001600160601b0302191690836001600160601b031602179055506119a8565b60008281526021602052604081208054600192906119839084906001600160601b03166135ef565b92506101000a8154816001600160601b0302191690836001600160601b031602179055505b6001601760008282546119bb9190613617565b90915550506000818152601b60209081526040808320805460ff19166001908117909155601c909252909120839055600d55610953565b601a60205260009081526040902080546001820154600283015460038401546005850154600686018054959694956001600160a01b0394851695949093169362ffffff90921692611a42906134d0565b80601f0160208091040260200160405190810160405280929190818152602001828054611a6e906134d0565b8015611abb5780601f10611a9057610100808354040283529160200191611abb565b820191906000526020600020905b815481529060010190602001808311611a9e57829003601f168201915b505050505090806007018054611ad0906134d0565b80601f0160208091040260200160405190810160405280929190818152602001828054611afc906134d0565b8015611b495780601f10611b1e57610100808354040283529160200191611b49565b820191906000526020600020905b815481529060010190602001808311611b2c57829003601f168201915b505050506008830154600990930154919260ff1691905089565b606060198054611b72906134d0565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9e906134d0565b8015611beb5780601f10611bc057610100808354040283529160200191611beb565b820191906000526020600020905b815481529060010190602001808311611bce57829003601f168201915b50505050509050919050565b601f8181548110611c0757600080fd5b906000526020600020016000915090508054610e88906134d0565b601e8054610e88906134d0565b611c37612048565b6001600160a01b038116611cb35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610aa3565b611cbc816121ac565b50565b80546001019055565b5490565b60006001600160e01b0319821663152a902d60e11b14806109535750610953826123b6565b6000818152600260205260409020546001600160a01b0316611cbc5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610aa3565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d8a82610e16565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611dcf83610e16565b9050806001600160a01b0316846001600160a01b03161480611e1657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611e3a5750836001600160a01b0316611e2f846109eb565b6001600160a01b0316145b949350505050565b826001600160a01b0316611e5582610e16565b6001600160a01b031614611eb95760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610aa3565b6001600160a01b038216611f345760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610aa3565b611f4183838360016123f4565b826001600160a01b0316611f5482610e16565b6001600160a01b031614611fb85760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610aa3565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600e546001600160a01b031633146110a25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610aa3565b6002600d5414156120f55760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610aa3565b6002600d55565b60006121088284613521565b9392505050565b60006121088284613540565b6040516001600160a01b038316602482015260448101829052610b449084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166001600160e01b031990931692909217909152612400565b600e80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156122605760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610aa3565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6122d8848484611e42565b6122e4848484846124e8565b61167d5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610aa3565b6040516001600160a01b038085166024830152831660448201526064810182905261167d9085907f23b872dd0000000000000000000000000000000000000000000000000000000090608401612160565b610d6e828260405180602001604052806000815250612631565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806109535750610953826126af565b61167d848484846126ed565b6000612455826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166128229092919063ffffffff16565b9050805160001480612476575080806020019051810190612476919061362e565b610b445760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610aa3565b60006001600160a01b0384163b1561262657604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061252c90339089908890889060040161364b565b6020604051808303816000875af1925050508015612567575060408051601f3d908101601f1916820190925261256491810190613687565b60015b61260c573d808015612595576040519150601f19603f3d011682016040523d82523d6000602084013e61259a565b606091505b5080516126045760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610aa3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e3a565b506001949350505050565b61263b8383612831565b61264860008484846124e8565b610b445760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610aa3565b60006001600160e01b031982167f490649060000000000000000000000000000000000000000000000000000000014806109535750610953826129ca565b60018111156127645760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e736563757469766520747260448201527f616e7366657273206e6f7420737570706f7274656400000000000000000000006064820152608401610aa3565b816001600160a01b0385166127c0576127bb81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b6127e3565b836001600160a01b0316856001600160a01b0316146127e3576127e38582612a65565b6001600160a01b0384166127ff576127fa81612b02565b610d31565b846001600160a01b0316846001600160a01b031614610d3157610d318482612bb1565b6060611e3a8484600085612bf5565b6001600160a01b0382166128875760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610aa3565b6000818152600260205260409020546001600160a01b0316156128ec5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610aa3565b6128fa6000838360016123f4565b6000818152600260205260409020546001600160a01b03161561295f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610aa3565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480612a2d57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061095357507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610953565b60006001612a72846110a4565b612a7c9190613617565b600083815260086020526040902054909150808214612acf576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090612b1490600190613617565b6000838152600a602052604081205460098054939450909284908110612b3c57612b3c613562565b906000526020600020015490508060098381548110612b5d57612b5d613562565b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480612b9557612b956136a4565b6001900381819060005260206000200160009055905550505050565b6000612bbc836110a4565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b606082471015612c6d5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610aa3565b600080866001600160a01b03168587604051612c8991906136ba565b60006040518083038185875af1925050503d8060008114612cc6576040519150601f19603f3d011682016040523d82523d6000602084013e612ccb565b606091505b5091509150612cdc87838387612ce7565b979650505050505050565b60608315612d53578251612d4c576001600160a01b0385163b612d4c5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610aa3565b5081611e3a565b611e3a8383815115612d685781518083602001fd5b8060405162461bcd60e51b8152600401610aa39190612ebf565b828054612d8e906134d0565b90600052602060002090601f016020900481019282612db05760008555612df6565b82601f10612dc957805160ff1916838001178555612df6565b82800160010185558215612df6579182015b82811115612df6578251825591602001919060010190612ddb565b50612e02929150612e06565b5090565b5b80821115612e025760008155600101612e07565b6001600160e01b031981168114611cbc57600080fd5b600060208284031215612e4357600080fd5b813561210881612e1b565b600060208284031215612e6057600080fd5b5035919050565b60005b83811015612e82578181015183820152602001612e6a565b8381111561167d5750506000910152565b60008151808452612eab816020860160208601612e67565b601f01601f19169290920160200192915050565b6020815260006121086020830184612e93565b80356001600160a01b0381168114612ee957600080fd5b919050565b60008060408385031215612f0157600080fd5b612f0a83612ed2565b946020939093013593505050565b600060208284031215612f2a57600080fd5b61210882612ed2565b600080600060608486031215612f4857600080fd5b612f5184612ed2565b9250612f5f60208501612ed2565b9150604084013590509250925092565b60008060408385031215612f8257600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612fd057612fd0612f91565b604052919050565b600067ffffffffffffffff821115612ff257612ff2612f91565b5060051b60200190565b600082601f83011261300d57600080fd5b8135602061302261301d83612fd8565b612fa7565b82815260059290921b8401810191818101908684111561304157600080fd5b8286015b8481101561305c5780358352918301918301613045565b509695505050505050565b600082601f83011261307857600080fd5b8135602061308861301d83612fd8565b82815260059290921b840181019181810190868411156130a757600080fd5b8286015b8481101561305c576130bc81612ed2565b83529183019183016130ab565b600082601f8301126130da57600080fd5b813560206130ea61301d83612fd8565b82815260059290921b8401810191818101908684111561310957600080fd5b8286015b8481101561305c578035600381106131255760008081fd5b835291830191830161310d565b600080600080600060a0868803121561314a57600080fd5b853567ffffffffffffffff8082111561316257600080fd5b61316e89838a01612ffc565b9650602088013591508082111561318457600080fd5b61319089838a01613067565b955060408801359150808211156131a657600080fd5b6131b289838a016130c9565b945060608801359150808211156131c857600080fd5b506131d588828901612ffc565b95989497509295608001359392505050565b600067ffffffffffffffff83111561320157613201612f91565b613214601f8401601f1916602001612fa7565b905082815283838301111561322857600080fd5b828260208301376000602084830101529392505050565b60006020828403121561325157600080fd5b813567ffffffffffffffff81111561326857600080fd5b8201601f8101841361327957600080fd5b611e3a848235602084016131e7565b6000806000806080858703121561329e57600080fd5b843567ffffffffffffffff808211156132b657600080fd5b6132c288838901612ffc565b955060208701359150808211156132d857600080fd5b6132e488838901613067565b945060408701359150808211156132fa57600080fd5b613306888389016130c9565b9350606087013591508082111561331c57600080fd5b5061332987828801612ffc565b91505092959194509250565b8015158114611cbc57600080fd5b6000806040838503121561335657600080fd5b61335f83612ed2565b9150602083013561336f81613335565b809150509250929050565b6000806000806080858703121561339057600080fd5b61339985612ed2565b93506133a760208601612ed2565b925060408501359150606085013567ffffffffffffffff8111156133ca57600080fd5b8501601f810187136133db57600080fd5b613329878235602084016131e7565b634e487b7160e01b600052602160045260246000fd5b60006101208b83528a60208401526001600160a01b03808b166040850152808a1660608501525062ffffff881660808401528060a084015261344481840188612e93565b905082810360c08401526134588187612e93565b9150506003841061346b5761346b6133ea565b60e08201939093526101000152979650505050505050565b6020810160028310613497576134976133ea565b91905290565b600080604083850312156134b057600080fd5b6134b983612ed2565b91506134c760208401612ed2565b90509250929050565b600181811c908216806134e457607f821691505b6020821081141561350557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561353b5761353b61350b565b500290565b60008261355d57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561358a57600080fd5b5051919050565b60006000198214156135a5576135a561350b565b5060010190565b600082198211156135bf576135bf61350b565b500190565b60006001600160601b038083168185168083038211156135e6576135e661350b565b01949350505050565b60006001600160601b038381169083168181101561360f5761360f61350b565b039392505050565b6000828210156136295761362961350b565b500390565b60006020828403121561364057600080fd5b815161210881613335565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261367d6080830184612e93565b9695505050505050565b60006020828403121561369957600080fd5b815161210881612e1b565b634e487b7160e01b600052603160045260246000fd5b600082516136cc818460208701612e67565b919091019291505056fea2646970667358221220cac5c64826badac6ad15fbdd9c9d304c6db6940be3a91c52aa8e5bbbcdb9b9e264736f6c634300080a0033

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

00000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000000960000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000002e0000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000000000000000000000000000000000000000036000000000000000000000000000000000000000000000000000000000000003800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001146574220437573746f6d203078546f746500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034657420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005d68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f6261666b726569673737326268766f6f377963716b7565337874766a7a34773771356e653435626e656b6e777a32756833323433776a65746a703400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000096000000000000000000000000000000000000000000000000000000000000000d73697a653a4f6e652073697a6500000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _feeNumerator (uint96): 1000
Arg [1] : _contributorTotalSupply (uint256): 1000
Arg [2] : _garmentsAvailable (uint256): 150
Arg [3] : _task (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [4] : _productName (string): FWB Custom 0xTote
Arg [5] : _productSymbol (string): FWB
Arg [6] : _baseUri (string): https://gateway.pinata.cloud/ipfs/bafkreig772bhvoo7ycqkue3xtvjz4w7q5ne45bneknwz2uh3243wjetjp4
Arg [7] : _paymentTokenAddress (address): 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48
Arg [8] : _inventoryKey (string):
Arg [9] : _inventory (tuple[]): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [10] : _madeToOrder (bool): False

-----Encoded View---------------
34 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [1] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000096
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000260
Arg [5] : 00000000000000000000000000000000000000000000000000000000000002a0
Arg [6] : 00000000000000000000000000000000000000000000000000000000000002e0
Arg [7] : 000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000360
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000380
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [12] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [13] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [14] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [19] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [20] : 46574220437573746f6d203078546f7465000000000000000000000000000000
Arg [21] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [22] : 4657420000000000000000000000000000000000000000000000000000000000
Arg [23] : 000000000000000000000000000000000000000000000000000000000000005d
Arg [24] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [25] : 732f6261666b726569673737326268766f6f377963716b7565337874766a7a34
Arg [26] : 773771356e653435626e656b6e777a32756833323433776a65746a7034000000
Arg [27] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [28] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [29] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [30] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [31] : 0000000000000000000000000000000000000000000000000000000000000096
Arg [32] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [33] : 73697a653a4f6e652073697a6500000000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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