ETH Price: $2,113.69 (-3.38%)

Token

NFTArtGenCreatorImpl (ArtGen)
 

Overview

Max Total Supply

1,000,000 ArtGen

Holders

1

Transfers

-
0 (0%)

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
NFTArtGenCreatorImpl

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 0 runs

Other Settings:
default evmVersion
import "./NFTArtGenUpgradeable.sol";

contract NFTArtGenCreatorImpl is NFTArtGenUpgradeable {
  function initialize(
    string memory _name,
    string memory _symbol,
    uint256 _maxSupply,
    uint256 _commission
  ) public initializer {
    __NFTArtGen_init(_name, _symbol, _maxSupply, _commission);
  }
}

File 2 of 29 : NFTArtGenUpgradeable.sol
// SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.8.7;
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/math/MathUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/structs/EnumerableSetUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";

import "./utils/ERC721AUpgradeable.sol";
import "./utils/ERC721ABurnableUpgradeable.sol";
import "./utils/ERC721AQueryableUpgradeable.sol";
import "./utils/filters/DefaultOperatorFiltererUpgradeable.sol";
import "./utils/abstracts/TeamMembersUpgradeable.sol";

import "./interfaces/INFTArtGen.sol";

contract NFTArtGenUpgradeable is
  Initializable,
  IERC2981,
  ERC721AUpgradeable,
  ERC721ABurnableUpgradeable,
  ERC721AQueryableUpgradeable,
  TeamMembersUpgradeable,
  DefaultOperatorFiltererUpgradeable,
  INFTArtGen
{
  using AddressUpgradeable for address;
  using StringsUpgradeable for uint256;
  using MathUpgradeable for uint256;
  using EnumerableSetUpgradeable for EnumerableSetUpgradeable.UintSet;

  uint32 public maxPerMint;
  uint32 public maxPerWallet;
  uint32 public maxFreeMint;
  uint256 public pauseMintAt;
  uint256 public cost;
  bool public open;
  bool public revealed;
  bool public presaleOpen;
  bool public referralOpen;
  uint256 public referralCap;
  address public reqToken;
  uint256 internal maxSupply;
  string internal baseUri;
  address internal recipient;
  uint256 internal recipientFee;
  string internal uriNotRevealed;
  bytes32 private merkleRoot;
  mapping(address => uint256) private referralMap;
  mapping(address => uint256) private _freeMints;
  address private constant _NFTGen = 0x460Fd5059E7301680fA53E63bbBF7272E643e89C;
  mapping(address => uint256) private _shares;
  address[] private _payees;

  function __NFTArtGen_init(
    string memory _name,
    string memory _symbol,
    uint256 _maxSupply,
    uint256 _commission
  ) internal onlyInitializing {
    __ERC721A_init(_name, _symbol);
    __ERC721ABurnable_init();
    __ERC721AQueryable_init();
    __Ownable_init();
    __DefaultOperatorFilterer_init();
    maxSupply = _maxSupply;
    revealed = false;

    _shares[_NFTGen] = _commission;
    _shares[owner()] = 1000 - _commission;
    _payees.push(_NFTGen);
    _payees.push(owner());
  }

  // ------ Dev Only ------

  function setCommission(uint256 _val1) external override {
    require(msg.sender == _NFTGen, "Invalid address");
    uint256 diff = _shares[_NFTGen] - _val1;
    _shares[_NFTGen] = _val1;
    _shares[_payees[1]] += diff;
  }

  // ------ Owner Only ------

  function updateSale(
    bool _open,
    uint256 _cost,
    uint32 _maxW,
    uint32 _maxM
  ) external override onlyTeamOrOwner {
    open = _open;
    cost = _cost;
    maxPerWallet = _maxW;
    maxPerMint = _maxM;
  }

  function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }

  function updateReqToken(address _address) external override onlyTeamOrOwner {
    reqToken = _address;
  }

  function updatePresale(bool _open, bytes32 root)
    external
    override
    onlyTeamOrOwner
  {
    presaleOpen = _open;
    merkleRoot = root;
  }

  function updateReveal(bool _revealed, string memory _uri)
    external
    override
    onlyTeamOrOwner
  {
    revealed = _revealed;

    if (_revealed == false) {
      uriNotRevealed = _uri;
    }

    if (_revealed == true) {
      bytes memory b1 = bytes(baseUri);
      if (b1.length == 0) {
        baseUri = _uri;
      }
    }
  }

  function updateMaxFreeMint(uint32 _cap) external override onlyTeamOrOwner {
    maxFreeMint = _cap;
  }

  function updatePauseMintAt(uint256 _pauseAt)
    external
    override
    onlyTeamOrOwner
  {
    require(_pauseAt >= supply(), "Invalid value");
    pauseMintAt = _pauseAt;
  }

  function updateBaseUri(string memory _uri) external override onlyTeamOrOwner {
    baseUri = _uri;
  }

  function updateWithdrawSplit(
    address[] memory _addresses,
    uint256[] memory _fees
  ) external override onlyOwner {
    for (uint256 i = 1; i < _payees.length; i++) {
      delete _shares[_payees[i]];
    }
    _payees = new address[](_addresses.length + 1);
    _payees[0] = _NFTGen;

    for (uint256 i = 0; i < _addresses.length; i++) {
      _shares[_addresses[i]] = _fees[i];
      _payees[i + 1] = _addresses[i];
    }
  }

  function getWithdrawSplit()
    external
    view
    override
    returns (address[] memory, uint256[] memory)
  {
    uint256[] memory values = new uint256[](_payees.length);

    for (uint256 i = 0; i < _payees.length; i++) {
      values[i] = _shares[_payees[i]];
    }

    return (_payees, values);
  }

  function updateReferral(bool _open, uint256 _val)
    external
    override
    onlyTeamOrOwner
  {
    referralOpen = _open;
    referralCap = _val;
  }

  function updateRoyalties(address _recipient, uint256 _fee)
    external
    override
    onlyTeamOrOwner
  {
    recipient = _recipient;
    recipientFee = _fee;
  }

  function withdraw() external payable override {
    uint256 balance = address(this).balance;
    require(balance > 0, "Zero balance");

    for (uint256 i = 0; i < _payees.length; i++) {
      uint256 split = _shares[_payees[i]];
      uint256 value = ((split * balance) / 1000);
      AddressUpgradeable.sendValue(payable(_payees[i]), value);
    }
  }

  // ------ Mint! ------
  function airdrop(address[] memory _recipients, uint256[] memory _amount)
    external
    override
    onlyTeamOrOwner
  {
    require(_recipients.length == _amount.length);

    for (uint256 i = 0; i < _amount.length; i++) {
      require(supply() + _amount[i] <= totalSupply(), "reached max supply");
      _safeMint(_recipients[i], _amount[i]);
    }
  }

  function mint(uint256 count)
    external
    payable
    override
    preMintChecks(count, msg.sender)
    postMintChecks
  {
    require(open == true, "Mint not open");
    _safeMint(msg.sender, count);
  }

  function mintTo(uint256 count, address to)
    external
    payable
    override
    preMintChecks(count, to)
    postMintChecks
  {
    require(open == true, "Mint not open");
    _safeMint(to, count);
  }

  function mintAll() external payable override onlyOwner {
    if (msg.value > 0) {
      AddressUpgradeable.sendValue(payable(_NFTGen), msg.value);
    }

    _safeMint(owner(), totalSupply() - supply());
  }

  function presaleMint(uint32 count, bytes32[] calldata proof)
    external
    payable
    override
    preMintChecks(count, msg.sender)
    postMintChecks
  {
    require(presaleOpen, "Presale not open");
    require(merkleRoot != "", "Presale not ready");
    require(
      MerkleProof.verify(
        proof,
        merkleRoot,
        keccak256(abi.encodePacked(msg.sender))
      ),
      "Not a presale member"
    );

    _safeMint(msg.sender, count);
  }

  function presaleMintTo(
    uint32 count,
    bytes32[] calldata proof,
    address to
  ) external payable override preMintChecks(count, to) postMintChecks {
    require(presaleOpen, "Presale not open");
    require(merkleRoot != "", "Presale not ready");
    require(
      MerkleProof.verify(proof, merkleRoot, keccak256(abi.encodePacked(to))),
      "Not a presale member"
    );

    _safeMint(to, count);
  }

  function referralMint(uint32 count, address referrer)
    external
    payable
    override
    preMintChecks(count, msg.sender)
    postMintChecks
  {
    require(referralOpen == true, "Referrals not open");
    require(open == true, "Mint not open");
    require(referralCap > 0, "Cap is set to zero");
    require(_numberMinted(referrer) > 0, "Referrer has not minted");
    require(msg.sender != referrer, "Cannot refer yourself");

    _safeMint(msg.sender, count);

    referralMap[referrer] += 1;
    if (referralMap[referrer] % referralCap == 0) {
      if (supply() < totalSupply()) {
        _safeMint(referrer, 1);
      }
    }
  }

  function referralMintTo(
    uint32 count,
    address referrer,
    address to
  ) external payable override preMintChecks(count, to) postMintChecks {
    require(referralOpen == true, "Referrals not open");
    require(open == true, "Mint not open");
    require(referralCap > 0, "Cap is set to zero");
    require(_numberMinted(referrer) > 0, "Referrer has not minted");
    require(to != referrer, "Cannot refer yourself");

    _safeMint(to, count);

    referralMap[referrer] += 1;
    if (referralMap[referrer] % referralCap == 0) {
      if (supply() < totalSupply()) {
        _safeMint(referrer, 1);
      }
    }
  }

  // ------ Read ------
  function supply() public view override returns (uint256) {
    return _currentIndex - 1;
  }

  function totalSupply()
    public
    view
    override(ERC721AUpgradeable, INFTArtGen)
    returns (uint256)
  {
    return maxSupply - _burnCounter;
  }

  function numberMintedOfOwner(address _address)
    external
    view
    override
    returns (uint256)
  {
    return _numberMinted(_address);
  }

  function remainingMintsOfOwner(address _address)
    external
    view
    override
    returns (uint256)
  {
    return maxPerWallet - _numberMinted(_address);
  }

  function mintCostOfOwner(address _address, uint256 _count)
    public
    view
    override
    returns (uint256)
  {
    uint256 mintedSoFar = _numberMinted(_address);
    if (maxFreeMint > 0 && mintedSoFar < maxFreeMint) {
      return
        cost *
        (_count - MathUpgradeable.min(_count, maxFreeMint - mintedSoFar));
    }

    return _count * cost;
  }

  function supportsInterface(bytes4 interfaceId)
    public
    view
    override(ERC721AUpgradeable, IERC165)
    returns (bool)
  {
    return
      interfaceId == type(IERC2981).interfaceId ||
      super.supportsInterface(interfaceId);
  }

  function royaltyInfo(uint256 _tokenId, uint256 _salePrice)
    external
    view
    override
    returns (address receiver, uint256 royaltyAmount)
  {
    return (recipient, (_salePrice * recipientFee) / 1000);
  }

  function affiliatesOf(address wallet)
    external
    view
    virtual
    override
    returns (uint256)
  {
    return referralMap[wallet];
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    override
    returns (string memory)
  {
    require(_exists(_tokenId), "Does not exist");
    if (revealed == false) {
      return
        string(
          abi.encodePacked(
            uriNotRevealed,
            StringsUpgradeable.toString(_tokenId),
            ".json"
          )
        );
    }

    return
      string(
        abi.encodePacked(
          baseUri,
          StringsUpgradeable.toString(_tokenId),
          ".json"
        )
      );
  }

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

  modifier preMintChecks(uint256 count, address to) {
    require(count > 0, "Mint at least one.");
    require(count <= maxPerMint, "Max mint reached.");
    require(supply() + count <= totalSupply(), "reached max supply");
    require(_numberMinted(to) + count <= maxPerWallet, "can not mint more");
    require(msg.value >= mintCostOfOwner(to, count), "Not enough fund.");

    if (pauseMintAt > 0) {
      require(supply() + count <= pauseMintAt, "reached pause supply");
    }

    if (reqToken != address(0)) {
      IERC721 accessToken = IERC721(reqToken);
      require(accessToken.balanceOf(msg.sender) > 0, "Access token not owned");
    }

    _;
  }

  modifier postMintChecks() {
    _;

    if (pauseMintAt > 0 && supply() >= pauseMintAt) {
      open = false;
      presaleOpen = false;
      pauseMintAt = 0;
    }
  }

  function addressAndUintToBytes(address _address, uint256 _uint)
    public
    pure
    returns (bytes memory)
  {
    return bytes(abi.encodePacked(_address, _uint));
  }

  // copy pasta https://github.com/GNSPS/solidity-bytes-utils/blob/6458fb2780a3092bc756e737f246be1de6d3d362/contracts/BytesLib.sol
  function toAddress(bytes memory _bytes, uint256 _start)
    internal
    pure
    returns (address)
  {
    require(_bytes.length >= _start + 20, "toAddress_outOfBounds");
    address tempAddress;

    assembly {
      tempAddress := div(
        mload(add(add(_bytes, 0x20), _start)),
        0x1000000000000000000000000
      )
    }

    return tempAddress;
  }

  function toUint256(bytes memory _bytes, uint256 _start)
    internal
    pure
    returns (uint256)
  {
    require(_bytes.length >= _start + 32, "toUint256_outOfBounds");
    uint256 tempUint;

    assembly {
      tempUint := mload(add(add(_bytes, 0x20), _start))
    }

    return tempUint;
  }

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

File 3 of 29 : Initializable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (proxy/utils/Initializable.sol)

pragma solidity ^0.8.2;

import "../../utils/AddressUpgradeable.sol";

/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
 * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
 * case an upgrade adds a module that needs to be initialized.
 *
 * For example:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * contract MyToken is ERC20Upgradeable {
 *     function initialize() initializer public {
 *         __ERC20_init("MyToken", "MTK");
 *     }
 * }
 * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
 *     function initializeV2() reinitializer(2) public {
 *         __ERC20Permit_init("MyToken");
 *     }
 * }
 * ```
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 *
 * [CAUTION]
 * ====
 * Avoid leaving a contract uninitialized.
 *
 * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
 * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
 * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * /// @custom:oz-upgrades-unsafe-allow constructor
 * constructor() {
 *     _disableInitializers();
 * }
 * ```
 * ====
 */
abstract contract Initializable {
    /**
     * @dev Indicates that the contract has been initialized.
     * @custom:oz-retyped-from bool
     */
    uint8 private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Triggered when the contract has been initialized or reinitialized.
     */
    event Initialized(uint8 version);

    /**
     * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
     * `onlyInitializing` functions can be used to initialize parent contracts. Equivalent to `reinitializer(1)`.
     */
    modifier initializer() {
        bool isTopLevelCall = !_initializing;
        require(
            (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),
            "Initializable: contract is already initialized"
        );
        _initialized = 1;
        if (isTopLevelCall) {
            _initializing = true;
        }
        _;
        if (isTopLevelCall) {
            _initializing = false;
            emit Initialized(1);
        }
    }

    /**
     * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
     * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
     * used to initialize parent contracts.
     *
     * `initializer` is equivalent to `reinitializer(1)`, so a reinitializer may be used after the original
     * initialization step. This is essential to configure modules that are added through upgrades and that require
     * initialization.
     *
     * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
     * a contract, executing them in the right order is up to the developer or operator.
     */
    modifier reinitializer(uint8 version) {
        require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
        _initialized = version;
        _initializing = true;
        _;
        _initializing = false;
        emit Initialized(version);
    }

    /**
     * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
     * {initializer} and {reinitializer} modifiers, directly or indirectly.
     */
    modifier onlyInitializing() {
        require(_initializing, "Initializable: contract is not initializing");
        _;
    }

    /**
     * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
     * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
     * to any version. It is recommended to use this to lock implementation contracts that are designed to be called
     * through proxies.
     */
    function _disableInitializers() internal virtual {
        require(!_initializing, "Initializable: contract is initializing");
        if (_initialized < type(uint8).max) {
            _initialized = type(uint8).max;
            emit Initialized(type(uint8).max);
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library AddressUpgradeable {
    /**
     * @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
     * ====
     *
     * [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://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason 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 {
            // 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);
            }
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library MathUpgradeable {
    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) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 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. It 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)`.
        // We also know that `k`, the position of the most significant bit, is such that `msb(a) = 2**k`.
        // This gives `2**k < a <= 2**(k+1)` → `2**(k/2) <= sqrt(a) < 2 ** (k/2+1)`.
        // Using an algorithm similar to the msb conmputation, we are able to compute `result = 2**(k/2)` which is a
        // good first aproximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1;
        uint256 x = a;
        if (x >> 128 > 0) {
            x >>= 128;
            result <<= 64;
        }
        if (x >> 64 > 0) {
            x >>= 64;
            result <<= 32;
        }
        if (x >> 32 > 0) {
            x >>= 32;
            result <<= 16;
        }
        if (x >> 16 > 0) {
            x >>= 16;
            result <<= 8;
        }
        if (x >> 8 > 0) {
            x >>= 8;
            result <<= 4;
        }
        if (x >> 4 > 0) {
            x >>= 4;
            result <<= 2;
        }
        if (x >> 2 > 0) {
            result <<= 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) {
        uint256 result = sqrt(a);
        if (rounding == Rounding.Up && result * result < a) {
            result += 1;
        }
        return result;
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/structs/EnumerableSet.sol)

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 *
 * [WARNING]
 * ====
 *  Trying to delete such a structure from storage will likely result in data corruption, rendering the structure unusable.
 *  See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
 *
 *  In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an array of EnumerableSet.
 * ====
 */
library EnumerableSetUpgradeable {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastValue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastValue;
                // Update the index for the moved value
                set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        return _values(set._inner);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library StringsUpgradeable {
    bytes16 private constant _HEX_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) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * 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.
 */
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 proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _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}
     *
     * _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 the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild 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 for 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) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild 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 for 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) {
            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)
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.7;

import "./IERC721AUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC721/IERC721ReceiverUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721AUpgradeable is
  Initializable,
  ContextUpgradeable,
  ERC165Upgradeable,
  IERC721AUpgradeable
{
  using AddressUpgradeable for address;
  using StringsUpgradeable for uint256;

  // The tokenId of the next token to be minted.
  uint256 internal _currentIndex;

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

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) internal _ownerships;

  // Mapping owner address to address data
  mapping(address => AddressData) private _addressData;

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

  function __ERC721A_init(string memory name_, string memory symbol_)
    internal
    onlyInitializing
  {
    __ERC721A_init_unchained(name_, symbol_);
  }

  function __ERC721A_init_unchained(string memory name_, string memory symbol_)
    internal
    onlyInitializing
  {
    _name = name_;
    _symbol = symbol_;
    _currentIndex = _startTokenId();
  }

  /**
   * To change the starting tokenId, please override this function.
   */
  function _startTokenId() internal view virtual returns (uint256) {
    return 0;
  }

  /**
   * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
   */
  function totalSupply() public view virtual override returns (uint256) {
    // Counter underflow is impossible as _burnCounter cannot be incremented
    // more than _currentIndex - _startTokenId() times
    unchecked {
      return _currentIndex - _burnCounter - _startTokenId();
    }
  }

  /**
   * Returns the total amount of tokens minted in the contract.
   */
  function _totalMinted() internal view returns (uint256) {
    // Counter underflow is impossible as _currentIndex does not decrement,
    // and it is initialized to _startTokenId()
    unchecked {
      return _currentIndex - _startTokenId();
    }
  }

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

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

  /**
   * Returns the number of tokens minted by `owner`.
   */
  function _numberMinted(address owner) internal view returns (uint256) {
    return uint256(_addressData[owner].numberMinted);
  }

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

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

  /**
   * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
   * If there are multiple variables, please pack them into a uint64.
   */
  function _setAux(address owner, uint64 aux) internal {
    _addressData[owner].aux = aux;
  }

  /**
   * Gas spent here starts off proportional to the maximum mint batch size.
   * It gradually moves to O(1) as tokens get transferred around in the collection over time.
   */
  function _ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    uint256 curr = tokenId;

    unchecked {
      if (_startTokenId() <= curr)
        if (curr < _currentIndex) {
          TokenOwnership memory ownership = _ownerships[curr];
          if (!ownership.burned) {
            if (ownership.addr != address(0)) {
              return ownership;
            }
            // Invariant:
            // There will always be an ownership that has an address and is not burned
            // before an ownership that does not have an address and is not burned.
            // Hence, curr will not underflow.
            while (true) {
              curr--;
              ownership = _ownerships[curr];
              if (ownership.addr != address(0)) {
                return ownership;
              }
            }
          }
        }
    }
    revert OwnerQueryForNonexistentToken();
  }

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

  /**
   * @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)
  {
    if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

  /**
   * @dev See {IERC721-approve}.
   */
  function approve(address to, uint256 tokenId) public override {
    address owner = ERC721AUpgradeable.ownerOf(tokenId);
    if (to == owner) revert ApprovalToCurrentOwner();

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

    _approve(to, tokenId, owner);
  }

  /**
   * @dev See {IERC721-getApproved}.
   */
  function getApproved(uint256 tokenId) public view override returns (address) {
    if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved)
    public
    virtual
    override
  {
    if (operator == _msgSender()) revert ApproveToCaller();

    _operatorApprovals[_msgSender()][operator] = approved;
    emit ApprovalForAll(_msgSender(), operator, approved);
  }

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

  /**
   * @dev See {IERC721-transferFrom}.
   */
  function transferFrom(
    address from,
    address to,
    uint256 tokenId
  ) public virtual override {
    _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 {
    _transfer(from, to, tokenId);
    if (to.isContract())
      if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
        revert TransferToNonERC721ReceiverImplementer();
      }
  }

  /**
   * @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`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return
      _startTokenId() <= tokenId &&
      tokenId < _currentIndex &&
      !_ownerships[tokenId].burned;
  }

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

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

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

    // Overflows are incredibly unrealistic.
    // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
    // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
    unchecked {
      _addressData[to].balance += uint64(quantity);
      _addressData[to].numberMinted += uint64(quantity);

      _ownerships[startTokenId].addr = to;
      _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

      uint256 updatedIndex = startTokenId;
      uint256 end = updatedIndex + quantity;

      if (to.isContract()) {
        do {
          emit Transfer(address(0), to, updatedIndex);
          if (
            !_checkContractOnERC721Received(
              address(0),
              to,
              updatedIndex++,
              _data
            )
          ) {
            revert TransferToNonERC721ReceiverImplementer();
          }
        } while (updatedIndex < end);
        // Reentrancy protection
        if (_currentIndex != startTokenId) revert();
      } else {
        do {
          emit Transfer(address(0), to, updatedIndex++);
        } while (updatedIndex < end);
      }
      _currentIndex = updatedIndex;
    }
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

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

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

    // Overflows are incredibly unrealistic.
    // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
    // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
    unchecked {
      _addressData[to].balance += uint64(quantity);
      _addressData[to].numberMinted += uint64(quantity);

      _ownerships[startTokenId].addr = to;
      _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

      uint256 updatedIndex = startTokenId;
      uint256 end = updatedIndex + quantity;

      do {
        emit Transfer(address(0), to, updatedIndex++);
      } while (updatedIndex < end);

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

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * 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
  ) private {
    TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

    if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

    bool isApprovedOrOwner = (_msgSender() == from ||
      isApprovedForAll(from, _msgSender()) ||
      getApproved(tokenId) == _msgSender());

    if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
    if (to == address(0)) revert TransferToZeroAddress();

    _beforeTokenTransfers(from, to, tokenId, 1);

    // Clear approvals from the previous owner
    _approve(address(0), tokenId, from);

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

      TokenOwnership storage currSlot = _ownerships[tokenId];
      currSlot.addr = to;
      currSlot.startTimestamp = uint64(block.timestamp);

      // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
      // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
      uint256 nextTokenId = tokenId + 1;
      TokenOwnership storage nextSlot = _ownerships[nextTokenId];
      if (nextSlot.addr == address(0)) {
        // This will suffice for checking _exists(nextTokenId),
        // as a burned slot cannot contain the zero address.
        if (nextTokenId != _currentIndex) {
          nextSlot.addr = from;
          nextSlot.startTimestamp = prevOwnership.startTimestamp;
        }
      }
    }

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

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

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

    address from = prevOwnership.addr;

    if (approvalCheck) {
      bool isApprovedOrOwner = (_msgSender() == from ||
        isApprovedForAll(from, _msgSender()) ||
        getApproved(tokenId) == _msgSender());

      if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
    }

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

    // Clear approvals from the previous owner
    _approve(address(0), tokenId, from);

    // Underflow of the sender's balance is impossible because we check for
    // ownership above and the recipient's balance can't realistically overflow.
    // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
    unchecked {
      AddressData storage addressData = _addressData[from];
      addressData.balance -= 1;
      addressData.numberBurned += 1;

      // Keep track of who burned the token, and the timestamp of burning.
      TokenOwnership storage currSlot = _ownerships[tokenId];
      currSlot.addr = from;
      currSlot.startTimestamp = uint64(block.timestamp);
      currSlot.burned = true;

      // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
      // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
      uint256 nextTokenId = tokenId + 1;
      TokenOwnership storage nextSlot = _ownerships[nextTokenId];
      if (nextSlot.addr == address(0)) {
        // This will suffice for checking _exists(nextTokenId),
        // as a burned slot cannot contain the zero address.
        if (nextTokenId != _currentIndex) {
          nextSlot.addr = from;
          nextSlot.startTimestamp = prevOwnership.startTimestamp;
        }
      }
    }

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

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

  /**
   * @dev Approve `to` to operate on `tokenId`
   *
   * Emits a {Approval} event.
   */
  function _approve(
    address to,
    uint256 tokenId,
    address owner
  ) private {
    _tokenApprovals[tokenId] = to;
    emit Approval(owner, to, tokenId);
  }

  /**
   * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) private returns (bool) {
    try
      IERC721ReceiverUpgradeable(to).onERC721Received(
        _msgSender(),
        from,
        tokenId,
        _data
      )
    returns (bytes4 retval) {
      return retval == IERC721ReceiverUpgradeable(to).onERC721Received.selector;
    } catch (bytes memory reason) {
      if (reason.length == 0) {
        revert TransferToNonERC721ReceiverImplementer();
      } else {
        assembly {
          revert(add(32, reason), mload(reason))
        }
      }
    }
  }

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   * And also called before burning one token.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
   * transferred to `to`.
   * - When `from` is zero, `tokenId` will be minted for `to`.
   * - When `to` is zero, `tokenId` will be burned by `from`.
   * - `from` and `to` are never both zero.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   * And also called after one token has been burned.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
   * transferred to `to`.
   * - When `from` is zero, `tokenId` has been minted for `to`.
   * - When `to` is zero, `tokenId` has been burned by `from`.
   * - `from` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  /**
   * @dev This empty reserved space is put in place to allow future versions to add new
   * variables without shifting down storage in the inheritance chain.
   * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
   */
  uint256[42] private __gap;
}

// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.7;

import "./IERC721ABurnableUpgradeable.sol";
import "./ERC721AUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";

/**
 * @title ERC721A Burnable Token
 * @dev ERC721A Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721ABurnableUpgradeable is
  Initializable,
  ERC721AUpgradeable,
  IERC721ABurnableUpgradeable
{
  function __ERC721ABurnable_init() internal onlyInitializing {}

  function __ERC721ABurnable_init_unchained() internal onlyInitializing {}

  /**
   * @dev Burns `tokenId`. See {ERC721A-_burn}.
   *
   * Requirements:
   *
   * - The caller must own `tokenId` or be an approved operator.
   */
  function burn(uint256 tokenId) public virtual override {
    _burn(tokenId, true);
  }

  /**
   * @dev This empty reserved space is put in place to allow future versions to add new
   * variables without shifting down storage in the inheritance chain.
   * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
   */
  uint256[50] private __gap;
}

// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.7;

import "./IERC721AQueryableUpgradeable.sol";
import "./ERC721AUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";

/**
 * @title ERC721A Queryable
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryableUpgradeable is
  Initializable,
  ERC721AUpgradeable,
  IERC721AQueryableUpgradeable
{
  function __ERC721AQueryable_init() internal onlyInitializing {}

  function __ERC721AQueryable_init_unchained() internal onlyInitializing {}

  /**
   * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
   *
   * If the `tokenId` is out of bounds:
   *   - `addr` = `address(0)`
   *   - `startTimestamp` = `0`
   *   - `burned` = `false`
   *
   * If the `tokenId` is burned:
   *   - `addr` = `<Address of owner before token was burned>`
   *   - `startTimestamp` = `<Timestamp when token was burned>`
   *   - `burned = `true`
   *
   * Otherwise:
   *   - `addr` = `<Address of owner>`
   *   - `startTimestamp` = `<Timestamp of start of ownership>`
   *   - `burned = `false`
   */
  function explicitOwnershipOf(uint256 tokenId)
    public
    view
    override
    returns (TokenOwnership memory)
  {
    TokenOwnership memory ownership;
    if (tokenId < _startTokenId() || tokenId >= _currentIndex) {
      return ownership;
    }
    ownership = _ownerships[tokenId];
    if (ownership.burned) {
      return ownership;
    }
    return _ownershipOf(tokenId);
  }

  /**
   * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
   * See {ERC721AQueryable-explicitOwnershipOf}
   */
  function explicitOwnershipsOf(uint256[] memory tokenIds)
    external
    view
    override
    returns (TokenOwnership[] memory)
  {
    unchecked {
      uint256 tokenIdsLength = tokenIds.length;
      TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
      for (uint256 i; i != tokenIdsLength; ++i) {
        ownerships[i] = explicitOwnershipOf(tokenIds[i]);
      }
      return ownerships;
    }
  }

  /**
   * @dev Returns an array of token IDs owned by `owner`,
   * in the range [`start`, `stop`)
   * (i.e. `start <= tokenId < stop`).
   *
   * This function allows for tokens to be queried if the collection
   * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
   *
   * Requirements:
   *
   * - `start` < `stop`
   */
  function tokensOfOwnerIn(
    address owner,
    uint256 start,
    uint256 stop
  ) external view override returns (uint256[] memory) {
    unchecked {
      if (start >= stop) revert InvalidQueryRange();
      uint256 tokenIdsIdx;
      uint256 stopLimit = _currentIndex;
      // Set `start = max(start, _startTokenId())`.
      if (start < _startTokenId()) {
        start = _startTokenId();
      }
      // Set `stop = min(stop, _currentIndex)`.
      if (stop > stopLimit) {
        stop = stopLimit;
      }
      uint256 tokenIdsMaxLength = balanceOf(owner);
      // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
      // to cater for cases where `balanceOf(owner)` is too big.
      if (start < stop) {
        uint256 rangeLength = stop - start;
        if (rangeLength < tokenIdsMaxLength) {
          tokenIdsMaxLength = rangeLength;
        }
      } else {
        tokenIdsMaxLength = 0;
      }
      uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
      if (tokenIdsMaxLength == 0) {
        return tokenIds;
      }
      // We need to call `explicitOwnershipOf(start)`,
      // because the slot at `start` may not be initialized.
      TokenOwnership memory ownership = explicitOwnershipOf(start);
      address currOwnershipAddr;
      // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
      // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
      if (!ownership.burned) {
        currOwnershipAddr = ownership.addr;
      }
      for (
        uint256 i = start;
        i != stop && tokenIdsIdx != tokenIdsMaxLength;
        ++i
      ) {
        ownership = _ownerships[i];
        if (ownership.burned) {
          continue;
        }
        if (ownership.addr != address(0)) {
          currOwnershipAddr = ownership.addr;
        }
        if (currOwnershipAddr == owner) {
          tokenIds[tokenIdsIdx++] = i;
        }
      }
      // Downsize the array to fit.
      assembly {
        mstore(tokenIds, tokenIdsIdx)
      }
      return tokenIds;
    }
  }

  /**
   * @dev Returns an array of token IDs owned by `owner`.
   *
   * This function scans the ownership mapping and is O(totalSupply) in complexity.
   * It is meant to be called off-chain.
   *
   * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
   * multiple smaller scans if the collection is large enough to cause
   * an out-of-gas error (10K pfp collections should be fine).
   */
  function tokensOfOwner(address owner)
    external
    view
    override
    returns (uint256[] memory)
  {
    unchecked {
      uint256 tokenIdsIdx;
      address currOwnershipAddr;
      uint256 tokenIdsLength = balanceOf(owner);
      uint256[] memory tokenIds = new uint256[](tokenIdsLength);
      TokenOwnership memory ownership;
      for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
        ownership = _ownerships[i];
        if (ownership.burned) {
          continue;
        }
        if (ownership.addr != address(0)) {
          currOwnershipAddr = ownership.addr;
        }
        if (currOwnershipAddr == owner) {
          tokenIds[tokenIdsIdx++] = i;
        }
      }
      return tokenIds;
    }
  }

  /**
   * @dev This empty reserved space is put in place to allow future versions to add new
   * variables without shifting down storage in the inheritance chain.
   * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
   */
  uint256[50] private __gap;
}

File 14 of 29 : DefaultOperatorFiltererUpgradeable.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

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

abstract contract DefaultOperatorFiltererUpgradeable is
  OperatorFiltererUpgradeable
{
  address constant DEFAULT_SUBSCRIPTION =
    address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

  function __DefaultOperatorFilterer_init() internal onlyInitializing {
    OperatorFiltererUpgradeable.__OperatorFilterer_init(
      DEFAULT_SUBSCRIPTION,
      true
    );
  }
}

// SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.7;
import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";

abstract contract TeamMembersUpgradeable is OwnableUpgradeable {
  mapping(address => bool) private members;

  function addTeamMember(address _address) public onlyOwner {
    require(_address != address(0));
    members[_address] = true;
  }

  function removeTeamMember(address _address) public onlyOwner {
    require(_address != address(0));

    delete members[_address];
  }

  function isTeamMember(address _address) public view returns (bool) {
    return members[_address] == true;
  }

  modifier onlyTeamOrOwner() {
    require(owner() == _msgSender() || isTeamMember(_msgSender()));
    _;
  }
}

// SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.8.7;

interface INFTArtGen {
  /**
   *
   * @notice Set the commission for the contract
   * @param _val1 The new commission value
   * @dev Only callable by the owner/team
   */
  function setCommission(uint256 _val1) external;

  /**
   *
   * @notice Update the sale parameters
   * @param _open Whether the sale is open
   * @param _cost The cost of each token
   * @param _maxW The max number of mints per wallet
   * @param _maxM The max number of mints per transaction
   * @dev Only callable by the owner/team
   */
  function updateSale(
    bool _open,
    uint256 _cost,
    uint32 _maxW,
    uint32 _maxM
  ) external;

  /**
   *
   * @notice Update the ERC20 token (most contracts will not use this)
   * @param _address The new address of the token
   * @dev Only callable by the owner/team
   */
  function updateReqToken(address _address) external;

  /**
   *
   * @notice Update the presale parameters
   * @param _open Whether the presale is open
   * @param root The merkle root for the whitelisted addresses
   * @dev Only callable by the owner/team
   */
  function updatePresale(bool _open, bytes32 root) external;

  /**
   *
   * @notice Reveal the collection's URI
   * @param _revealed Whether the collection is revealed
   * @param _uri The collection's URI
   * @dev Only callable by the owner/team
   */
  function updateReveal(bool _revealed, string memory _uri) external;

  /**
   *
   * @notice Update the max number of free mints
   * @param _cap The new cap
   * @dev Only callable by the owner/team
   */
  function updateMaxFreeMint(uint32 _cap) external;

  /**
   *
   * @notice Update the number to pause minting at
   * @param _pauseAt The new number to pause minting at
   * @dev Only callable by the owner/team
   */
  function updatePauseMintAt(uint256 _pauseAt) external;

  /**
   *
   * @notice Update the base URI
   * @param _uri The new base URI
   * @dev Only callable by the owner/team
   */
  function updateBaseUri(string memory _uri) external;

  /**
   *
   * @notice Update the withdraw split
   * @param _addresses The new addresses
   * @param _fees The new shares for each address
   * @dev Only callable by the owner/team
   */
  function updateWithdrawSplit(
    address[] memory _addresses,
    uint256[] memory _fees
  ) external;

  /**
   *
   * @notice Get the current commission
   * @return The current withdraw split
   */
  function getWithdrawSplit()
    external
    view
    returns (address[] memory, uint256[] memory);

  /**
   *
   * @notice Update the referral parameters
   * @param _open Whether the referral program is open
   * @param _val The referral value
   * @dev Only callable by the owner/team
   */
  function updateReferral(bool _open, uint256 _val) external;

  /**
   *
   * @notice Update the royalties parameters
   * @param _recipient The new royalty recipient
   * @param _fee The royalty fee
   * @dev Only callable by the owner/team
   */
  function updateRoyalties(address _recipient, uint256 _fee) external;

  /**
   *
   * @notice Withdraw the native token balance from the contract
   * @dev Only callable by the owner/team
   */
  function withdraw() external payable;

  /**
   *
   * @notice Send tokens to a list of recipients
   * @param _recipients The recipients
   * @param _amount The amount to send to each recipient
   * @dev Only callable by the owner/team
   */
  function airdrop(address[] memory _recipients, uint256[] memory _amount)
    external;

  /**
   *
   * @notice Mint tokens
   * @param count The number of tokens to mint
   */
  function mint(uint256 count) external payable;

  /**
   *
   * @notice Mint tokens to a specific address
   * @param count The number of tokens to mint
   * @param to The address to mint to
   */
  function mintTo(uint256 count, address to) external payable;

  /**
   *
   * @notice Mint all tokens to the contract owner
   * @dev Only callable by the owner
   */
  function mintAll() external payable;

  /**
   *
   * @notice Mint tokens when presale is open
   * @param count The number of tokens to mint
   * @param proof The merkle proof for the address
   */
  function presaleMint(uint32 count, bytes32[] calldata proof) external payable;

  /**
   *
   * @notice Mint tokens when presale is open to a specific address
   * @param count The number of tokens to mint
   * @param proof The merkle proof for the address
   * @param to The address to mint to
   */
  function presaleMintTo(
    uint32 count,
    bytes32[] calldata proof,
    address to
  ) external payable;

  /**
   *
   * @notice Mint tokens while the referral program is open
   * @param count The number of tokens to mint
   * @param referrer The address of the referrer
   */
  function referralMint(uint32 count, address referrer) external payable;

  /**
   *
   * @notice Mint tokens while the referral program is open to a specific address
   * @param count The number of tokens to mint
   * @param referrer The address of the referrer
   * @param to The address to mint to
   */
  function referralMintTo(
    uint32 count,
    address referrer,
    address to
  ) external payable;

  /**
   *
   * @notice Get the minted count
   */
  function supply() external view returns (uint256);

  /**
   *
   * @notice Get the max supply
   */
  function totalSupply() external view returns (uint256);

  /**
   *
   * @notice Get the number of tokens minted by a specific address
   * @param _address The address to check
   */
  function numberMintedOfOwner(address _address)
    external
    view
    returns (uint256);

  /**
   *
   * @notice Get the number of tokens a specific address can still mint
   * @param _address The address to check
   */
  function remainingMintsOfOwner(address _address)
    external
    view
    returns (uint256);

  /**
   *
   * @notice Get the cost to mint _count tokens for a specific address
   * @param _address The address to check
   * @param _count The number of tokens to check
   */
  function mintCostOfOwner(address _address, uint256 _count)
    external
    view
    returns (uint256);

  /**
   * @notice Get the number of referral mints for a specific address
   * @param wallet The address to check
   */
  function affiliatesOf(address wallet) external view returns (uint256);
}

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

pragma solidity ^0.8.0;

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

File 18 of 29 : IERC721AUpgradeable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.7;

import "@openzeppelin/contracts-upgradeable/token/ERC721/IERC721Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC721/extensions/IERC721MetadataUpgradeable.sol";

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721AUpgradeable is
  IERC721Upgradeable,
  IERC721MetadataUpgradeable
{
  /**
   * The caller must own the token or be an approved operator.
   */
  error ApprovalCallerNotOwnerNorApproved();

  /**
   * The token does not exist.
   */
  error ApprovalQueryForNonexistentToken();

  /**
   * The caller cannot approve to their own address.
   */
  error ApproveToCaller();

  /**
   * The caller cannot approve to the current owner.
   */
  error ApprovalToCurrentOwner();

  /**
   * Cannot query the balance for the zero address.
   */
  error BalanceQueryForZeroAddress();

  /**
   * Cannot mint to the zero address.
   */
  error MintToZeroAddress();

  /**
   * The quantity of tokens minted must be more than zero.
   */
  error MintZeroQuantity();

  /**
   * The token does not exist.
   */
  error OwnerQueryForNonexistentToken();

  /**
   * The caller must own the token or be an approved operator.
   */
  error TransferCallerNotOwnerNorApproved();

  /**
   * The token must be owned by `from`.
   */
  error TransferFromIncorrectOwner();

  /**
   * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
   */
  error TransferToNonERC721ReceiverImplementer();

  /**
   * Cannot transfer to the zero address.
   */
  error TransferToZeroAddress();

  /**
   * The token does not exist.
   */
  error URIQueryForNonexistentToken();

  // Compiler will pack this into a single 256bit word.
  struct TokenOwnership {
    // The address of the owner.
    address addr;
    // Keeps track of the start time of ownership with minimal overhead for tokenomics.
    uint64 startTimestamp;
    // Whether the token has been burned.
    bool burned;
  }

  // Compiler will pack this into a single 256bit word.
  struct AddressData {
    // Realistically, 2**64-1 is more than enough.
    uint64 balance;
    // Keeps track of mint count with minimal overhead for tokenomics.
    uint64 numberMinted;
    // Keeps track of burn count with minimal overhead for tokenomics.
    uint64 numberBurned;
    // For miscellaneous variable(s) pertaining to the address
    // (e.g. number of whitelist mint slots used).
    // If there are multiple variables, please pack them into a uint64.
    uint64 aux;
  }

  /**
   * @dev Returns the total amount of tokens stored by the contract.
   *
   * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
   */
  function totalSupply() external view returns (uint256);
}

File 19 of 29 : IERC721ReceiverUpgradeable.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 IERC721ReceiverUpgradeable {
    /**
     * @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);
}

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

pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";

/**
 * @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 ContextUpgradeable is Initializable {
    function __Context_init() internal onlyInitializing {
    }

    function __Context_init_unchained() internal onlyInitializing {
    }
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}

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

pragma solidity ^0.8.0;

import "./IERC165Upgradeable.sol";
import "../../proxy/utils/Initializable.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 ERC165Upgradeable is Initializable, IERC165Upgradeable {
    function __ERC165_init() internal onlyInitializing {
    }

    function __ERC165_init_unchained() internal onlyInitializing {
    }
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165Upgradeable).interfaceId;
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721Upgradeable is IERC165Upgradeable {
    /**
     * @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: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

pragma solidity ^0.8.0;

import "../IERC721Upgradeable.sol";

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

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

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

// SPDX-License-Identifier: MIT
// 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 IERC165Upgradeable {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 25 of 29 : IERC721ABurnableUpgradeable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.7;

import "./IERC721AUpgradeable.sol";

/**
 * @dev Interface of an ERC721ABurnable compliant contract.
 */
interface IERC721ABurnableUpgradeable is IERC721AUpgradeable {
  /**
   * @dev Burns `tokenId`. See {ERC721A-_burn}.
   *
   * Requirements:
   *
   * - The caller must own `tokenId` or be an approved operator.
   */
  function burn(uint256 tokenId) external;
}

// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.7;

import "./IERC721AUpgradeable.sol";

/**
 * @dev Interface of an ERC721AQueryable compliant contract.
 */
interface IERC721AQueryableUpgradeable is IERC721AUpgradeable {
  /**
   * Invalid query range (`start` >= `stop`).
   */
  error InvalidQueryRange();

  /**
   * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
   *
   * If the `tokenId` is out of bounds:
   *   - `addr` = `address(0)`
   *   - `startTimestamp` = `0`
   *   - `burned` = `false`
   *
   * If the `tokenId` is burned:
   *   - `addr` = `<Address of owner before token was burned>`
   *   - `startTimestamp` = `<Timestamp when token was burned>`
   *   - `burned = `true`
   *
   * Otherwise:
   *   - `addr` = `<Address of owner>`
   *   - `startTimestamp` = `<Timestamp of start of ownership>`
   *   - `burned = `false`
   */
  function explicitOwnershipOf(uint256 tokenId)
    external
    view
    returns (TokenOwnership memory);

  /**
   * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
   * See {ERC721AQueryable-explicitOwnershipOf}
   */
  function explicitOwnershipsOf(uint256[] memory tokenIds)
    external
    view
    returns (TokenOwnership[] memory);

  /**
   * @dev Returns an array of token IDs owned by `owner`,
   * in the range [`start`, `stop`)
   * (i.e. `start <= tokenId < stop`).
   *
   * This function allows for tokens to be queried if the collection
   * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
   *
   * Requirements:
   *
   * - `start` < `stop`
   */
  function tokensOfOwnerIn(
    address owner,
    uint256 start,
    uint256 stop
  ) external view returns (uint256[] memory);

  /**
   * @dev Returns an array of token IDs owned by `owner`.
   *
   * This function scans the ownership mapping and is O(totalSupply) in complexity.
   * It is meant to be called off-chain.
   *
   * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
   * multiple smaller scans if the collection is large enough to cause
   * an out-of-gas error (10K pfp collections should be fine).
   */
  function tokensOfOwner(address owner)
    external
    view
    returns (uint256[] memory);
}

File 27 of 29 : OperatorFiltererUpgradeable.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

import "./IOperatorFilterRegistry.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";

abstract contract OperatorFiltererUpgradeable is Initializable {
  error OperatorNotAllowed(address operator);

  IOperatorFilterRegistry constant operatorFilterRegistry =
    IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

  function __OperatorFilterer_init(
    address subscriptionOrRegistrantToCopy,
    bool subscribe
  ) internal onlyInitializing {
    // 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(operatorFilterRegistry).code.length > 0) {
      if (!operatorFilterRegistry.isRegistered(address(this))) {
        if (subscribe) {
          operatorFilterRegistry.registerAndSubscribe(
            address(this),
            subscriptionOrRegistrantToCopy
          );
        } else {
          if (subscriptionOrRegistrantToCopy != address(0)) {
            operatorFilterRegistry.registerAndCopyEntries(
              address(this),
              subscriptionOrRegistrantToCopy
            );
          } else {
            operatorFilterRegistry.register(address(this));
          }
        }
      }
    }
  }

  modifier onlyAllowedOperator(address from) virtual {
    // Check registry code length to facilitate testing in environments without a deployed registry.
    if (address(operatorFilterRegistry).code.length > 0) {
      // 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) {
        _;
        return;
      }
      if (
        !operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
      ) {
        revert OperatorNotAllowed(msg.sender);
      }
    }
    _;
  }

  modifier onlyAllowedOperatorApproval(address operator) virtual {
    // Check registry code length to facilitate testing in environments without a deployed registry.
    if (address(operatorFilterRegistry).code.length > 0) {
      if (!operatorFilterRegistry.isOperatorAllowed(address(this), operator)) {
        revert OperatorNotAllowed(operator);
      }
    }
    _;
  }
}

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

interface IOperatorFilterRegistry {
  function isOperatorAllowed(address registrant, address operator)
    external
    view
    returns (bool);

  function register(address registrant) external;

  function registerAndSubscribe(address registrant, address subscription)
    external;

  function registerAndCopyEntries(address registrant, address registrantToCopy)
    external;

  function unregister(address addr) external;

  function updateOperator(
    address registrant,
    address operator,
    bool filtered
  ) external;

  function updateOperators(
    address registrant,
    address[] calldata operators,
    bool filtered
  ) external;

  function updateCodeHash(
    address registrant,
    bytes32 codehash,
    bool filtered
  ) external;

  function updateCodeHashes(
    address registrant,
    bytes32[] calldata codeHashes,
    bool filtered
  ) external;

  function subscribe(address registrant, address registrantToSubscribe)
    external;

  function unsubscribe(address registrant, bool copyExistingEntries) external;

  function subscriptionOf(address addr) external returns (address registrant);

  function subscribers(address registrant) external returns (address[] memory);

  function subscriberAt(address registrant, uint256 index)
    external
    returns (address);

  function copyEntriesOf(address registrant, address registrantToCopy) external;

  function isOperatorFiltered(address registrant, address operator)
    external
    returns (bool);

  function isCodeHashOfFiltered(address registrant, address operatorWithCode)
    external
    returns (bool);

  function isCodeHashFiltered(address registrant, bytes32 codeHash)
    external
    returns (bool);

  function filteredOperators(address addr) external returns (address[] memory);

  function filteredCodeHashes(address addr) external returns (bytes32[] memory);

  function filteredOperatorAt(address registrant, uint256 index)
    external
    returns (address);

  function filteredCodeHashAt(address registrant, uint256 index)
    external
    returns (bytes32);

  function isRegistered(address addr) external returns (bool);

  function codeHashOf(address addr) external returns (bytes32);
}

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

pragma solidity ^0.8.0;

import "../utils/ContextUpgradeable.sol";
import "../proxy/utils/Initializable.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 OwnableUpgradeable is Initializable, ContextUpgradeable {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    function __Ownable_init() internal onlyInitializing {
        __Ownable_init_unchained();
    }

    function __Ownable_init_unchained() internal onlyInitializing {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

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

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[49] private __gap;
}

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

Contract Security Audit

Contract ABI

API
[{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","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":"_address","type":"address"}],"name":"addTeamMember","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_uint","type":"uint256"}],"name":"addressAndUintToBytes","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"affiliatesOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_recipients","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721AUpgradeable.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721AUpgradeable.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWithdrawSplit","outputs":[{"internalType":"address[]","name":"","type":"address[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_commission","type":"uint256"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isTeamMember","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMint","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerMint","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintAll","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintCostOfOwner","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"numberMintedOfOwner","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"open","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseMintAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"count","type":"uint32"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint32","name":"count","type":"uint32"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"address","name":"to","type":"address"}],"name":"presaleMintTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"referralCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"count","type":"uint32"},{"internalType":"address","name":"referrer","type":"address"}],"name":"referralMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint32","name":"count","type":"uint32"},{"internalType":"address","name":"referrer","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"referralMintTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"referralOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"remainingMintsOfOwner","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeTeamMember","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reqToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_val1","type":"uint256"}],"name":"setCommission","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"string","name":"_uri","type":"string"}],"name":"updateBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_cap","type":"uint32"}],"name":"updateMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pauseAt","type":"uint256"}],"name":"updatePauseMintAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_open","type":"bool"},{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"updatePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_open","type":"bool"},{"internalType":"uint256","name":"_val","type":"uint256"}],"name":"updateReferral","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"updateReqToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_revealed","type":"bool"},{"internalType":"string","name":"_uri","type":"string"}],"name":"updateReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"updateRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_open","type":"bool"},{"internalType":"uint256","name":"_cost","type":"uint256"},{"internalType":"uint32","name":"_maxW","type":"uint32"},{"internalType":"uint32","name":"_maxM","type":"uint32"}],"name":"updateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256[]","name":"_fees","type":"uint256[]"}],"name":"updateWithdrawSplit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405234801561001057600080fd5b5061544e806100206000396000f3fe6080604052600436106102de5760003560e01c806301ffc9a7146102e35780630364d22a14610318578063047fc9aa1461032d57806306fdde0314610350578063081812fc14610372578063095ea7b31461039f5780631012c330146103bf57806310384ba1146103df57806313faede6146103f657806314eba0261461040d57806318160ddd1461042d5780631d02161d1461044257806323b872dd1461046257806323e6fe44146104825780632a55205a146104d6578063355e6b431461051557806339f7e37f146105355780633b9e106d146105555780633ccfd60b146105685780633eb2b5ad1461057057806342842e0e1461059057806342966c68146105b0578063453c2310146105d05780634b0bdd2a1461060a578063507e094f1461062a5780635183022714610648578063595882b3146106685780635bbb2177146106705780636352211e1461069d57806364bb1061146106bd57806367243482146106df5780636c2f5acd146106ff5780636fe0e3951461071f57806370a082311461073f578063715018a61461075f578063828c12ce146107745780638462151c146107945780638624a72b146107c15780638da5cb5b146107d457806395d89b41146107e957806399a2557a146107fe5780639ea7b2ba1461081e578063a0712d681461083e578063a22cb46514610851578063a591252d14610871578063b723b34e14610896578063b88d4fde146108a9578063bbe9f99d146108c9578063bd1b6be414610908578063be8e43ee14610928578063bee6348a14610948578063c23dc68f14610969578063c7d1261014610996578063c87b56dd146109b7578063d6c5b414146109d7578063d8deebd914610a0e578063db31882b14610a2e578063dfdd9b9a14610a4e578063e985e9c514610a65578063e9b1388f14610aae578063f179dca114610ace578063f2fde38b14610ae1578063f5ca4dfd14610b01578063fcfff16f14610b24578063fe25219a14610b3f575b600080fd5b3480156102ef57600080fd5b506103036102fe36600461453c565b610b5f565b60405190151581526020015b60405180910390f35b61032b6103263660046145b6565b610b8a565b005b34801561033957600080fd5b50610342610e89565b60405190815260200161030f565b34801561035c57600080fd5b50610365610e9f565b60405161030f9190614660565b34801561037e57600080fd5b5061039261038d366004614673565b610f31565b60405161030f919061468c565b3480156103ab57600080fd5b5061032b6103ba3660046146b7565b610f75565b3480156103cb57600080fd5b5061032b6103da3660046146e1565b610ffc565b3480156103eb57600080fd5b5061034261012f5481565b34801561040257600080fd5b506103426101305481565b34801561041957600080fd5b5061032b6104283660046146e1565b61104a565b34801561043957600080fd5b50610342611087565b34801561044e57600080fd5b5061032b61045d36600461470a565b61109a565b34801561046e57600080fd5b5061032b61047d366004614759565b61110d565b34801561048e57600080fd5b5061036561049d3660046146b7565b604051606083811b6001600160601b03191660208301526034820183905290605401604051602081830303815290604052905092915050565b3480156104e257600080fd5b506104f66104f1366004614795565b6111e8565b604080516001600160a01b03909316835260208301919091520161030f565b34801561052157600080fd5b5061032b610530366004614673565b611225565b34801561054157600080fd5b5061032b610550366004614874565b611332565b61032b6105633660046148a8565b611375565b61032b6116b1565b34801561057c57600080fd5b5061032b61058b3660046146e1565b61179e565b34801561059c57600080fd5b5061032b6105ab366004614759565b6117de565b3480156105bc57600080fd5b5061032b6105cb366004614673565b6118ae565b3480156105dc57600080fd5b5061012e546105f590600160201b900463ffffffff1681565b60405163ffffffff909116815260200161030f565b34801561061657600080fd5b506103426106253660046146e1565b6118bc565b34801561063657600080fd5b5061012e546105f59063ffffffff1681565b34801561065457600080fd5b506101315461030390610100900460ff1681565b61032b6118c7565b34801561067c57600080fd5b5061069061068b366004614979565b611919565b60405161030f91906149da565b3480156106a957600080fd5b506103926106b8366004614673565b6119cd565b3480156106c957600080fd5b5061013154610303906301000000900460ff1681565b3480156106eb57600080fd5b5061032b6106fa366004614a1c565b6119df565b34801561070b57600080fd5b5061032b61071a3660046146b7565b611ac4565b34801561072b57600080fd5b5061032b61073a366004614adb565b611b17565b34801561074b57600080fd5b5061034261075a3660046146e1565b611c36565b34801561076b57600080fd5b5061032b611c84565b34801561078057600080fd5b5061032b61078f366004614b4e565b611c96565b3480156107a057600080fd5b506107b46107af3660046146e1565b611dae565b60405161030f9190614bce565b61032b6107cf366004614be1565b611ee0565b3480156107e057600080fd5b506103926121bc565b3480156107f557600080fd5b506103656121cb565b34801561080a57600080fd5b506107b4610819366004614c3a565b6121da565b34801561082a57600080fd5b5061032b610839366004614673565b6123a2565b61032b61084c366004614673565b61241a565b34801561085d57600080fd5b5061032b61086c366004614c6d565b61265c565b34801561087d57600080fd5b5061012e546105f590600160401b900463ffffffff1681565b61032b6108a4366004614ca4565b6126f2565b3480156108b557600080fd5b5061032b6108c4366004614cd0565b612935565b3480156108d557600080fd5b506103036108e43660046146e1565b6001600160a01b0316600090815261012d602052604090205460ff16151560011490565b34801561091457600080fd5b506103426109233660046146b7565b612a0c565b34801561093457600080fd5b5061032b610943366004614a1c565b612aab565b34801561095457600080fd5b50610131546103039062010000900460ff1681565b34801561097557600080fd5b50610989610984366004614673565b612c9f565b60405161030f9190614d4b565b3480156109a257600080fd5b5061013354610392906001600160a01b031681565b3480156109c357600080fd5b506103656109d2366004614673565b612d34565b3480156109e357600080fd5b506103426109f23660046146e1565b6001600160a01b0316600090815261013a602052604090205490565b348015610a1a57600080fd5b5061032b610a29366004614d59565b612dcb565b348015610a3a57600080fd5b5061032b610a49366004614d74565b612e1d565b348015610a5a57600080fd5b506103426101325481565b348015610a7157600080fd5b50610303610a80366004614d92565b6001600160a01b039182166000908152606c6020908152604080832093909416825291909152205460ff1690565b348015610aba57600080fd5b50610342610ac93660046146e1565b612e6a565b61032b610adc366004614dbc565b612e90565b348015610aed57600080fd5b5061032b610afc3660046146e1565b6131c3565b348015610b0d57600080fd5b50610b16613239565b60405161030f929190614dd8565b348015610b3057600080fd5b50610131546103039060ff1681565b348015610b4b57600080fd5b5061032b610b5a366004614d74565b61336f565b60006001600160e01b0319821663152a902d60e11b1480610b845750610b84826133be565b92915050565b8263ffffffff163360008211610bbb5760405162461bcd60e51b8152600401610bb290614e38565b60405180910390fd5b61012e5463ffffffff16821115610be45760405162461bcd60e51b8152600401610bb290614e64565b610bec611087565b82610bf5610e89565b610bff9190614ea5565b1115610c1d5760405162461bcd60e51b8152600401610bb290614ebd565b61012e54600160201b900463ffffffff1682610c388361340e565b610c429190614ea5565b1115610c605760405162461bcd60e51b8152600401610bb290614ee9565b610c6a8183612a0c565b341015610c895760405162461bcd60e51b8152600401610bb290614f14565b61012f5415610cc75761012f5482610c9f610e89565b610ca99190614ea5565b1115610cc75760405162461bcd60e51b8152600401610bb290614f3e565b610133546001600160a01b031615610d6f57610133546040516370a0823160e01b81526001600160a01b039091169060009082906370a0823190610d0f90339060040161468c565b602060405180830381865afa158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190614f6c565b11610d6d5760405162461bcd60e51b8152600401610bb290614f85565b505b6101315462010000900460ff16610d985760405162461bcd60e51b8152600401610bb290614fb5565b61013954610db85760405162461bcd60e51b8152600401610bb290614fdf565b610e208484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505061013954604051909250610e059150339060200161500a565b60405160208183030381529060405280519060200120613439565b610e3c5760405162461bcd60e51b8152600401610bb290615022565b610e4c338663ffffffff1661344f565b600061012f54118015610e69575061012f54610e66610e89565b10155b15610e8257610131805462ff00ff19169055600061012f555b5050505050565b60006001606554610e9a9190615050565b905090565b606060678054610eae90615067565b80601f0160208091040260200160405190810160405280929190818152602001828054610eda90615067565b8015610f275780601f10610efc57610100808354040283529160200191610f27565b820191906000526020600020905b815481529060010190602001808311610f0a57829003601f168201915b5050505050905090565b6000610f3c82613469565b610f59576040516333d1c03960e21b815260040160405180910390fd5b506000908152606b60205260409020546001600160a01b031690565b6000610f80826119cd565b9050806001600160a01b0316836001600160a01b03161415610fb55760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610fec57610fcf8133610a80565b610fec576040516367d9dca160e11b815260040160405180910390fd5b610ff78383836134a2565b505050565b336110056121bc565b6001600160a01b0316148061101e575061101e336108e4565b61102757600080fd5b61013380546001600160a01b0319166001600160a01b0392909216919091179055565b6110526134fe565b6001600160a01b03811661106557600080fd5b6001600160a01b0316600090815261012d60205260409020805460ff19169055565b600060665461013454610e9a9190615050565b336110a36121bc565b6001600160a01b031614806110bc57506110bc336108e4565b6110c557600080fd5b610131805460ff1916941515949094179093556101309190915561012e80546001600160401b031916600160201b63ffffffff9384160263ffffffff19161791909216179055565b826daaeb6d7670e522a718067333cd4e3b156111d7576001600160a01b0381163314156111445761113f84848461355d565b6111e2565b604051633185c44d60e21b81526daaeb6d7670e522a718067333cd4e9063c61711349061117790309033906004016150a2565b602060405180830381865afa158015611194573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b891906150bc565b6111d75733604051633b79c77360e21b8152600401610bb2919061468c565b6111e284848461355d565b50505050565b610136546101375460009182916001600160a01b03909116906103e89061120f90866150d9565b611219919061510e565b915091505b9250929050565b336000805160206153b9833981519152146112745760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610bb2565b6000805160206153b9833981519152600090815261013c6020526000805160206153f9833981519152546112a9908390615050565b6000805160206153b9833981519152600090815261013c60208190526000805160206153f983398151915285905561013d8054939450849391929160019081106112f5576112f5615122565b60009182526020808320909101546001600160a01b0316835282019290925260400181208054909190611329908490614ea5565b90915550505050565b3361133b6121bc565b6001600160a01b031614806113545750611354336108e4565b61135d57600080fd5b805161137190610135906020840190614418565b5050565b8263ffffffff16816000821161139d5760405162461bcd60e51b8152600401610bb290614e38565b61012e5463ffffffff168211156113c65760405162461bcd60e51b8152600401610bb290614e64565b6113ce611087565b826113d7610e89565b6113e19190614ea5565b11156113ff5760405162461bcd60e51b8152600401610bb290614ebd565b61012e54600160201b900463ffffffff168261141a8361340e565b6114249190614ea5565b11156114425760405162461bcd60e51b8152600401610bb290614ee9565b61144c8183612a0c565b34101561146b5760405162461bcd60e51b8152600401610bb290614f14565b61012f54156114a95761012f5482611481610e89565b61148b9190614ea5565b11156114a95760405162461bcd60e51b8152600401610bb290614f3e565b610133546001600160a01b03161561155157610133546040516370a0823160e01b81526001600160a01b039091169060009082906370a08231906114f190339060040161468c565b602060405180830381865afa15801561150e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115329190614f6c565b1161154f5760405162461bcd60e51b8152600401610bb290614f85565b505b610131546301000000900460ff1615156001146115805760405162461bcd60e51b8152600401610bb290615138565b6101315460ff1615156001146115a85760405162461bcd60e51b8152600401610bb290615164565b600061013254116115cb5760405162461bcd60e51b8152600401610bb29061518b565b60006115d68561340e565b116115f35760405162461bcd60e51b8152600401610bb2906151b7565b836001600160a01b0316836001600160a01b031614156116255760405162461bcd60e51b8152600401610bb2906151e8565b611635838663ffffffff1661344f565b6001600160a01b038416600090815261013a6020526040812080546001929061165f908490614ea5565b9091555050610132546001600160a01b038516600090815261013a602052604090205461168c9190615217565b610e4c57611698611087565b6116a0610e89565b1015610e4c57610e4c84600161344f565b47806116ee5760405162461bcd60e51b815260206004820152600c60248201526b5a65726f2062616c616e636560a01b6044820152606401610bb2565b60005b61013d5481101561137157600061013c600061013d848154811061171757611717615122565b60009182526020808320909101546001600160a01b0316835282019290925260400181205491506103e861174b85846150d9565b611755919061510e565b905061178961013d848154811061176e5761176e615122565b6000918252602090912001546001600160a01b031682613568565b505080806117969061522b565b9150506116f1565b6117a66134fe565b6001600160a01b0381166117b957600080fd5b6001600160a01b0316600090815261012d60205260409020805460ff19166001179055565b826daaeb6d7670e522a718067333cd4e3b156118a3576001600160a01b0381163314156118105761113f84848461367e565b604051633185c44d60e21b81526daaeb6d7670e522a718067333cd4e9063c61711349061184390309033906004016150a2565b602060405180830381865afa158015611860573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061188491906150bc565b6118a35733604051633b79c77360e21b8152600401610bb2919061468c565b6111e284848461367e565b6118b9816001613699565b50565b6000610b848261340e565b6118cf6134fe565b34156118ed576118ed6000805160206153b983398151915234613568565b6119176118f86121bc565b611900610e89565b611908611087565b6119129190615050565b61344f565b565b80516060906000816001600160401b03811115611938576119386147b7565b60405190808252806020026020018201604052801561197157816020015b61195e61449c565b8152602001906001900390816119565790505b50905060005b8281146119c5576119a085828151811061199357611993615122565b6020026020010151612c9f565b8282815181106119b2576119b2615122565b6020908102919091010152600101611977565b509392505050565b60006119d882613847565b5192915050565b336119e86121bc565b6001600160a01b03161480611a015750611a01336108e4565b611a0a57600080fd5b8051825114611a1857600080fd5b60005b8151811015610ff757611a2c611087565b828281518110611a3e57611a3e615122565b6020026020010151611a4e610e89565b611a589190614ea5565b1115611a765760405162461bcd60e51b8152600401610bb290614ebd565b611ab2838281518110611a8b57611a8b615122565b6020026020010151838381518110611aa557611aa5615122565b602002602001015161344f565b80611abc8161522b565b915050611a1b565b33611acd6121bc565b6001600160a01b03161480611ae65750611ae6336108e4565b611aef57600080fd5b61013680546001600160a01b0319166001600160a01b03939093169290921790915561013755565b600054610100900460ff1615808015611b375750600054600160ff909116105b80611b585750611b4630613954565b158015611b58575060005460ff166001145b611bbb5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610bb2565b6000805460ff191660011790558015611bde576000805461ff0019166101001790555b611bea85858585613963565b8015610e82576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15050505050565b60006001600160a01b038216611c5f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152606a60205260409020546001600160401b031690565b611c8c6134fe565b6119176000613ab9565b33611c9f6121bc565b6001600160a01b03161480611cb85750611cb8336108e4565b611cc157600080fd5b610131805461ff00191661010084151590810291909117909155611cf5578051611cf390610138906020840190614418565b505b600182151514156113715760006101358054611d1090615067565b80601f0160208091040260200160405190810160405280929190818152602001828054611d3c90615067565b8015611d895780601f10611d5e57610100808354040283529160200191611d89565b820191906000526020600020905b815481529060010190602001808311611d6c57829003601f168201915b50505050509050805160001415610ff75781516111e290610135906020850190614418565b60606000806000611dbe85611c36565b90506000816001600160401b03811115611dda57611dda6147b7565b604051908082528060200260200182016040528015611e03578160200160208202803683370190505b509050611e0e61449c565b60015b838614611ed457600081815260696020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529250611e7757611ecc565b81516001600160a01b031615611e8c57815194505b876001600160a01b0316856001600160a01b03161415611ecc5780838780600101985081518110611ebf57611ebf615122565b6020026020010181815250505b600101611e11565b50909695505050505050565b8363ffffffff168160008211611f085760405162461bcd60e51b8152600401610bb290614e38565b61012e5463ffffffff16821115611f315760405162461bcd60e51b8152600401610bb290614e64565b611f39611087565b82611f42610e89565b611f4c9190614ea5565b1115611f6a5760405162461bcd60e51b8152600401610bb290614ebd565b61012e54600160201b900463ffffffff1682611f858361340e565b611f8f9190614ea5565b1115611fad5760405162461bcd60e51b8152600401610bb290614ee9565b611fb78183612a0c565b341015611fd65760405162461bcd60e51b8152600401610bb290614f14565b61012f54156120145761012f5482611fec610e89565b611ff69190614ea5565b11156120145760405162461bcd60e51b8152600401610bb290614f3e565b610133546001600160a01b0316156120bc57610133546040516370a0823160e01b81526001600160a01b039091169060009082906370a082319061205c90339060040161468c565b602060405180830381865afa158015612079573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061209d9190614f6c565b116120ba5760405162461bcd60e51b8152600401610bb290614f85565b505b6101315462010000900460ff166120e55760405162461bcd60e51b8152600401610bb290614fb5565b610139546121055760405162461bcd60e51b8152600401610bb290614fdf565b6121528585808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505061013954604051909250610e059150879060200161500a565b61216e5760405162461bcd60e51b8152600401610bb290615022565b61217e838763ffffffff1661344f565b600061012f5411801561219b575061012f54612198610e89565b10155b156121b457610131805462ff00ff19169055600061012f555b505050505050565b60fb546001600160a01b031690565b606060688054610eae90615067565b60608183106121fc57604051631960ccad60e11b815260040160405180910390fd5b606554600090600185101561221057600194505b8084111561221c578093505b600061222787611c36565b9050848610156122465785850381811015612240578091505b5061224a565b5060005b6000816001600160401b03811115612264576122646147b7565b60405190808252806020026020018201604052801561228d578160200160208202803683370190505b509050816122a057935061239b92505050565b60006122ab88612c9f565b9050600081604001516122bc575080515b885b8881141580156122ce5750848714155b1561238f57600081815260696020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615801592820192909252935061233257612387565b82516001600160a01b03161561234757825191505b8a6001600160a01b0316826001600160a01b03161415612387578084888060010199508151811061237a5761237a615122565b6020026020010181815250505b6001016122be565b50505092835250909150505b9392505050565b336123ab6121bc565b6001600160a01b031614806123c457506123c4336108e4565b6123cd57600080fd5b6123d5610e89565b8110156124145760405162461bcd60e51b815260206004820152600d60248201526c496e76616c69642076616c756560981b6044820152606401610bb2565b61012f55565b80336000821161243c5760405162461bcd60e51b8152600401610bb290614e38565b61012e5463ffffffff168211156124655760405162461bcd60e51b8152600401610bb290614e64565b61246d611087565b82612476610e89565b6124809190614ea5565b111561249e5760405162461bcd60e51b8152600401610bb290614ebd565b61012e54600160201b900463ffffffff16826124b98361340e565b6124c39190614ea5565b11156124e15760405162461bcd60e51b8152600401610bb290614ee9565b6124eb8183612a0c565b34101561250a5760405162461bcd60e51b8152600401610bb290614f14565b61012f54156125485761012f5482612520610e89565b61252a9190614ea5565b11156125485760405162461bcd60e51b8152600401610bb290614f3e565b610133546001600160a01b0316156125f057610133546040516370a0823160e01b81526001600160a01b039091169060009082906370a082319061259090339060040161468c565b602060405180830381865afa1580156125ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125d19190614f6c565b116125ee5760405162461bcd60e51b8152600401610bb290614f85565b505b6101315460ff1615156001146126185760405162461bcd60e51b8152600401610bb290615164565b612622338461344f565b600061012f5411801561263f575061012f5461263c610e89565b10155b15610ff757610131805462ff00ff19169055600061012f55505050565b6001600160a01b0382163314156126865760405163b06307db60e01b815260040160405180910390fd5b336000818152606c602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b8181600082116127145760405162461bcd60e51b8152600401610bb290614e38565b61012e5463ffffffff1682111561273d5760405162461bcd60e51b8152600401610bb290614e64565b612745611087565b8261274e610e89565b6127589190614ea5565b11156127765760405162461bcd60e51b8152600401610bb290614ebd565b61012e54600160201b900463ffffffff16826127918361340e565b61279b9190614ea5565b11156127b95760405162461bcd60e51b8152600401610bb290614ee9565b6127c38183612a0c565b3410156127e25760405162461bcd60e51b8152600401610bb290614f14565b61012f54156128205761012f54826127f8610e89565b6128029190614ea5565b11156128205760405162461bcd60e51b8152600401610bb290614f3e565b610133546001600160a01b0316156128c857610133546040516370a0823160e01b81526001600160a01b039091169060009082906370a082319061286890339060040161468c565b602060405180830381865afa158015612885573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128a99190614f6c565b116128c65760405162461bcd60e51b8152600401610bb290614f85565b505b6101315460ff1615156001146128f05760405162461bcd60e51b8152600401610bb290615164565b6128fa838561344f565b600061012f54118015612917575061012f54612914610e89565b10155b156111e257610131805462ff00ff19169055600061012f5550505050565b836daaeb6d7670e522a718067333cd4e3b15612a00576001600160a01b03811633141561296d5761296885858585613b0b565b610e82565b604051633185c44d60e21b81526daaeb6d7670e522a718067333cd4e9063c6171134906129a090309033906004016150a2565b602060405180830381865afa1580156129bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129e191906150bc565b612a005733604051633b79c77360e21b8152600401610bb2919061468c565b610e8285858585613b0b565b600080612a188461340e565b61012e54909150600160401b900463ffffffff1615801590612a49575061012e54600160401b900463ffffffff1681105b15612a955761012e54612a75908490612a70908490600160401b900463ffffffff16615050565b613b56565b612a7f9084615050565b61013054612a8d91906150d9565b915050610b84565b61013054612aa390846150d9565b949350505050565b612ab36134fe565b60015b61013d54811015612b115761013c600061013d8381548110612ada57612ada615122565b60009182526020808320909101546001600160a01b0316835282019290925260400181205580612b098161522b565b915050612ab6565b508151612b1f906001614ea5565b6001600160401b03811115612b3657612b366147b7565b604051908082528060200260200182016040528015612b5f578160200160208202803683370190505b508051612b759161013d916020909101906144bc565b506000805160206153b983398151915261013d600081548110612b9a57612b9a615122565b6000918252602082200180546001600160a01b0319166001600160a01b0393909316929092179091555b8251811015610ff757818181518110612bdf57612bdf615122565b602002602001015161013c6000858481518110612bfe57612bfe615122565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550828181518110612c3c57612c3c615122565b602002602001015161013d826001612c549190614ea5565b81548110612c6457612c64615122565b600091825260209091200180546001600160a01b0319166001600160a01b039290921691909117905580612c978161522b565b915050612bc4565b612ca761449c565b612caf61449c565b6001831080612cc057506065548310155b15612ccb5792915050565b50600082815260696020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290612d2b5792915050565b61239b83613847565b6060612d3f82613469565b612d7c5760405162461bcd60e51b815260206004820152600e60248201526d111bd95cc81b9bdd08195e1a5cdd60921b6044820152606401610bb2565b61013154610100900460ff16612dbf57610138612d9883613b6c565b604051602001612da9929190615262565b6040516020818303038152906040529050919050565b610135612d9883613b6c565b33612dd46121bc565b6001600160a01b03161480612ded5750612ded336108e4565b612df657600080fd5b61012e805463ffffffff909216600160401b0263ffffffff60401b19909216919091179055565b33612e266121bc565b6001600160a01b03161480612e3f5750612e3f336108e4565b612e4857600080fd5b6101318054921515620100000262ff0000199093169290921790915561013955565b6000612e758261340e565b61012e54610b849190600160201b900463ffffffff16615050565b8163ffffffff163360008211612eb85760405162461bcd60e51b8152600401610bb290614e38565b61012e5463ffffffff16821115612ee15760405162461bcd60e51b8152600401610bb290614e64565b612ee9611087565b82612ef2610e89565b612efc9190614ea5565b1115612f1a5760405162461bcd60e51b8152600401610bb290614ebd565b61012e54600160201b900463ffffffff1682612f358361340e565b612f3f9190614ea5565b1115612f5d5760405162461bcd60e51b8152600401610bb290614ee9565b612f678183612a0c565b341015612f865760405162461bcd60e51b8152600401610bb290614f14565b61012f5415612fc45761012f5482612f9c610e89565b612fa69190614ea5565b1115612fc45760405162461bcd60e51b8152600401610bb290614f3e565b610133546001600160a01b03161561306c57610133546040516370a0823160e01b81526001600160a01b039091169060009082906370a082319061300c90339060040161468c565b602060405180830381865afa158015613029573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061304d9190614f6c565b1161306a5760405162461bcd60e51b8152600401610bb290614f85565b505b610131546301000000900460ff16151560011461309b5760405162461bcd60e51b8152600401610bb290615138565b6101315460ff1615156001146130c35760405162461bcd60e51b8152600401610bb290615164565b600061013254116130e65760405162461bcd60e51b8152600401610bb29061518b565b60006130f18461340e565b1161310e5760405162461bcd60e51b8152600401610bb2906151b7565b336001600160a01b03841614156131375760405162461bcd60e51b8152600401610bb2906151e8565b613147338563ffffffff1661344f565b6001600160a01b038316600090815261013a60205260408120805460019290613171908490614ea5565b9091555050610132546001600160a01b038416600090815261013a602052604090205461319e9190615217565b6128fa576131aa611087565b6131b2610e89565b10156128fa576128fa83600161344f565b6131cb6134fe565b6001600160a01b0381166132305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bb2565b6118b981613ab9565b606080600061013d805490506001600160401b0381111561325c5761325c6147b7565b604051908082528060200260200182016040528015613285578160200160208202803683370190505b50905060005b61013d548110156133055761013c600061013d83815481106132af576132af615122565b60009182526020808320909101546001600160a01b0316835282019290925260400190205482518390839081106132e8576132e8615122565b6020908102919091010152806132fd8161522b565b91505061328b565b5061013d818180548060200260200160405190810160405280929190818152602001828054801561335f57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311613341575b5050505050915092509250509091565b336133786121bc565b6001600160a01b031614806133915750613391336108e4565b61339a57600080fd5b610131805492151563010000000263ff000000199093169290921790915561013255565b60006001600160e01b031982166380ac58cd60e01b14806133ef57506001600160e01b03198216635b5e139f60e01b145b80610b8457506301ffc9a760e01b6001600160e01b0319831614610b84565b6001600160a01b03166000908152606a6020526040902054600160401b90046001600160401b031690565b6000826134468584613c69565b14949350505050565b611371828260405180602001604052806000815250613cae565b60008160011115801561347d575060655482105b8015610b84575050600090815260696020526040902054600160e01b900460ff161590565b6000828152606b602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b336135076121bc565b6001600160a01b0316146119175760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bb2565b610ff7838383613e46565b804710156135b85760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610bb2565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114613605576040519150601f19603f3d011682016040523d82523d6000602084013e61360a565b606091505b5050905080610ff75760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c20726044820152791958da5c1a595b9d081b585e481a185d99481c995d995c9d195960321b6064820152608401610bb2565b610ff783838360405180602001604052806000815250612935565b60006136a483613847565b8051909150821561370a576000336001600160a01b03831614806136cd57506136cd8233610a80565b806136e85750336136dd86610f31565b6001600160a01b0316145b90508061370857604051632ce44b5f60e11b815260040160405180910390fd5b505b613716600085836134a2565b6001600160a01b038082166000818152606a602090815260408083208054600160801b6000196001600160401b038084169190910181166001600160401b0319841681178390048216600190810183169093026001600160401b03600160801b03600160c01b0319909416179290921783558b86526069909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b17855591890180845292208054919490911661380e57606554821461380e57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b038416906000805160206153d9833981519152908390a450506066805460010190555050565b61384f61449c565b818060011161393b5760655481101561393b57600081815260696020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906139395780516001600160a01b0316156138d0579392505050565b5060001901600081815260696020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215613934579392505050565b6138d0565b505b604051636f96cda160e11b815260040160405180910390fd5b6001600160a01b03163b151590565b600054610100900460ff1661398a5760405162461bcd60e51b8152600401610bb29061531d565b613994848461401e565b61399c61404f565b6139a461404f565b6139ac614076565b6139b46140a5565b610134829055610131805461ff00191690556000805160206153b983398151915260005261013c6020526000805160206153f98339815191528190556139fc816103e8615050565b61013c6000613a096121bc565b6001600160a01b03168152602081019190915260400160009081209190915561013d8054600181018255918190527f311617e6f2abe00ca92b0da56c014828817049e78441cf034e4dd4feba52962590910180546001600160a01b0319166000805160206153b9833981519152179055613a816121bc565b81546001810183556000928352602090922090910180546001600160a01b0319166001600160a01b0390921691909117905550505050565b60fb80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b613b16848484613e46565b613b28836001600160a01b0316613954565b156111e257613b39848484846140eb565b6111e2576040516368d2bf6b60e11b815260040160405180910390fd5b6000818310613b65578161239b565b5090919050565b606081613b905750506040805180820190915260018152600360fc1b602082015290565b8160005b8115613bba5780613ba48161522b565b9150613bb39050600a8361510e565b9150613b94565b6000816001600160401b03811115613bd457613bd46147b7565b6040519080825280601f01601f191660200182016040528015613bfe576020820181803683370190505b5090505b8415612aa357613c13600183615050565b9150613c20600a86615217565b613c2b906030614ea5565b60f81b818381518110613c4057613c40615122565b60200101906001600160f81b031916908160001a905350613c62600a8661510e565b9450613c02565b600081815b84518110156119c557613c9a82868381518110613c8d57613c8d615122565b60200260200101516141d3565b915080613ca68161522b565b915050613c6e565b6065546001600160a01b038416613cd757604051622e076360e81b815260040160405180910390fd5b82613cf55760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0384166000818152606a6020908152604080832080546001600160801b031981166001600160401b038083168b018116918217600160401b6001600160401b031990941690921783900481168b01811690920217909155858452606990925290912080546001600160e01b0319168317600160a01b4290931692909202919091179055819081850190613d8e90613954565b15613e04575b60405182906001600160a01b038816906000906000805160206153d9833981519152908290a4613dcd60008784806001019550876140eb565b613dea576040516368d2bf6b60e11b815260040160405180910390fd5b808210613d94578260655414613dff57600080fd5b613e37565b5b6040516001830192906001600160a01b038816906000906000805160206153d9833981519152908290a4808210613e05575b506065556111e2600085838684565b6000613e5182613847565b9050836001600160a01b031681600001516001600160a01b031614613e885760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480613ea65750613ea68533610a80565b80613ec1575033613eb684610f31565b6001600160a01b0316145b905080613ee157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416613f0857604051633a954ecd60e21b815260040160405180910390fd5b613f14600084876134a2565b6001600160a01b038581166000908152606a6020908152604080832080546001600160401b03198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652606990945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116613fe7576065548214613fe757805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03166000805160206153d983398151915260405160405180910390a4610e82565b600054610100900460ff166140455760405162461bcd60e51b8152600401610bb29061531d565b6113718282614202565b600054610100900460ff166119175760405162461bcd60e51b8152600401610bb29061531d565b600054610100900460ff1661409d5760405162461bcd60e51b8152600401610bb29061531d565b61191761425a565b600054610100900460ff166140cc5760405162461bcd60e51b8152600401610bb29061531d565b611917733cc6cdda760b79bafa08df41ecfa224f810dceb6600161428a565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290614120903390899088908890600401615368565b6020604051808303816000875af192505050801561415b575060408051601f3d908101601f191682019092526141589181019061539b565b60015b6141b6573d808015614189576040519150601f19603f3d011682016040523d82523d6000602084013e61418e565b606091505b5080516141ae576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60008183106141ef57600082815260208490526040902061239b565b600083815260208390526040902061239b565b600054610100900460ff166142295760405162461bcd60e51b8152600401610bb29061531d565b815161423c906067906020850190614418565b508051614250906068906020840190614418565b5060016065555050565b600054610100900460ff166142815760405162461bcd60e51b8152600401610bb29061531d565b61191733613ab9565b600054610100900460ff166142b15760405162461bcd60e51b8152600401610bb29061531d565b6daaeb6d7670e522a718067333cd4e3b156113715760405163c3c5a54760e01b81526daaeb6d7670e522a718067333cd4e9063c3c5a547906142f790309060040161468c565b6020604051808303816000875af1158015614316573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061433a91906150bc565b6113715780156143a557604051633e9f1edf60e11b81526daaeb6d7670e522a718067333cd4e90637d3e3dbe9061437790309086906004016150a2565b600060405180830381600087803b15801561439157600080fd5b505af11580156121b4573d6000803e3d6000fd5b6001600160a01b038216156143e75760405163a0af290360e01b81526daaeb6d7670e522a718067333cd4e9063a0af29039061437790309086906004016150a2565b604051632210724360e11b81526daaeb6d7670e522a718067333cd4e90634420e4869061437790309060040161468c565b82805461442490615067565b90600052602060002090601f016020900481019282614446576000855561448c565b82601f1061445f57805160ff191683800117855561448c565b8280016001018555821561448c579182015b8281111561448c578251825591602001919060010190614471565b50614498929150614511565b5090565b604080516060810182526000808252602082018190529181019190915290565b82805482825590600052602060002090810192821561448c579160200282015b8281111561448c57825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906144dc565b5b808211156144985760008155600101614512565b6001600160e01b0319811681146118b957600080fd5b60006020828403121561454e57600080fd5b813561239b81614526565b803563ffffffff8116811461456d57600080fd5b919050565b60008083601f84011261458457600080fd5b5081356001600160401b0381111561459b57600080fd5b6020830191508360208260051b850101111561121e57600080fd5b6000806000604084860312156145cb57600080fd5b6145d484614559565b925060208401356001600160401b038111156145ef57600080fd5b6145fb86828701614572565b9497909650939450505050565b60005b8381101561462357818101518382015260200161460b565b838111156111e25750506000910152565b6000815180845261464c816020860160208601614608565b601f01601f19169290920160200192915050565b60208152600061239b6020830184614634565b60006020828403121561468557600080fd5b5035919050565b6001600160a01b0391909116815260200190565b80356001600160a01b038116811461456d57600080fd5b600080604083850312156146ca57600080fd5b6146d3836146a0565b946020939093013593505050565b6000602082840312156146f357600080fd5b61239b826146a0565b80151581146118b957600080fd5b6000806000806080858703121561472057600080fd5b843561472b816146fc565b93506020850135925061474060408601614559565b915061474e60608601614559565b905092959194509250565b60008060006060848603121561476e57600080fd5b614777846146a0565b9250614785602085016146a0565b9150604084013590509250925092565b600080604083850312156147a857600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156147f5576147f56147b7565b604052919050565b60006001600160401b03831115614816576148166147b7565b614829601f8401601f19166020016147cd565b905082815283838301111561483d57600080fd5b828260208301376000602084830101529392505050565b600082601f83011261486557600080fd5b61239b838335602085016147fd565b60006020828403121561488657600080fd5b81356001600160401b0381111561489c57600080fd5b612aa384828501614854565b6000806000606084860312156148bd57600080fd5b6148c684614559565b92506148d4602085016146a0565b91506148e2604085016146a0565b90509250925092565b60006001600160401b03821115614904576149046147b7565b5060051b60200190565b600082601f83011261491f57600080fd5b8135602061493461492f836148eb565b6147cd565b82815260059290921b8401810191818101908684111561495357600080fd5b8286015b8481101561496e5780358352918301918301614957565b509695505050505050565b60006020828403121561498b57600080fd5b81356001600160401b038111156149a157600080fd5b612aa38482850161490e565b80516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b6020808252825182820181905260009190848201906040850190845b81811015611ed457614a098385516149ad565b92840192606092909201916001016149f6565b60008060408385031215614a2f57600080fd5b82356001600160401b0380821115614a4657600080fd5b818501915085601f830112614a5a57600080fd5b81356020614a6a61492f836148eb565b82815260059290921b84018101918181019089841115614a8957600080fd5b948201945b83861015614aae57614a9f866146a0565b82529482019490820190614a8e565b96505086013592505080821115614ac457600080fd5b50614ad18582860161490e565b9150509250929050565b60008060008060808587031215614af157600080fd5b84356001600160401b0380821115614b0857600080fd5b614b1488838901614854565b95506020870135915080821115614b2a57600080fd5b50614b3787828801614854565b949794965050505060408301359260600135919050565b60008060408385031215614b6157600080fd5b8235614b6c816146fc565b915060208301356001600160401b03811115614b8757600080fd5b614ad185828601614854565b600081518084526020808501945080840160005b83811015614bc357815187529582019590820190600101614ba7565b509495945050505050565b60208152600061239b6020830184614b93565b60008060008060608587031215614bf757600080fd5b614c0085614559565b935060208501356001600160401b03811115614c1b57600080fd5b614c2787828801614572565b909450925061474e9050604086016146a0565b600080600060608486031215614c4f57600080fd5b614c58846146a0565b95602085013595506040909401359392505050565b60008060408385031215614c8057600080fd5b614c89836146a0565b91506020830135614c99816146fc565b809150509250929050565b60008060408385031215614cb757600080fd5b82359150614cc7602084016146a0565b90509250929050565b60008060008060808587031215614ce657600080fd5b614cef856146a0565b9350614cfd602086016146a0565b92506040850135915060608501356001600160401b03811115614d1f57600080fd5b8501601f81018713614d3057600080fd5b614d3f878235602084016147fd565b91505092959194509250565b60608101610b8482846149ad565b600060208284031215614d6b57600080fd5b61239b82614559565b60008060408385031215614d8757600080fd5b82356146d3816146fc565b60008060408385031215614da557600080fd5b614dae836146a0565b9150614cc7602084016146a0565b60008060408385031215614dcf57600080fd5b614dae83614559565b604080825283519082018190526000906020906060840190828701845b82811015614e1a5781516001600160a01b031684529284019290840190600101614df5565b50505083810382850152614e2e8186614b93565b9695505050505050565b60208082526012908201527126b4b73a1030ba103632b0b9ba1037b7329760711b604082015260600190565b60208082526011908201527026b0bc1036b4b73a103932b0b1b432b21760791b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115614eb857614eb8614e8f565b500190565b60208082526012908201527172656163686564206d617820737570706c7960701b604082015260600190565b60208082526011908201527063616e206e6f74206d696e74206d6f726560781b604082015260600190565b60208082526010908201526f2737ba1032b737bab3b410333ab7321760811b604082015260600190565b6020808252601490820152737265616368656420706175736520737570706c7960601b604082015260600190565b600060208284031215614f7e57600080fd5b5051919050565b6020808252601690820152751058d8d95cdcc81d1bdad95b881b9bdd081bdddb995960521b604082015260600190565b60208082526010908201526f283932b9b0b632903737ba1037b832b760811b604082015260600190565b60208082526011908201527050726573616c65206e6f7420726561647960781b604082015260600190565b60609190911b6001600160601b031916815260140190565b6020808252601490820152732737ba103090383932b9b0b6329036b2b6b132b960611b604082015260600190565b60008282101561506257615062614e8f565b500390565b600181811c9082168061507b57607f821691505b6020821081141561509c57634e487b7160e01b600052602260045260246000fd5b50919050565b6001600160a01b0392831681529116602082015260400190565b6000602082840312156150ce57600080fd5b815161239b816146fc565b60008160001904831182151516156150f3576150f3614e8f565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261511d5761511d6150f8565b500490565b634e487b7160e01b600052603260045260246000fd5b6020808252601290820152712932b332b93930b639903737ba1037b832b760711b604082015260600190565b6020808252600d908201526c26b4b73a103737ba1037b832b760991b604082015260600190565b6020808252601290820152714361702069732073657420746f207a65726f60701b604082015260600190565b602080825260179082015276149959995c9c995c881a185cc81b9bdd081b5a5b9d1959604a1b604082015260600190565b60208082526015908201527421b0b73737ba103932b332b9103cb7bab939b2b63360591b604082015260600190565b600082615226576152266150f8565b500690565b600060001982141561523f5761523f614e8f565b5060010190565b60008151615258818560208601614608565b9290920192915050565b600080845481600182811c91508083168061527e57607f831692505b602080841082141561529e57634e487b7160e01b86526022600452602486fd5b8180156152b257600181146152c3576152f0565b60ff198616895284890196506152f0565b60008b81526020902060005b868110156152e85781548b8201529085019083016152cf565b505084890196505b5050505050506153146153038286615246565b64173539b7b760d91b815260050190565b95945050505050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090614e2e90830184614634565b6000602082840312156153ad57600080fd5b815161239b8161452656fe000000000000000000000000460fd5059e7301680fa53e63bbbf7272e643e89cddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef053610c1bbc3d12e42c85f76f7b50169b74241c5e57dfea08a39711d4594eaf1a2646970667358221220a00ef5b169da1e26aa1934eb79900e719cfa8b804c7fb189aa44f91547c7df8b64736f6c634300080b0033

Deployed Bytecode

0x6080604052600436106102de5760003560e01c806301ffc9a7146102e35780630364d22a14610318578063047fc9aa1461032d57806306fdde0314610350578063081812fc14610372578063095ea7b31461039f5780631012c330146103bf57806310384ba1146103df57806313faede6146103f657806314eba0261461040d57806318160ddd1461042d5780631d02161d1461044257806323b872dd1461046257806323e6fe44146104825780632a55205a146104d6578063355e6b431461051557806339f7e37f146105355780633b9e106d146105555780633ccfd60b146105685780633eb2b5ad1461057057806342842e0e1461059057806342966c68146105b0578063453c2310146105d05780634b0bdd2a1461060a578063507e094f1461062a5780635183022714610648578063595882b3146106685780635bbb2177146106705780636352211e1461069d57806364bb1061146106bd57806367243482146106df5780636c2f5acd146106ff5780636fe0e3951461071f57806370a082311461073f578063715018a61461075f578063828c12ce146107745780638462151c146107945780638624a72b146107c15780638da5cb5b146107d457806395d89b41146107e957806399a2557a146107fe5780639ea7b2ba1461081e578063a0712d681461083e578063a22cb46514610851578063a591252d14610871578063b723b34e14610896578063b88d4fde146108a9578063bbe9f99d146108c9578063bd1b6be414610908578063be8e43ee14610928578063bee6348a14610948578063c23dc68f14610969578063c7d1261014610996578063c87b56dd146109b7578063d6c5b414146109d7578063d8deebd914610a0e578063db31882b14610a2e578063dfdd9b9a14610a4e578063e985e9c514610a65578063e9b1388f14610aae578063f179dca114610ace578063f2fde38b14610ae1578063f5ca4dfd14610b01578063fcfff16f14610b24578063fe25219a14610b3f575b600080fd5b3480156102ef57600080fd5b506103036102fe36600461453c565b610b5f565b60405190151581526020015b60405180910390f35b61032b6103263660046145b6565b610b8a565b005b34801561033957600080fd5b50610342610e89565b60405190815260200161030f565b34801561035c57600080fd5b50610365610e9f565b60405161030f9190614660565b34801561037e57600080fd5b5061039261038d366004614673565b610f31565b60405161030f919061468c565b3480156103ab57600080fd5b5061032b6103ba3660046146b7565b610f75565b3480156103cb57600080fd5b5061032b6103da3660046146e1565b610ffc565b3480156103eb57600080fd5b5061034261012f5481565b34801561040257600080fd5b506103426101305481565b34801561041957600080fd5b5061032b6104283660046146e1565b61104a565b34801561043957600080fd5b50610342611087565b34801561044e57600080fd5b5061032b61045d36600461470a565b61109a565b34801561046e57600080fd5b5061032b61047d366004614759565b61110d565b34801561048e57600080fd5b5061036561049d3660046146b7565b604051606083811b6001600160601b03191660208301526034820183905290605401604051602081830303815290604052905092915050565b3480156104e257600080fd5b506104f66104f1366004614795565b6111e8565b604080516001600160a01b03909316835260208301919091520161030f565b34801561052157600080fd5b5061032b610530366004614673565b611225565b34801561054157600080fd5b5061032b610550366004614874565b611332565b61032b6105633660046148a8565b611375565b61032b6116b1565b34801561057c57600080fd5b5061032b61058b3660046146e1565b61179e565b34801561059c57600080fd5b5061032b6105ab366004614759565b6117de565b3480156105bc57600080fd5b5061032b6105cb366004614673565b6118ae565b3480156105dc57600080fd5b5061012e546105f590600160201b900463ffffffff1681565b60405163ffffffff909116815260200161030f565b34801561061657600080fd5b506103426106253660046146e1565b6118bc565b34801561063657600080fd5b5061012e546105f59063ffffffff1681565b34801561065457600080fd5b506101315461030390610100900460ff1681565b61032b6118c7565b34801561067c57600080fd5b5061069061068b366004614979565b611919565b60405161030f91906149da565b3480156106a957600080fd5b506103926106b8366004614673565b6119cd565b3480156106c957600080fd5b5061013154610303906301000000900460ff1681565b3480156106eb57600080fd5b5061032b6106fa366004614a1c565b6119df565b34801561070b57600080fd5b5061032b61071a3660046146b7565b611ac4565b34801561072b57600080fd5b5061032b61073a366004614adb565b611b17565b34801561074b57600080fd5b5061034261075a3660046146e1565b611c36565b34801561076b57600080fd5b5061032b611c84565b34801561078057600080fd5b5061032b61078f366004614b4e565b611c96565b3480156107a057600080fd5b506107b46107af3660046146e1565b611dae565b60405161030f9190614bce565b61032b6107cf366004614be1565b611ee0565b3480156107e057600080fd5b506103926121bc565b3480156107f557600080fd5b506103656121cb565b34801561080a57600080fd5b506107b4610819366004614c3a565b6121da565b34801561082a57600080fd5b5061032b610839366004614673565b6123a2565b61032b61084c366004614673565b61241a565b34801561085d57600080fd5b5061032b61086c366004614c6d565b61265c565b34801561087d57600080fd5b5061012e546105f590600160401b900463ffffffff1681565b61032b6108a4366004614ca4565b6126f2565b3480156108b557600080fd5b5061032b6108c4366004614cd0565b612935565b3480156108d557600080fd5b506103036108e43660046146e1565b6001600160a01b0316600090815261012d602052604090205460ff16151560011490565b34801561091457600080fd5b506103426109233660046146b7565b612a0c565b34801561093457600080fd5b5061032b610943366004614a1c565b612aab565b34801561095457600080fd5b50610131546103039062010000900460ff1681565b34801561097557600080fd5b50610989610984366004614673565b612c9f565b60405161030f9190614d4b565b3480156109a257600080fd5b5061013354610392906001600160a01b031681565b3480156109c357600080fd5b506103656109d2366004614673565b612d34565b3480156109e357600080fd5b506103426109f23660046146e1565b6001600160a01b0316600090815261013a602052604090205490565b348015610a1a57600080fd5b5061032b610a29366004614d59565b612dcb565b348015610a3a57600080fd5b5061032b610a49366004614d74565b612e1d565b348015610a5a57600080fd5b506103426101325481565b348015610a7157600080fd5b50610303610a80366004614d92565b6001600160a01b039182166000908152606c6020908152604080832093909416825291909152205460ff1690565b348015610aba57600080fd5b50610342610ac93660046146e1565b612e6a565b61032b610adc366004614dbc565b612e90565b348015610aed57600080fd5b5061032b610afc3660046146e1565b6131c3565b348015610b0d57600080fd5b50610b16613239565b60405161030f929190614dd8565b348015610b3057600080fd5b50610131546103039060ff1681565b348015610b4b57600080fd5b5061032b610b5a366004614d74565b61336f565b60006001600160e01b0319821663152a902d60e11b1480610b845750610b84826133be565b92915050565b8263ffffffff163360008211610bbb5760405162461bcd60e51b8152600401610bb290614e38565b60405180910390fd5b61012e5463ffffffff16821115610be45760405162461bcd60e51b8152600401610bb290614e64565b610bec611087565b82610bf5610e89565b610bff9190614ea5565b1115610c1d5760405162461bcd60e51b8152600401610bb290614ebd565b61012e54600160201b900463ffffffff1682610c388361340e565b610c429190614ea5565b1115610c605760405162461bcd60e51b8152600401610bb290614ee9565b610c6a8183612a0c565b341015610c895760405162461bcd60e51b8152600401610bb290614f14565b61012f5415610cc75761012f5482610c9f610e89565b610ca99190614ea5565b1115610cc75760405162461bcd60e51b8152600401610bb290614f3e565b610133546001600160a01b031615610d6f57610133546040516370a0823160e01b81526001600160a01b039091169060009082906370a0823190610d0f90339060040161468c565b602060405180830381865afa158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190614f6c565b11610d6d5760405162461bcd60e51b8152600401610bb290614f85565b505b6101315462010000900460ff16610d985760405162461bcd60e51b8152600401610bb290614fb5565b61013954610db85760405162461bcd60e51b8152600401610bb290614fdf565b610e208484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505061013954604051909250610e059150339060200161500a565b60405160208183030381529060405280519060200120613439565b610e3c5760405162461bcd60e51b8152600401610bb290615022565b610e4c338663ffffffff1661344f565b600061012f54118015610e69575061012f54610e66610e89565b10155b15610e8257610131805462ff00ff19169055600061012f555b5050505050565b60006001606554610e9a9190615050565b905090565b606060678054610eae90615067565b80601f0160208091040260200160405190810160405280929190818152602001828054610eda90615067565b8015610f275780601f10610efc57610100808354040283529160200191610f27565b820191906000526020600020905b815481529060010190602001808311610f0a57829003601f168201915b5050505050905090565b6000610f3c82613469565b610f59576040516333d1c03960e21b815260040160405180910390fd5b506000908152606b60205260409020546001600160a01b031690565b6000610f80826119cd565b9050806001600160a01b0316836001600160a01b03161415610fb55760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610fec57610fcf8133610a80565b610fec576040516367d9dca160e11b815260040160405180910390fd5b610ff78383836134a2565b505050565b336110056121bc565b6001600160a01b0316148061101e575061101e336108e4565b61102757600080fd5b61013380546001600160a01b0319166001600160a01b0392909216919091179055565b6110526134fe565b6001600160a01b03811661106557600080fd5b6001600160a01b0316600090815261012d60205260409020805460ff19169055565b600060665461013454610e9a9190615050565b336110a36121bc565b6001600160a01b031614806110bc57506110bc336108e4565b6110c557600080fd5b610131805460ff1916941515949094179093556101309190915561012e80546001600160401b031916600160201b63ffffffff9384160263ffffffff19161791909216179055565b826daaeb6d7670e522a718067333cd4e3b156111d7576001600160a01b0381163314156111445761113f84848461355d565b6111e2565b604051633185c44d60e21b81526daaeb6d7670e522a718067333cd4e9063c61711349061117790309033906004016150a2565b602060405180830381865afa158015611194573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b891906150bc565b6111d75733604051633b79c77360e21b8152600401610bb2919061468c565b6111e284848461355d565b50505050565b610136546101375460009182916001600160a01b03909116906103e89061120f90866150d9565b611219919061510e565b915091505b9250929050565b336000805160206153b9833981519152146112745760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610bb2565b6000805160206153b9833981519152600090815261013c6020526000805160206153f9833981519152546112a9908390615050565b6000805160206153b9833981519152600090815261013c60208190526000805160206153f983398151915285905561013d8054939450849391929160019081106112f5576112f5615122565b60009182526020808320909101546001600160a01b0316835282019290925260400181208054909190611329908490614ea5565b90915550505050565b3361133b6121bc565b6001600160a01b031614806113545750611354336108e4565b61135d57600080fd5b805161137190610135906020840190614418565b5050565b8263ffffffff16816000821161139d5760405162461bcd60e51b8152600401610bb290614e38565b61012e5463ffffffff168211156113c65760405162461bcd60e51b8152600401610bb290614e64565b6113ce611087565b826113d7610e89565b6113e19190614ea5565b11156113ff5760405162461bcd60e51b8152600401610bb290614ebd565b61012e54600160201b900463ffffffff168261141a8361340e565b6114249190614ea5565b11156114425760405162461bcd60e51b8152600401610bb290614ee9565b61144c8183612a0c565b34101561146b5760405162461bcd60e51b8152600401610bb290614f14565b61012f54156114a95761012f5482611481610e89565b61148b9190614ea5565b11156114a95760405162461bcd60e51b8152600401610bb290614f3e565b610133546001600160a01b03161561155157610133546040516370a0823160e01b81526001600160a01b039091169060009082906370a08231906114f190339060040161468c565b602060405180830381865afa15801561150e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115329190614f6c565b1161154f5760405162461bcd60e51b8152600401610bb290614f85565b505b610131546301000000900460ff1615156001146115805760405162461bcd60e51b8152600401610bb290615138565b6101315460ff1615156001146115a85760405162461bcd60e51b8152600401610bb290615164565b600061013254116115cb5760405162461bcd60e51b8152600401610bb29061518b565b60006115d68561340e565b116115f35760405162461bcd60e51b8152600401610bb2906151b7565b836001600160a01b0316836001600160a01b031614156116255760405162461bcd60e51b8152600401610bb2906151e8565b611635838663ffffffff1661344f565b6001600160a01b038416600090815261013a6020526040812080546001929061165f908490614ea5565b9091555050610132546001600160a01b038516600090815261013a602052604090205461168c9190615217565b610e4c57611698611087565b6116a0610e89565b1015610e4c57610e4c84600161344f565b47806116ee5760405162461bcd60e51b815260206004820152600c60248201526b5a65726f2062616c616e636560a01b6044820152606401610bb2565b60005b61013d5481101561137157600061013c600061013d848154811061171757611717615122565b60009182526020808320909101546001600160a01b0316835282019290925260400181205491506103e861174b85846150d9565b611755919061510e565b905061178961013d848154811061176e5761176e615122565b6000918252602090912001546001600160a01b031682613568565b505080806117969061522b565b9150506116f1565b6117a66134fe565b6001600160a01b0381166117b957600080fd5b6001600160a01b0316600090815261012d60205260409020805460ff19166001179055565b826daaeb6d7670e522a718067333cd4e3b156118a3576001600160a01b0381163314156118105761113f84848461367e565b604051633185c44d60e21b81526daaeb6d7670e522a718067333cd4e9063c61711349061184390309033906004016150a2565b602060405180830381865afa158015611860573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061188491906150bc565b6118a35733604051633b79c77360e21b8152600401610bb2919061468c565b6111e284848461367e565b6118b9816001613699565b50565b6000610b848261340e565b6118cf6134fe565b34156118ed576118ed6000805160206153b983398151915234613568565b6119176118f86121bc565b611900610e89565b611908611087565b6119129190615050565b61344f565b565b80516060906000816001600160401b03811115611938576119386147b7565b60405190808252806020026020018201604052801561197157816020015b61195e61449c565b8152602001906001900390816119565790505b50905060005b8281146119c5576119a085828151811061199357611993615122565b6020026020010151612c9f565b8282815181106119b2576119b2615122565b6020908102919091010152600101611977565b509392505050565b60006119d882613847565b5192915050565b336119e86121bc565b6001600160a01b03161480611a015750611a01336108e4565b611a0a57600080fd5b8051825114611a1857600080fd5b60005b8151811015610ff757611a2c611087565b828281518110611a3e57611a3e615122565b6020026020010151611a4e610e89565b611a589190614ea5565b1115611a765760405162461bcd60e51b8152600401610bb290614ebd565b611ab2838281518110611a8b57611a8b615122565b6020026020010151838381518110611aa557611aa5615122565b602002602001015161344f565b80611abc8161522b565b915050611a1b565b33611acd6121bc565b6001600160a01b03161480611ae65750611ae6336108e4565b611aef57600080fd5b61013680546001600160a01b0319166001600160a01b03939093169290921790915561013755565b600054610100900460ff1615808015611b375750600054600160ff909116105b80611b585750611b4630613954565b158015611b58575060005460ff166001145b611bbb5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610bb2565b6000805460ff191660011790558015611bde576000805461ff0019166101001790555b611bea85858585613963565b8015610e82576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15050505050565b60006001600160a01b038216611c5f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152606a60205260409020546001600160401b031690565b611c8c6134fe565b6119176000613ab9565b33611c9f6121bc565b6001600160a01b03161480611cb85750611cb8336108e4565b611cc157600080fd5b610131805461ff00191661010084151590810291909117909155611cf5578051611cf390610138906020840190614418565b505b600182151514156113715760006101358054611d1090615067565b80601f0160208091040260200160405190810160405280929190818152602001828054611d3c90615067565b8015611d895780601f10611d5e57610100808354040283529160200191611d89565b820191906000526020600020905b815481529060010190602001808311611d6c57829003601f168201915b50505050509050805160001415610ff75781516111e290610135906020850190614418565b60606000806000611dbe85611c36565b90506000816001600160401b03811115611dda57611dda6147b7565b604051908082528060200260200182016040528015611e03578160200160208202803683370190505b509050611e0e61449c565b60015b838614611ed457600081815260696020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529250611e7757611ecc565b81516001600160a01b031615611e8c57815194505b876001600160a01b0316856001600160a01b03161415611ecc5780838780600101985081518110611ebf57611ebf615122565b6020026020010181815250505b600101611e11565b50909695505050505050565b8363ffffffff168160008211611f085760405162461bcd60e51b8152600401610bb290614e38565b61012e5463ffffffff16821115611f315760405162461bcd60e51b8152600401610bb290614e64565b611f39611087565b82611f42610e89565b611f4c9190614ea5565b1115611f6a5760405162461bcd60e51b8152600401610bb290614ebd565b61012e54600160201b900463ffffffff1682611f858361340e565b611f8f9190614ea5565b1115611fad5760405162461bcd60e51b8152600401610bb290614ee9565b611fb78183612a0c565b341015611fd65760405162461bcd60e51b8152600401610bb290614f14565b61012f54156120145761012f5482611fec610e89565b611ff69190614ea5565b11156120145760405162461bcd60e51b8152600401610bb290614f3e565b610133546001600160a01b0316156120bc57610133546040516370a0823160e01b81526001600160a01b039091169060009082906370a082319061205c90339060040161468c565b602060405180830381865afa158015612079573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061209d9190614f6c565b116120ba5760405162461bcd60e51b8152600401610bb290614f85565b505b6101315462010000900460ff166120e55760405162461bcd60e51b8152600401610bb290614fb5565b610139546121055760405162461bcd60e51b8152600401610bb290614fdf565b6121528585808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505061013954604051909250610e059150879060200161500a565b61216e5760405162461bcd60e51b8152600401610bb290615022565b61217e838763ffffffff1661344f565b600061012f5411801561219b575061012f54612198610e89565b10155b156121b457610131805462ff00ff19169055600061012f555b505050505050565b60fb546001600160a01b031690565b606060688054610eae90615067565b60608183106121fc57604051631960ccad60e11b815260040160405180910390fd5b606554600090600185101561221057600194505b8084111561221c578093505b600061222787611c36565b9050848610156122465785850381811015612240578091505b5061224a565b5060005b6000816001600160401b03811115612264576122646147b7565b60405190808252806020026020018201604052801561228d578160200160208202803683370190505b509050816122a057935061239b92505050565b60006122ab88612c9f565b9050600081604001516122bc575080515b885b8881141580156122ce5750848714155b1561238f57600081815260696020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615801592820192909252935061233257612387565b82516001600160a01b03161561234757825191505b8a6001600160a01b0316826001600160a01b03161415612387578084888060010199508151811061237a5761237a615122565b6020026020010181815250505b6001016122be565b50505092835250909150505b9392505050565b336123ab6121bc565b6001600160a01b031614806123c457506123c4336108e4565b6123cd57600080fd5b6123d5610e89565b8110156124145760405162461bcd60e51b815260206004820152600d60248201526c496e76616c69642076616c756560981b6044820152606401610bb2565b61012f55565b80336000821161243c5760405162461bcd60e51b8152600401610bb290614e38565b61012e5463ffffffff168211156124655760405162461bcd60e51b8152600401610bb290614e64565b61246d611087565b82612476610e89565b6124809190614ea5565b111561249e5760405162461bcd60e51b8152600401610bb290614ebd565b61012e54600160201b900463ffffffff16826124b98361340e565b6124c39190614ea5565b11156124e15760405162461bcd60e51b8152600401610bb290614ee9565b6124eb8183612a0c565b34101561250a5760405162461bcd60e51b8152600401610bb290614f14565b61012f54156125485761012f5482612520610e89565b61252a9190614ea5565b11156125485760405162461bcd60e51b8152600401610bb290614f3e565b610133546001600160a01b0316156125f057610133546040516370a0823160e01b81526001600160a01b039091169060009082906370a082319061259090339060040161468c565b602060405180830381865afa1580156125ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125d19190614f6c565b116125ee5760405162461bcd60e51b8152600401610bb290614f85565b505b6101315460ff1615156001146126185760405162461bcd60e51b8152600401610bb290615164565b612622338461344f565b600061012f5411801561263f575061012f5461263c610e89565b10155b15610ff757610131805462ff00ff19169055600061012f55505050565b6001600160a01b0382163314156126865760405163b06307db60e01b815260040160405180910390fd5b336000818152606c602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b8181600082116127145760405162461bcd60e51b8152600401610bb290614e38565b61012e5463ffffffff1682111561273d5760405162461bcd60e51b8152600401610bb290614e64565b612745611087565b8261274e610e89565b6127589190614ea5565b11156127765760405162461bcd60e51b8152600401610bb290614ebd565b61012e54600160201b900463ffffffff16826127918361340e565b61279b9190614ea5565b11156127b95760405162461bcd60e51b8152600401610bb290614ee9565b6127c38183612a0c565b3410156127e25760405162461bcd60e51b8152600401610bb290614f14565b61012f54156128205761012f54826127f8610e89565b6128029190614ea5565b11156128205760405162461bcd60e51b8152600401610bb290614f3e565b610133546001600160a01b0316156128c857610133546040516370a0823160e01b81526001600160a01b039091169060009082906370a082319061286890339060040161468c565b602060405180830381865afa158015612885573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128a99190614f6c565b116128c65760405162461bcd60e51b8152600401610bb290614f85565b505b6101315460ff1615156001146128f05760405162461bcd60e51b8152600401610bb290615164565b6128fa838561344f565b600061012f54118015612917575061012f54612914610e89565b10155b156111e257610131805462ff00ff19169055600061012f5550505050565b836daaeb6d7670e522a718067333cd4e3b15612a00576001600160a01b03811633141561296d5761296885858585613b0b565b610e82565b604051633185c44d60e21b81526daaeb6d7670e522a718067333cd4e9063c6171134906129a090309033906004016150a2565b602060405180830381865afa1580156129bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129e191906150bc565b612a005733604051633b79c77360e21b8152600401610bb2919061468c565b610e8285858585613b0b565b600080612a188461340e565b61012e54909150600160401b900463ffffffff1615801590612a49575061012e54600160401b900463ffffffff1681105b15612a955761012e54612a75908490612a70908490600160401b900463ffffffff16615050565b613b56565b612a7f9084615050565b61013054612a8d91906150d9565b915050610b84565b61013054612aa390846150d9565b949350505050565b612ab36134fe565b60015b61013d54811015612b115761013c600061013d8381548110612ada57612ada615122565b60009182526020808320909101546001600160a01b0316835282019290925260400181205580612b098161522b565b915050612ab6565b508151612b1f906001614ea5565b6001600160401b03811115612b3657612b366147b7565b604051908082528060200260200182016040528015612b5f578160200160208202803683370190505b508051612b759161013d916020909101906144bc565b506000805160206153b983398151915261013d600081548110612b9a57612b9a615122565b6000918252602082200180546001600160a01b0319166001600160a01b0393909316929092179091555b8251811015610ff757818181518110612bdf57612bdf615122565b602002602001015161013c6000858481518110612bfe57612bfe615122565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550828181518110612c3c57612c3c615122565b602002602001015161013d826001612c549190614ea5565b81548110612c6457612c64615122565b600091825260209091200180546001600160a01b0319166001600160a01b039290921691909117905580612c978161522b565b915050612bc4565b612ca761449c565b612caf61449c565b6001831080612cc057506065548310155b15612ccb5792915050565b50600082815260696020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290612d2b5792915050565b61239b83613847565b6060612d3f82613469565b612d7c5760405162461bcd60e51b815260206004820152600e60248201526d111bd95cc81b9bdd08195e1a5cdd60921b6044820152606401610bb2565b61013154610100900460ff16612dbf57610138612d9883613b6c565b604051602001612da9929190615262565b6040516020818303038152906040529050919050565b610135612d9883613b6c565b33612dd46121bc565b6001600160a01b03161480612ded5750612ded336108e4565b612df657600080fd5b61012e805463ffffffff909216600160401b0263ffffffff60401b19909216919091179055565b33612e266121bc565b6001600160a01b03161480612e3f5750612e3f336108e4565b612e4857600080fd5b6101318054921515620100000262ff0000199093169290921790915561013955565b6000612e758261340e565b61012e54610b849190600160201b900463ffffffff16615050565b8163ffffffff163360008211612eb85760405162461bcd60e51b8152600401610bb290614e38565b61012e5463ffffffff16821115612ee15760405162461bcd60e51b8152600401610bb290614e64565b612ee9611087565b82612ef2610e89565b612efc9190614ea5565b1115612f1a5760405162461bcd60e51b8152600401610bb290614ebd565b61012e54600160201b900463ffffffff1682612f358361340e565b612f3f9190614ea5565b1115612f5d5760405162461bcd60e51b8152600401610bb290614ee9565b612f678183612a0c565b341015612f865760405162461bcd60e51b8152600401610bb290614f14565b61012f5415612fc45761012f5482612f9c610e89565b612fa69190614ea5565b1115612fc45760405162461bcd60e51b8152600401610bb290614f3e565b610133546001600160a01b03161561306c57610133546040516370a0823160e01b81526001600160a01b039091169060009082906370a082319061300c90339060040161468c565b602060405180830381865afa158015613029573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061304d9190614f6c565b1161306a5760405162461bcd60e51b8152600401610bb290614f85565b505b610131546301000000900460ff16151560011461309b5760405162461bcd60e51b8152600401610bb290615138565b6101315460ff1615156001146130c35760405162461bcd60e51b8152600401610bb290615164565b600061013254116130e65760405162461bcd60e51b8152600401610bb29061518b565b60006130f18461340e565b1161310e5760405162461bcd60e51b8152600401610bb2906151b7565b336001600160a01b03841614156131375760405162461bcd60e51b8152600401610bb2906151e8565b613147338563ffffffff1661344f565b6001600160a01b038316600090815261013a60205260408120805460019290613171908490614ea5565b9091555050610132546001600160a01b038416600090815261013a602052604090205461319e9190615217565b6128fa576131aa611087565b6131b2610e89565b10156128fa576128fa83600161344f565b6131cb6134fe565b6001600160a01b0381166132305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bb2565b6118b981613ab9565b606080600061013d805490506001600160401b0381111561325c5761325c6147b7565b604051908082528060200260200182016040528015613285578160200160208202803683370190505b50905060005b61013d548110156133055761013c600061013d83815481106132af576132af615122565b60009182526020808320909101546001600160a01b0316835282019290925260400190205482518390839081106132e8576132e8615122565b6020908102919091010152806132fd8161522b565b91505061328b565b5061013d818180548060200260200160405190810160405280929190818152602001828054801561335f57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311613341575b5050505050915092509250509091565b336133786121bc565b6001600160a01b031614806133915750613391336108e4565b61339a57600080fd5b610131805492151563010000000263ff000000199093169290921790915561013255565b60006001600160e01b031982166380ac58cd60e01b14806133ef57506001600160e01b03198216635b5e139f60e01b145b80610b8457506301ffc9a760e01b6001600160e01b0319831614610b84565b6001600160a01b03166000908152606a6020526040902054600160401b90046001600160401b031690565b6000826134468584613c69565b14949350505050565b611371828260405180602001604052806000815250613cae565b60008160011115801561347d575060655482105b8015610b84575050600090815260696020526040902054600160e01b900460ff161590565b6000828152606b602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b336135076121bc565b6001600160a01b0316146119175760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bb2565b610ff7838383613e46565b804710156135b85760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610bb2565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114613605576040519150601f19603f3d011682016040523d82523d6000602084013e61360a565b606091505b5050905080610ff75760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c20726044820152791958da5c1a595b9d081b585e481a185d99481c995d995c9d195960321b6064820152608401610bb2565b610ff783838360405180602001604052806000815250612935565b60006136a483613847565b8051909150821561370a576000336001600160a01b03831614806136cd57506136cd8233610a80565b806136e85750336136dd86610f31565b6001600160a01b0316145b90508061370857604051632ce44b5f60e11b815260040160405180910390fd5b505b613716600085836134a2565b6001600160a01b038082166000818152606a602090815260408083208054600160801b6000196001600160401b038084169190910181166001600160401b0319841681178390048216600190810183169093026001600160401b03600160801b03600160c01b0319909416179290921783558b86526069909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b17855591890180845292208054919490911661380e57606554821461380e57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b038416906000805160206153d9833981519152908390a450506066805460010190555050565b61384f61449c565b818060011161393b5760655481101561393b57600081815260696020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906139395780516001600160a01b0316156138d0579392505050565b5060001901600081815260696020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215613934579392505050565b6138d0565b505b604051636f96cda160e11b815260040160405180910390fd5b6001600160a01b03163b151590565b600054610100900460ff1661398a5760405162461bcd60e51b8152600401610bb29061531d565b613994848461401e565b61399c61404f565b6139a461404f565b6139ac614076565b6139b46140a5565b610134829055610131805461ff00191690556000805160206153b983398151915260005261013c6020526000805160206153f98339815191528190556139fc816103e8615050565b61013c6000613a096121bc565b6001600160a01b03168152602081019190915260400160009081209190915561013d8054600181018255918190527f311617e6f2abe00ca92b0da56c014828817049e78441cf034e4dd4feba52962590910180546001600160a01b0319166000805160206153b9833981519152179055613a816121bc565b81546001810183556000928352602090922090910180546001600160a01b0319166001600160a01b0390921691909117905550505050565b60fb80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b613b16848484613e46565b613b28836001600160a01b0316613954565b156111e257613b39848484846140eb565b6111e2576040516368d2bf6b60e11b815260040160405180910390fd5b6000818310613b65578161239b565b5090919050565b606081613b905750506040805180820190915260018152600360fc1b602082015290565b8160005b8115613bba5780613ba48161522b565b9150613bb39050600a8361510e565b9150613b94565b6000816001600160401b03811115613bd457613bd46147b7565b6040519080825280601f01601f191660200182016040528015613bfe576020820181803683370190505b5090505b8415612aa357613c13600183615050565b9150613c20600a86615217565b613c2b906030614ea5565b60f81b818381518110613c4057613c40615122565b60200101906001600160f81b031916908160001a905350613c62600a8661510e565b9450613c02565b600081815b84518110156119c557613c9a82868381518110613c8d57613c8d615122565b60200260200101516141d3565b915080613ca68161522b565b915050613c6e565b6065546001600160a01b038416613cd757604051622e076360e81b815260040160405180910390fd5b82613cf55760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0384166000818152606a6020908152604080832080546001600160801b031981166001600160401b038083168b018116918217600160401b6001600160401b031990941690921783900481168b01811690920217909155858452606990925290912080546001600160e01b0319168317600160a01b4290931692909202919091179055819081850190613d8e90613954565b15613e04575b60405182906001600160a01b038816906000906000805160206153d9833981519152908290a4613dcd60008784806001019550876140eb565b613dea576040516368d2bf6b60e11b815260040160405180910390fd5b808210613d94578260655414613dff57600080fd5b613e37565b5b6040516001830192906001600160a01b038816906000906000805160206153d9833981519152908290a4808210613e05575b506065556111e2600085838684565b6000613e5182613847565b9050836001600160a01b031681600001516001600160a01b031614613e885760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480613ea65750613ea68533610a80565b80613ec1575033613eb684610f31565b6001600160a01b0316145b905080613ee157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416613f0857604051633a954ecd60e21b815260040160405180910390fd5b613f14600084876134a2565b6001600160a01b038581166000908152606a6020908152604080832080546001600160401b03198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652606990945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116613fe7576065548214613fe757805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03166000805160206153d983398151915260405160405180910390a4610e82565b600054610100900460ff166140455760405162461bcd60e51b8152600401610bb29061531d565b6113718282614202565b600054610100900460ff166119175760405162461bcd60e51b8152600401610bb29061531d565b600054610100900460ff1661409d5760405162461bcd60e51b8152600401610bb29061531d565b61191761425a565b600054610100900460ff166140cc5760405162461bcd60e51b8152600401610bb29061531d565b611917733cc6cdda760b79bafa08df41ecfa224f810dceb6600161428a565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290614120903390899088908890600401615368565b6020604051808303816000875af192505050801561415b575060408051601f3d908101601f191682019092526141589181019061539b565b60015b6141b6573d808015614189576040519150601f19603f3d011682016040523d82523d6000602084013e61418e565b606091505b5080516141ae576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60008183106141ef57600082815260208490526040902061239b565b600083815260208390526040902061239b565b600054610100900460ff166142295760405162461bcd60e51b8152600401610bb29061531d565b815161423c906067906020850190614418565b508051614250906068906020840190614418565b5060016065555050565b600054610100900460ff166142815760405162461bcd60e51b8152600401610bb29061531d565b61191733613ab9565b600054610100900460ff166142b15760405162461bcd60e51b8152600401610bb29061531d565b6daaeb6d7670e522a718067333cd4e3b156113715760405163c3c5a54760e01b81526daaeb6d7670e522a718067333cd4e9063c3c5a547906142f790309060040161468c565b6020604051808303816000875af1158015614316573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061433a91906150bc565b6113715780156143a557604051633e9f1edf60e11b81526daaeb6d7670e522a718067333cd4e90637d3e3dbe9061437790309086906004016150a2565b600060405180830381600087803b15801561439157600080fd5b505af11580156121b4573d6000803e3d6000fd5b6001600160a01b038216156143e75760405163a0af290360e01b81526daaeb6d7670e522a718067333cd4e9063a0af29039061437790309086906004016150a2565b604051632210724360e11b81526daaeb6d7670e522a718067333cd4e90634420e4869061437790309060040161468c565b82805461442490615067565b90600052602060002090601f016020900481019282614446576000855561448c565b82601f1061445f57805160ff191683800117855561448c565b8280016001018555821561448c579182015b8281111561448c578251825591602001919060010190614471565b50614498929150614511565b5090565b604080516060810182526000808252602082018190529181019190915290565b82805482825590600052602060002090810192821561448c579160200282015b8281111561448c57825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906144dc565b5b808211156144985760008155600101614512565b6001600160e01b0319811681146118b957600080fd5b60006020828403121561454e57600080fd5b813561239b81614526565b803563ffffffff8116811461456d57600080fd5b919050565b60008083601f84011261458457600080fd5b5081356001600160401b0381111561459b57600080fd5b6020830191508360208260051b850101111561121e57600080fd5b6000806000604084860312156145cb57600080fd5b6145d484614559565b925060208401356001600160401b038111156145ef57600080fd5b6145fb86828701614572565b9497909650939450505050565b60005b8381101561462357818101518382015260200161460b565b838111156111e25750506000910152565b6000815180845261464c816020860160208601614608565b601f01601f19169290920160200192915050565b60208152600061239b6020830184614634565b60006020828403121561468557600080fd5b5035919050565b6001600160a01b0391909116815260200190565b80356001600160a01b038116811461456d57600080fd5b600080604083850312156146ca57600080fd5b6146d3836146a0565b946020939093013593505050565b6000602082840312156146f357600080fd5b61239b826146a0565b80151581146118b957600080fd5b6000806000806080858703121561472057600080fd5b843561472b816146fc565b93506020850135925061474060408601614559565b915061474e60608601614559565b905092959194509250565b60008060006060848603121561476e57600080fd5b614777846146a0565b9250614785602085016146a0565b9150604084013590509250925092565b600080604083850312156147a857600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156147f5576147f56147b7565b604052919050565b60006001600160401b03831115614816576148166147b7565b614829601f8401601f19166020016147cd565b905082815283838301111561483d57600080fd5b828260208301376000602084830101529392505050565b600082601f83011261486557600080fd5b61239b838335602085016147fd565b60006020828403121561488657600080fd5b81356001600160401b0381111561489c57600080fd5b612aa384828501614854565b6000806000606084860312156148bd57600080fd5b6148c684614559565b92506148d4602085016146a0565b91506148e2604085016146a0565b90509250925092565b60006001600160401b03821115614904576149046147b7565b5060051b60200190565b600082601f83011261491f57600080fd5b8135602061493461492f836148eb565b6147cd565b82815260059290921b8401810191818101908684111561495357600080fd5b8286015b8481101561496e5780358352918301918301614957565b509695505050505050565b60006020828403121561498b57600080fd5b81356001600160401b038111156149a157600080fd5b612aa38482850161490e565b80516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b6020808252825182820181905260009190848201906040850190845b81811015611ed457614a098385516149ad565b92840192606092909201916001016149f6565b60008060408385031215614a2f57600080fd5b82356001600160401b0380821115614a4657600080fd5b818501915085601f830112614a5a57600080fd5b81356020614a6a61492f836148eb565b82815260059290921b84018101918181019089841115614a8957600080fd5b948201945b83861015614aae57614a9f866146a0565b82529482019490820190614a8e565b96505086013592505080821115614ac457600080fd5b50614ad18582860161490e565b9150509250929050565b60008060008060808587031215614af157600080fd5b84356001600160401b0380821115614b0857600080fd5b614b1488838901614854565b95506020870135915080821115614b2a57600080fd5b50614b3787828801614854565b949794965050505060408301359260600135919050565b60008060408385031215614b6157600080fd5b8235614b6c816146fc565b915060208301356001600160401b03811115614b8757600080fd5b614ad185828601614854565b600081518084526020808501945080840160005b83811015614bc357815187529582019590820190600101614ba7565b509495945050505050565b60208152600061239b6020830184614b93565b60008060008060608587031215614bf757600080fd5b614c0085614559565b935060208501356001600160401b03811115614c1b57600080fd5b614c2787828801614572565b909450925061474e9050604086016146a0565b600080600060608486031215614c4f57600080fd5b614c58846146a0565b95602085013595506040909401359392505050565b60008060408385031215614c8057600080fd5b614c89836146a0565b91506020830135614c99816146fc565b809150509250929050565b60008060408385031215614cb757600080fd5b82359150614cc7602084016146a0565b90509250929050565b60008060008060808587031215614ce657600080fd5b614cef856146a0565b9350614cfd602086016146a0565b92506040850135915060608501356001600160401b03811115614d1f57600080fd5b8501601f81018713614d3057600080fd5b614d3f878235602084016147fd565b91505092959194509250565b60608101610b8482846149ad565b600060208284031215614d6b57600080fd5b61239b82614559565b60008060408385031215614d8757600080fd5b82356146d3816146fc565b60008060408385031215614da557600080fd5b614dae836146a0565b9150614cc7602084016146a0565b60008060408385031215614dcf57600080fd5b614dae83614559565b604080825283519082018190526000906020906060840190828701845b82811015614e1a5781516001600160a01b031684529284019290840190600101614df5565b50505083810382850152614e2e8186614b93565b9695505050505050565b60208082526012908201527126b4b73a1030ba103632b0b9ba1037b7329760711b604082015260600190565b60208082526011908201527026b0bc1036b4b73a103932b0b1b432b21760791b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115614eb857614eb8614e8f565b500190565b60208082526012908201527172656163686564206d617820737570706c7960701b604082015260600190565b60208082526011908201527063616e206e6f74206d696e74206d6f726560781b604082015260600190565b60208082526010908201526f2737ba1032b737bab3b410333ab7321760811b604082015260600190565b6020808252601490820152737265616368656420706175736520737570706c7960601b604082015260600190565b600060208284031215614f7e57600080fd5b5051919050565b6020808252601690820152751058d8d95cdcc81d1bdad95b881b9bdd081bdddb995960521b604082015260600190565b60208082526010908201526f283932b9b0b632903737ba1037b832b760811b604082015260600190565b60208082526011908201527050726573616c65206e6f7420726561647960781b604082015260600190565b60609190911b6001600160601b031916815260140190565b6020808252601490820152732737ba103090383932b9b0b6329036b2b6b132b960611b604082015260600190565b60008282101561506257615062614e8f565b500390565b600181811c9082168061507b57607f821691505b6020821081141561509c57634e487b7160e01b600052602260045260246000fd5b50919050565b6001600160a01b0392831681529116602082015260400190565b6000602082840312156150ce57600080fd5b815161239b816146fc565b60008160001904831182151516156150f3576150f3614e8f565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261511d5761511d6150f8565b500490565b634e487b7160e01b600052603260045260246000fd5b6020808252601290820152712932b332b93930b639903737ba1037b832b760711b604082015260600190565b6020808252600d908201526c26b4b73a103737ba1037b832b760991b604082015260600190565b6020808252601290820152714361702069732073657420746f207a65726f60701b604082015260600190565b602080825260179082015276149959995c9c995c881a185cc81b9bdd081b5a5b9d1959604a1b604082015260600190565b60208082526015908201527421b0b73737ba103932b332b9103cb7bab939b2b63360591b604082015260600190565b600082615226576152266150f8565b500690565b600060001982141561523f5761523f614e8f565b5060010190565b60008151615258818560208601614608565b9290920192915050565b600080845481600182811c91508083168061527e57607f831692505b602080841082141561529e57634e487b7160e01b86526022600452602486fd5b8180156152b257600181146152c3576152f0565b60ff198616895284890196506152f0565b60008b81526020902060005b868110156152e85781548b8201529085019083016152cf565b505084890196505b5050505050506153146153038286615246565b64173539b7b760d91b815260050190565b95945050505050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090614e2e90830184614634565b6000602082840312156153ad57600080fd5b815161239b8161452656fe000000000000000000000000460fd5059e7301680fa53e63bbbf7272e643e89cddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef053610c1bbc3d12e42c85f76f7b50169b74241c5e57dfea08a39711d4594eaf1a2646970667358221220a00ef5b169da1e26aa1934eb79900e719cfa8b804c7fb189aa44f91547c7df8b64736f6c634300080b0033

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.