ETH Price: $3,160.14 (-8.37%)
Gas: 3 Gwei

Token

Ze Germans ()
 

Overview

Max Total Supply

4,444 Ze Germans

Holders

1,439

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 Ze Germans
0x271d86da4455176bc588baddcf3a9ba2cdce3cf8
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:
ZeGermans

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

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

import "./ERC721A.sol";

pragma solidity ^0.8.15;

/*
* ACHTUNG: 4444 happy Germans are ready for ze Metawurst.
*
* Reveal after minting out (we must get them ready yet, generierund und so). 
*
* Minting is free. 3 per wallet max. Use "praegen" to mint.
*
* This is a fun project of https://rarity.garden (you can mint there, too)
*/

contract ZeGermans is ERC721A
{

    using Strings for uint256;

    address public owner;
    string public _baseTokenUri;
    string public _defaultURI;
    mapping(address => uint256) public minters;

    constructor(
        string memory name,
        string memory symbol,
        string memory baseTokenURI,
        string memory defaultURI,
        uint256 maxBatch,
        uint256 collectionSize
    ) ERC721A(name, symbol, maxBatch, collectionSize) {

        _baseTokenUri = baseTokenURI;
        owner = _msgSender();
        _defaultURI = defaultURI;
    }

    function praegen(uint256 anzahl) external {

        require(totalSupply() + anzahl <= collectionSize, "Achtung: die maximale Anzahl der Wertmarken wurde erreicht.");
        uint256 minterMinted = minters[_msgSender()];
        require(minterMinted + anzahl <= maxBatchSize, "Achtung: die maximale Praegung fuer die Brieftasche wurde erreicht.");

        minters[_msgSender()] += anzahl;
        _safeMint(_msgSender(), anzahl, "");
    }

    function _baseURI() internal view virtual override returns (string memory) {

        return _baseTokenUri;
    }
    
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        
        require(_exists(tokenId), "ERC721Hartspiritus: Anfrage fuer nicht-existierende Wertmarke");
          
        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : _defaultURI;
    }
    
    function setBaseUri(string calldata baseTokenURI) public virtual {

        require(_msgSender() == owner, "Achtung: Sie muessen der Eigentuemer sein.");

        _baseTokenUri = baseTokenURI;
    }

    function performEthRecover(uint256 amount, address receiver) external
    {
        require(_msgSender() == owner, "Achtung: Sie muessen der Eigentuemer sein.");

        (bool success,) = payable(receiver).call{value: amount}("");
    }

    function transferOwnership(address newOwner) external
    {
        require(_msgSender() == owner, "Achtung: Sie muessen der Eigentuemer sein.");

        owner = newOwner;
    }
}

File 2 of 11 : ERC721A.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.15;

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 3 of 11 : 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 4 of 11 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

File 5 of 11 : 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 6 of 11 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library 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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 7 of 11 : 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 8 of 11 : 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 9 of 11 : 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 10 of 11 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseTokenURI","type":"string"},{"internalType":"string","name":"defaultURI","type":"string"},{"internalType":"uint256","name":"maxBatch","type":"uint256"},{"internalType":"uint256","name":"collectionSize","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":"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":"_baseTokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_defaultURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"minters","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":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"performEthRecover","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"anzahl","type":"uint256"}],"name":"praegen","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":"baseTokenURI","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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"}]

60c06040526000805560006007553480156200001a57600080fd5b5060405162004a8938038062004a89833981810160405281019062000040919062000368565b85858383600081116200008a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000819062000507565b60405180910390fd5b60008211620000d0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000c7906200059f565b60405180910390fd5b8360019081620000e1919062000802565b508260029081620000f3919062000802565b508160a08181525050806080818152505050505050836009908162000119919062000802565b506200012a6200018860201b60201c565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600a90816200017b919062000802565b50505050505050620008e9565b600033905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620001f982620001ae565b810181811067ffffffffffffffff821117156200021b576200021a620001bf565b5b80604052505050565b60006200023062000190565b90506200023e8282620001ee565b919050565b600067ffffffffffffffff821115620002615762000260620001bf565b5b6200026c82620001ae565b9050602081019050919050565b60005b83811015620002995780820151818401526020810190506200027c565b83811115620002a9576000848401525b50505050565b6000620002c6620002c08462000243565b62000224565b905082815260208101848484011115620002e557620002e4620001a9565b5b620002f284828562000279565b509392505050565b600082601f830112620003125762000311620001a4565b5b815162000324848260208601620002af565b91505092915050565b6000819050919050565b62000342816200032d565b81146200034e57600080fd5b50565b600081519050620003628162000337565b92915050565b60008060008060008060c087890312156200038857620003876200019a565b5b600087015167ffffffffffffffff811115620003a957620003a86200019f565b5b620003b789828a01620002fa565b965050602087015167ffffffffffffffff811115620003db57620003da6200019f565b5b620003e989828a01620002fa565b955050604087015167ffffffffffffffff8111156200040d576200040c6200019f565b5b6200041b89828a01620002fa565b945050606087015167ffffffffffffffff8111156200043f576200043e6200019f565b5b6200044d89828a01620002fa565b93505060806200046089828a0162000351565b92505060a06200047389828a0162000351565b9150509295509295509295565b600082825260208201905092915050565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b6000620004ef602e8362000480565b9150620004fc8262000491565b604082019050919050565b600060208201905081810360008301526200052281620004e0565b9050919050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b60006200058760278362000480565b9150620005948262000529565b604082019050919050565b60006020820190508181036000830152620005ba8162000578565b9050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200061457607f821691505b6020821081036200062a5762000629620005cc565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006947fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000655565b620006a0868362000655565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620006e3620006dd620006d7846200032d565b620006b8565b6200032d565b9050919050565b6000819050919050565b620006ff83620006c2565b620007176200070e82620006ea565b84845462000662565b825550505050565b600090565b6200072e6200071f565b6200073b818484620006f4565b505050565b5b8181101562000763576200075760008262000724565b60018101905062000741565b5050565b601f821115620007b2576200077c8162000630565b620007878462000645565b8101602085101562000797578190505b620007af620007a68562000645565b83018262000740565b50505b505050565b600082821c905092915050565b6000620007d760001984600802620007b7565b1980831691505092915050565b6000620007f28383620007c4565b9150826002028217905092915050565b6200080d82620005c1565b67ffffffffffffffff811115620008295762000828620001bf565b5b620008358254620005fb565b6200084282828562000767565b600060209050601f8311600181146200087a576000841562000865578287015190505b620008718582620007e4565b865550620008e1565b601f1984166200088a8662000630565b60005b82811015620008b4578489015182556001820191506020850194506020810190506200088d565b86831015620008d45784890151620008d0601f891682620007c4565b8355505b6001600288020188555050505b505050505050565b60805160a0516141656200092460003960008181610c4e01528181611d61015281816121d301526121fc01526000610b8e01526141656000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806356c4aedd116100de578063a22cb46511610097578063d7224ba011610071578063d7224ba01461045c578063e985e9c51461047a578063f2fde38b146104aa578063f46eccc4146104c657610173565b8063a22cb465146103f4578063b88d4fde14610410578063c87b56dd1461042c57610173565b806356c4aedd1461031e5780636352211e1461033c57806370a082311461036c5780638da5cb5b1461039c57806395d89b41146103ba578063a0bcfc7f146103d857610173565b806323b872dd1161013057806323b872dd1461024c5780632f745c5914610268578063397c77f91461029857806342842e0e146102b457806348200604146102d05780634f6ccce7146102ee57610173565b806301ffc9a71461017857806306fdde03146101a8578063081812fc146101c6578063095ea7b3146101f657806316f242b91461021257806318160ddd1461022e575b600080fd5b610192600480360381019061018d91906127d0565b6104f6565b60405161019f9190612818565b60405180910390f35b6101b0610640565b6040516101bd91906128cc565b60405180910390f35b6101e060048036038101906101db9190612924565b6106d2565b6040516101ed9190612992565b60405180910390f35b610210600480360381019061020b91906129d9565b610757565b005b61022c60048036038101906102279190612a19565b61086f565b005b610236610977565b6040516102439190612a68565b60405180910390f35b61026660048036038101906102619190612a83565b610980565b005b610282600480360381019061027d91906129d9565b610990565b60405161028f9190612a68565b60405180910390f35b6102b260048036038101906102ad9190612924565b610b8c565b005b6102ce60048036038101906102c99190612a83565b610d3c565b005b6102d8610d5c565b6040516102e591906128cc565b60405180910390f35b61030860048036038101906103039190612924565b610dea565b6040516103159190612a68565b60405180910390f35b610326610e3d565b60405161033391906128cc565b60405180910390f35b61035660048036038101906103519190612924565b610ecb565b6040516103639190612992565b60405180910390f35b61038660048036038101906103819190612ad6565b610ee1565b6040516103939190612a68565b60405180910390f35b6103a4610fc9565b6040516103b19190612992565b60405180910390f35b6103c2610fef565b6040516103cf91906128cc565b60405180910390f35b6103f260048036038101906103ed9190612b68565b611081565b005b61040e60048036038101906104099190612be1565b61112e565b005b61042a60048036038101906104259190612d51565b6112ae565b005b61044660048036038101906104419190612924565b61130a565b60405161045391906128cc565b60405180910390f35b61046461142c565b6040516104719190612a68565b60405180910390f35b610494600480360381019061048f9190612dd4565b611432565b6040516104a19190612818565b60405180910390f35b6104c460048036038101906104bf9190612ad6565b6114c6565b005b6104e060048036038101906104db9190612ad6565b6115a1565b6040516104ed9190612a68565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105c157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061062957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106395750610638826115b9565b5b9050919050565b60606001805461064f90612e43565b80601f016020809104026020016040519081016040528092919081815260200182805461067b90612e43565b80156106c85780601f1061069d576101008083540402835291602001916106c8565b820191906000526020600020905b8154815290600101906020018083116106ab57829003601f168201915b5050505050905090565b60006106dd82611623565b61071c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071390612ee6565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061076282610ecb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c990612f78565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107f1611630565b73ffffffffffffffffffffffffffffffffffffffff161480610820575061081f8161081a611630565b611432565b5b61085f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108569061300a565b60405180910390fd5b61086a838383611638565b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108b0611630565b73ffffffffffffffffffffffffffffffffffffffff1614610906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fd9061309c565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff168360405161092c906130ed565b60006040518083038185875af1925050503d8060008114610969576040519150601f19603f3d011682016040523d82523d6000602084013e61096e565b606091505b50509050505050565b60008054905090565b61098b8383836116ea565b505050565b600061099b83610ee1565b82106109dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d390613174565b60405180910390fd5b60006109e6610977565b905060008060005b83811015610b4a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ae057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b3657868403610b27578195505050505050610b86565b8380610b32906131c3565b9450505b508080610b42906131c3565b9150506109ee565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d9061327d565b60405180910390fd5b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081610bb6610977565b610bc0919061329d565b1115610c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf890613365565b60405180910390fd5b6000600b6000610c0f611630565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490507f00000000000000000000000000000000000000000000000000000000000000008282610c79919061329d565b1115610cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb19061341d565b60405180910390fd5b81600b6000610cc7611630565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d10919061329d565b92505081905550610d38610d22611630565b8360405180602001604052806000815250611ca1565b5050565b610d57838383604051806020016040528060008152506112ae565b505050565b60098054610d6990612e43565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9590612e43565b8015610de25780601f10610db757610100808354040283529160200191610de2565b820191906000526020600020905b815481529060010190602001808311610dc557829003601f168201915b505050505081565b6000610df4610977565b8210610e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2c906134af565b60405180910390fd5b819050919050565b600a8054610e4a90612e43565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7690612e43565b8015610ec35780601f10610e9857610100808354040283529160200191610ec3565b820191906000526020600020905b815481529060010190602001808311610ea657829003601f168201915b505050505081565b6000610ed68261217f565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4890613541565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060028054610ffe90612e43565b80601f016020809104026020016040519081016040528092919081815260200182805461102a90612e43565b80156110775780601f1061104c57610100808354040283529160200191611077565b820191906000526020600020905b81548152906001019060200180831161105a57829003601f168201915b5050505050905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166110c2611630565b73ffffffffffffffffffffffffffffffffffffffff1614611118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110f9061309c565b60405180910390fd5b818160099182611129929190613718565b505050565b611136611630565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119a90613834565b60405180910390fd5b80600660006111b0611630565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661125d611630565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112a29190612818565b60405180910390a35050565b6112b98484846116ea565b6112c584848484612382565b611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb906138c6565b60405180910390fd5b50505050565b606061131582611623565b611354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134b90613958565b60405180910390fd5b600061135e612509565b905060008151116113f957600a805461137690612e43565b80601f01602080910402602001604051908101604052809291908181526020018280546113a290612e43565b80156113ef5780601f106113c4576101008083540402835291602001916113ef565b820191906000526020600020905b8154815290600101906020018083116113d257829003601f168201915b5050505050611424565b806114038461259b565b604051602001611414929190613a00565b6040516020818303038152906040525b915050919050565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611507611630565b73ffffffffffffffffffffffffffffffffffffffff161461155d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115549061309c565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b6020528060005260406000206000915090505481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006116f58261217f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661171c611630565b73ffffffffffffffffffffffffffffffffffffffff1614806117785750611741611630565b73ffffffffffffffffffffffffffffffffffffffff16611760846106d2565b73ffffffffffffffffffffffffffffffffffffffff16145b806117945750611793826000015161178e611630565b611432565b5b9050806117d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cd90613aa1565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183f90613b33565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036118b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ae90613bc5565b60405180910390fd5b6118c485858560016126fb565b6118d46000848460000151611638565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166119429190613c01565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166119e69190613c35565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611aec919061329d565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611c3157611b6181611623565b15611c30576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c998686866001612701565b505050505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0d90613ced565b60405180910390fd5b611d1f81611623565b15611d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5690613d59565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115611dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db990613deb565b60405180910390fd5b611dcf60008583866126fb565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151611ecc9190613c35565b6fffffffffffffffffffffffffffffffff168152602001858360200151611ef39190613c35565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561216257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121026000888488612382565b612141576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612138906138c6565b60405180910390fd5b818061214c906131c3565b925050808061215a906131c3565b915050612091565b50806000819055506121776000878588612701565b505050505050565b61218761272a565b61219082611623565b6121cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c690613e7d565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106122335760017f0000000000000000000000000000000000000000000000000000000000000000846122269190613e9d565b612230919061329d565b90505b60008390505b818110612341576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461232d5780935050505061237d565b50808061233990613ed1565b915050612239565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237490613f6c565b60405180910390fd5b919050565b60006123a38473ffffffffffffffffffffffffffffffffffffffff16612707565b156124fc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123cc611630565b8786866040518563ffffffff1660e01b81526004016123ee9493929190613fe1565b6020604051808303816000875af192505050801561242a57506040513d601f19601f820116820180604052508101906124279190614042565b60015b6124ac573d806000811461245a576040519150601f19603f3d011682016040523d82523d6000602084013e61245f565b606091505b5060008151036124a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249b906138c6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612501565b600190505b949350505050565b60606009805461251890612e43565b80601f016020809104026020016040519081016040528092919081815260200182805461254490612e43565b80156125915780601f1061256657610100808354040283529160200191612591565b820191906000526020600020905b81548152906001019060200180831161257457829003601f168201915b5050505050905090565b6060600082036125e2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126f6565b600082905060005b600082146126145780806125fd906131c3565b915050600a8261260d919061409e565b91506125ea565b60008167ffffffffffffffff8111156126305761262f612c26565b5b6040519080825280601f01601f1916602001820160405280156126625781602001600182028036833780820191505090505b5090505b600085146126ef5760018261267b9190613e9d565b9150600a8561268a91906140cf565b6030612696919061329d565b60f81b8183815181106126ac576126ab614100565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126e8919061409e565b9450612666565b8093505050505b919050565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127ad81612778565b81146127b857600080fd5b50565b6000813590506127ca816127a4565b92915050565b6000602082840312156127e6576127e561276e565b5b60006127f4848285016127bb565b91505092915050565b60008115159050919050565b612812816127fd565b82525050565b600060208201905061282d6000830184612809565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561286d578082015181840152602081019050612852565b8381111561287c576000848401525b50505050565b6000601f19601f8301169050919050565b600061289e82612833565b6128a8818561283e565b93506128b881856020860161284f565b6128c181612882565b840191505092915050565b600060208201905081810360008301526128e68184612893565b905092915050565b6000819050919050565b612901816128ee565b811461290c57600080fd5b50565b60008135905061291e816128f8565b92915050565b60006020828403121561293a5761293961276e565b5b60006129488482850161290f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061297c82612951565b9050919050565b61298c81612971565b82525050565b60006020820190506129a76000830184612983565b92915050565b6129b681612971565b81146129c157600080fd5b50565b6000813590506129d3816129ad565b92915050565b600080604083850312156129f0576129ef61276e565b5b60006129fe858286016129c4565b9250506020612a0f8582860161290f565b9150509250929050565b60008060408385031215612a3057612a2f61276e565b5b6000612a3e8582860161290f565b9250506020612a4f858286016129c4565b9150509250929050565b612a62816128ee565b82525050565b6000602082019050612a7d6000830184612a59565b92915050565b600080600060608486031215612a9c57612a9b61276e565b5b6000612aaa868287016129c4565b9350506020612abb868287016129c4565b9250506040612acc8682870161290f565b9150509250925092565b600060208284031215612aec57612aeb61276e565b5b6000612afa848285016129c4565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612b2857612b27612b03565b5b8235905067ffffffffffffffff811115612b4557612b44612b08565b5b602083019150836001820283011115612b6157612b60612b0d565b5b9250929050565b60008060208385031215612b7f57612b7e61276e565b5b600083013567ffffffffffffffff811115612b9d57612b9c612773565b5b612ba985828601612b12565b92509250509250929050565b612bbe816127fd565b8114612bc957600080fd5b50565b600081359050612bdb81612bb5565b92915050565b60008060408385031215612bf857612bf761276e565b5b6000612c06858286016129c4565b9250506020612c1785828601612bcc565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c5e82612882565b810181811067ffffffffffffffff82111715612c7d57612c7c612c26565b5b80604052505050565b6000612c90612764565b9050612c9c8282612c55565b919050565b600067ffffffffffffffff821115612cbc57612cbb612c26565b5b612cc582612882565b9050602081019050919050565b82818337600083830152505050565b6000612cf4612cef84612ca1565b612c86565b905082815260208101848484011115612d1057612d0f612c21565b5b612d1b848285612cd2565b509392505050565b600082601f830112612d3857612d37612b03565b5b8135612d48848260208601612ce1565b91505092915050565b60008060008060808587031215612d6b57612d6a61276e565b5b6000612d79878288016129c4565b9450506020612d8a878288016129c4565b9350506040612d9b8782880161290f565b925050606085013567ffffffffffffffff811115612dbc57612dbb612773565b5b612dc887828801612d23565b91505092959194509250565b60008060408385031215612deb57612dea61276e565b5b6000612df9858286016129c4565b9250506020612e0a858286016129c4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e5b57607f821691505b602082108103612e6e57612e6d612e14565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000612ed0602d8361283e565b9150612edb82612e74565b604082019050919050565b60006020820190508181036000830152612eff81612ec3565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f6260228361283e565b9150612f6d82612f06565b604082019050919050565b60006020820190508181036000830152612f9181612f55565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000612ff460398361283e565b9150612fff82612f98565b604082019050919050565b6000602082019050818103600083015261302381612fe7565b9050919050565b7f41636874756e673a20536965206d75657373656e2064657220456967656e747560008201527f656d6572207365696e2e00000000000000000000000000000000000000000000602082015250565b6000613086602a8361283e565b91506130918261302a565b604082019050919050565b600060208201905081810360008301526130b581613079565b9050919050565b600081905092915050565b50565b60006130d76000836130bc565b91506130e2826130c7565b600082019050919050565b60006130f8826130ca565b9150819050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b600061315e60228361283e565b915061316982613102565b604082019050919050565b6000602082019050818103600083015261318d81613151565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006131ce826128ee565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613200576131ff613194565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613267602e8361283e565b91506132728261320b565b604082019050919050565b600060208201905081810360008301526132968161325a565b9050919050565b60006132a8826128ee565b91506132b3836128ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132e8576132e7613194565b5b828201905092915050565b7f41636874756e673a20646965206d6178696d616c6520416e7a61686c2064657260008201527f20576572746d61726b656e2077757264652065727265696368742e0000000000602082015250565b600061334f603b8361283e565b915061335a826132f3565b604082019050919050565b6000602082019050818103600083015261337e81613342565b9050919050565b7f41636874756e673a20646965206d6178696d616c65205072616567756e67206660008201527f756572206469652042726965667461736368652077757264652065727265696360208201527f68742e0000000000000000000000000000000000000000000000000000000000604082015250565b600061340760438361283e565b915061341282613385565b606082019050919050565b60006020820190508181036000830152613436816133fa565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b600061349960238361283e565b91506134a48261343d565b604082019050919050565b600060208201905081810360008301526134c88161348c565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061352b602b8361283e565b9150613536826134cf565b604082019050919050565b6000602082019050818103600083015261355a8161351e565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026135ce7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613591565b6135d88683613591565b95508019841693508086168417925050509392505050565b6000819050919050565b600061361561361061360b846128ee565b6135f0565b6128ee565b9050919050565b6000819050919050565b61362f836135fa565b61364361363b8261361c565b84845461359e565b825550505050565b600090565b61365861364b565b613663818484613626565b505050565b5b818110156136875761367c600082613650565b600181019050613669565b5050565b601f8211156136cc5761369d8161356c565b6136a684613581565b810160208510156136b5578190505b6136c96136c185613581565b830182613668565b50505b505050565b600082821c905092915050565b60006136ef600019846008026136d1565b1980831691505092915050565b600061370883836136de565b9150826002028217905092915050565b6137228383613561565b67ffffffffffffffff81111561373b5761373a612c26565b5b6137458254612e43565b61375082828561368b565b6000601f83116001811461377f576000841561376d578287013590505b61377785826136fc565b8655506137df565b601f19841661378d8661356c565b60005b828110156137b557848901358255600182019150602085019450602081019050613790565b868310156137d257848901356137ce601f8916826136de565b8355505b6001600288020188555050505b50505050505050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b600061381e601a8361283e565b9150613829826137e8565b602082019050919050565b6000602082019050818103600083015261384d81613811565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006138b060338361283e565b91506138bb82613854565b604082019050919050565b600060208201905081810360008301526138df816138a3565b9050919050565b7f4552433732314861727473706972697475733a20416e6672616765206675657260008201527f206e696368742d6578697374696572656e646520576572746d61726b65000000602082015250565b6000613942603d8361283e565b915061394d826138e6565b604082019050919050565b6000602082019050818103600083015261397181613935565b9050919050565b600081905092915050565b600061398e82612833565b6139988185613978565b93506139a881856020860161284f565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006139ea600583613978565b91506139f5826139b4565b600582019050919050565b6000613a0c8285613983565b9150613a188284613983565b9150613a23826139dd565b91508190509392505050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613a8b60328361283e565b9150613a9682613a2f565b604082019050919050565b60006020820190508181036000830152613aba81613a7e565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000613b1d60268361283e565b9150613b2882613ac1565b604082019050919050565b60006020820190508181036000830152613b4c81613b10565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613baf60258361283e565b9150613bba82613b53565b604082019050919050565b60006020820190508181036000830152613bde81613ba2565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000613c0c82613be5565b9150613c1783613be5565b925082821015613c2a57613c29613194565b5b828203905092915050565b6000613c4082613be5565b9150613c4b83613be5565b9250826fffffffffffffffffffffffffffffffff03821115613c7057613c6f613194565b5b828201905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613cd760218361283e565b9150613ce282613c7b565b604082019050919050565b60006020820190508181036000830152613d0681613cca565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000613d43601d8361283e565b9150613d4e82613d0d565b602082019050919050565b60006020820190508181036000830152613d7281613d36565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000613dd560228361283e565b9150613de082613d79565b604082019050919050565b60006020820190508181036000830152613e0481613dc8565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000613e67602a8361283e565b9150613e7282613e0b565b604082019050919050565b60006020820190508181036000830152613e9681613e5a565b9050919050565b6000613ea8826128ee565b9150613eb3836128ee565b925082821015613ec657613ec5613194565b5b828203905092915050565b6000613edc826128ee565b915060008203613eef57613eee613194565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000613f56602f8361283e565b9150613f6182613efa565b604082019050919050565b60006020820190508181036000830152613f8581613f49565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613fb382613f8c565b613fbd8185613f97565b9350613fcd81856020860161284f565b613fd681612882565b840191505092915050565b6000608082019050613ff66000830187612983565b6140036020830186612983565b6140106040830185612a59565b81810360608301526140228184613fa8565b905095945050505050565b60008151905061403c816127a4565b92915050565b6000602082840312156140585761405761276e565b5b60006140668482850161402d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006140a9826128ee565b91506140b4836128ee565b9250826140c4576140c361406f565b5b828204905092915050565b60006140da826128ee565b91506140e5836128ee565b9250826140f5576140f461406f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220a531a0380766c16745b0ed01a122c20a3e42105fa06767cad3a5662daf9ac25c64736f6c634300080f003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000115c000000000000000000000000000000000000000000000000000000000000000a5a65204765726d616e730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002968747470733a2f2f7261726974792e67617264656e2f696d616765732f6765726d616e732e6a736f6e0000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c806356c4aedd116100de578063a22cb46511610097578063d7224ba011610071578063d7224ba01461045c578063e985e9c51461047a578063f2fde38b146104aa578063f46eccc4146104c657610173565b8063a22cb465146103f4578063b88d4fde14610410578063c87b56dd1461042c57610173565b806356c4aedd1461031e5780636352211e1461033c57806370a082311461036c5780638da5cb5b1461039c57806395d89b41146103ba578063a0bcfc7f146103d857610173565b806323b872dd1161013057806323b872dd1461024c5780632f745c5914610268578063397c77f91461029857806342842e0e146102b457806348200604146102d05780634f6ccce7146102ee57610173565b806301ffc9a71461017857806306fdde03146101a8578063081812fc146101c6578063095ea7b3146101f657806316f242b91461021257806318160ddd1461022e575b600080fd5b610192600480360381019061018d91906127d0565b6104f6565b60405161019f9190612818565b60405180910390f35b6101b0610640565b6040516101bd91906128cc565b60405180910390f35b6101e060048036038101906101db9190612924565b6106d2565b6040516101ed9190612992565b60405180910390f35b610210600480360381019061020b91906129d9565b610757565b005b61022c60048036038101906102279190612a19565b61086f565b005b610236610977565b6040516102439190612a68565b60405180910390f35b61026660048036038101906102619190612a83565b610980565b005b610282600480360381019061027d91906129d9565b610990565b60405161028f9190612a68565b60405180910390f35b6102b260048036038101906102ad9190612924565b610b8c565b005b6102ce60048036038101906102c99190612a83565b610d3c565b005b6102d8610d5c565b6040516102e591906128cc565b60405180910390f35b61030860048036038101906103039190612924565b610dea565b6040516103159190612a68565b60405180910390f35b610326610e3d565b60405161033391906128cc565b60405180910390f35b61035660048036038101906103519190612924565b610ecb565b6040516103639190612992565b60405180910390f35b61038660048036038101906103819190612ad6565b610ee1565b6040516103939190612a68565b60405180910390f35b6103a4610fc9565b6040516103b19190612992565b60405180910390f35b6103c2610fef565b6040516103cf91906128cc565b60405180910390f35b6103f260048036038101906103ed9190612b68565b611081565b005b61040e60048036038101906104099190612be1565b61112e565b005b61042a60048036038101906104259190612d51565b6112ae565b005b61044660048036038101906104419190612924565b61130a565b60405161045391906128cc565b60405180910390f35b61046461142c565b6040516104719190612a68565b60405180910390f35b610494600480360381019061048f9190612dd4565b611432565b6040516104a19190612818565b60405180910390f35b6104c460048036038101906104bf9190612ad6565b6114c6565b005b6104e060048036038101906104db9190612ad6565b6115a1565b6040516104ed9190612a68565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105c157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061062957507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106395750610638826115b9565b5b9050919050565b60606001805461064f90612e43565b80601f016020809104026020016040519081016040528092919081815260200182805461067b90612e43565b80156106c85780601f1061069d576101008083540402835291602001916106c8565b820191906000526020600020905b8154815290600101906020018083116106ab57829003601f168201915b5050505050905090565b60006106dd82611623565b61071c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071390612ee6565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061076282610ecb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c990612f78565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107f1611630565b73ffffffffffffffffffffffffffffffffffffffff161480610820575061081f8161081a611630565b611432565b5b61085f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108569061300a565b60405180910390fd5b61086a838383611638565b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108b0611630565b73ffffffffffffffffffffffffffffffffffffffff1614610906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fd9061309c565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff168360405161092c906130ed565b60006040518083038185875af1925050503d8060008114610969576040519150601f19603f3d011682016040523d82523d6000602084013e61096e565b606091505b50509050505050565b60008054905090565b61098b8383836116ea565b505050565b600061099b83610ee1565b82106109dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d390613174565b60405180910390fd5b60006109e6610977565b905060008060005b83811015610b4a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ae057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b3657868403610b27578195505050505050610b86565b8380610b32906131c3565b9450505b508080610b42906131c3565b9150506109ee565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d9061327d565b60405180910390fd5b92915050565b7f000000000000000000000000000000000000000000000000000000000000115c81610bb6610977565b610bc0919061329d565b1115610c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf890613365565b60405180910390fd5b6000600b6000610c0f611630565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490507f00000000000000000000000000000000000000000000000000000000000000038282610c79919061329d565b1115610cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb19061341d565b60405180910390fd5b81600b6000610cc7611630565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d10919061329d565b92505081905550610d38610d22611630565b8360405180602001604052806000815250611ca1565b5050565b610d57838383604051806020016040528060008152506112ae565b505050565b60098054610d6990612e43565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9590612e43565b8015610de25780601f10610db757610100808354040283529160200191610de2565b820191906000526020600020905b815481529060010190602001808311610dc557829003601f168201915b505050505081565b6000610df4610977565b8210610e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2c906134af565b60405180910390fd5b819050919050565b600a8054610e4a90612e43565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7690612e43565b8015610ec35780601f10610e9857610100808354040283529160200191610ec3565b820191906000526020600020905b815481529060010190602001808311610ea657829003601f168201915b505050505081565b6000610ed68261217f565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4890613541565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060028054610ffe90612e43565b80601f016020809104026020016040519081016040528092919081815260200182805461102a90612e43565b80156110775780601f1061104c57610100808354040283529160200191611077565b820191906000526020600020905b81548152906001019060200180831161105a57829003601f168201915b5050505050905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166110c2611630565b73ffffffffffffffffffffffffffffffffffffffff1614611118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110f9061309c565b60405180910390fd5b818160099182611129929190613718565b505050565b611136611630565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119a90613834565b60405180910390fd5b80600660006111b0611630565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661125d611630565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112a29190612818565b60405180910390a35050565b6112b98484846116ea565b6112c584848484612382565b611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb906138c6565b60405180910390fd5b50505050565b606061131582611623565b611354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134b90613958565b60405180910390fd5b600061135e612509565b905060008151116113f957600a805461137690612e43565b80601f01602080910402602001604051908101604052809291908181526020018280546113a290612e43565b80156113ef5780601f106113c4576101008083540402835291602001916113ef565b820191906000526020600020905b8154815290600101906020018083116113d257829003601f168201915b5050505050611424565b806114038461259b565b604051602001611414929190613a00565b6040516020818303038152906040525b915050919050565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611507611630565b73ffffffffffffffffffffffffffffffffffffffff161461155d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115549061309c565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b6020528060005260406000206000915090505481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006116f58261217f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661171c611630565b73ffffffffffffffffffffffffffffffffffffffff1614806117785750611741611630565b73ffffffffffffffffffffffffffffffffffffffff16611760846106d2565b73ffffffffffffffffffffffffffffffffffffffff16145b806117945750611793826000015161178e611630565b611432565b5b9050806117d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cd90613aa1565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183f90613b33565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036118b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ae90613bc5565b60405180910390fd5b6118c485858560016126fb565b6118d46000848460000151611638565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166119429190613c01565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166119e69190613c35565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611aec919061329d565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611c3157611b6181611623565b15611c30576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c998686866001612701565b505050505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0d90613ced565b60405180910390fd5b611d1f81611623565b15611d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5690613d59565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000003831115611dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db990613deb565b60405180910390fd5b611dcf60008583866126fb565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151611ecc9190613c35565b6fffffffffffffffffffffffffffffffff168152602001858360200151611ef39190613c35565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561216257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121026000888488612382565b612141576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612138906138c6565b60405180910390fd5b818061214c906131c3565b925050808061215a906131c3565b915050612091565b50806000819055506121776000878588612701565b505050505050565b61218761272a565b61219082611623565b6121cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c690613e7d565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000383106122335760017f0000000000000000000000000000000000000000000000000000000000000003846122269190613e9d565b612230919061329d565b90505b60008390505b818110612341576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461232d5780935050505061237d565b50808061233990613ed1565b915050612239565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237490613f6c565b60405180910390fd5b919050565b60006123a38473ffffffffffffffffffffffffffffffffffffffff16612707565b156124fc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123cc611630565b8786866040518563ffffffff1660e01b81526004016123ee9493929190613fe1565b6020604051808303816000875af192505050801561242a57506040513d601f19601f820116820180604052508101906124279190614042565b60015b6124ac573d806000811461245a576040519150601f19603f3d011682016040523d82523d6000602084013e61245f565b606091505b5060008151036124a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249b906138c6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612501565b600190505b949350505050565b60606009805461251890612e43565b80601f016020809104026020016040519081016040528092919081815260200182805461254490612e43565b80156125915780601f1061256657610100808354040283529160200191612591565b820191906000526020600020905b81548152906001019060200180831161257457829003601f168201915b5050505050905090565b6060600082036125e2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126f6565b600082905060005b600082146126145780806125fd906131c3565b915050600a8261260d919061409e565b91506125ea565b60008167ffffffffffffffff8111156126305761262f612c26565b5b6040519080825280601f01601f1916602001820160405280156126625781602001600182028036833780820191505090505b5090505b600085146126ef5760018261267b9190613e9d565b9150600a8561268a91906140cf565b6030612696919061329d565b60f81b8183815181106126ac576126ab614100565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126e8919061409e565b9450612666565b8093505050505b919050565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127ad81612778565b81146127b857600080fd5b50565b6000813590506127ca816127a4565b92915050565b6000602082840312156127e6576127e561276e565b5b60006127f4848285016127bb565b91505092915050565b60008115159050919050565b612812816127fd565b82525050565b600060208201905061282d6000830184612809565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561286d578082015181840152602081019050612852565b8381111561287c576000848401525b50505050565b6000601f19601f8301169050919050565b600061289e82612833565b6128a8818561283e565b93506128b881856020860161284f565b6128c181612882565b840191505092915050565b600060208201905081810360008301526128e68184612893565b905092915050565b6000819050919050565b612901816128ee565b811461290c57600080fd5b50565b60008135905061291e816128f8565b92915050565b60006020828403121561293a5761293961276e565b5b60006129488482850161290f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061297c82612951565b9050919050565b61298c81612971565b82525050565b60006020820190506129a76000830184612983565b92915050565b6129b681612971565b81146129c157600080fd5b50565b6000813590506129d3816129ad565b92915050565b600080604083850312156129f0576129ef61276e565b5b60006129fe858286016129c4565b9250506020612a0f8582860161290f565b9150509250929050565b60008060408385031215612a3057612a2f61276e565b5b6000612a3e8582860161290f565b9250506020612a4f858286016129c4565b9150509250929050565b612a62816128ee565b82525050565b6000602082019050612a7d6000830184612a59565b92915050565b600080600060608486031215612a9c57612a9b61276e565b5b6000612aaa868287016129c4565b9350506020612abb868287016129c4565b9250506040612acc8682870161290f565b9150509250925092565b600060208284031215612aec57612aeb61276e565b5b6000612afa848285016129c4565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612b2857612b27612b03565b5b8235905067ffffffffffffffff811115612b4557612b44612b08565b5b602083019150836001820283011115612b6157612b60612b0d565b5b9250929050565b60008060208385031215612b7f57612b7e61276e565b5b600083013567ffffffffffffffff811115612b9d57612b9c612773565b5b612ba985828601612b12565b92509250509250929050565b612bbe816127fd565b8114612bc957600080fd5b50565b600081359050612bdb81612bb5565b92915050565b60008060408385031215612bf857612bf761276e565b5b6000612c06858286016129c4565b9250506020612c1785828601612bcc565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c5e82612882565b810181811067ffffffffffffffff82111715612c7d57612c7c612c26565b5b80604052505050565b6000612c90612764565b9050612c9c8282612c55565b919050565b600067ffffffffffffffff821115612cbc57612cbb612c26565b5b612cc582612882565b9050602081019050919050565b82818337600083830152505050565b6000612cf4612cef84612ca1565b612c86565b905082815260208101848484011115612d1057612d0f612c21565b5b612d1b848285612cd2565b509392505050565b600082601f830112612d3857612d37612b03565b5b8135612d48848260208601612ce1565b91505092915050565b60008060008060808587031215612d6b57612d6a61276e565b5b6000612d79878288016129c4565b9450506020612d8a878288016129c4565b9350506040612d9b8782880161290f565b925050606085013567ffffffffffffffff811115612dbc57612dbb612773565b5b612dc887828801612d23565b91505092959194509250565b60008060408385031215612deb57612dea61276e565b5b6000612df9858286016129c4565b9250506020612e0a858286016129c4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e5b57607f821691505b602082108103612e6e57612e6d612e14565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000612ed0602d8361283e565b9150612edb82612e74565b604082019050919050565b60006020820190508181036000830152612eff81612ec3565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f6260228361283e565b9150612f6d82612f06565b604082019050919050565b60006020820190508181036000830152612f9181612f55565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000612ff460398361283e565b9150612fff82612f98565b604082019050919050565b6000602082019050818103600083015261302381612fe7565b9050919050565b7f41636874756e673a20536965206d75657373656e2064657220456967656e747560008201527f656d6572207365696e2e00000000000000000000000000000000000000000000602082015250565b6000613086602a8361283e565b91506130918261302a565b604082019050919050565b600060208201905081810360008301526130b581613079565b9050919050565b600081905092915050565b50565b60006130d76000836130bc565b91506130e2826130c7565b600082019050919050565b60006130f8826130ca565b9150819050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b600061315e60228361283e565b915061316982613102565b604082019050919050565b6000602082019050818103600083015261318d81613151565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006131ce826128ee565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613200576131ff613194565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000613267602e8361283e565b91506132728261320b565b604082019050919050565b600060208201905081810360008301526132968161325a565b9050919050565b60006132a8826128ee565b91506132b3836128ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132e8576132e7613194565b5b828201905092915050565b7f41636874756e673a20646965206d6178696d616c6520416e7a61686c2064657260008201527f20576572746d61726b656e2077757264652065727265696368742e0000000000602082015250565b600061334f603b8361283e565b915061335a826132f3565b604082019050919050565b6000602082019050818103600083015261337e81613342565b9050919050565b7f41636874756e673a20646965206d6178696d616c65205072616567756e67206660008201527f756572206469652042726965667461736368652077757264652065727265696360208201527f68742e0000000000000000000000000000000000000000000000000000000000604082015250565b600061340760438361283e565b915061341282613385565b606082019050919050565b60006020820190508181036000830152613436816133fa565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b600061349960238361283e565b91506134a48261343d565b604082019050919050565b600060208201905081810360008301526134c88161348c565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061352b602b8361283e565b9150613536826134cf565b604082019050919050565b6000602082019050818103600083015261355a8161351e565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026135ce7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613591565b6135d88683613591565b95508019841693508086168417925050509392505050565b6000819050919050565b600061361561361061360b846128ee565b6135f0565b6128ee565b9050919050565b6000819050919050565b61362f836135fa565b61364361363b8261361c565b84845461359e565b825550505050565b600090565b61365861364b565b613663818484613626565b505050565b5b818110156136875761367c600082613650565b600181019050613669565b5050565b601f8211156136cc5761369d8161356c565b6136a684613581565b810160208510156136b5578190505b6136c96136c185613581565b830182613668565b50505b505050565b600082821c905092915050565b60006136ef600019846008026136d1565b1980831691505092915050565b600061370883836136de565b9150826002028217905092915050565b6137228383613561565b67ffffffffffffffff81111561373b5761373a612c26565b5b6137458254612e43565b61375082828561368b565b6000601f83116001811461377f576000841561376d578287013590505b61377785826136fc565b8655506137df565b601f19841661378d8661356c565b60005b828110156137b557848901358255600182019150602085019450602081019050613790565b868310156137d257848901356137ce601f8916826136de565b8355505b6001600288020188555050505b50505050505050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b600061381e601a8361283e565b9150613829826137e8565b602082019050919050565b6000602082019050818103600083015261384d81613811565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006138b060338361283e565b91506138bb82613854565b604082019050919050565b600060208201905081810360008301526138df816138a3565b9050919050565b7f4552433732314861727473706972697475733a20416e6672616765206675657260008201527f206e696368742d6578697374696572656e646520576572746d61726b65000000602082015250565b6000613942603d8361283e565b915061394d826138e6565b604082019050919050565b6000602082019050818103600083015261397181613935565b9050919050565b600081905092915050565b600061398e82612833565b6139988185613978565b93506139a881856020860161284f565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006139ea600583613978565b91506139f5826139b4565b600582019050919050565b6000613a0c8285613983565b9150613a188284613983565b9150613a23826139dd565b91508190509392505050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613a8b60328361283e565b9150613a9682613a2f565b604082019050919050565b60006020820190508181036000830152613aba81613a7e565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000613b1d60268361283e565b9150613b2882613ac1565b604082019050919050565b60006020820190508181036000830152613b4c81613b10565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613baf60258361283e565b9150613bba82613b53565b604082019050919050565b60006020820190508181036000830152613bde81613ba2565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000613c0c82613be5565b9150613c1783613be5565b925082821015613c2a57613c29613194565b5b828203905092915050565b6000613c4082613be5565b9150613c4b83613be5565b9250826fffffffffffffffffffffffffffffffff03821115613c7057613c6f613194565b5b828201905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613cd760218361283e565b9150613ce282613c7b565b604082019050919050565b60006020820190508181036000830152613d0681613cca565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000613d43601d8361283e565b9150613d4e82613d0d565b602082019050919050565b60006020820190508181036000830152613d7281613d36565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000613dd560228361283e565b9150613de082613d79565b604082019050919050565b60006020820190508181036000830152613e0481613dc8565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000613e67602a8361283e565b9150613e7282613e0b565b604082019050919050565b60006020820190508181036000830152613e9681613e5a565b9050919050565b6000613ea8826128ee565b9150613eb3836128ee565b925082821015613ec657613ec5613194565b5b828203905092915050565b6000613edc826128ee565b915060008203613eef57613eee613194565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000613f56602f8361283e565b9150613f6182613efa565b604082019050919050565b60006020820190508181036000830152613f8581613f49565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613fb382613f8c565b613fbd8185613f97565b9350613fcd81856020860161284f565b613fd681612882565b840191505092915050565b6000608082019050613ff66000830187612983565b6140036020830186612983565b6140106040830185612a59565b81810360608301526140228184613fa8565b905095945050505050565b60008151905061403c816127a4565b92915050565b6000602082840312156140585761405761276e565b5b60006140668482850161402d565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006140a9826128ee565b91506140b4836128ee565b9250826140c4576140c361406f565b5b828204905092915050565b60006140da826128ee565b91506140e5836128ee565b9250826140f5576140f461406f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220a531a0380766c16745b0ed01a122c20a3e42105fa06767cad3a5662daf9ac25c64736f6c634300080f0033

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

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000115c000000000000000000000000000000000000000000000000000000000000000a5a65204765726d616e730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002968747470733a2f2f7261726974792e67617264656e2f696d616765732f6765726d616e732e6a736f6e0000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Ze Germans
Arg [1] : symbol (string):
Arg [2] : baseTokenURI (string):
Arg [3] : defaultURI (string): https://rarity.garden/images/germans.json
Arg [4] : maxBatch (uint256): 3
Arg [5] : collectionSize (uint256): 4444

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 000000000000000000000000000000000000000000000000000000000000115c
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [7] : 5a65204765726d616e7300000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000029
Arg [11] : 68747470733a2f2f7261726974792e67617264656e2f696d616765732f676572
Arg [12] : 6d616e732e6a736f6e0000000000000000000000000000000000000000000000


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.