ETH Price: $3,628.07 (+0.18%)
 

Overview

Max Total Supply

444 TODEM

Holders

157

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
connorgrasso.eth
Balance
1 TODEM
0xa123b88714b76762ec9e1e35db6b2637bc9aa2a3
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

TODEM is a colossal AI-generated GIF that unfolds like an animated tapestry, navigable via a map-style interface. Using generative AI to produce content on an industrial scale, it explores themes of polarity and meritocracy. With dimensions of 100K x 58K pixels, it might be the largest GIF crafted.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TODEM

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 25 runs

Other Settings:
default evmVersion
File 1 of 21 : TODEM_contract.sol
pragma solidity ^0.8.0;

//from "@openzeppelin/[email protected]/token/common/ERC2981.sol";
import {ERC2981} from "./ERC2981.sol";

//from "@openzeppelin/[email protected]/access/Ownable.sol";
import {Ownable} from "./Ownable.sol";

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

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

import "./Strings.sol";

//from "@openzeppelin/[email protected]/token/ERC721/ERC721.sol";
import "./ERC721.sol";

//import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./MerkleProof.sol";


// TODEM, Created By: LatentCulture.
contract TODEM is ERC2981, ERC721, Ownable, RevokableDefaultOperatorFilterer {
  using Strings for uint256;

  string baseURI;
  string baseExtension = ".json";
  bool public paused = false;
  bool public isAllowListActive = true;
  uint256 public cost = 250000000000;
  uint256 public maxSupply = 1000;
  uint256 public currentSupply = 0;
  uint256 public charity_percentA = 10;
  uint256 public charity_percentB = 5;
  uint256 forCharityA = 0;
  uint256 forCharityB = 0;
  address public charityAddress;
  bytes32 public root;

  struct Entry {
      uint8 numberOfTokens;
      int discount;
      int list_type;
  }

  mapping(address => Entry) private _AllowList;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    bytes32 _root
  ) ERC721(_name, _symbol) {
    setCharity(owner());
    setRoyaltyInfo(owner(), 750);
    setBaseURI(_initBaseURI);
    root = _root;
  }

  function totalSupply() public view returns (uint256) {
      return currentSupply;
  }

  function verify(bytes32[] memory _proof, uint256 _tokenId) public view returns (bool) {
      bytes32 leaf = keccak256(bytes.concat(keccak256(abi.encode(_tokenId))));
      return
          MerkleProof.verify(
              _proof,
              root,
              leaf
          );
  }

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

  function calculatePrice(uint256 _tokenId) private view returns (int) {
    return int(_tokenId * cost);
  }

  //addresses: list of strings, discount: 0-100
  //address can mint with percent discount across numAllowedToMint
  function setPercentAllowList(address[] calldata addresses, uint8 numAllowedToMint, int discount) public onlyOwner {
      require(discount<=100, "discount too big");
      for (uint256 i = 0; i < addresses.length; i++) {
          _AllowList[addresses[i]] = Entry(numAllowedToMint, discount, 1);
      }
  }

  //addresses: list of strings, discount: price in wei
  //address can mint with eth discount across numAllowedToMint
  function setBasicAllowList(address[] calldata addresses, uint8 numAllowedToMint, int discount) public onlyOwner {
      for (uint256 i = 0; i < addresses.length; i++) {
          _AllowList[addresses[i]] = Entry(numAllowedToMint, discount, 0);
      }
  }

  //addresses: list of strings, discount: price in wei
  //address can mint up to eth discount across numAllowedToMint
  function setCumulativeAllowList(address[] calldata addresses, uint8 numAllowedToMint, int discount) public onlyOwner {
    for (uint256 i = 0; i < addresses.length; i++) {
        _AllowList[addresses[i]] = Entry(numAllowedToMint, discount, 2);
    }
  }

  function getMintPrice(uint256 _tokenId, address addy) public view returns (int){
    if (addy != owner()) {
        if (1 <= _AllowList[addy].numberOfTokens && (_AllowList[addy].list_type == 0 || _AllowList[addy].list_type == 2)){
            if (calculatePrice(_tokenId) - _AllowList[addy].discount <= 0){
                return 0;
            }
            else{
                return calculatePrice(_tokenId) - _AllowList[addy].discount;
            }
        }
        else if (1 <= _AllowList[addy].numberOfTokens && _AllowList[addy].list_type == 1){
            return calculatePrice(_tokenId) - (calculatePrice(_tokenId) * _AllowList[addy].discount / 100);
        }
        else{
            return calculatePrice(_tokenId);            
        }
    }
    else{
        return 0;
    }
  }

  function mint(uint256 _tokenId, bytes32[] memory _proof) public payable {
    require(verify(_proof, _tokenId), "Not a valid token id");
    require(!paused, "Minting paused");
    require(totalSupply() <= maxSupply, "Minting ended");
    if (msg.sender != owner()) {
        if (1 <= _AllowList[msg.sender].numberOfTokens && (_AllowList[msg.sender].list_type == 0 || _AllowList[msg.sender].list_type == 2)){
            require(isAllowListActive, "Allow list is not active");
            if (calculatePrice(_tokenId) - _AllowList[msg.sender].discount <= 0){
                uint256 price = 0;
                require(msg.value >= price);
                if (_AllowList[msg.sender].list_type == 2){
                    _AllowList[msg.sender].discount -= calculatePrice(_tokenId);
                }                
            }
            else{
                uint256 price = uint256(calculatePrice(_tokenId) - _AllowList[msg.sender].discount);
                require(msg.value >= price);
                if (_tokenId >= 73359200){forCharityA = forCharityA + price;}
                if (_tokenId >= 8954400 && _tokenId < 73359200){forCharityB = forCharityB + price;}
                if (_AllowList[msg.sender].list_type == 2){
                    _AllowList[msg.sender].discount = 0;
                }              
            }
            _AllowList[msg.sender].numberOfTokens -= 1;
            _safeMint(msg.sender, _tokenId);
            currentSupply += 1;
        }
        else if (1 <= _AllowList[msg.sender].numberOfTokens && _AllowList[msg.sender].list_type == 1){
            require(isAllowListActive, "Allow list is not active");
            uint256 price = uint256((calculatePrice(_tokenId) - (calculatePrice(_tokenId)*_AllowList[msg.sender].discount/100)));
            require(msg.value >= price);
            if (_tokenId >= 73359200){forCharityA = forCharityA + price;}
            if (_tokenId >= 8954400 && _tokenId < 73359200){forCharityB = forCharityB + price;}
            _AllowList[msg.sender].numberOfTokens -= 1;
            _safeMint(msg.sender, _tokenId);
            currentSupply += 1;
        }
        else{
            uint256 price = uint256(calculatePrice(_tokenId));
            require(msg.value >= price);        
            if (_tokenId >= 73359200){forCharityA = forCharityA + price;} 
            if (_tokenId >= 8954400 && _tokenId < 73359200){forCharityB = forCharityB + price;} 
            _safeMint(msg.sender, _tokenId); 
            currentSupply += 1;  
        }
    }else{
        _safeMint(msg.sender, _tokenId);
        currentSupply += 1;
    }
  }

  function setRoyaltyInfo(address _receiver, uint96 _royaltyFeesInBips) public onlyOwner {
    _setDefaultRoyalty(_receiver, _royaltyFeesInBips);
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";
  }
  
  function setAllowListActive(bool _isAllowListActive) public onlyOwner {
    isAllowListActive = _isAllowListActive;
  }

  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  //set new merkle root
  function setRoot(bytes32  _newRoot) public onlyOwner {
    root = _newRoot;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setCharity(address _charityAddress) public onlyOwner {
    charityAddress = _charityAddress;
  }

  //percent: 0-100, class: 0 (A) or 1 (B)
  function setCharityPercent(uint256 _charityPercent, uint256 _class) public onlyOwner {
      if(_class == 0){charity_percentA = _charityPercent;}
      if(_class == 1){charity_percentB = _charityPercent;}
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }

  function query_charityA() public view onlyOwner returns (uint256){
    return forCharityA * charity_percentA / 100;
  }

  function query_charityB() public view onlyOwner returns (uint256){
    return forCharityB * charity_percentB/ 100;
  }

  function withdraw_charity()public payable onlyOwner {
    (bool c, ) = payable(charityAddress).call{value: forCharityA * charity_percentA / 100 + forCharityB * charity_percentB/ 100}("");
    require(c);
    forCharityA = 0;
    forCharityB = 0;
  }

  function withdraw() public payable onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance - forCharityA * charity_percentA / 100 - forCharityB * charity_percentB/ 100}("");
    require(os);
  }

  function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
      super.setApprovalForAll(operator, approved);
  }

  function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) {
      super.approve(operator, tokenId);
  }

  function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
      super.transferFrom(from, to, tokenId);
  }

  function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
      super.safeTransferFrom(from, to, tokenId);
  }

  function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
      public
      override
      onlyAllowedOperator(from)
  {
      super.safeTransferFrom(from, to, tokenId, data);
  }

  function owner() public view virtual override(Ownable, UpdatableOperatorFilterer) returns (address) {
      return Ownable.owner();
  }

  function supportsInterface(bytes4 interfaceId)
      public
      view
      override(ERC721, ERC2981)
      returns (bool)
  {
      return super.supportsInterface(interfaceId);
  }
}

File 2 of 21 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 3 of 21 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.2) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./Context.sol";
import "./ERC165.sol";
import "./IERC721.sol";

import "./IERC721Metadata.sol";
import "./IERC721Receiver.sol";
import "./Address.sol";
import "./Strings.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 4 of 21 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./Math.sol";
import "./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));
    }
}

File 5 of 21 : RevokableDefaultOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {RevokableOperatorFilterer} from "./RevokableOperatorFilterer.sol";
import {CANONICAL_CORI_SUBSCRIPTION, CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS} from "./lib/Constants.sol";
/**
 * @title  RevokableDefaultOperatorFilterer
 * @notice Inherits from RevokableOperatorFilterer and automatically subscribes to the default OpenSea subscription.
 *         Note that OpenSea will disable creator earnings enforcement if filtered operators begin fulfilling orders
 *         on-chain, eg, if the registry is revoked or bypassed.
 */

abstract contract RevokableDefaultOperatorFilterer is RevokableOperatorFilterer {
    /// @dev The constructor that is called when the contract is being deployed.
    constructor()
        RevokableOperatorFilterer(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS, CANONICAL_CORI_SUBSCRIPTION, true)
    {}
}

File 6 of 21 : UpdatableOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

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

/**
 * @title  UpdatableOperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry. This contract allows the Owner to update the
 *         OperatorFilterRegistry address via updateOperatorFilterRegistryAddress, including to the zero address,
 *         which will bypass registry checks.
 *         Note that OpenSea will still disable creator earnings enforcement if filtered operators begin fulfilling orders
 *         on-chain, eg, if the registry is revoked or bypassed.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract UpdatableOperatorFilterer {
    /// @dev Emitted when an operator is not allowed.
    error OperatorNotAllowed(address operator);
    /// @dev Emitted when someone other than the owner is trying to call an only owner function.
    error OnlyOwner();

    event OperatorFilterRegistryAddressUpdated(address newRegistry);

    IOperatorFilterRegistry public operatorFilterRegistry;

    /// @dev The constructor that is called when the contract is being deployed.
    constructor(address _registry, address subscriptionOrRegistrantToCopy, bool subscribe) {
        IOperatorFilterRegistry registry = IOperatorFilterRegistry(_registry);
        operatorFilterRegistry = registry;
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(registry).code.length > 0) {
            if (subscribe) {
                registry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    registry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    registry.register(address(this));
                }
            }
        }
    }

    /**
     * @dev A helper function to check if the operator is allowed.
     */
    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    /**
     * @dev A helper function to check if the operator approval is allowed.
     */
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    /**
     * @notice Update the address that the contract will make OperatorFilter checks against. When set to the zero
     *         address, checks will be bypassed. OnlyOwner.
     */
    function updateOperatorFilterRegistryAddress(address newRegistry) public virtual {
        if (msg.sender != owner()) {
            revert OnlyOwner();
        }
        operatorFilterRegistry = IOperatorFilterRegistry(newRegistry);
        emit OperatorFilterRegistryAddressUpdated(newRegistry);
    }

    /**
     * @dev Assume the contract has an owner, but leave specific Ownable implementation up to inheriting contract.
     */
    function owner() public view virtual returns (address);

    /**
     * @dev A helper function to check if the operator is allowed.
     */
    function _checkFilterOperator(address operator) internal view virtual {
        IOperatorFilterRegistry registry = operatorFilterRegistry;
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(registry) != address(0) && address(registry).code.length > 0) {
            // under normal circumstances, this function will revert rather than return false, but inheriting contracts
            // may specify their own OperatorFilterRegistry implementations, which may behave differently
            if (!registry.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

File 7 of 21 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./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 8 of 21 : ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

import "./ERC165.sol";
import "./IERC2981.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 21 : IOperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    /**
     * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns
     *         true if supplied registrant address is not registered.
     */
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);

    /**
     * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner.
     */
    function register(address registrant) external;

    /**
     * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes.
     */
    function registerAndSubscribe(address registrant, address subscription) external;

    /**
     * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another
     *         address without subscribing.
     */
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;

    /**
     * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner.
     *         Note that this does not remove any filtered addresses or codeHashes.
     *         Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes.
     */
    function unregister(address addr) external;

    /**
     * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered.
     */
    function updateOperator(address registrant, address operator, bool filtered) external;

    /**
     * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates.
     */
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;

    /**
     * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered.
     */
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;

    /**
     * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates.
     */
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;

    /**
     * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous
     *         subscription if present.
     *         Note that accounts with subscriptions may go on to subscribe to other accounts - in this case,
     *         subscriptions will not be forwarded. Instead the former subscription's existing entries will still be
     *         used.
     */
    function subscribe(address registrant, address registrantToSubscribe) external;

    /**
     * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes.
     */
    function unsubscribe(address registrant, bool copyExistingEntries) external;

    /**
     * @notice Get the subscription address of a given registrant, if any.
     */
    function subscriptionOf(address addr) external returns (address registrant);

    /**
     * @notice Get the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscribers(address registrant) external returns (address[] memory);

    /**
     * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscriberAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr.
     */
    function copyEntriesOf(address registrant, address registrantToCopy) external;

    /**
     * @notice Returns true if operator is filtered by a given address or its subscription.
     */
    function isOperatorFiltered(address registrant, address operator) external returns (bool);

    /**
     * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription.
     */
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);

    /**
     * @notice Returns true if a codeHash is filtered by a given address or its subscription.
     */
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);

    /**
     * @notice Returns a list of filtered operators for a given address or its subscription.
     */
    function filteredOperators(address addr) external returns (address[] memory);

    /**
     * @notice Returns the set of filtered codeHashes for a given address or its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);

    /**
     * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);

    /**
     * @notice Returns true if an address has registered
     */
    function isRegistered(address addr) external returns (bool);

    /**
     * @dev Convenience method to compute the code hash of an arbitrary contract
     */
    function codeHashOf(address addr) external returns (bytes32);
}

File 10 of 21 : 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 11 of 21 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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 12 of 21 : Constants.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E;
address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

File 13 of 21 : RevokableOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {UpdatableOperatorFilterer} from "./UpdatableOperatorFilterer.sol";
import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";

/**
 * @title  RevokableOperatorFilterer
 * @notice This contract is meant to allow contracts to permanently skip OperatorFilterRegistry checks if desired. The
 *         Registry itself has an "unregister" function, but if the contract is ownable, the owner can re-register at
 *         any point. As implemented, this abstract contract allows the contract owner to permanently skip the
 *         OperatorFilterRegistry checks by calling revokeOperatorFilterRegistry. Once done, the registry
 *         address cannot be further updated.
 *         Note that OpenSea will still disable creator earnings enforcement if filtered operators begin fulfilling orders
 *         on-chain, eg, if the registry is revoked or bypassed.
 */
abstract contract RevokableOperatorFilterer is UpdatableOperatorFilterer {
    /// @dev Emitted when the registry has already been revoked.
    error RegistryHasBeenRevoked();
    /// @dev Emitted when the initial registry address is attempted to be set to the zero address.
    error InitialRegistryAddressCannotBeZeroAddress();

    event OperatorFilterRegistryRevoked();

    bool public isOperatorFilterRegistryRevoked;

    /// @dev The constructor that is called when the contract is being deployed.
    constructor(address _registry, address subscriptionOrRegistrantToCopy, bool subscribe)
        UpdatableOperatorFilterer(_registry, subscriptionOrRegistrantToCopy, subscribe)
    {
        // don't allow creating a contract with a permanently revoked registry
        if (_registry == address(0)) {
            revert InitialRegistryAddressCannotBeZeroAddress();
        }
    }

    /**
     * @notice Update the address that the contract will make OperatorFilter checks against. When set to the zero
     *         address, checks will be permanently bypassed, and the address cannot be updated again. OnlyOwner.
     */
    function updateOperatorFilterRegistryAddress(address newRegistry) public override {
        if (msg.sender != owner()) {
            revert OnlyOwner();
        }
        // if registry has been revoked, do not allow further updates
        if (isOperatorFilterRegistryRevoked) {
            revert RegistryHasBeenRevoked();
        }

        operatorFilterRegistry = IOperatorFilterRegistry(newRegistry);
        emit OperatorFilterRegistryAddressUpdated(newRegistry);
    }

    /**
     * @notice Revoke the OperatorFilterRegistry address, permanently bypassing checks. OnlyOwner.
     */
    function revokeOperatorFilterRegistry() public {
        if (msg.sender != owner()) {
            revert OnlyOwner();
        }
        // if registry has been revoked, do not allow further updates
        if (isOperatorFilterRegistryRevoked) {
            revert RegistryHasBeenRevoked();
        }

        // set to zero address to bypass checks
        operatorFilterRegistry = IOperatorFilterRegistry(address(0));
        isOperatorFilterRegistryRevoked = true;
        emit OperatorFilterRegistryRevoked();
    }
}

File 14 of 21 : 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 15 of 21 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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 16 of 21 : 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 17 of 21 : 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 18 of 21 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "./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 19 of 21 : 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 20 of 21 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "./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 21 of 21 : 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"bytes32","name":"_root","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"InitialRegistryAddressCannotBeZeroAddress","type":"error"},{"inputs":[],"name":"OnlyOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"RegistryHasBeenRevoked","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newRegistry","type":"address"}],"name":"OperatorFilterRegistryAddressUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"OperatorFilterRegistryRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"operator","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":"charityAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"charity_percentA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"charity_percentB","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentSupply","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":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"addy","type":"address"}],"name":"getMintPrice","outputs":[{"internalType":"int256","name":"","type":"int256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAllowListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"isOperatorFilterRegistryRevoked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilterRegistry","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"query_charityA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"query_charityB","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revokeOperatorFilterRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","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":"bool","name":"_isAllowListActive","type":"bool"}],"name":"setAllowListActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint8","name":"numAllowedToMint","type":"uint8"},{"internalType":"int256","name":"discount","type":"int256"}],"name":"setBasicAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_charityAddress","type":"address"}],"name":"setCharity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_charityPercent","type":"uint256"},{"internalType":"uint256","name":"_class","type":"uint256"}],"name":"setCharityPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint8","name":"numAllowedToMint","type":"uint8"},{"internalType":"int256","name":"discount","type":"int256"}],"name":"setCumulativeAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint8","name":"numAllowedToMint","type":"uint8"},{"internalType":"int256","name":"discount","type":"int256"}],"name":"setPercentAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newRoot","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_royaltyFeesInBips","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRegistry","type":"address"}],"name":"updateOperatorFilterRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"verify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw_charity","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608090815264173539b7b760d91b60a052600b9062000026908262000582565b50600c805461ffff1916610100179055643a35294400600d556103e8600e556000600f819055600a601055600560115560128190556013553480156200006b57600080fd5b50604051620038dc380380620038dc8339810160408190526200008e91620006fd565b6daaeb6d7670e522a718067333cd4e733cc6cdda760b79bafa08df41ecfa224f810dceb6600182828289896002620000c7838262000582565b506003620000d6828262000582565b505050620000f3620000ed620002a560201b60201c565b620002a9565b600980546001600160a01b0319166001600160a01b03851690811790915583903b156200022c5781156200018b57604051633e9f1edf60e11b81523060048201526001600160a01b038481166024830152821690637d3e3dbe906044015b600060405180830381600087803b1580156200016c57600080fd5b505af115801562000181573d6000803e3d6000fd5b505050506200022c565b6001600160a01b03831615620001d05760405163a0af290360e01b81523060048201526001600160a01b03848116602483015282169063a0af29039060440162000151565b604051632210724360e11b81523060048201526001600160a01b03821690634420e48690602401600060405180830381600087803b1580156200021257600080fd5b505af115801562000227573d6000803e3d6000fd5b505050505b5050506001600160a01b0384169050620002595760405163c49d17ad60e01b815260040160405180910390fd5b5050506200027662000270620002fb60201b60201c565b62000315565b6200028d62000284620002fb565b6102ee62000341565b62000298826200035b565b6015555062000796915050565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000620003106008546001600160a01b031690565b905090565b6200031f62000373565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b6200034b62000373565b620003578282620003dc565b5050565b6200036562000373565b600a62000357828262000582565b336200037e620002fb565b6001600160a01b031614620003da5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b565b6127106001600160601b03821611156200044c5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401620003d1565b6001600160a01b038216620004a45760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620003d1565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600055565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200050857607f821691505b6020821081036200052957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200057d57600081815260208120601f850160051c81016020861015620005585750805b601f850160051c820191505b81811015620005795782815560010162000564565b5050505b505050565b81516001600160401b038111156200059e576200059e620004dd565b620005b681620005af8454620004f3565b846200052f565b602080601f831160018114620005ee5760008415620005d55750858301515b600019600386901b1c1916600185901b17855562000579565b600085815260208120601f198616915b828110156200061f57888601518255948401946001909101908401620005fe565b50858210156200063e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f8301126200066057600080fd5b81516001600160401b03808211156200067d576200067d620004dd565b604051601f8301601f19908116603f01168101908282118183101715620006a857620006a8620004dd565b81604052838152602092508683858801011115620006c557600080fd5b600091505b83821015620006e95785820183015181830184015290820190620006ca565b600093810190920192909252949350505050565b600080600080608085870312156200071457600080fd5b84516001600160401b03808211156200072c57600080fd5b6200073a888389016200064e565b955060208701519150808211156200075157600080fd5b6200075f888389016200064e565b945060408701519150808211156200077657600080fd5b5062000785878288016200064e565b606096909601519497939650505050565b61313680620007a66000396000f3fe6080604052600436106102495760003560e01c80638da5cb5b116101355780638da5cb5b1461056257806395d89b4114610577578063992200691461058c578063a22cb465146105ac578063afcf2fc4146105cc578063b0ccc31e146105ec578063b88d4fde1461060c578063b8d1e5321461062c578063ba41b0c61461064c578063bcbc7f551461065f578063be174cf41461067f578063beca653514610695578063c057220f1461069d578063c87b56dd146106bd578063cef028e8146106dd578063d5abeb01146106fd578063da3ef23f14610713578063dab5f34014610733578063e985e9c514610753578063ebf0c71714610773578063eca4e55414610789578063ecba222a1461079f578063f2fde38b146107c0578063fb6f71a3146107e0578063fe3915971461080057600080fd5b806301ffc9a71461024e57806302329a291461028357806302fa7c47146102a557806306fdde03146102c5578063081812fc146102e7578063095ea7b31461031457806313faede61461033457806318160ddd146103585780631a5bcf011461036d57806323b872dd1461038d57806329fc6bae146103ad5780632a55205a146103cc5780633a73c58d1461040b5780633ccfd60b1461042b57806342842e0e1461043357806342e9a51c1461045357806344a0d68a14610473578063501d2a9b1461049357806355f804b3146104a85780635c975abb146104c85780635ef9432a146104e25780636352211e146104f757806370a0823114610517578063715018a614610537578063771282f61461054c575b600080fd5b34801561025a57600080fd5b5061026e610269366004612684565b610815565b60405190151581526020015b60405180910390f35b34801561028f57600080fd5b506102a361029e3660046126af565b610826565b005b3480156102b157600080fd5b506102a36102c03660046126e8565b610841565b3480156102d157600080fd5b506102da610857565b60405161027a919061277b565b3480156102f357600080fd5b5061030761030236600461278e565b6108e9565b60405161027a91906127a7565b34801561032057600080fd5b506102a361032f3660046127bb565b610910565b34801561034057600080fd5b5061034a600d5481565b60405190815260200161027a565b34801561036457600080fd5b50600f5461034a565b34801561037957600080fd5b506102a36103883660046127e5565b610929565b34801561039957600080fd5b506102a36103a8366004612876565b6109df565b3480156103b957600080fd5b50600c5461026e90610100900460ff1681565b3480156103d857600080fd5b506103ec6103e73660046128b2565b610a0a565b604080516001600160a01b03909316835260208301919091520161027a565b34801561041757600080fd5b506102a36104263660046126af565b610ab6565b6102a3610ad8565b34801561043f57600080fd5b506102a361044e366004612876565b610b91565b34801561045f57600080fd5b506102a361046e3660046127e5565b610bb6565b34801561047f57600080fd5b506102a361048e36600461278e565b610cae565b34801561049f57600080fd5b5061034a610cbb565b3480156104b457600080fd5b506102a36104c3366004612971565b610ce6565b3480156104d457600080fd5b50600c5461026e9060ff1681565b3480156104ee57600080fd5b506102a3610cfa565b34801561050357600080fd5b5061030761051236600461278e565b610d9f565b34801561052357600080fd5b5061034a6105323660046129b9565b610dd3565b34801561054357600080fd5b506102a3610e59565b34801561055857600080fd5b5061034a600f5481565b34801561056e57600080fd5b50610307610e6d565b34801561058357600080fd5b506102da610e81565b34801561059857600080fd5b506102a36105a73660046127e5565b610e90565b3480156105b857600080fd5b506102a36105c73660046129d4565b610f3f565b3480156105d857600080fd5b50601454610307906001600160a01b031681565b3480156105f857600080fd5b50600954610307906001600160a01b031681565b34801561061857600080fd5b506102a3610627366004612a00565b610f53565b34801561063857600080fd5b506102a36106473660046129b9565b610f79565b6102a361065a366004612afa565b611033565b34801561066b57600080fd5b5061034a61067a366004612b40565b611548565b34801561068b57600080fd5b5061034a60105481565b6102a36116ee565b3480156106a957600080fd5b506102a36106b83660046128b2565b6117a5565b3480156106c957600080fd5b506102da6106d836600461278e565b6117c9565b3480156106e957600080fd5b5061026e6106f8366004612b6c565b611897565b34801561070957600080fd5b5061034a600e5481565b34801561071f57600080fd5b506102a361072e366004612971565b6118f7565b34801561073f57600080fd5b506102a361074e36600461278e565b61190b565b34801561075f57600080fd5b5061026e61076e366004612bb0565b611918565b34801561077f57600080fd5b5061034a60155481565b34801561079557600080fd5b5061034a60115481565b3480156107ab57600080fd5b5060095461026e90600160a01b900460ff1681565b3480156107cc57600080fd5b506102a36107db3660046129b9565b611946565b3480156107ec57600080fd5b506102a36107fb3660046129b9565b6119bc565b34801561080c57600080fd5b5061034a6119e6565b600061082082611a02565b92915050565b61082e611a42565b600c805460ff1916911515919091179055565b610849611a42565b6108538282611aa1565b5050565b60606002805461086690612bda565b80601f016020809104026020016040519081016040528092919081815260200182805461089290612bda565b80156108df5780601f106108b4576101008083540402835291602001916108df565b820191906000526020600020905b8154815290600101906020018083116108c257829003601f168201915b5050505050905090565b60006108f482611b9a565b506000908152600660205260409020546001600160a01b031690565b8161091a81611bbf565b6109248383611c78565b505050565b610931611a42565b60005b838110156109d85760405180606001604052808460ff16815260200183815260200160008152506016600087878581811061097157610971612c14565b905060200201602081019061098691906129b9565b6001600160a01b0316815260208082019290925260409081016000208351815460ff191660ff9091161781559183015160018301559190910151600290910155806109d081612c40565b915050610934565b5050505050565b826001600160a01b03811633146109f9576109f933611bbf565b610a04848484611d88565b50505050565b60008281526001602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610a7f5750604080518082019091526000546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610a9e906001600160601b031687612c59565b610aa89190612c86565b915196919550909350505050565b610abe611a42565b600c80549115156101000261ff0019909216919091179055565b610ae0611a42565b6000610aea610e6d565b6001600160a01b03166064601154601354610b059190612c59565b610b0f9190612c86565b6064601054601254610b219190612c59565b610b2b9190612c86565b610b359047612c9a565b610b3f9190612c9a565b604051600081818185875af1925050503d8060008114610b7b576040519150601f19603f3d011682016040523d82523d6000602084013e610b80565b606091505b5050905080610b8e57600080fd5b50565b826001600160a01b0381163314610bab57610bab33611bbf565b610a04848484611db9565b610bbe611a42565b6064811315610c075760405162461bcd60e51b815260206004820152601060248201526f646973636f756e7420746f6f2062696760801b60448201526064015b60405180910390fd5b60005b838110156109d85760405180606001604052808460ff168152602001838152602001600181525060166000878785818110610c4757610c47612c14565b9050602002016020810190610c5c91906129b9565b6001600160a01b0316815260208082019290925260409081016000208351815460ff191660ff909116178155918301516001830155919091015160029091015580610ca681612c40565b915050610c0a565b610cb6611a42565b600d55565b6000610cc5611a42565b6064601054601254610cd79190612c59565b610ce19190612c86565b905090565b610cee611a42565b600a6108538282612cfb565b610d02610e6d565b6001600160a01b0316336001600160a01b031614610d3357604051635fc483c560e01b815260040160405180910390fd5b600954600160a01b900460ff1615610d5e57604051631551a48f60e11b815260040160405180910390fd5b600980546001600160a81b031916600160a01b1790556040517f51e2d870cc2e10853e38dc06fcdae46ad3c3f588f326608803dac6204541ad1690600090a1565b600080610dab83611dd4565b90506001600160a01b0381166108205760405162461bcd60e51b8152600401610bfe90612dba565b60006001600160a01b038216610e3d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610bfe565b506001600160a01b031660009081526005602052604090205490565b610e61611a42565b610e6b6000611def565b565b6000610ce16008546001600160a01b031690565b60606003805461086690612bda565b610e98611a42565b60005b838110156109d85760405180606001604052808460ff168152602001838152602001600281525060166000878785818110610ed857610ed8612c14565b9050602002016020810190610eed91906129b9565b6001600160a01b0316815260208082019290925260409081016000208351815460ff191660ff909116178155918301516001830155919091015160029091015580610f3781612c40565b915050610e9b565b81610f4981611bbf565b6109248383611e41565b836001600160a01b0381163314610f6d57610f6d33611bbf565b6109d885858585611e4c565b610f81610e6d565b6001600160a01b0316336001600160a01b031614610fb257604051635fc483c560e01b815260040160405180910390fd5b600954600160a01b900460ff1615610fdd57604051631551a48f60e11b815260040160405180910390fd5b600980546001600160a01b0319166001600160a01b0383161790556040517f9f513fe86dc42fdbac355fa4d9b1d5be7b5e6cd2df67e30db8003766568de476906110289083906127a7565b60405180910390a150565b61103d8183611897565b6110805760405162461bcd60e51b8152602060048201526014602482015273139bdd0818481d985b1a59081d1bdad95b881a5960621b6044820152606401610bfe565b600c5460ff16156110c45760405162461bcd60e51b815260206004820152600e60248201526d135a5b9d1a5b99c81c185d5cd95960921b6044820152606401610bfe565b600e54600f5411156111085760405162461bcd60e51b815260206004820152600d60248201526c135a5b9d1a5b99c8195b991959609a1b6044820152606401610bfe565b611110610e6d565b6001600160a01b0316336001600160a01b031614611522573360009081526016602052604090205460ff1660011180159061117757503360009081526016602052604090206002015415806111775750336000908152601660205260409020600290810154145b1561133357600c54610100900460ff166111a35760405162461bcd60e51b8152600401610bfe90612dec565b336000908152601660205260408120600101546111bf84611e7e565b6111c99190612e1e565b1361122057336000908152601660205260408120600290810154900361121a576111f283611e7e565b3360009081526016602052604081206001018054909190611214908490612e1e565b90915550505b506112d0565b3360009081526016602052604081206001015461123c84611e7e565b6112469190612e1e565b90508034101561125557600080fd5b63045f5f608310611272578060125461126e9190612e45565b6012555b6288a2208310158015611288575063045f5f6083105b1561129f578060135461129b9190612e45565b6013555b33600090815260166020526040902060029081015490036112ce57336000908152601660205260408120600101555b505b3360009081526016602052604081208054600192906112f390849060ff16612e58565b92506101000a81548160ff021916908360ff1602179055506113153383611e8e565b6001600f60008282546113289190612e45565b909155506108539050565b3360009081526016602052604090205460ff166001118015906113685750336000908152601660205260409020600201546001145b1561149757600c54610100900460ff166113945760405162461bcd60e51b8152600401610bfe90612dec565b336000908152601660205260408120600101546064906113b385611e7e565b6113bd9190612e71565b6113c79190612ea1565b6113d084611e7e565b6113da9190612e1e565b9050803410156113e957600080fd5b63045f5f60831061140657806012546114029190612e45565b6012555b6288a220831015801561141c575063045f5f6083105b15611433578060135461142f9190612e45565b6013555b33600090815260166020526040812080546001929061145690849060ff16612e58565b92506101000a81548160ff021916908360ff1602179055506114783384611e8e565b6001600f600082825461148b9190612e45565b90915550610853915050565b60006114a283611e7e565b9050803410156114b157600080fd5b63045f5f6083106114ce57806012546114ca9190612e45565b6012555b6288a22083101580156114e4575063045f5f6083105b156114fb57806013546114f79190612e45565b6013555b6115053384611e8e565b6001600f60008282546115189190612e45565b9091555050505050565b61152c3383611e8e565b6001600f600082825461153f9190612e45565b90915550505050565b6000611552610e6d565b6001600160a01b0316826001600160a01b0316146116e5576001600160a01b03821660009081526016602052604090205460ff166001118015906115d457506001600160a01b03821660009081526016602052604090206002015415806115d457506001600160a01b0382166000908152601660205260409020600290810154145b1561164b576001600160a01b0382166000908152601660205260408120600101546115fe85611e7e565b6116089190612e1e565b1361161557506000610820565b6001600160a01b03821660009081526016602052604090206001015461163a84611e7e565b6116449190612e1e565b9050610820565b6001600160a01b03821660009081526016602052604090205460ff1660011180159061169257506001600160a01b0382166000908152601660205260409020600201546001145b156116dc576001600160a01b0382166000908152601660205260409020600101546064906116bf85611e7e565b6116c99190612e71565b6116d39190612ea1565b61163a84611e7e565b61164483611e7e565b50600092915050565b6116f6611a42565b6014546011546013546000926001600160a01b0316916064916117199190612c59565b6117239190612c86565b60646010546012546117359190612c59565b61173f9190612c86565b6117499190612e45565b604051600081818185875af1925050503d8060008114611785576040519150601f19603f3d011682016040523d82523d6000602084013e61178a565b606091505b505090508061179857600080fd5b5060006012819055601355565b6117ad611a42565b806000036117bb5760108290555b806001036108535750601155565b60606117d482611ea8565b6118385760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bfe565b6000611842611ec5565b905060008151116118625760405180602001604052806000815250611890565b8061186c84611ed4565b600b60405160200161188093929190612ecf565b6040516020818303038152906040525b9392505050565b600080826040516020016118ad91815260200190565b60408051601f19818403018152828252805160209182012090830152016040516020818303038152906040528051906020012090506118ef8460155483611f66565b949350505050565b6118ff611a42565b600b6108538282612cfb565b611913611a42565b601555565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61194e611a42565b6001600160a01b0381166119b35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bfe565b610b8e81611def565b6119c4611a42565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b60006119f0611a42565b6064601154601354610cd79190612c59565b60006001600160e01b031982166380ac58cd60e01b1480611a3357506001600160e01b03198216635b5e139f60e01b145b80610820575061082082611f7c565b33611a4b610e6d565b6001600160a01b031614610e6b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bfe565b6127106001600160601b0382161115611b0f5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610bfe565b6001600160a01b038216611b615760405162461bcd60e51b815260206004820152601960248201527822a921991c9c189d1034b73b30b634b2103932b1b2b4bb32b960391b6044820152606401610bfe565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600055565b611ba381611ea8565b610b8e5760405162461bcd60e51b8152600401610bfe90612dba565b6009546001600160a01b03168015801590611be457506000816001600160a01b03163b115b1561085357604051633185c44d60e21b81523060048201526001600160a01b03838116602483015282169063c617113490604401602060405180830381865afa158015611c35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c599190612f6f565b6108535781604051633b79c77360e21b8152600401610bfe91906127a7565b6000611c8382610d9f565b9050806001600160a01b0316836001600160a01b031603611cf05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bfe565b336001600160a01b0382161480611d0c5750611d0c8133611918565b611d7e5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610bfe565b6109248383611fb1565b611d92338261201f565b611dae5760405162461bcd60e51b8152600401610bfe90612f8c565b61092483838361207d565b61092483838360405180602001604052806000815250610f53565b6000908152600460205260409020546001600160a01b031690565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108533383836121e1565b611e56338361201f565b611e725760405162461bcd60e51b8152600401610bfe90612f8c565b610a04848484846122ab565b6000600d54826108209190612c59565b6108538282604051806020016040528060008152506122de565b600080611eb483611dd4565b6001600160a01b0316141592915050565b6060600a805461086690612bda565b60606000611ee183612311565b60010190506000816001600160401b03811115611f0057611f006128d4565b6040519080825280601f01601f191660200182016040528015611f2a576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611f3457509392505050565b600082611f7385846123e7565b14949350505050565b60006001600160e01b0319821663152a902d60e11b148061082057506301ffc9a760e01b6001600160e01b0319831614610820565b600081815260066020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611fe682610d9f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061202b83610d9f565b9050806001600160a01b0316846001600160a01b0316148061205257506120528185611918565b806118ef5750836001600160a01b031661206b846108e9565b6001600160a01b031614949350505050565b826001600160a01b031661209082610d9f565b6001600160a01b0316146120b65760405162461bcd60e51b8152600401610bfe90612fd9565b6001600160a01b0382166121185760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bfe565b826001600160a01b031661212b82610d9f565b6001600160a01b0316146121515760405162461bcd60e51b8152600401610bfe90612fd9565b600081815260066020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260058552838620805460001901905590871680865283862080546001019055868652600490945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b816001600160a01b0316836001600160a01b03160361223e5760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b6044820152606401610bfe565b6001600160a01b03838116600081815260076020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6122b684848461207d565b6122c284848484612434565b610a045760405162461bcd60e51b8152600401610bfe9061301e565b6122e88383612535565b6122f56000848484612434565b6109245760405162461bcd60e51b8152600401610bfe9061301e565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106123505772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6904ee2d6d415b85acef8160201b831061237a576904ee2d6d415b85acef8160201b830492506020015b662386f26fc10000831061239857662386f26fc10000830492506010015b6305f5e10083106123b0576305f5e100830492506008015b61271083106123c457612710830492506004015b606483106123d6576064830492506002015b600a83106108205760010192915050565b600081815b845181101561242c576124188286838151811061240b5761240b612c14565b6020026020010151612642565b91508061242481612c40565b9150506123ec565b509392505050565b60006001600160a01b0384163b1561252a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612478903390899088908890600401613070565b6020604051808303816000875af19250505080156124b3575060408051601f3d908101601f191682019092526124b0918101906130ad565b60015b612510573d8080156124e1576040519150601f19603f3d011682016040523d82523d6000602084013e6124e6565b606091505b5080516000036125085760405162461bcd60e51b8152600401610bfe9061301e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118ef565b506001949350505050565b6001600160a01b03821661258b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610bfe565b61259481611ea8565b156125b15760405162461bcd60e51b8152600401610bfe906130ca565b6125ba81611ea8565b156125d75760405162461bcd60e51b8152600401610bfe906130ca565b6001600160a01b038216600081815260056020908152604080832080546001019055848352600490915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600081831061265e576000828152602084905260409020611890565b5060009182526020526040902090565b6001600160e01b031981168114610b8e57600080fd5b60006020828403121561269657600080fd5b81356118908161266e565b8015158114610b8e57600080fd5b6000602082840312156126c157600080fd5b8135611890816126a1565b80356001600160a01b03811681146126e357600080fd5b919050565b600080604083850312156126fb57600080fd5b612704836126cc565b915060208301356001600160601b038116811461272057600080fd5b809150509250929050565b60005b8381101561274657818101518382015260200161272e565b50506000910152565b6000815180845261276781602086016020860161272b565b601f01601f19169290920160200192915050565b602081526000611890602083018461274f565b6000602082840312156127a057600080fd5b5035919050565b6001600160a01b0391909116815260200190565b600080604083850312156127ce57600080fd5b6127d7836126cc565b946020939093013593505050565b600080600080606085870312156127fb57600080fd5b84356001600160401b038082111561281257600080fd5b818701915087601f83011261282657600080fd5b81358181111561283557600080fd5b8860208260051b850101111561284a57600080fd5b6020928301965094505085013560ff8116811461286657600080fd5b9396929550929360400135925050565b60008060006060848603121561288b57600080fd5b612894846126cc565b92506128a2602085016126cc565b9150604084013590509250925092565b600080604083850312156128c557600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715612912576129126128d4565b604052919050565b60006001600160401b03831115612933576129336128d4565b612946601f8401601f19166020016128ea565b905082815283838301111561295a57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561298357600080fd5b81356001600160401b0381111561299957600080fd5b8201601f810184136129aa57600080fd5b6118ef8482356020840161291a565b6000602082840312156129cb57600080fd5b611890826126cc565b600080604083850312156129e757600080fd5b6129f0836126cc565b91506020830135612720816126a1565b60008060008060808587031215612a1657600080fd5b612a1f856126cc565b9350612a2d602086016126cc565b92506040850135915060608501356001600160401b03811115612a4f57600080fd5b8501601f81018713612a6057600080fd5b612a6f8782356020840161291a565b91505092959194509250565b600082601f830112612a8c57600080fd5b813560206001600160401b03821115612aa757612aa76128d4565b8160051b612ab68282016128ea565b9283528481018201928281019087851115612ad057600080fd5b83870192505b84831015612aef57823582529183019190830190612ad6565b979650505050505050565b60008060408385031215612b0d57600080fd5b8235915060208301356001600160401b03811115612b2a57600080fd5b612b3685828601612a7b565b9150509250929050565b60008060408385031215612b5357600080fd5b82359150612b63602084016126cc565b90509250929050565b60008060408385031215612b7f57600080fd5b82356001600160401b03811115612b9557600080fd5b612ba185828601612a7b565b95602094909401359450505050565b60008060408385031215612bc357600080fd5b612bcc836126cc565b9150612b63602084016126cc565b600181811c90821680612bee57607f821691505b602082108103612c0e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201612c5257612c52612c2a565b5060010190565b808202811582820484141761082057610820612c2a565b634e487b7160e01b600052601260045260246000fd5b600082612c9557612c95612c70565b500490565b8181038181111561082057610820612c2a565b601f82111561092457600081815260208120601f850160051c81016020861015612cd45750805b601f850160051c820191505b81811015612cf357828155600101612ce0565b505050505050565b81516001600160401b03811115612d1457612d146128d4565b612d2881612d228454612bda565b84612cad565b602080601f831160018114612d5d5760008415612d455750858301515b600019600386901b1c1916600185901b178555612cf3565b600085815260208120601f198616915b82811015612d8c57888601518255948401946001909101908401612d6d565b5085821015612daa5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b602080825260189082015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604082015260600190565b602080825260189082015277416c6c6f77206c697374206973206e6f742061637469766560401b604082015260600190565b8181036000831280158383131683831282161715612e3e57612e3e612c2a565b5092915050565b8082018082111561082057610820612c2a565b60ff828116828216039081111561082057610820612c2a565b80820260008212600160ff1b84141615612e8d57612e8d612c2a565b818105831482151761082057610820612c2a565b600082612eb057612eb0612c70565b600160ff1b821460001984141615612eca57612eca612c2a565b500590565b600084516020612ee28285838a0161272b565b855191840191612ef58184848a0161272b565b8554920191600090612f0681612bda565b60018281168015612f1e5760018114612f3357612f5f565b60ff1984168752821515830287019450612f5f565b896000528560002060005b84811015612f5757815489820152908301908701612f3e565b505082870194505b50929a9950505050505050505050565b600060208284031215612f8157600080fd5b8151611890816126a1565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906130a39083018461274f565b9695505050505050565b6000602082840312156130bf57600080fd5b81516118908161266e565b6020808252601c908201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b60408201526060019056fea2646970667358221220d118e0924f737cac092f20f21e4637529b86581d1a737100473b1c0579261dac64736f6c63430008130033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100ffb4c685c7a4de4319fd72e4a41f8995dee7b393b6f00e391c4d827004f9ef540000000000000000000000000000000000000000000000000000000000000005544f44454d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005544f44454d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d506b444b5163594831747a584a4a79624d724d43445758586e694b4d36424a533235766a36765636507674772f00000000000000000000

Deployed Bytecode

0x6080604052600436106102495760003560e01c80638da5cb5b116101355780638da5cb5b1461056257806395d89b4114610577578063992200691461058c578063a22cb465146105ac578063afcf2fc4146105cc578063b0ccc31e146105ec578063b88d4fde1461060c578063b8d1e5321461062c578063ba41b0c61461064c578063bcbc7f551461065f578063be174cf41461067f578063beca653514610695578063c057220f1461069d578063c87b56dd146106bd578063cef028e8146106dd578063d5abeb01146106fd578063da3ef23f14610713578063dab5f34014610733578063e985e9c514610753578063ebf0c71714610773578063eca4e55414610789578063ecba222a1461079f578063f2fde38b146107c0578063fb6f71a3146107e0578063fe3915971461080057600080fd5b806301ffc9a71461024e57806302329a291461028357806302fa7c47146102a557806306fdde03146102c5578063081812fc146102e7578063095ea7b31461031457806313faede61461033457806318160ddd146103585780631a5bcf011461036d57806323b872dd1461038d57806329fc6bae146103ad5780632a55205a146103cc5780633a73c58d1461040b5780633ccfd60b1461042b57806342842e0e1461043357806342e9a51c1461045357806344a0d68a14610473578063501d2a9b1461049357806355f804b3146104a85780635c975abb146104c85780635ef9432a146104e25780636352211e146104f757806370a0823114610517578063715018a614610537578063771282f61461054c575b600080fd5b34801561025a57600080fd5b5061026e610269366004612684565b610815565b60405190151581526020015b60405180910390f35b34801561028f57600080fd5b506102a361029e3660046126af565b610826565b005b3480156102b157600080fd5b506102a36102c03660046126e8565b610841565b3480156102d157600080fd5b506102da610857565b60405161027a919061277b565b3480156102f357600080fd5b5061030761030236600461278e565b6108e9565b60405161027a91906127a7565b34801561032057600080fd5b506102a361032f3660046127bb565b610910565b34801561034057600080fd5b5061034a600d5481565b60405190815260200161027a565b34801561036457600080fd5b50600f5461034a565b34801561037957600080fd5b506102a36103883660046127e5565b610929565b34801561039957600080fd5b506102a36103a8366004612876565b6109df565b3480156103b957600080fd5b50600c5461026e90610100900460ff1681565b3480156103d857600080fd5b506103ec6103e73660046128b2565b610a0a565b604080516001600160a01b03909316835260208301919091520161027a565b34801561041757600080fd5b506102a36104263660046126af565b610ab6565b6102a3610ad8565b34801561043f57600080fd5b506102a361044e366004612876565b610b91565b34801561045f57600080fd5b506102a361046e3660046127e5565b610bb6565b34801561047f57600080fd5b506102a361048e36600461278e565b610cae565b34801561049f57600080fd5b5061034a610cbb565b3480156104b457600080fd5b506102a36104c3366004612971565b610ce6565b3480156104d457600080fd5b50600c5461026e9060ff1681565b3480156104ee57600080fd5b506102a3610cfa565b34801561050357600080fd5b5061030761051236600461278e565b610d9f565b34801561052357600080fd5b5061034a6105323660046129b9565b610dd3565b34801561054357600080fd5b506102a3610e59565b34801561055857600080fd5b5061034a600f5481565b34801561056e57600080fd5b50610307610e6d565b34801561058357600080fd5b506102da610e81565b34801561059857600080fd5b506102a36105a73660046127e5565b610e90565b3480156105b857600080fd5b506102a36105c73660046129d4565b610f3f565b3480156105d857600080fd5b50601454610307906001600160a01b031681565b3480156105f857600080fd5b50600954610307906001600160a01b031681565b34801561061857600080fd5b506102a3610627366004612a00565b610f53565b34801561063857600080fd5b506102a36106473660046129b9565b610f79565b6102a361065a366004612afa565b611033565b34801561066b57600080fd5b5061034a61067a366004612b40565b611548565b34801561068b57600080fd5b5061034a60105481565b6102a36116ee565b3480156106a957600080fd5b506102a36106b83660046128b2565b6117a5565b3480156106c957600080fd5b506102da6106d836600461278e565b6117c9565b3480156106e957600080fd5b5061026e6106f8366004612b6c565b611897565b34801561070957600080fd5b5061034a600e5481565b34801561071f57600080fd5b506102a361072e366004612971565b6118f7565b34801561073f57600080fd5b506102a361074e36600461278e565b61190b565b34801561075f57600080fd5b5061026e61076e366004612bb0565b611918565b34801561077f57600080fd5b5061034a60155481565b34801561079557600080fd5b5061034a60115481565b3480156107ab57600080fd5b5060095461026e90600160a01b900460ff1681565b3480156107cc57600080fd5b506102a36107db3660046129b9565b611946565b3480156107ec57600080fd5b506102a36107fb3660046129b9565b6119bc565b34801561080c57600080fd5b5061034a6119e6565b600061082082611a02565b92915050565b61082e611a42565b600c805460ff1916911515919091179055565b610849611a42565b6108538282611aa1565b5050565b60606002805461086690612bda565b80601f016020809104026020016040519081016040528092919081815260200182805461089290612bda565b80156108df5780601f106108b4576101008083540402835291602001916108df565b820191906000526020600020905b8154815290600101906020018083116108c257829003601f168201915b5050505050905090565b60006108f482611b9a565b506000908152600660205260409020546001600160a01b031690565b8161091a81611bbf565b6109248383611c78565b505050565b610931611a42565b60005b838110156109d85760405180606001604052808460ff16815260200183815260200160008152506016600087878581811061097157610971612c14565b905060200201602081019061098691906129b9565b6001600160a01b0316815260208082019290925260409081016000208351815460ff191660ff9091161781559183015160018301559190910151600290910155806109d081612c40565b915050610934565b5050505050565b826001600160a01b03811633146109f9576109f933611bbf565b610a04848484611d88565b50505050565b60008281526001602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610a7f5750604080518082019091526000546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610a9e906001600160601b031687612c59565b610aa89190612c86565b915196919550909350505050565b610abe611a42565b600c80549115156101000261ff0019909216919091179055565b610ae0611a42565b6000610aea610e6d565b6001600160a01b03166064601154601354610b059190612c59565b610b0f9190612c86565b6064601054601254610b219190612c59565b610b2b9190612c86565b610b359047612c9a565b610b3f9190612c9a565b604051600081818185875af1925050503d8060008114610b7b576040519150601f19603f3d011682016040523d82523d6000602084013e610b80565b606091505b5050905080610b8e57600080fd5b50565b826001600160a01b0381163314610bab57610bab33611bbf565b610a04848484611db9565b610bbe611a42565b6064811315610c075760405162461bcd60e51b815260206004820152601060248201526f646973636f756e7420746f6f2062696760801b60448201526064015b60405180910390fd5b60005b838110156109d85760405180606001604052808460ff168152602001838152602001600181525060166000878785818110610c4757610c47612c14565b9050602002016020810190610c5c91906129b9565b6001600160a01b0316815260208082019290925260409081016000208351815460ff191660ff909116178155918301516001830155919091015160029091015580610ca681612c40565b915050610c0a565b610cb6611a42565b600d55565b6000610cc5611a42565b6064601054601254610cd79190612c59565b610ce19190612c86565b905090565b610cee611a42565b600a6108538282612cfb565b610d02610e6d565b6001600160a01b0316336001600160a01b031614610d3357604051635fc483c560e01b815260040160405180910390fd5b600954600160a01b900460ff1615610d5e57604051631551a48f60e11b815260040160405180910390fd5b600980546001600160a81b031916600160a01b1790556040517f51e2d870cc2e10853e38dc06fcdae46ad3c3f588f326608803dac6204541ad1690600090a1565b600080610dab83611dd4565b90506001600160a01b0381166108205760405162461bcd60e51b8152600401610bfe90612dba565b60006001600160a01b038216610e3d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610bfe565b506001600160a01b031660009081526005602052604090205490565b610e61611a42565b610e6b6000611def565b565b6000610ce16008546001600160a01b031690565b60606003805461086690612bda565b610e98611a42565b60005b838110156109d85760405180606001604052808460ff168152602001838152602001600281525060166000878785818110610ed857610ed8612c14565b9050602002016020810190610eed91906129b9565b6001600160a01b0316815260208082019290925260409081016000208351815460ff191660ff909116178155918301516001830155919091015160029091015580610f3781612c40565b915050610e9b565b81610f4981611bbf565b6109248383611e41565b836001600160a01b0381163314610f6d57610f6d33611bbf565b6109d885858585611e4c565b610f81610e6d565b6001600160a01b0316336001600160a01b031614610fb257604051635fc483c560e01b815260040160405180910390fd5b600954600160a01b900460ff1615610fdd57604051631551a48f60e11b815260040160405180910390fd5b600980546001600160a01b0319166001600160a01b0383161790556040517f9f513fe86dc42fdbac355fa4d9b1d5be7b5e6cd2df67e30db8003766568de476906110289083906127a7565b60405180910390a150565b61103d8183611897565b6110805760405162461bcd60e51b8152602060048201526014602482015273139bdd0818481d985b1a59081d1bdad95b881a5960621b6044820152606401610bfe565b600c5460ff16156110c45760405162461bcd60e51b815260206004820152600e60248201526d135a5b9d1a5b99c81c185d5cd95960921b6044820152606401610bfe565b600e54600f5411156111085760405162461bcd60e51b815260206004820152600d60248201526c135a5b9d1a5b99c8195b991959609a1b6044820152606401610bfe565b611110610e6d565b6001600160a01b0316336001600160a01b031614611522573360009081526016602052604090205460ff1660011180159061117757503360009081526016602052604090206002015415806111775750336000908152601660205260409020600290810154145b1561133357600c54610100900460ff166111a35760405162461bcd60e51b8152600401610bfe90612dec565b336000908152601660205260408120600101546111bf84611e7e565b6111c99190612e1e565b1361122057336000908152601660205260408120600290810154900361121a576111f283611e7e565b3360009081526016602052604081206001018054909190611214908490612e1e565b90915550505b506112d0565b3360009081526016602052604081206001015461123c84611e7e565b6112469190612e1e565b90508034101561125557600080fd5b63045f5f608310611272578060125461126e9190612e45565b6012555b6288a2208310158015611288575063045f5f6083105b1561129f578060135461129b9190612e45565b6013555b33600090815260166020526040902060029081015490036112ce57336000908152601660205260408120600101555b505b3360009081526016602052604081208054600192906112f390849060ff16612e58565b92506101000a81548160ff021916908360ff1602179055506113153383611e8e565b6001600f60008282546113289190612e45565b909155506108539050565b3360009081526016602052604090205460ff166001118015906113685750336000908152601660205260409020600201546001145b1561149757600c54610100900460ff166113945760405162461bcd60e51b8152600401610bfe90612dec565b336000908152601660205260408120600101546064906113b385611e7e565b6113bd9190612e71565b6113c79190612ea1565b6113d084611e7e565b6113da9190612e1e565b9050803410156113e957600080fd5b63045f5f60831061140657806012546114029190612e45565b6012555b6288a220831015801561141c575063045f5f6083105b15611433578060135461142f9190612e45565b6013555b33600090815260166020526040812080546001929061145690849060ff16612e58565b92506101000a81548160ff021916908360ff1602179055506114783384611e8e565b6001600f600082825461148b9190612e45565b90915550610853915050565b60006114a283611e7e565b9050803410156114b157600080fd5b63045f5f6083106114ce57806012546114ca9190612e45565b6012555b6288a22083101580156114e4575063045f5f6083105b156114fb57806013546114f79190612e45565b6013555b6115053384611e8e565b6001600f60008282546115189190612e45565b9091555050505050565b61152c3383611e8e565b6001600f600082825461153f9190612e45565b90915550505050565b6000611552610e6d565b6001600160a01b0316826001600160a01b0316146116e5576001600160a01b03821660009081526016602052604090205460ff166001118015906115d457506001600160a01b03821660009081526016602052604090206002015415806115d457506001600160a01b0382166000908152601660205260409020600290810154145b1561164b576001600160a01b0382166000908152601660205260408120600101546115fe85611e7e565b6116089190612e1e565b1361161557506000610820565b6001600160a01b03821660009081526016602052604090206001015461163a84611e7e565b6116449190612e1e565b9050610820565b6001600160a01b03821660009081526016602052604090205460ff1660011180159061169257506001600160a01b0382166000908152601660205260409020600201546001145b156116dc576001600160a01b0382166000908152601660205260409020600101546064906116bf85611e7e565b6116c99190612e71565b6116d39190612ea1565b61163a84611e7e565b61164483611e7e565b50600092915050565b6116f6611a42565b6014546011546013546000926001600160a01b0316916064916117199190612c59565b6117239190612c86565b60646010546012546117359190612c59565b61173f9190612c86565b6117499190612e45565b604051600081818185875af1925050503d8060008114611785576040519150601f19603f3d011682016040523d82523d6000602084013e61178a565b606091505b505090508061179857600080fd5b5060006012819055601355565b6117ad611a42565b806000036117bb5760108290555b806001036108535750601155565b60606117d482611ea8565b6118385760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bfe565b6000611842611ec5565b905060008151116118625760405180602001604052806000815250611890565b8061186c84611ed4565b600b60405160200161188093929190612ecf565b6040516020818303038152906040525b9392505050565b600080826040516020016118ad91815260200190565b60408051601f19818403018152828252805160209182012090830152016040516020818303038152906040528051906020012090506118ef8460155483611f66565b949350505050565b6118ff611a42565b600b6108538282612cfb565b611913611a42565b601555565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61194e611a42565b6001600160a01b0381166119b35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bfe565b610b8e81611def565b6119c4611a42565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b60006119f0611a42565b6064601154601354610cd79190612c59565b60006001600160e01b031982166380ac58cd60e01b1480611a3357506001600160e01b03198216635b5e139f60e01b145b80610820575061082082611f7c565b33611a4b610e6d565b6001600160a01b031614610e6b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bfe565b6127106001600160601b0382161115611b0f5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610bfe565b6001600160a01b038216611b615760405162461bcd60e51b815260206004820152601960248201527822a921991c9c189d1034b73b30b634b2103932b1b2b4bb32b960391b6044820152606401610bfe565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600055565b611ba381611ea8565b610b8e5760405162461bcd60e51b8152600401610bfe90612dba565b6009546001600160a01b03168015801590611be457506000816001600160a01b03163b115b1561085357604051633185c44d60e21b81523060048201526001600160a01b03838116602483015282169063c617113490604401602060405180830381865afa158015611c35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c599190612f6f565b6108535781604051633b79c77360e21b8152600401610bfe91906127a7565b6000611c8382610d9f565b9050806001600160a01b0316836001600160a01b031603611cf05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bfe565b336001600160a01b0382161480611d0c5750611d0c8133611918565b611d7e5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610bfe565b6109248383611fb1565b611d92338261201f565b611dae5760405162461bcd60e51b8152600401610bfe90612f8c565b61092483838361207d565b61092483838360405180602001604052806000815250610f53565b6000908152600460205260409020546001600160a01b031690565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108533383836121e1565b611e56338361201f565b611e725760405162461bcd60e51b8152600401610bfe90612f8c565b610a04848484846122ab565b6000600d54826108209190612c59565b6108538282604051806020016040528060008152506122de565b600080611eb483611dd4565b6001600160a01b0316141592915050565b6060600a805461086690612bda565b60606000611ee183612311565b60010190506000816001600160401b03811115611f0057611f006128d4565b6040519080825280601f01601f191660200182016040528015611f2a576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611f3457509392505050565b600082611f7385846123e7565b14949350505050565b60006001600160e01b0319821663152a902d60e11b148061082057506301ffc9a760e01b6001600160e01b0319831614610820565b600081815260066020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611fe682610d9f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061202b83610d9f565b9050806001600160a01b0316846001600160a01b0316148061205257506120528185611918565b806118ef5750836001600160a01b031661206b846108e9565b6001600160a01b031614949350505050565b826001600160a01b031661209082610d9f565b6001600160a01b0316146120b65760405162461bcd60e51b8152600401610bfe90612fd9565b6001600160a01b0382166121185760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bfe565b826001600160a01b031661212b82610d9f565b6001600160a01b0316146121515760405162461bcd60e51b8152600401610bfe90612fd9565b600081815260066020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260058552838620805460001901905590871680865283862080546001019055868652600490945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b816001600160a01b0316836001600160a01b03160361223e5760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b6044820152606401610bfe565b6001600160a01b03838116600081815260076020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6122b684848461207d565b6122c284848484612434565b610a045760405162461bcd60e51b8152600401610bfe9061301e565b6122e88383612535565b6122f56000848484612434565b6109245760405162461bcd60e51b8152600401610bfe9061301e565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106123505772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6904ee2d6d415b85acef8160201b831061237a576904ee2d6d415b85acef8160201b830492506020015b662386f26fc10000831061239857662386f26fc10000830492506010015b6305f5e10083106123b0576305f5e100830492506008015b61271083106123c457612710830492506004015b606483106123d6576064830492506002015b600a83106108205760010192915050565b600081815b845181101561242c576124188286838151811061240b5761240b612c14565b6020026020010151612642565b91508061242481612c40565b9150506123ec565b509392505050565b60006001600160a01b0384163b1561252a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612478903390899088908890600401613070565b6020604051808303816000875af19250505080156124b3575060408051601f3d908101601f191682019092526124b0918101906130ad565b60015b612510573d8080156124e1576040519150601f19603f3d011682016040523d82523d6000602084013e6124e6565b606091505b5080516000036125085760405162461bcd60e51b8152600401610bfe9061301e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118ef565b506001949350505050565b6001600160a01b03821661258b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610bfe565b61259481611ea8565b156125b15760405162461bcd60e51b8152600401610bfe906130ca565b6125ba81611ea8565b156125d75760405162461bcd60e51b8152600401610bfe906130ca565b6001600160a01b038216600081815260056020908152604080832080546001019055848352600490915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600081831061265e576000828152602084905260409020611890565b5060009182526020526040902090565b6001600160e01b031981168114610b8e57600080fd5b60006020828403121561269657600080fd5b81356118908161266e565b8015158114610b8e57600080fd5b6000602082840312156126c157600080fd5b8135611890816126a1565b80356001600160a01b03811681146126e357600080fd5b919050565b600080604083850312156126fb57600080fd5b612704836126cc565b915060208301356001600160601b038116811461272057600080fd5b809150509250929050565b60005b8381101561274657818101518382015260200161272e565b50506000910152565b6000815180845261276781602086016020860161272b565b601f01601f19169290920160200192915050565b602081526000611890602083018461274f565b6000602082840312156127a057600080fd5b5035919050565b6001600160a01b0391909116815260200190565b600080604083850312156127ce57600080fd5b6127d7836126cc565b946020939093013593505050565b600080600080606085870312156127fb57600080fd5b84356001600160401b038082111561281257600080fd5b818701915087601f83011261282657600080fd5b81358181111561283557600080fd5b8860208260051b850101111561284a57600080fd5b6020928301965094505085013560ff8116811461286657600080fd5b9396929550929360400135925050565b60008060006060848603121561288b57600080fd5b612894846126cc565b92506128a2602085016126cc565b9150604084013590509250925092565b600080604083850312156128c557600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715612912576129126128d4565b604052919050565b60006001600160401b03831115612933576129336128d4565b612946601f8401601f19166020016128ea565b905082815283838301111561295a57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561298357600080fd5b81356001600160401b0381111561299957600080fd5b8201601f810184136129aa57600080fd5b6118ef8482356020840161291a565b6000602082840312156129cb57600080fd5b611890826126cc565b600080604083850312156129e757600080fd5b6129f0836126cc565b91506020830135612720816126a1565b60008060008060808587031215612a1657600080fd5b612a1f856126cc565b9350612a2d602086016126cc565b92506040850135915060608501356001600160401b03811115612a4f57600080fd5b8501601f81018713612a6057600080fd5b612a6f8782356020840161291a565b91505092959194509250565b600082601f830112612a8c57600080fd5b813560206001600160401b03821115612aa757612aa76128d4565b8160051b612ab68282016128ea565b9283528481018201928281019087851115612ad057600080fd5b83870192505b84831015612aef57823582529183019190830190612ad6565b979650505050505050565b60008060408385031215612b0d57600080fd5b8235915060208301356001600160401b03811115612b2a57600080fd5b612b3685828601612a7b565b9150509250929050565b60008060408385031215612b5357600080fd5b82359150612b63602084016126cc565b90509250929050565b60008060408385031215612b7f57600080fd5b82356001600160401b03811115612b9557600080fd5b612ba185828601612a7b565b95602094909401359450505050565b60008060408385031215612bc357600080fd5b612bcc836126cc565b9150612b63602084016126cc565b600181811c90821680612bee57607f821691505b602082108103612c0e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201612c5257612c52612c2a565b5060010190565b808202811582820484141761082057610820612c2a565b634e487b7160e01b600052601260045260246000fd5b600082612c9557612c95612c70565b500490565b8181038181111561082057610820612c2a565b601f82111561092457600081815260208120601f850160051c81016020861015612cd45750805b601f850160051c820191505b81811015612cf357828155600101612ce0565b505050505050565b81516001600160401b03811115612d1457612d146128d4565b612d2881612d228454612bda565b84612cad565b602080601f831160018114612d5d5760008415612d455750858301515b600019600386901b1c1916600185901b178555612cf3565b600085815260208120601f198616915b82811015612d8c57888601518255948401946001909101908401612d6d565b5085821015612daa5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b602080825260189082015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604082015260600190565b602080825260189082015277416c6c6f77206c697374206973206e6f742061637469766560401b604082015260600190565b8181036000831280158383131683831282161715612e3e57612e3e612c2a565b5092915050565b8082018082111561082057610820612c2a565b60ff828116828216039081111561082057610820612c2a565b80820260008212600160ff1b84141615612e8d57612e8d612c2a565b818105831482151761082057610820612c2a565b600082612eb057612eb0612c70565b600160ff1b821460001984141615612eca57612eca612c2a565b500590565b600084516020612ee28285838a0161272b565b855191840191612ef58184848a0161272b565b8554920191600090612f0681612bda565b60018281168015612f1e5760018114612f3357612f5f565b60ff1984168752821515830287019450612f5f565b896000528560002060005b84811015612f5757815489820152908301908701612f3e565b505082870194505b50929a9950505050505050505050565b600060208284031215612f8157600080fd5b8151611890816126a1565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906130a39083018461274f565b9695505050505050565b6000602082840312156130bf57600080fd5b81516118908161266e565b6020808252601c908201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b60408201526060019056fea2646970667358221220d118e0924f737cac092f20f21e4637529b86581d1a737100473b1c0579261dac64736f6c63430008130033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100ffb4c685c7a4de4319fd72e4a41f8995dee7b393b6f00e391c4d827004f9ef540000000000000000000000000000000000000000000000000000000000000005544f44454d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005544f44454d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d506b444b5163594831747a584a4a79624d724d43445758586e694b4d36424a533235766a36765636507674772f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): TODEM
Arg [1] : _symbol (string): TODEM
Arg [2] : _initBaseURI (string): ipfs://QmPkDKQcYH1tzXJJybMrMCDWXXniKM6BJS25vj6vV6Pvtw/
Arg [3] : _root (bytes32): 0xffb4c685c7a4de4319fd72e4a41f8995dee7b393b6f00e391c4d827004f9ef54

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : ffb4c685c7a4de4319fd72e4a41f8995dee7b393b6f00e391c4d827004f9ef54
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 544f44454d000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 544f44454d000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d506b444b5163594831747a584a4a79624d724d43445758
Arg [10] : 586e694b4d36424a533235766a36765636507674772f00000000000000000000


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.