ETH Price: $3,418.09 (-1.53%)
Gas: 18 Gwei

Token

Th3 D1g1tal G3n3rat1on (TDG)
 

Overview

Max Total Supply

333 TDG

Holders

94

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
hhiker42.kongz.eth
Balance
3 TDG
0xa4fcf064131db228cfa72bfb64f0f50b940538fc
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:
Th3D1g1talG3n3rat1on

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 13 : ERC721A.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // 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) private _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;

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

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

  /**
   * @dev See {IERC721Enumerable-tokenByIndex}.
   */
  function tokenByIndex(uint256 index) public view override returns (uint256) {
    require(index < totalSupply(), "ERC721A: global index out of bounds");
    return index;
  }

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

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

  /**
   * @dev See {IERC721-balanceOf}.
   */
  function balanceOf(address owner) public view override returns (uint256) {
    require(owner != address(0), "ERC721A: balance query for the zero address");
    return uint256(_addressData[owner].balance);
  }

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

  /**
   * @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)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

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

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

  /**
   * @dev See {IERC721-approve}.
   */
  function approve(address to, uint256 tokenId) public override {
    address owner = ERC721A.ownerOf(tokenId);
    require(to != owner, "ERC721A: approval to current owner");

    require(
      _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
      "ERC721A: approve caller is not owner nor approved for all"
    );

    _approve(to, tokenId, owner);
  }

  /**
   * @dev See {IERC721-getApproved}.
   */
  function getApproved(uint256 tokenId) public view override returns (address) {
    require(_exists(tokenId), "ERC721A: approved query for nonexistent token");

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: approve to caller");

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

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

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

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

  /**
   * @dev Returns whether `tokenId` exists.
   *
   * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
   *
   * Tokens start existing when they are minted (`_mint`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

  function _safeMint(address to, uint256 quantity) internal {
    _safeMint(to, quantity, "");
  }

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

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

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, 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;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

  /**
   * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
   * The call is not executed if the target address is not a contract.
   *
   * @param from address representing the previous owner of the given token ID
   * @param to target address that will receive the tokens
   * @param tokenId uint256 ID of the token to be transferred
   * @param _data bytes optional data to send along with the call
   * @return bool whether the call correctly returned the expected magic value
   */
  function _checkOnERC721Received(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) private returns (bool) {
    if (to.isContract()) {
      try
        IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data)
      returns (bytes4 retval) {
        return retval == IERC721Receiver(to).onERC721Received.selector;
      } catch (bytes memory reason) {
        if (reason.length == 0) {
          revert("ERC721A: transfer to non ERC721Receiver implementer");
        } else {
          assembly {
            revert(add(32, reason), mload(reason))
          }
        }
      }
    } else {
      return true;
    }
  }

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * 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`.
   */
  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.
   *
   * 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` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}

File 2 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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 be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 6 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [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 Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

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

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

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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

File 8 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

File 11 of 13 : Th3D1g1talG3n3rat1on.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "./ERC721A.sol";

contract Th3D1g1talG3n3rat1on is Ownable, ERC721A, ReentrancyGuard {
    string private _baseTokenURI;
    uint256 public maxWalletQty = 3;
    bool public paused = true;
    bool public allowListActive = true;
    uint256 public immutable maxMintQty;
    uint256 public immutable amountForTeam;

    mapping(address => bool) public isAllowlistAddress;

    constructor(
        uint256 maxBatchSize_, //3
        uint256 collectionSize_, //333
        uint256 amountForTeam_ //27
    ) ERC721A("Th3 D1g1tal G3n3rat1on", "TDG", maxBatchSize_, collectionSize_) {
        maxMintQty = maxBatchSize_;
        amountForTeam = amountForTeam_;
    }

    function freeMint(uint256 amount) external nonReentrant {
        require(paused == false, "Minting is paused");
        require(amount <= maxMintQty, "Mint quantity is too high");
        require(balanceOf(msg.sender) + amount <= maxWalletQty, "You have hit the max tokens per wallet");
        require(totalSupply() + amount <= collectionSize, "All Minted");
        require(tx.origin == msg.sender, "The caller is another contract");

        if(allowListActive == true) {
            require(isAllowlistAddress[msg.sender], "Address is not in the Allow List");
        }

        _safeMint(msg.sender, amount);
    }

    //=============================================================================
    // Admin Functions
    //=============================================================================

    function teamMint() external onlyOwner {
        require(paused == true, "Public minting must be paused");
        require(totalSupply() < collectionSize, "All Minted, cannot team mint");
        require(amountForTeam % maxBatchSize == 0, "You can only mint a multiple of the maxBatchSize");
        uint256 numChunks = amountForTeam / maxBatchSize;

        for (uint256 i = 0; i < numChunks; i++) {
            _safeMint(msg.sender, maxBatchSize);
        }
    }

    function allowlistAddresses(address[] calldata wAddresses) public onlyOwner {
        for (uint i = 0; i < wAddresses.length; i++) {
            isAllowlistAddress[wAddresses[i]] = true;
        }
    }

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

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }
    
    function setMaxWalletQty(uint256 qty) public onlyOwner {
        maxWalletQty = qty;
    }

    function togglePaused() public onlyOwner {
        paused = !paused;
    }

    function toggleAllowListActive() public onlyOwner {
        allowListActive = !allowListActive;
    }

    function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant {
        _setOwnersExplicit(quantity);
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function getOwnershipData(uint256 tokenId)
        external
        view
        returns (TokenOwnership memory)
    {
        return ownershipOf(tokenId);
    }
    
    //=============================================================================
    // Override Functions
    //=============================================================================

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
       return string(abi.encodePacked(super.tokenURI(tokenId),".json"));
    }
}

File 12 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

File 13 of 13 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"amountForTeam_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"allowListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"wAddresses","type":"address[]"}],"name":"allowlistAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"amountForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isAllowlistAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintQty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletQty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"setMaxWalletQty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleAllowListActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610100604052600060018190556008556003600b55600c805461ffff19166101011790553480156200003057600080fd5b5060405162002cc238038062002cc28339810160408190526200005391620002d6565b6040518060400160405280601681526020017f546833204431673174616c2047336e33726174316f6e000000000000000000008152506040518060400160405280600381526020016254444760e81b8152508484620000c1620000bb620001dc60201b60201c565b620001e0565b600081116200012e5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001905760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000125565b8351620001a590600290602087019062000230565b508251620001bb90600390602086019062000230565b5060a0919091526080525050600160095560c0929092525060e05262000342565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200023e9062000305565b90600052602060002090601f016020900481019282620002625760008555620002ad565b82601f106200027d57805160ff1916838001178555620002ad565b82800160010185558215620002ad579182015b82811115620002ad57825182559160200191906001019062000290565b50620002bb929150620002bf565b5090565b5b80821115620002bb5760008155600101620002c0565b600080600060608486031215620002ec57600080fd5b8351925060208401519150604084015190509250925092565b600181811c908216806200031a57607f821691505b602082108114156200033c57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e0516128f9620003c96000396000818161042b0152818161114601526111f80152600081816102f60152610c68015260008181611125015281816111d70152818161122f01528181611a2c01528181611a560152611ef4015260008181610d4c015281816110ab01528181611831015261186301526128f96000f3fe608060405234801561001057600080fd5b506004361061021c5760003560e01c80637c928fe911610125578063b88d4fde116100ad578063d7224ba01161007c578063d7224ba0146104ba578063dc33e681146104c3578063dee91438146104d6578063e985e9c5146104e9578063f2fde38b1461052557600080fd5b8063b88d4fde14610469578063ba7a86b81461047c578063c87b56dd14610484578063cc76fd921461049757600080fd5b806395d89b41116100f457806395d89b411461040b578063a22cb46514610413578063a69b1cd514610426578063acb695b01461044d578063b5b207791461045657600080fd5b80637c928fe91461039e57806387fcb30a146103b15780638da5cb5b146103b95780639231ab2a146103ca57600080fd5b80633688236d116101a857806355f804b31161017757806355f804b3146103505780635c975abb146103635780636352211e1461037057806370a0823114610383578063715018a61461039657600080fd5b80633688236d146102f157806342842e0e14610318578063457dbf211461032b5780634f6ccce71461033d57600080fd5b806318160ddd116101ef57806318160ddd1461029e57806323b872dd146102b05780632d20fb60146102c35780632f745c59146102d657806336566f06146102e957600080fd5b806301ffc9a71461022157806306fdde0314610249578063081812fc1461025e578063095ea7b314610289575b600080fd5b61023461022f36600461250c565b610538565b60405190151581526020015b60405180910390f35b6102516105a5565b6040516102409190612680565b61027161026c3660046125a6565b610637565b6040516001600160a01b039091168152602001610240565b61029c61029736600461246d565b6106c7565b005b6001545b604051908152602001610240565b61029c6102be366004612319565b6107df565b61029c6102d13660046125a6565b6107ea565b6102a26102e436600461246d565b61087d565b61029c6109f6565b6102a27f000000000000000000000000000000000000000000000000000000000000000081565b61029c610326366004612319565b610a34565b600c5461023490610100900460ff1681565b6102a261034b3660046125a6565b610a4f565b61029c61035e366004612546565b610ab8565b600c546102349060ff1681565b61027161037e3660046125a6565b610aee565b6102a26103913660046122cb565b610b00565b61029c610b91565b61029c6103ac3660046125a6565b610bc7565b61029c610e88565b6000546001600160a01b0316610271565b6103dd6103d83660046125a6565b610ecf565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610240565b610251610eec565b61029c610421366004612431565b610efb565b6102a27f000000000000000000000000000000000000000000000000000000000000000081565b6102a2600b5481565b61029c6104643660046125a6565b610fc0565b61029c610477366004612355565b610fef565b61029c611028565b6102516104923660046125a6565b611269565b6102346104a53660046122cb565b600d6020526000908152604090205460ff1681565b6102a260085481565b6102a26104d13660046122cb565b61129a565b61029c6104e4366004612497565b6112a5565b6102346104f73660046122e6565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61029c6105333660046122cb565b611341565b60006001600160e01b031982166380ac58cd60e01b148061056957506001600160e01b03198216635b5e139f60e01b145b8061058457506001600160e01b0319821663780e9d6360e01b145b8061059f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546105b4906127eb565b80601f01602080910402602001604051908101604052809291908181526020018280546105e0906127eb565b801561062d5780601f106106025761010080835404028352916020019161062d565b820191906000526020600020905b81548152906001019060200180831161061057829003601f168201915b5050505050905090565b6000610644826001541190565b6106ab5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106d282610aee565b9050806001600160a01b0316836001600160a01b031614156107415760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106a2565b336001600160a01b038216148061075d575061075d81336104f7565b6107cf5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106a2565b6107da8383836113dc565b505050565b6107da838383611438565b6000546001600160a01b031633146108145760405162461bcd60e51b81526004016106a290612693565b600260095414156108675760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106a2565b6002600955610875816117c0565b506001600955565b600061088883610b00565b82106108e15760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106a2565b60006108ec60015490565b905060008060005b83811015610996576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561094757805192505b876001600160a01b0316836001600160a01b0316141561098357868414156109755750935061059f92505050565b8361097f81612826565b9450505b508061098e81612826565b9150506108f4565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106a2565b6000546001600160a01b03163314610a205760405162461bcd60e51b81526004016106a290612693565b600c805460ff19811660ff90911615179055565b6107da83838360405180602001604052806000815250610fef565b6000610a5a60015490565b8210610ab45760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106a2565b5090565b6000546001600160a01b03163314610ae25760405162461bcd60e51b81526004016106a290612693565b6107da600a838361221f565b6000610af9826119aa565b5192915050565b60006001600160a01b038216610b6c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106a2565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610bbb5760405162461bcd60e51b81526004016106a290612693565b610bc56000611b54565b565b60026009541415610c1a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106a2565b6002600955600c5460ff1615610c665760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b60448201526064016106a2565b7f0000000000000000000000000000000000000000000000000000000000000000811115610cd65760405162461bcd60e51b815260206004820152601960248201527f4d696e74207175616e7469747920697320746f6f20686967680000000000000060448201526064016106a2565b600b5481610ce333610b00565b610ced919061273d565b1115610d4a5760405162461bcd60e51b815260206004820152602660248201527f596f7520686176652068697420746865206d617820746f6b656e7320706572206044820152651dd85b1b195d60d21b60648201526084016106a2565b7f000000000000000000000000000000000000000000000000000000000000000081610d7560015490565b610d7f919061273d565b1115610dba5760405162461bcd60e51b815260206004820152600a602482015269105b1b08135a5b9d195960b21b60448201526064016106a2565b323314610e095760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016106a2565b600c5460ff61010090910416151560011415610e7e57336000908152600d602052604090205460ff16610e7e5760405162461bcd60e51b815260206004820181905260248201527f41646472657373206973206e6f7420696e2074686520416c6c6f77204c69737460448201526064016106a2565b6108753382611ba4565b6000546001600160a01b03163314610eb25760405162461bcd60e51b81526004016106a290612693565b600c805461ff001981166101009182900460ff1615909102179055565b604080518082019091526000808252602082015261059f826119aa565b6060600380546105b4906127eb565b6001600160a01b038216331415610f545760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106a2565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314610fea5760405162461bcd60e51b81526004016106a290612693565b600b55565b610ffa848484611438565b61100684848484611bbe565b6110225760405162461bcd60e51b81526004016106a2906126c8565b50505050565b6000546001600160a01b031633146110525760405162461bcd60e51b81526004016106a290612693565b600c5460ff1615156001146110a95760405162461bcd60e51b815260206004820152601d60248201527f5075626c6963206d696e74696e67206d7573742062652070617573656400000060448201526064016106a2565b7f00000000000000000000000000000000000000000000000000000000000000006110d360015490565b106111205760405162461bcd60e51b815260206004820152601c60248201527f416c6c204d696e7465642c2063616e6e6f74207465616d206d696e740000000060448201526064016106a2565b61116a7f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000612841565b156111d05760405162461bcd60e51b815260206004820152603060248201527f596f752063616e206f6e6c79206d696e742061206d756c7469706c65206f662060448201526f746865206d6178426174636853697a6560801b60648201526084016106a2565b600061121c7f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000612755565b905060005b8181101561126557611253337f0000000000000000000000000000000000000000000000000000000000000000611ba4565b8061125d81612826565b915050611221565b5050565b606061127482611ccc565b604051602001611284919061261a565b6040516020818303038152906040529050919050565b600061059f82611d99565b6000546001600160a01b031633146112cf5760405162461bcd60e51b81526004016106a290612693565b60005b818110156107da576001600d60008585858181106112f2576112f2612881565b905060200201602081019061130791906122cb565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061133981612826565b9150506112d2565b6000546001600160a01b0316331461136b5760405162461bcd60e51b81526004016106a290612693565b6001600160a01b0381166113d05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106a2565b6113d981611b54565b50565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611443826119aa565b80519091506000906001600160a01b0316336001600160a01b0316148061147a57503361146f84610637565b6001600160a01b0316145b8061148c5750815161148c90336104f7565b9050806114f65760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106a2565b846001600160a01b031682600001516001600160a01b03161461156a5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106a2565b6001600160a01b0384166115ce5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106a2565b6115de60008484600001516113dc565b6001600160a01b03851660009081526005602052604081208054600192906116109084906001600160801b0316612769565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261165c9185911661271b565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556116e484600161273d565b6000818152600460205260409020549091506001600160a01b03166117765761170e816001541190565b156117765760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600854816118105760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f000000000000000060448201526064016106a2565b6000600161181e848461273d565b6118289190612791565b905061185560017f0000000000000000000000000000000000000000000000000000000000000000612791565b81111561188a5761188760017f0000000000000000000000000000000000000000000000000000000000000000612791565b90505b611895816001541190565b6118f05760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b60648201526084016106a2565b815b818111611996576000818152600460205260409020546001600160a01b0316611984576000611920826119aa565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b8061198e81612826565b9150506118f2565b506119a281600161273d565b600855505050565b60408051808201909152600080825260208201526119c9826001541190565b611a285760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106a2565b60007f00000000000000000000000000000000000000000000000000000000000000008310611a8957611a7b7f000000000000000000000000000000000000000000000000000000000000000084612791565b611a8690600161273d565b90505b825b818110611af3576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611ae057949350505050565b5080611aeb816127d4565b915050611a8b565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016106a2565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611265828260405180602001604052806000815250611e37565b60006001600160a01b0384163b15611cc057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c02903390899088908890600401612643565b602060405180830381600087803b158015611c1c57600080fd5b505af1925050508015611c4c575060408051601f3d908101601f19168201909252611c4991810190612529565b60015b611ca6573d808015611c7a576040519150601f19603f3d011682016040523d82523d6000602084013e611c7f565b606091505b508051611c9e5760405162461bcd60e51b81526004016106a2906126c8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611cc4565b5060015b949350505050565b6060611cd9826001541190565b611d3d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106a2565b6000611d47612112565b90506000815111611d675760405180602001604052806000815250611d92565b80611d7184612121565b604051602001611d829291906125eb565b6040516020818303038152906040525b9392505050565b60006001600160a01b038216611e0b5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016106a2565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416611e9a5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106a2565b611ea5816001541190565b15611ef25760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016106a2565b7f0000000000000000000000000000000000000000000000000000000000000000831115611f6d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016106a2565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611fc990879061271b565b6001600160801b03168152602001858360200151611fe7919061271b565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156121075760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120cb6000888488611bbe565b6120e75760405162461bcd60e51b81526004016106a2906126c8565b816120f181612826565b92505080806120ff90612826565b91505061207e565b5060018190556117b8565b6060600a80546105b4906127eb565b6060816121455750506040805180820190915260018152600360fc1b602082015290565b8160005b811561216f578061215981612826565b91506121689050600a83612755565b9150612149565b60008167ffffffffffffffff81111561218a5761218a612897565b6040519080825280601f01601f1916602001820160405280156121b4576020820181803683370190505b5090505b8415611cc4576121c9600183612791565b91506121d6600a86612841565b6121e190603061273d565b60f81b8183815181106121f6576121f6612881565b60200101906001600160f81b031916908160001a905350612218600a86612755565b94506121b8565b82805461222b906127eb565b90600052602060002090601f01602090048101928261224d5760008555612293565b82601f106122665782800160ff19823516178555612293565b82800160010185558215612293579182015b82811115612293578235825591602001919060010190612278565b50610ab49291505b80821115610ab4576000815560010161229b565b80356001600160a01b03811681146122c657600080fd5b919050565b6000602082840312156122dd57600080fd5b611d92826122af565b600080604083850312156122f957600080fd5b612302836122af565b9150612310602084016122af565b90509250929050565b60008060006060848603121561232e57600080fd5b612337846122af565b9250612345602085016122af565b9150604084013590509250925092565b6000806000806080858703121561236b57600080fd5b612374856122af565b9350612382602086016122af565b925060408501359150606085013567ffffffffffffffff808211156123a657600080fd5b818701915087601f8301126123ba57600080fd5b8135818111156123cc576123cc612897565b604051601f8201601f19908116603f011681019083821181831017156123f4576123f4612897565b816040528281528a602084870101111561240d57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561244457600080fd5b61244d836122af565b91506020830135801515811461246257600080fd5b809150509250929050565b6000806040838503121561248057600080fd5b612489836122af565b946020939093013593505050565b600080602083850312156124aa57600080fd5b823567ffffffffffffffff808211156124c257600080fd5b818501915085601f8301126124d657600080fd5b8135818111156124e557600080fd5b8660208260051b85010111156124fa57600080fd5b60209290920196919550909350505050565b60006020828403121561251e57600080fd5b8135611d92816128ad565b60006020828403121561253b57600080fd5b8151611d92816128ad565b6000806020838503121561255957600080fd5b823567ffffffffffffffff8082111561257157600080fd5b818501915085601f83011261258557600080fd5b81358181111561259457600080fd5b8660208285010111156124fa57600080fd5b6000602082840312156125b857600080fd5b5035919050565b600081518084526125d78160208601602086016127a8565b601f01601f19169290920160200192915050565b600083516125fd8184602088016127a8565b8351908301906126118183602088016127a8565b01949350505050565b6000825161262c8184602087016127a8565b64173539b7b760d91b920191825250600501919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612676908301846125bf565b9695505050505050565b602081526000611d9260208301846125bf565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b0380831681851680830382111561261157612611612855565b6000821982111561275057612750612855565b500190565b6000826127645761276461286b565b500490565b60006001600160801b038381169083168181101561278957612789612855565b039392505050565b6000828210156127a3576127a3612855565b500390565b60005b838110156127c35781810151838201526020016127ab565b838111156110225750506000910152565b6000816127e3576127e3612855565b506000190190565b600181811c908216806127ff57607f821691505b6020821081141561282057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561283a5761283a612855565b5060010190565b6000826128505761285061286b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113d957600080fdfea2646970667358221220c1b7d8d8485df3c289cf7e0f656676bbc0ecdd3120f4ea6509c237809be87c8c64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000014d0000000000000000000000000000000000000000000000000000000000000021

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061021c5760003560e01c80637c928fe911610125578063b88d4fde116100ad578063d7224ba01161007c578063d7224ba0146104ba578063dc33e681146104c3578063dee91438146104d6578063e985e9c5146104e9578063f2fde38b1461052557600080fd5b8063b88d4fde14610469578063ba7a86b81461047c578063c87b56dd14610484578063cc76fd921461049757600080fd5b806395d89b41116100f457806395d89b411461040b578063a22cb46514610413578063a69b1cd514610426578063acb695b01461044d578063b5b207791461045657600080fd5b80637c928fe91461039e57806387fcb30a146103b15780638da5cb5b146103b95780639231ab2a146103ca57600080fd5b80633688236d116101a857806355f804b31161017757806355f804b3146103505780635c975abb146103635780636352211e1461037057806370a0823114610383578063715018a61461039657600080fd5b80633688236d146102f157806342842e0e14610318578063457dbf211461032b5780634f6ccce71461033d57600080fd5b806318160ddd116101ef57806318160ddd1461029e57806323b872dd146102b05780632d20fb60146102c35780632f745c59146102d657806336566f06146102e957600080fd5b806301ffc9a71461022157806306fdde0314610249578063081812fc1461025e578063095ea7b314610289575b600080fd5b61023461022f36600461250c565b610538565b60405190151581526020015b60405180910390f35b6102516105a5565b6040516102409190612680565b61027161026c3660046125a6565b610637565b6040516001600160a01b039091168152602001610240565b61029c61029736600461246d565b6106c7565b005b6001545b604051908152602001610240565b61029c6102be366004612319565b6107df565b61029c6102d13660046125a6565b6107ea565b6102a26102e436600461246d565b61087d565b61029c6109f6565b6102a27f000000000000000000000000000000000000000000000000000000000000000381565b61029c610326366004612319565b610a34565b600c5461023490610100900460ff1681565b6102a261034b3660046125a6565b610a4f565b61029c61035e366004612546565b610ab8565b600c546102349060ff1681565b61027161037e3660046125a6565b610aee565b6102a26103913660046122cb565b610b00565b61029c610b91565b61029c6103ac3660046125a6565b610bc7565b61029c610e88565b6000546001600160a01b0316610271565b6103dd6103d83660046125a6565b610ecf565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610240565b610251610eec565b61029c610421366004612431565b610efb565b6102a27f000000000000000000000000000000000000000000000000000000000000002181565b6102a2600b5481565b61029c6104643660046125a6565b610fc0565b61029c610477366004612355565b610fef565b61029c611028565b6102516104923660046125a6565b611269565b6102346104a53660046122cb565b600d6020526000908152604090205460ff1681565b6102a260085481565b6102a26104d13660046122cb565b61129a565b61029c6104e4366004612497565b6112a5565b6102346104f73660046122e6565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61029c6105333660046122cb565b611341565b60006001600160e01b031982166380ac58cd60e01b148061056957506001600160e01b03198216635b5e139f60e01b145b8061058457506001600160e01b0319821663780e9d6360e01b145b8061059f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546105b4906127eb565b80601f01602080910402602001604051908101604052809291908181526020018280546105e0906127eb565b801561062d5780601f106106025761010080835404028352916020019161062d565b820191906000526020600020905b81548152906001019060200180831161061057829003601f168201915b5050505050905090565b6000610644826001541190565b6106ab5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106d282610aee565b9050806001600160a01b0316836001600160a01b031614156107415760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106a2565b336001600160a01b038216148061075d575061075d81336104f7565b6107cf5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106a2565b6107da8383836113dc565b505050565b6107da838383611438565b6000546001600160a01b031633146108145760405162461bcd60e51b81526004016106a290612693565b600260095414156108675760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106a2565b6002600955610875816117c0565b506001600955565b600061088883610b00565b82106108e15760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106a2565b60006108ec60015490565b905060008060005b83811015610996576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561094757805192505b876001600160a01b0316836001600160a01b0316141561098357868414156109755750935061059f92505050565b8361097f81612826565b9450505b508061098e81612826565b9150506108f4565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106a2565b6000546001600160a01b03163314610a205760405162461bcd60e51b81526004016106a290612693565b600c805460ff19811660ff90911615179055565b6107da83838360405180602001604052806000815250610fef565b6000610a5a60015490565b8210610ab45760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106a2565b5090565b6000546001600160a01b03163314610ae25760405162461bcd60e51b81526004016106a290612693565b6107da600a838361221f565b6000610af9826119aa565b5192915050565b60006001600160a01b038216610b6c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106a2565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610bbb5760405162461bcd60e51b81526004016106a290612693565b610bc56000611b54565b565b60026009541415610c1a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106a2565b6002600955600c5460ff1615610c665760405162461bcd60e51b8152602060048201526011602482015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b60448201526064016106a2565b7f0000000000000000000000000000000000000000000000000000000000000003811115610cd65760405162461bcd60e51b815260206004820152601960248201527f4d696e74207175616e7469747920697320746f6f20686967680000000000000060448201526064016106a2565b600b5481610ce333610b00565b610ced919061273d565b1115610d4a5760405162461bcd60e51b815260206004820152602660248201527f596f7520686176652068697420746865206d617820746f6b656e7320706572206044820152651dd85b1b195d60d21b60648201526084016106a2565b7f000000000000000000000000000000000000000000000000000000000000014d81610d7560015490565b610d7f919061273d565b1115610dba5760405162461bcd60e51b815260206004820152600a602482015269105b1b08135a5b9d195960b21b60448201526064016106a2565b323314610e095760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016106a2565b600c5460ff61010090910416151560011415610e7e57336000908152600d602052604090205460ff16610e7e5760405162461bcd60e51b815260206004820181905260248201527f41646472657373206973206e6f7420696e2074686520416c6c6f77204c69737460448201526064016106a2565b6108753382611ba4565b6000546001600160a01b03163314610eb25760405162461bcd60e51b81526004016106a290612693565b600c805461ff001981166101009182900460ff1615909102179055565b604080518082019091526000808252602082015261059f826119aa565b6060600380546105b4906127eb565b6001600160a01b038216331415610f545760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106a2565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314610fea5760405162461bcd60e51b81526004016106a290612693565b600b55565b610ffa848484611438565b61100684848484611bbe565b6110225760405162461bcd60e51b81526004016106a2906126c8565b50505050565b6000546001600160a01b031633146110525760405162461bcd60e51b81526004016106a290612693565b600c5460ff1615156001146110a95760405162461bcd60e51b815260206004820152601d60248201527f5075626c6963206d696e74696e67206d7573742062652070617573656400000060448201526064016106a2565b7f000000000000000000000000000000000000000000000000000000000000014d6110d360015490565b106111205760405162461bcd60e51b815260206004820152601c60248201527f416c6c204d696e7465642c2063616e6e6f74207465616d206d696e740000000060448201526064016106a2565b61116a7f00000000000000000000000000000000000000000000000000000000000000037f0000000000000000000000000000000000000000000000000000000000000021612841565b156111d05760405162461bcd60e51b815260206004820152603060248201527f596f752063616e206f6e6c79206d696e742061206d756c7469706c65206f662060448201526f746865206d6178426174636853697a6560801b60648201526084016106a2565b600061121c7f00000000000000000000000000000000000000000000000000000000000000037f0000000000000000000000000000000000000000000000000000000000000021612755565b905060005b8181101561126557611253337f0000000000000000000000000000000000000000000000000000000000000003611ba4565b8061125d81612826565b915050611221565b5050565b606061127482611ccc565b604051602001611284919061261a565b6040516020818303038152906040529050919050565b600061059f82611d99565b6000546001600160a01b031633146112cf5760405162461bcd60e51b81526004016106a290612693565b60005b818110156107da576001600d60008585858181106112f2576112f2612881565b905060200201602081019061130791906122cb565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061133981612826565b9150506112d2565b6000546001600160a01b0316331461136b5760405162461bcd60e51b81526004016106a290612693565b6001600160a01b0381166113d05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106a2565b6113d981611b54565b50565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611443826119aa565b80519091506000906001600160a01b0316336001600160a01b0316148061147a57503361146f84610637565b6001600160a01b0316145b8061148c5750815161148c90336104f7565b9050806114f65760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106a2565b846001600160a01b031682600001516001600160a01b03161461156a5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106a2565b6001600160a01b0384166115ce5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106a2565b6115de60008484600001516113dc565b6001600160a01b03851660009081526005602052604081208054600192906116109084906001600160801b0316612769565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261165c9185911661271b565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556116e484600161273d565b6000818152600460205260409020549091506001600160a01b03166117765761170e816001541190565b156117765760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600854816118105760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f000000000000000060448201526064016106a2565b6000600161181e848461273d565b6118289190612791565b905061185560017f000000000000000000000000000000000000000000000000000000000000014d612791565b81111561188a5761188760017f000000000000000000000000000000000000000000000000000000000000014d612791565b90505b611895816001541190565b6118f05760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b60648201526084016106a2565b815b818111611996576000818152600460205260409020546001600160a01b0316611984576000611920826119aa565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b8061198e81612826565b9150506118f2565b506119a281600161273d565b600855505050565b60408051808201909152600080825260208201526119c9826001541190565b611a285760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106a2565b60007f00000000000000000000000000000000000000000000000000000000000000038310611a8957611a7b7f000000000000000000000000000000000000000000000000000000000000000384612791565b611a8690600161273d565b90505b825b818110611af3576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611ae057949350505050565b5080611aeb816127d4565b915050611a8b565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016106a2565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611265828260405180602001604052806000815250611e37565b60006001600160a01b0384163b15611cc057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c02903390899088908890600401612643565b602060405180830381600087803b158015611c1c57600080fd5b505af1925050508015611c4c575060408051601f3d908101601f19168201909252611c4991810190612529565b60015b611ca6573d808015611c7a576040519150601f19603f3d011682016040523d82523d6000602084013e611c7f565b606091505b508051611c9e5760405162461bcd60e51b81526004016106a2906126c8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611cc4565b5060015b949350505050565b6060611cd9826001541190565b611d3d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106a2565b6000611d47612112565b90506000815111611d675760405180602001604052806000815250611d92565b80611d7184612121565b604051602001611d829291906125eb565b6040516020818303038152906040525b9392505050565b60006001600160a01b038216611e0b5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016106a2565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416611e9a5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106a2565b611ea5816001541190565b15611ef25760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016106a2565b7f0000000000000000000000000000000000000000000000000000000000000003831115611f6d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016106a2565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611fc990879061271b565b6001600160801b03168152602001858360200151611fe7919061271b565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156121075760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120cb6000888488611bbe565b6120e75760405162461bcd60e51b81526004016106a2906126c8565b816120f181612826565b92505080806120ff90612826565b91505061207e565b5060018190556117b8565b6060600a80546105b4906127eb565b6060816121455750506040805180820190915260018152600360fc1b602082015290565b8160005b811561216f578061215981612826565b91506121689050600a83612755565b9150612149565b60008167ffffffffffffffff81111561218a5761218a612897565b6040519080825280601f01601f1916602001820160405280156121b4576020820181803683370190505b5090505b8415611cc4576121c9600183612791565b91506121d6600a86612841565b6121e190603061273d565b60f81b8183815181106121f6576121f6612881565b60200101906001600160f81b031916908160001a905350612218600a86612755565b94506121b8565b82805461222b906127eb565b90600052602060002090601f01602090048101928261224d5760008555612293565b82601f106122665782800160ff19823516178555612293565b82800160010185558215612293579182015b82811115612293578235825591602001919060010190612278565b50610ab49291505b80821115610ab4576000815560010161229b565b80356001600160a01b03811681146122c657600080fd5b919050565b6000602082840312156122dd57600080fd5b611d92826122af565b600080604083850312156122f957600080fd5b612302836122af565b9150612310602084016122af565b90509250929050565b60008060006060848603121561232e57600080fd5b612337846122af565b9250612345602085016122af565b9150604084013590509250925092565b6000806000806080858703121561236b57600080fd5b612374856122af565b9350612382602086016122af565b925060408501359150606085013567ffffffffffffffff808211156123a657600080fd5b818701915087601f8301126123ba57600080fd5b8135818111156123cc576123cc612897565b604051601f8201601f19908116603f011681019083821181831017156123f4576123f4612897565b816040528281528a602084870101111561240d57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561244457600080fd5b61244d836122af565b91506020830135801515811461246257600080fd5b809150509250929050565b6000806040838503121561248057600080fd5b612489836122af565b946020939093013593505050565b600080602083850312156124aa57600080fd5b823567ffffffffffffffff808211156124c257600080fd5b818501915085601f8301126124d657600080fd5b8135818111156124e557600080fd5b8660208260051b85010111156124fa57600080fd5b60209290920196919550909350505050565b60006020828403121561251e57600080fd5b8135611d92816128ad565b60006020828403121561253b57600080fd5b8151611d92816128ad565b6000806020838503121561255957600080fd5b823567ffffffffffffffff8082111561257157600080fd5b818501915085601f83011261258557600080fd5b81358181111561259457600080fd5b8660208285010111156124fa57600080fd5b6000602082840312156125b857600080fd5b5035919050565b600081518084526125d78160208601602086016127a8565b601f01601f19169290920160200192915050565b600083516125fd8184602088016127a8565b8351908301906126118183602088016127a8565b01949350505050565b6000825161262c8184602087016127a8565b64173539b7b760d91b920191825250600501919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612676908301846125bf565b9695505050505050565b602081526000611d9260208301846125bf565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b0380831681851680830382111561261157612611612855565b6000821982111561275057612750612855565b500190565b6000826127645761276461286b565b500490565b60006001600160801b038381169083168181101561278957612789612855565b039392505050565b6000828210156127a3576127a3612855565b500390565b60005b838110156127c35781810151838201526020016127ab565b838111156110225750506000910152565b6000816127e3576127e3612855565b506000190190565b600181811c908216806127ff57607f821691505b6020821081141561282057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561283a5761283a612855565b5060010190565b6000826128505761285061286b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113d957600080fdfea2646970667358221220c1b7d8d8485df3c289cf7e0f656676bbc0ecdd3120f4ea6509c237809be87c8c64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000014d0000000000000000000000000000000000000000000000000000000000000021

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 3
Arg [1] : collectionSize_ (uint256): 333
Arg [2] : amountForTeam_ (uint256): 33

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [1] : 000000000000000000000000000000000000000000000000000000000000014d
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000021


Deployed Bytecode Sourcemap

251:3442:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4114:358:11;;;;;;:::i;:::-;;:::i;:::-;;;6692:14:13;;6685:22;6667:41;;6655:2;6640:18;4114:358:11;;;;;;;;5778:92;;;:::i;:::-;;;;;;;:::i;7243:200::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5990:32:13;;;5972:51;;5960:2;5945:18;7243:200:11;5826:203:13;6821:369:11;;;;;;:::i;:::-;;:::i;:::-;;2720:92;2795:12;;2720:92;;;20348:25:13;;;20336:2;20321:18;2720:92:11;20202:177:13;8061:136:11;;;;;;:::i;:::-;;:::i;2912:122:12:-;;;;;;:::i;:::-;;:::i;3334:721:11:-;;;;;;:::i;:::-;;:::i;2725:74:12:-;;;:::i;466:35::-;;;;;8255:151:11;;;;;;:::i;:::-;;:::i;426:34:12:-;;;;;;;;;;;;2876:174:11;;;;;;:::i;:::-;;:::i;2515:104:12:-;;;;;;:::i;:::-;;:::i;395:25::-;;;;;;;;;5608:116:11;;;;;;:::i;:::-;;:::i;4523:208::-;;;;;;:::i;:::-;;:::i;1668:101:0:-;;;:::i;900:620:12:-;;;;;;:::i;:::-;;:::i;2805:101::-;;;:::i;1036:85:0:-;1082:7;1108:6;-1:-1:-1;;;;;1108:6:0;1036:85;;3157:161:12;;;;;;:::i;:::-;;:::i;:::-;;;;20067:13:13;;-1:-1:-1;;;;;20063:39:13;20045:58;;20163:4;20151:17;;;20145:24;20171:18;20141:49;20119:20;;;20112:79;;;;20018:18;3157:161:12;19837:360:13;5926:96:11;;;:::i;7502:269::-;;;;;;:::i;:::-;;:::i;507:38:12:-;;;;;358:31;;;;;;2629:90;;;;;;:::i;:::-;;:::i;8464:300:11:-;;;;;;:::i;:::-;;:::i;1718:465:12:-;;;:::i;3523:168::-;;;;;;:::i;:::-;;:::i;552:50::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;12734:43:11;;;;;;3040:111:12;;;;;;:::i;:::-;;:::i;2189:202::-;;;;;;:::i;:::-;;:::i;7829:178:11:-;;;;;;:::i;:::-;-1:-1:-1;;;;;7967:25:11;;;7946:4;7967:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;7829:178;1918:198:0;;;;;;:::i;:::-;;:::i;4114:358:11:-;4236:4;-1:-1:-1;;;;;;4263:40:11;;-1:-1:-1;;;4263:40:11;;:98;;-1:-1:-1;;;;;;;4313:48:11;;-1:-1:-1;;;4313:48:11;4263:98;:158;;;-1:-1:-1;;;;;;;4371:50:11;;-1:-1:-1;;;4371:50:11;4263:158;:204;;;-1:-1:-1;;;;;;;;;;937:40:9;;;4431:36:11;4250:217;4114:358;-1:-1:-1;;4114:358:11:o;5778:92::-;5832:13;5860:5;5853:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5778:92;:::o;7243:200::-;7311:7;7334:16;7342:7;9080:12;;-1:-1:-1;9070:22:11;8994:103;7334:16;7326:74;;;;-1:-1:-1;;;7326:74:11;;19222:2:13;7326:74:11;;;19204:21:13;19261:2;19241:18;;;19234:30;19300:34;19280:18;;;19273:62;-1:-1:-1;;;19351:18:13;;;19344:43;19404:19;;7326:74:11;;;;;;;;;-1:-1:-1;7414:24:11;;;;:15;:24;;;;;;-1:-1:-1;;;;;7414:24:11;;7243:200::o;6821:369::-;6889:13;6905:24;6921:7;6905:15;:24::i;:::-;6889:40;;6949:5;-1:-1:-1;;;;;6943:11:11;:2;-1:-1:-1;;;;;6943:11:11;;;6935:58;;;;-1:-1:-1;;;6935:58:11;;14206:2:13;6935:58:11;;;14188:21:13;14245:2;14225:18;;;14218:30;14284:34;14264:18;;;14257:62;-1:-1:-1;;;14335:18:13;;;14328:32;14377:19;;6935:58:11;14004:398:13;6935:58:11;719:10:7;-1:-1:-1;;;;;7015:21:11;;;;:62;;-1:-1:-1;7040:37:11;7057:5;719:10:7;7829:178:11;:::i;7040:37::-;7000:150;;;;-1:-1:-1;;;7000:150:11;;9953:2:13;7000:150:11;;;9935:21:13;9992:2;9972:18;;;9965:30;10031:34;10011:18;;;10004:62;10102:27;10082:18;;;10075:55;10147:19;;7000:150:11;9751:421:13;7000:150:11;7157:28;7166:2;7170:7;7179:5;7157:8;:28::i;:::-;6883:307;6821:369;;:::o;8061:136::-;8164:28;8174:4;8180:2;8184:7;8164:9;:28::i;2912:122:12:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:7;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1744:1:1::1;2325:7;;:19;;2317:63;;;::::0;-1:-1:-1;;;2317:63:1;;17728:2:13;2317:63:1::1;::::0;::::1;17710:21:13::0;17767:2;17747:18;;;17740:30;17806:33;17786:18;;;17779:61;17857:18;;2317:63:1::1;17526:355:13::0;2317:63:1::1;1744:1;2455:7;:18:::0;2999:28:12::2;3018:8:::0;2999:18:::2;:28::i;:::-;-1:-1:-1::0;1701:1:1::1;2628:7;:22:::0;2912:122:12:o;3334:721:11:-;3439:7;3472:16;3482:5;3472:9;:16::i;:::-;3464:5;:24;3456:71;;;;-1:-1:-1;;;3456:71:11;;7145:2:13;3456:71:11;;;7127:21:13;7184:2;7164:18;;;7157:30;7223:34;7203:18;;;7196:62;-1:-1:-1;;;7274:18:13;;;7267:32;7316:19;;3456:71:11;6943:398:13;3456:71:11;3533:22;3558:13;2795:12;;;2720:92;3558:13;3533:38;;3577:19;3606:25;3655:9;3650:339;3674:14;3670:1;:18;3650:339;;;3703:31;3737:14;;;:11;:14;;;;;;;;;3703:48;;;;;;;;;-1:-1:-1;;;;;3703:48:11;;;;;-1:-1:-1;;;3703:48:11;;;;;;;;;;;;3763:28;3759:87;;3823:14;;;-1:-1:-1;3759:87:11;3878:5;-1:-1:-1;;;;;3857:26:11;:17;-1:-1:-1;;;;;3857:26:11;;3853:130;;;3914:5;3899:11;:20;3895:57;;;-1:-1:-1;3940:1:11;-1:-1:-1;3933:8:11;;-1:-1:-1;;;3933:8:11;3895:57;3961:13;;;;:::i;:::-;;;;3853:130;-1:-1:-1;3690:3:11;;;;:::i;:::-;;;;3650:339;;;-1:-1:-1;3994:56:11;;-1:-1:-1;;;3994:56:11;;16906:2:13;3994:56:11;;;16888:21:13;16945:2;16925:18;;;16918:30;16984:34;16964:18;;;16957:62;-1:-1:-1;;;17035:18:13;;;17028:44;17089:19;;3994:56:11;16704:410:13;2725:74:12;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:7;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;2786:6:12::1;::::0;;-1:-1:-1;;2776:16:12;::::1;2786:6;::::0;;::::1;2785:7;2776:16;::::0;;2725:74::o;8255:151:11:-;8362:39;8379:4;8385:2;8389:7;8362:39;;;;;;;;;;;;:16;:39::i;2876:174::-;2943:7;2974:13;2795:12;;;2720:92;2974:13;2966:5;:21;2958:69;;;;-1:-1:-1;;;2958:69:11;;8366:2:13;2958:69:11;;;8348:21:13;8405:2;8385:18;;;8378:30;8444:34;8424:18;;;8417:62;-1:-1:-1;;;8495:18:13;;;8488:33;8538:19;;2958:69:11;8164:399:13;2958:69:11;-1:-1:-1;3040:5:11;2876:174::o;2515:104:12:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:7;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;2589:23:12::1;:13;2605:7:::0;;2589:23:::1;:::i;5608:116:11:-:0;5672:7;5694:20;5706:7;5694:11;:20::i;:::-;:25;;5608:116;-1:-1:-1;;5608:116:11:o;4523:208::-;4587:7;-1:-1:-1;;;;;4610:19:11;;4602:75;;;;-1:-1:-1;;;4602:75:11;;10732:2:13;4602:75:11;;;10714:21:13;10771:2;10751:18;;;10744:30;10810:34;10790:18;;;10783:62;-1:-1:-1;;;10861:18:13;;;10854:41;10912:19;;4602:75:11;10530:407:13;4602:75:11;-1:-1:-1;;;;;;4698:19:11;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;4698:27:11;;4523:208::o;1668:101:0:-;1082:7;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:7;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;900:620:12:-;1744:1:1;2325:7;;:19;;2317:63;;;;-1:-1:-1;;;2317:63:1;;17728:2:13;2317:63:1;;;17710:21:13;17767:2;17747:18;;;17740:30;17806:33;17786:18;;;17779:61;17857:18;;2317:63:1;17526:355:13;2317:63:1;1744:1;2455:7;:18;974:6:12::1;::::0;::::1;;:15;966:45;;;::::0;-1:-1:-1;;;966:45:12;;14609:2:13;966:45:12::1;::::0;::::1;14591:21:13::0;14648:2;14628:18;;;14621:30;-1:-1:-1;;;14667:18:13;;;14660:47;14724:18;;966:45:12::1;14407:341:13::0;966:45:12::1;1039:10;1029:6;:20;;1021:58;;;::::0;-1:-1:-1;;;1021:58:12;;16552:2:13;1021:58:12::1;::::0;::::1;16534:21:13::0;16591:2;16571:18;;;16564:30;16630:27;16610:18;;;16603:55;16675:18;;1021:58:12::1;16350:349:13::0;1021:58:12::1;1131:12;;1121:6;1097:21;1107:10;1097:9;:21::i;:::-;:30;;;;:::i;:::-;:46;;1089:97;;;::::0;-1:-1:-1;;;1089:97:12;;12609:2:13;1089:97:12::1;::::0;::::1;12591:21:13::0;12648:2;12628:18;;;12621:30;12687:34;12667:18;;;12660:62;-1:-1:-1;;;12738:18:13;;;12731:36;12784:19;;1089:97:12::1;12407:402:13::0;1089:97:12::1;1230:14;1220:6;1204:13;2795:12:11::0;;;2720:92;1204:13:12::1;:22;;;;:::i;:::-;:40;;1196:63;;;::::0;-1:-1:-1;;;1196:63:12;;11144:2:13;1196:63:12::1;::::0;::::1;11126:21:13::0;11183:2;11163:18;;;11156:30;-1:-1:-1;;;11202:18:13;;;11195:40;11252:18;;1196:63:12::1;10942:334:13::0;1196:63:12::1;1277:9;1290:10;1277:23;1269:66;;;::::0;-1:-1:-1;;;1269:66:12;;9594:2:13;1269:66:12::1;::::0;::::1;9576:21:13::0;9633:2;9613:18;;;9606:30;9672:32;9652:18;;;9645:60;9722:18;;1269:66:12::1;9392:354:13::0;1269:66:12::1;1349:15;::::0;::::1;;::::0;;::::1;;:23;;:15;:23;1346:128;;;1415:10;1396:30;::::0;;;:18:::1;:30;::::0;;;;;::::1;;1388:75;;;::::0;-1:-1:-1;;;1388:75:12;;18504:2:13;1388:75:12::1;::::0;::::1;18486:21:13::0;;;18523:18;;;18516:30;18582:34;18562:18;;;18555:62;18634:18;;1388:75:12::1;18302:356:13::0;1388:75:12::1;1484:29;1494:10;1506:6;1484:9;:29::i;2805:101::-:0;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:7;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;2884:15:12::1;::::0;;-1:-1:-1;;2865:34:12;::::1;2884:15;::::0;;;::::1;;;2883:16;2865:34:::0;;::::1;;::::0;;2805:101::o;3157:161::-;-1:-1:-1;;;;;;;;;;;;;;;;;3291:20:12;3303:7;3291:11;:20::i;5926:96:11:-;5982:13;6010:7;6003:14;;;;;:::i;7502:269::-;-1:-1:-1;;;;;7592:24:11;;719:10:7;7592:24:11;;7584:63;;;;-1:-1:-1;;;7584:63:11;;13432:2:13;7584:63:11;;;13414:21:13;13471:2;13451:18;;;13444:30;13510:28;13490:18;;;13483:56;13556:18;;7584:63:11;13230:350:13;7584:63:11;719:10:7;7654:32:11;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;7654:42:11;;;;;;;;;;;;:53;;-1:-1:-1;;7654:53:11;;;;;;;;;;7718:48;;6667:41:13;;;7654:42:11;;719:10:7;7718:48:11;;6640:18:13;7718:48:11;;;;;;;7502:269;;:::o;2629:90:12:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:7;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;2694:12:12::1;:18:::0;2629:90::o;8464:300:11:-;8595:28;8605:4;8611:2;8615:7;8595:9;:28::i;:::-;8644:48;8667:4;8673:2;8677:7;8686:5;8644:22;:48::i;:::-;8629:130;;;;-1:-1:-1;;;8629:130:11;;;;;;;:::i;:::-;8464:300;;;;:::o;1718:465:12:-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:7;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1775:6:12::1;::::0;::::1;;:14;;:6:::0;:14:::1;1767:56;;;::::0;-1:-1:-1;;;1767:56:12;;11483:2:13;1767:56:12::1;::::0;::::1;11465:21:13::0;11522:2;11502:18;;;11495:30;11561:31;11541:18;;;11534:59;11610:18;;1767:56:12::1;11281:353:13::0;1767:56:12::1;1857:14;1841:13;2795:12:11::0;;;2720:92;1841:13:12::1;:30;1833:71;;;::::0;-1:-1:-1;;;1833:71:12;;18865:2:13;1833:71:12::1;::::0;::::1;18847:21:13::0;18904:2;18884:18;;;18877:30;18943;18923:18;;;18916:58;18991:18;;1833:71:12::1;18663:352:13::0;1833:71:12::1;1922:28;1938:12;1922:13;:28;:::i;:::-;:33:::0;1914:94:::1;;;::::0;-1:-1:-1;;;1914:94:12;;16135:2:13;1914:94:12::1;::::0;::::1;16117:21:13::0;16174:2;16154:18;;;16147:30;16213:34;16193:18;;;16186:62;-1:-1:-1;;;16264:18:13;;;16257:46;16320:19;;1914:94:12::1;15933:412:13::0;1914:94:12::1;2018:17;2038:28;2054:12;2038:13;:28;:::i;:::-;2018:48;;2082:9;2077:100;2101:9;2097:1;:13;2077:100;;;2131:35;2141:10;2153:12;2131:9;:35::i;:::-;2112:3:::0;::::1;::::0;::::1;:::i;:::-;;;;2077:100;;;;1757:426;1718:465::o:0;3523:168::-;3596:13;3651:23;3666:7;3651:14;:23::i;:::-;3634:49;;;;;;;;:::i;:::-;;;;;;;;;;;;;3620:64;;3523:168;;;:::o;3040:111::-;3098:7;3124:20;3138:5;3124:13;:20::i;2189:202::-;1082:7:0;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:7;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;2280:6:12::1;2275:110;2292:21:::0;;::::1;2275:110;;;2370:4;2334:18;:33;2353:10;;2364:1;2353:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2334:33:12::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;2334:33:12;:40;;-1:-1:-1;;2334:40:12::1;::::0;::::1;;::::0;;;::::1;::::0;;2315:3;::::1;::::0;::::1;:::i;:::-;;;;2275:110;;1918:198:0::0;1082:7;1108:6;-1:-1:-1;;;;;1108:6:0;719:10:7;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2006:22:0;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:0;;7548:2:13;1998:73:0::1;::::0;::::1;7530:21:13::0;7587:2;7567:18;;;7560:30;7626:34;7606:18;;;7599:62;-1:-1:-1;;;7677:18:13;;;7670:36;7723:19;;1998:73:0::1;7346:402:13::0;1998:73:0::1;2081:28;2100:8;2081:18;:28::i;:::-;1918:198:::0;:::o;12565:165:11:-;12657:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;12657:29:11;-1:-1:-1;;;;;12657:29:11;;;;;;;;;12697:28;;12657:24;;12697:28;;;;;;;12565:165;;;:::o;10982:1484::-;11074:35;11112:20;11124:7;11112:11;:20::i;:::-;11181:18;;11074:58;;-1:-1:-1;11139:22:11;;-1:-1:-1;;;;;11165:34:11;719:10:7;-1:-1:-1;;;;;11165:34:11;;:80;;;-1:-1:-1;719:10:7;11209:20:11;11221:7;11209:11;:20::i;:::-;-1:-1:-1;;;;;11209:36:11;;11165:80;:140;;;-1:-1:-1;11272:18:11;;11255:50;;719:10:7;7829:178:11;:::i;11255:50::-;11139:167;;11328:17;11313:98;;;;-1:-1:-1;;;11313:98:11;;13787:2:13;11313:98:11;;;13769:21:13;13826:2;13806:18;;;13799:30;13865:34;13845:18;;;13838:62;-1:-1:-1;;;13916:18:13;;;13909:48;13974:19;;11313:98:11;13585:414:13;11313:98:11;11455:4;-1:-1:-1;;;;;11433:26:11;:13;:18;;;-1:-1:-1;;;;;11433:26:11;;11418:95;;;;-1:-1:-1;;;11418:95:11;;11841:2:13;11418:95:11;;;11823:21:13;11880:2;11860:18;;;11853:30;11919:34;11899:18;;;11892:62;-1:-1:-1;;;11970:18:13;;;11963:36;12016:19;;11418:95:11;11639:402:13;11418:95:11;-1:-1:-1;;;;;11527:16:11;;11519:66;;;;-1:-1:-1;;;11519:66:11;;8770:2:13;11519:66:11;;;8752:21:13;8809:2;8789:18;;;8782:30;8848:34;8828:18;;;8821:62;-1:-1:-1;;;8899:18:13;;;8892:35;8944:19;;11519:66:11;8568:401:13;11519:66:11;11689:49;11706:1;11710:7;11719:13;:18;;;11689:8;:49::i;:::-;-1:-1:-1;;;;;11745:18:11;;;;;;:12;:18;;;;;:31;;11775:1;;11745:18;:31;;11775:1;;-1:-1:-1;;;;;11745:31:11;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;11745:31:11;;;;;;;;;;;;;;;-1:-1:-1;;;;;11782:16:11;;-1:-1:-1;11782:16:11;;;:12;:16;;;;;:29;;-1:-1:-1;;;11782:16:11;;:29;;-1:-1:-1;;11782:29:11;;:::i;:::-;;;-1:-1:-1;;;;;11782:29:11;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11840:43:11;;;;;;;;-1:-1:-1;;;;;11840:43:11;;;;;;11866:15;11840:43;;;;;;;;;-1:-1:-1;11817:20:11;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;11817:66:11;-1:-1:-1;;;;;;11817:66:11;;;;;;;;;;;12129:11;11829:7;-1:-1:-1;12129:11:11;:::i;:::-;12191:1;12150:24;;;:11;:24;;;;;:29;12107:33;;-1:-1:-1;;;;;;12150:29:11;12146:229;;12207:20;12215:11;9080:12;;-1:-1:-1;9070:22:11;8994:103;12207:20;12203:166;;;12266:94;;;;;;;;12292:18;;-1:-1:-1;;;;;12266:94:11;;;;;;12322:28;;;;12266:94;;;;;;;;;;-1:-1:-1;12239:24:11;;;:11;:24;;;;;;;:121;;;;;;;;;-1:-1:-1;;;12239:121:11;-1:-1:-1;;;;;;12239:121:11;;;;;;;;;;;;12203:166;12405:7;12401:2;-1:-1:-1;;;;;12386:27:11;12395:4;-1:-1:-1;;;;;12386:27:11;;;;;;;;;;;12419:42;11068:1398;;;10982:1484;;;:::o;12877:827::-;12966:24;;13004:12;12996:49;;;;-1:-1:-1;;;12996:49:11;;10379:2:13;12996:49:11;;;10361:21:13;10418:2;10398:18;;;10391:30;10457:26;10437:18;;;10430:54;10501:18;;12996:49:11;10177:348:13;12996:49:11;13051:16;13101:1;13070:28;13090:8;13070:17;:28;:::i;:::-;:32;;;;:::i;:::-;13051:51;-1:-1:-1;13123:18:11;13140:1;13123:14;:18;:::i;:::-;13112:8;:29;13108:79;;;13162:18;13179:1;13162:14;:18;:::i;:::-;13151:29;;13108:79;13300:17;13308:8;9080:12;;-1:-1:-1;9070:22:11;8994:103;13300:17;13292:68;;;;-1:-1:-1;;;13292:68:11;;17321:2:13;13292:68:11;;;17303:21:13;17360:2;17340:18;;;17333:30;17399:34;17379:18;;;17372:62;-1:-1:-1;;;17450:18:13;;;17443:36;17496:19;;13292:68:11;17119:402:13;13292:68:11;13383:17;13366:289;13407:8;13402:1;:13;13366:289;;13465:1;13434:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;13434:19:11;13430:219;;13479:31;13513:14;13525:1;13513:11;:14::i;:::-;13554:86;;;;;;;;13580:14;;-1:-1:-1;;;;;13554:86:11;;;;;;13606:24;;;;13554:86;;;;;;;;;;-1:-1:-1;13537:14:11;;;:11;:14;;;;;;;:103;;;;;;;;;-1:-1:-1;;;13537:103:11;-1:-1:-1;;;;;;13537:103:11;;;;;;;;;;;;-1:-1:-1;13430:219:11;13417:3;;;;:::i;:::-;;;;13366:289;;;-1:-1:-1;13687:12:11;:8;13698:1;13687:12;:::i;:::-;13660:24;:39;-1:-1:-1;;;12877:827:11:o;4973:586::-;-1:-1:-1;;;;;;;;;;;;;;;;;5085:16:11;5093:7;9080:12;;-1:-1:-1;9070:22:11;8994:103;5085:16;5077:71;;;;-1:-1:-1;;;5077:71:11;;7955:2:13;5077:71:11;;;7937:21:13;7994:2;7974:18;;;7967:30;8033:34;8013:18;;;8006:62;-1:-1:-1;;;8084:18:13;;;8077:40;8134:19;;5077:71:11;7753:406:13;5077:71:11;5155:26;5202:12;5191:7;:23;5187:91;;5245:22;5255:12;5245:7;:22;:::i;:::-;:26;;5270:1;5245:26;:::i;:::-;5224:47;;5187:91;5304:7;5284:207;5321:18;5313:4;:26;5284:207;;5357:31;5391:17;;;:11;:17;;;;;;;;;5357:51;;;;;;;;;-1:-1:-1;;;;;5357:51:11;;;;;-1:-1:-1;;;5357:51:11;;;;;;;;;;;;5420:28;5416:69;;5467:9;4973:586;-1:-1:-1;;;;4973:586:11:o;5416:69::-;-1:-1:-1;5341:6:11;;;;:::i;:::-;;;;5284:207;;;-1:-1:-1;5497:57:11;;-1:-1:-1;;;5497:57:11;;18088:2:13;5497:57:11;;;18070:21:13;18127:2;18107:18;;;18100:30;18166:34;18146:18;;;18139:62;-1:-1:-1;;;18217:18:13;;;18210:45;18272:19;;5497:57:11;17886:411:13;2270:187:0;2343:16;2362:6;;-1:-1:-1;;;;;2378:17:0;;;-1:-1:-1;;;;;;2378:17:0;;;;;;2410:40;;2362:6;;;;;;;2410:40;;2343:16;2410:40;2333:124;2270:187;:::o;9101:96:11:-;9165:27;9175:2;9179:8;9165:27;;;;;;;;;;;;:9;:27::i;14235:667::-;14367:4;-1:-1:-1;;;;;14383:13:11;;1465:19:6;:23;14379:519:11;;14420:72;;-1:-1:-1;;;14420:72:11;;-1:-1:-1;;;;;14420:36:11;;;;;:72;;719:10:7;;14471:4:11;;14477:7;;14486:5;;14420:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14420:72:11;;;;;;;;-1:-1:-1;;14420:72:11;;;;;;;;;;;;:::i;:::-;;;14408:452;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14647:13:11;;14643:209;;14679:61;;-1:-1:-1;;;14679:61:11;;;;;;;:::i;14643:209::-;14822:6;14816:13;14807:6;14803:2;14799:15;14792:38;14408:452;-1:-1:-1;;;;;;14540:55:11;-1:-1:-1;;;14540:55:11;;-1:-1:-1;14533:62:11;;14379:519;-1:-1:-1;14887:4:11;14379:519;14235:667;;;;;;:::o;6080:377::-;6173:13;6211:16;6219:7;9080:12;;-1:-1:-1;9070:22:11;8994:103;6211:16;6196:94;;;;-1:-1:-1;;;6196:94:11;;13016:2:13;6196:94:11;;;12998:21:13;13055:2;13035:18;;;13028:30;13094:34;13074:18;;;13067:62;-1:-1:-1;;;13145:18:13;;;13138:45;13200:19;;6196:94:11;12814:411:13;6196:94:11;6297:21;6321:10;:8;:10::i;:::-;6297:34;;6374:1;6356:7;6350:21;:25;:102;;;;;;;;;;;;;;;;;6410:7;6419:18;:7;:16;:18::i;:::-;6393:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6350:102;6337:115;6080:377;-1:-1:-1;;;6080:377:11:o;4735:234::-;4796:7;-1:-1:-1;;;;;4826:19:11;;4811:99;;;;-1:-1:-1;;;4811:99:11;;9176:2:13;4811:99:11;;;9158:21:13;9215:2;9195:18;;;9188:30;9254:34;9234:18;;;9227:62;-1:-1:-1;;;9305:18:13;;;9298:47;9362:19;;4811:99:11;8974:413:13;4811:99:11;-1:-1:-1;;;;;;4931:19:11;;;;;:12;:19;;;;;:32;-1:-1:-1;;;4931:32:11;;-1:-1:-1;;;;;4931:32:11;;4735:234::o;9523:1239::-;9646:12;;-1:-1:-1;;;;;9672:16:11;;9664:62;;;;-1:-1:-1;;;9664:62:11;;15733:2:13;9664:62:11;;;15715:21:13;15772:2;15752:18;;;15745:30;15811:34;15791:18;;;15784:62;-1:-1:-1;;;15862:18:13;;;15855:31;15903:19;;9664:62:11;15531:397:13;9664:62:11;9861:21;9869:12;9080;;-1:-1:-1;9070:22:11;8994:103;9861:21;9860:22;9852:64;;;;-1:-1:-1;;;9852:64:11;;15375:2:13;9852:64:11;;;15357:21:13;15414:2;15394:18;;;15387:30;15453:31;15433:18;;;15426:59;15502:18;;9852:64:11;15173:353:13;9852:64:11;9942:12;9930:8;:24;;9922:71;;;;-1:-1:-1;;;9922:71:11;;19636:2:13;9922:71:11;;;19618:21:13;19675:2;19655:18;;;19648:30;19714:34;19694:18;;;19687:62;-1:-1:-1;;;19765:18:13;;;19758:32;19807:19;;9922:71:11;19434:398:13;9922:71:11;-1:-1:-1;;;;;10101:16:11;;10068:30;10101:16;;;:12;:16;;;;;;;;;10068:49;;;;;;;;;-1:-1:-1;;;;;10068:49:11;;;;;-1:-1:-1;;;10068:49:11;;;;;;;;;;;10142:116;;;;;;;;10161:19;;10068:49;;10142:116;;;10161:39;;10191:8;;10161:39;:::i;:::-;-1:-1:-1;;;;;10142:116:11;;;;;10243:8;10208:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;10142:116:11;;;;;;-1:-1:-1;;;;;10123:16:11;;;;;;;:12;:16;;;;;;;;:135;;;;;;;;-1:-1:-1;;;10123:135:11;;;;;;;;;;;;10292:43;;;;;;;;;;;10318:15;10292:43;;;;;;;;10264:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;10264:71:11;-1:-1:-1;;;;;;10264:71:11;;;;;;;;;;;;;;;;;;10276:12;;10384:274;10408:8;10404:1;:12;10384:274;;;10436:38;;10461:12;;-1:-1:-1;;;;;10436:38:11;;;10453:1;;10436:38;;10453:1;;10436:38;10499:59;10530:1;10534:2;10538:12;10552:5;10499:22;:59::i;:::-;10482:147;;;;-1:-1:-1;;;10482:147:11;;;;;;;:::i;:::-;10637:14;;;;:::i;:::-;;;;10418:3;;;;;:::i;:::-;;;;10384:274;;;-1:-1:-1;10664:12:11;:27;;;10697:60;8464:300;2397:112:12;2457:13;2489;2482:20;;;;;:::i;328:703:8:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:8;;;;;;;;;;;;-1:-1:-1;;;627:10:8;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:8;;-1:-1:-1;773:2:8;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:8;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:8;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:8;;;;;;;;-1:-1:-1;972:11:8;981:2;972:11;;:::i;:::-;;;844:150;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:13;82:20;;-1:-1:-1;;;;;131:31:13;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:13;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:13:o;2735:615::-;2821:6;2829;2882:2;2870:9;2861:7;2857:23;2853:32;2850:52;;;2898:1;2895;2888:12;2850:52;2938:9;2925:23;2967:18;3008:2;3000:6;2997:14;2994:34;;;3024:1;3021;3014:12;2994:34;3062:6;3051:9;3047:22;3037:32;;3107:7;3100:4;3096:2;3092:13;3088:27;3078:55;;3129:1;3126;3119:12;3078:55;3169:2;3156:16;3195:2;3187:6;3184:14;3181:34;;;3211:1;3208;3201:12;3181:34;3264:7;3259:2;3249:6;3246:1;3242:14;3238:2;3234:23;3230:32;3227:45;3224:65;;;3285:1;3282;3275:12;3224:65;3316:2;3308:11;;;;;3338:6;;-1:-1:-1;2735:615:13;;-1:-1:-1;;;;2735:615:13:o;3355:245::-;3413:6;3466:2;3454:9;3445:7;3441:23;3437:32;3434:52;;;3482:1;3479;3472:12;3434:52;3521:9;3508:23;3540:30;3564:5;3540:30;:::i;3605:249::-;3674:6;3727:2;3715:9;3706:7;3702:23;3698:32;3695:52;;;3743:1;3740;3733:12;3695:52;3775:9;3769:16;3794:30;3818:5;3794:30;:::i;3859:592::-;3930:6;3938;3991:2;3979:9;3970:7;3966:23;3962:32;3959:52;;;4007:1;4004;3997:12;3959:52;4047:9;4034:23;4076:18;4117:2;4109:6;4106:14;4103:34;;;4133:1;4130;4123:12;4103:34;4171:6;4160:9;4156:22;4146:32;;4216:7;4209:4;4205:2;4201:13;4197:27;4187:55;;4238:1;4235;4228:12;4187:55;4278:2;4265:16;4304:2;4296:6;4293:14;4290:34;;;4320:1;4317;4310:12;4290:34;4365:7;4360:2;4351:6;4347:2;4343:15;4339:24;4336:37;4333:57;;;4386:1;4383;4376:12;4456:180;4515:6;4568:2;4556:9;4547:7;4543:23;4539:32;4536:52;;;4584:1;4581;4574:12;4536:52;-1:-1:-1;4607:23:13;;4456:180;-1:-1:-1;4456:180:13:o;4641:257::-;4682:3;4720:5;4714:12;4747:6;4742:3;4735:19;4763:63;4819:6;4812:4;4807:3;4803:14;4796:4;4789:5;4785:16;4763:63;:::i;:::-;4880:2;4859:15;-1:-1:-1;;4855:29:13;4846:39;;;;4887:4;4842:50;;4641:257;-1:-1:-1;;4641:257:13:o;4903:470::-;5082:3;5120:6;5114:13;5136:53;5182:6;5177:3;5170:4;5162:6;5158:17;5136:53;:::i;:::-;5252:13;;5211:16;;;;5274:57;5252:13;5211:16;5308:4;5296:17;;5274:57;:::i;:::-;5347:20;;4903:470;-1:-1:-1;;;;4903:470:13:o;5378:443::-;5610:3;5648:6;5642:13;5664:53;5710:6;5705:3;5698:4;5690:6;5686:17;5664:53;:::i;:::-;-1:-1:-1;;;5739:16:13;;5764:22;;;-1:-1:-1;5813:1:13;5802:13;;5378:443;-1:-1:-1;5378:443:13:o;6034:488::-;-1:-1:-1;;;;;6303:15:13;;;6285:34;;6355:15;;6350:2;6335:18;;6328:43;6402:2;6387:18;;6380:34;;;6450:3;6445:2;6430:18;;6423:31;;;6228:4;;6471:45;;6496:19;;6488:6;6471:45;:::i;:::-;6463:53;6034:488;-1:-1:-1;;;;;;6034:488:13:o;6719:219::-;6868:2;6857:9;6850:21;6831:4;6888:44;6928:2;6917:9;6913:18;6905:6;6888:44;:::i;12046:356::-;12248:2;12230:21;;;12267:18;;;12260:30;12326:34;12321:2;12306:18;;12299:62;12393:2;12378:18;;12046:356::o;14753:415::-;14955:2;14937:21;;;14994:2;14974:18;;;14967:30;15033:34;15028:2;15013:18;;15006:62;-1:-1:-1;;;15099:2:13;15084:18;;15077:49;15158:3;15143:19;;14753:415::o;20384:253::-;20424:3;-1:-1:-1;;;;;20513:2:13;20510:1;20506:10;20543:2;20540:1;20536:10;20574:3;20570:2;20566:12;20561:3;20558:21;20555:47;;;20582:18;;:::i;20642:128::-;20682:3;20713:1;20709:6;20706:1;20703:13;20700:39;;;20719:18;;:::i;:::-;-1:-1:-1;20755:9:13;;20642:128::o;20775:120::-;20815:1;20841;20831:35;;20846:18;;:::i;:::-;-1:-1:-1;20880:9:13;;20775:120::o;20900:246::-;20940:4;-1:-1:-1;;;;;21053:10:13;;;;21023;;21075:12;;;21072:38;;;21090:18;;:::i;:::-;21127:13;;20900:246;-1:-1:-1;;;20900:246:13:o;21151:125::-;21191:4;21219:1;21216;21213:8;21210:34;;;21224:18;;:::i;:::-;-1:-1:-1;21261:9:13;;21151:125::o;21281:258::-;21353:1;21363:113;21377:6;21374:1;21371:13;21363:113;;;21453:11;;;21447:18;21434:11;;;21427:39;21399:2;21392:10;21363:113;;;21494:6;21491:1;21488:13;21485:48;;;-1:-1:-1;;21529:1:13;21511:16;;21504:27;21281:258::o;21544:136::-;21583:3;21611:5;21601:39;;21620:18;;:::i;:::-;-1:-1:-1;;;21656:18:13;;21544:136::o;21685:380::-;21764:1;21760:12;;;;21807;;;21828:61;;21882:4;21874:6;21870:17;21860:27;;21828:61;21935:2;21927:6;21924:14;21904:18;21901:38;21898:161;;;21981:10;21976:3;21972:20;21969:1;21962:31;22016:4;22013:1;22006:15;22044:4;22041:1;22034:15;21898:161;;21685:380;;;:::o;22070:135::-;22109:3;-1:-1:-1;;22130:17:13;;22127:43;;;22150:18;;:::i;:::-;-1:-1:-1;22197:1:13;22186:13;;22070:135::o;22210:112::-;22242:1;22268;22258:35;;22273:18;;:::i;:::-;-1:-1:-1;22307:9:13;;22210:112::o;22327:127::-;22388:10;22383:3;22379:20;22376:1;22369:31;22419:4;22416:1;22409:15;22443:4;22440:1;22433:15;22459:127;22520:10;22515:3;22511:20;22508:1;22501:31;22551:4;22548:1;22541:15;22575:4;22572:1;22565:15;22591:127;22652:10;22647:3;22643:20;22640:1;22633:31;22683:4;22680:1;22673:15;22707:4;22704:1;22697:15;22723:127;22784:10;22779:3;22775:20;22772:1;22765:31;22815:4;22812:1;22805:15;22839:4;22836:1;22829:15;22855:131;-1:-1:-1;;;;;;22929:32:13;;22919:43;;22909:71;;22976:1;22973;22966:12

Swarm Source

ipfs://c1b7d8d8485df3c289cf7e0f656676bbc0ecdd3120f4ea6509c237809be87c8c
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.