ETH Price: $3,316.14 (-3.43%)
Gas: 18 Gwei

Token

HumansTown (HTWTF)
 

Overview

Max Total Supply

10,000 HTWTF

Holders

1,125

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
126 HTWTF
0xB8659f9034FDB8608598f7295B6B82869c379510
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:
HumansTownNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-30
*/

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

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

// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

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

// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

/**
 * @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(), ".json"))
        : "";
  }

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

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


pragma solidity ^0.8.7;

contract HumansTownNFT is ERC721A, Ownable {
    uint256 public Human_PRICE = 0 ether;
    uint256 public MAX_Humans = 10000;
    uint256 public MAX_Minteths = 6;
    string public baseURI = "";
    string public baseExtension = ".json";
     bool public Haulted = true;   
    
    constructor() ERC721A("HumansTown", "HTWTF", MAX_Minteths, MAX_Humans) { 
        
    }
    function DonateToTheKing() external payable {
        // thank you
    }

    function Minteth(uint256 numTokens) public payable {  
        // Free Minteth but if you wish to donate that would be radical.  
        // Website has 2 mint buttons, Free and Generous Donate where it is fixed .01 eth for any amount minted.

        require(!Haulted, "Haulted");
        require(numTokens > 0 && numTokens <= MAX_Minteths,"To many Humans");
        require(totalSupply() + numTokens <= MAX_Humans, "Ran out of Humans");
        require(msg.value >= numTokens * Human_PRICE, "Invalid funds provided");
        
        _safeMint(msg.sender, numTokens);
    }
    function Hault(bool _state) public onlyOwner {
        Haulted = _state;
    }
    function setBaseURI(string memory newBaseURI) public onlyOwner {
        baseURI = newBaseURI;
    }
    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "That Human doesn't exist");
        return
            bytes(baseURI).length > 0
                ? string(
                    abi.encodePacked(
                        baseURI,
                        Strings.toString(_tokenId),
                        baseExtension
                    )
                )
                : "";
    }

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

    function FundsForTheKing() public onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DonateToTheKing","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"FundsForTheKing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"Hault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Haulted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Human_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_Humans","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_Minteths","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"Minteth","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","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"}]

600080805560078190556009819055612710600a556006600b5560e0604081905260c08290526200003491600c919062000230565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200006391600d9162000230565b50600e805460ff191660011790553480156200007e57600080fd5b506040518060400160405280600a815260200169243ab6b0b739aa37bbb760b11b81525060405180604001604052806005815260200164242a2baa2360d91b815250600b54600a5460008111620001335760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001955760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084016200012a565b8351620001aa90600190602087019062000230565b508251620001c090600290602086019062000230565b5060a09190915260805250620001d8905033620001de565b62000313565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200023e90620002d6565b90600052602060002090601f016020900481019282620002625760008555620002ad565b82601f106200027d57805160ff1916838001178555620002ad565b82800160010185558215620002ad579182015b82811115620002ad57825182559160200191906001019062000290565b50620002bb929150620002bf565b5090565b5b80821115620002bb5760008155600101620002c0565b600181811c90821680620002eb57607f821691505b602082108114156200030d57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516121ff62000344600039600081816114690152818161149301526118c60152600050506121ff6000f3fe6080604052600436106101d85760003560e01c80636352211e11610102578063a8a5aa3011610095578063d63b60c211610064578063d63b60c21461028c578063d7224ba014610503578063e985e9c514610519578063f2fde38b1461056257600080fd5b8063a8a5aa301461049b578063b88d4fde146104ae578063c6682862146104ce578063c87b56dd146104e357600080fd5b80638da5cb5b116100d15780638da5cb5b146104325780638eb089f91461045057806395d89b4114610466578063a22cb4651461047b57600080fd5b80636352211e146103c85780636c0360eb146103e857806370a08231146103fd578063715018a61461041d57600080fd5b806324d1ccea1161017a5780634affbaf3116101495780634affbaf31461034e5780634f6ccce71461036e57806355f804b31461038e57806362ee842a146103ae57600080fd5b806324d1ccea146102e35780632f745c59146102f857806342842e0e14610318578063463c1bf61461033857600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806318160ddd1461028e57806323b872dd146102ad57806323e8b8a5146102cd57600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611d92565b610582565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276105ef565b6040516102099190611f64565b34801561024057600080fd5b5061025461024f366004611e15565b610681565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611d4d565b610711565b005b34801561029a57600080fd5b506000545b604051908152602001610209565b3480156102b957600080fd5b5061028c6102c8366004611c6b565b610829565b3480156102d957600080fd5b5061029f600a5481565b3480156102ef57600080fd5b5061028c610834565b34801561030457600080fd5b5061029f610313366004611d4d565b610884565b34801561032457600080fd5b5061028c610333366004611c6b565b6109f2565b34801561034457600080fd5b5061029f600b5481565b34801561035a57600080fd5b5061028c610369366004611d77565b610a0d565b34801561037a57600080fd5b5061029f610389366004611e15565b610a4a565b34801561039a57600080fd5b5061028c6103a9366004611dcc565b610aac565b3480156103ba57600080fd5b50600e546101fd9060ff1681565b3480156103d457600080fd5b506102546103e3366004611e15565b610aed565b3480156103f457600080fd5b50610227610aff565b34801561040957600080fd5b5061029f610418366004611c16565b610b8d565b34801561042957600080fd5b5061028c610c1e565b34801561043e57600080fd5b506008546001600160a01b0316610254565b34801561045c57600080fd5b5061029f60095481565b34801561047257600080fd5b50610227610c52565b34801561048757600080fd5b5061028c610496366004611d23565b610c61565b61028c6104a9366004611e15565b610d26565b3480156104ba57600080fd5b5061028c6104c9366004611ca7565b610e6d565b3480156104da57600080fd5b50610227610ea6565b3480156104ef57600080fd5b506102276104fe366004611e15565b610eb3565b34801561050f57600080fd5b5061029f60075481565b34801561052557600080fd5b506101fd610534366004611c38565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561056e57600080fd5b5061028c61057d366004611c16565b610f6b565b60006001600160e01b031982166380ac58cd60e01b14806105b357506001600160e01b03198216635b5e139f60e01b145b806105ce57506001600160e01b0319821663780e9d6360e01b145b806105e957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105fe906120f1565b80601f016020809104026020016040519081016040528092919081815260200182805461062a906120f1565b80156106775780601f1061064c57610100808354040283529160200191610677565b820191906000526020600020905b81548152906001019060200180831161065a57829003601f168201915b5050505050905090565b600061068e826000541190565b6106f55760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061071c82610aed565b9050806001600160a01b0316836001600160a01b0316141561078b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106ec565b336001600160a01b03821614806107a757506107a78133610534565b6108195760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106ec565b610824838383611003565b505050565b61082483838361105f565b6008546001600160a01b0316331461085e5760405162461bcd60e51b81526004016106ec90611f77565b60405133904780156108fc02916000818181858888f1935050505061088257600080fd5b565b600061088f83610b8d565b82106108e85760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106ec565b600080549080805b83811015610992576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561094357805192505b876001600160a01b0316836001600160a01b0316141561097f5786841415610971575093506105e992505050565b8361097b8161212c565b9450505b508061098a8161212c565b9150506108f0565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106ec565b61082483838360405180602001604052806000815250610e6d565b6008546001600160a01b03163314610a375760405162461bcd60e51b81526004016106ec90611f77565b600e805460ff1916911515919091179055565b600080548210610aa85760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106ec565b5090565b6008546001600160a01b03163314610ad65760405162461bcd60e51b81526004016106ec90611f77565b8051610ae990600c906020840190611ae4565b5050565b6000610af8826113e7565b5192915050565b600c8054610b0c906120f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610b38906120f1565b8015610b855780601f10610b5a57610100808354040283529160200191610b85565b820191906000526020600020905b815481529060010190602001808311610b6857829003601f168201915b505050505081565b60006001600160a01b038216610bf95760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106ec565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610c485760405162461bcd60e51b81526004016106ec90611f77565b6108826000611591565b6060600280546105fe906120f1565b6001600160a01b038216331415610cba5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106ec565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600e5460ff1615610d635760405162461bcd60e51b815260206004820152600760248201526612185d5b1d195960ca1b60448201526064016106ec565b600081118015610d755750600b548111155b610db25760405162461bcd60e51b815260206004820152600e60248201526d546f206d616e792048756d616e7360901b60448201526064016106ec565b600a5481610dbf60005490565b610dc99190612024565b1115610e0b5760405162461bcd60e51b815260206004820152601160248201527052616e206f7574206f662048756d616e7360781b60448201526064016106ec565b600954610e189082612050565b341015610e605760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b60448201526064016106ec565b610e6a33826115e3565b50565b610e7884848461105f565b610e84848484846115fd565b610ea05760405162461bcd60e51b81526004016106ec90611fa6565b50505050565b600d8054610b0c906120f1565b6060610ec0826000541190565b610f0c5760405162461bcd60e51b815260206004820152601860248201527f546861742048756d616e20646f65736e2774206578697374000000000000000060448201526064016106ec565b6000600c8054610f1b906120f1565b905011610f3757604051806020016040528060008152506105e9565b600c610f428361170b565b600d604051602001610f5693929190611ef4565b60405160208183030381529060405292915050565b6008546001600160a01b03163314610f955760405162461bcd60e51b81526004016106ec90611f77565b6001600160a01b038116610ffa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ec565b610e6a81611591565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061106a826113e7565b80519091506000906001600160a01b0316336001600160a01b031614806110a157503361109684610681565b6001600160a01b0316145b806110b3575081516110b39033610534565b90508061111d5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106ec565b846001600160a01b031682600001516001600160a01b0316146111915760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106ec565b6001600160a01b0384166111f55760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106ec565b6112056000848460000151611003565b6001600160a01b03851660009081526004602052604081208054600192906112379084906001600160801b031661206f565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261128391859116611ff9565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561130b846001612024565b6000818152600360205260409020549091506001600160a01b031661139d57611335816000541190565b1561139d5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611406826000541190565b6114655760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106ec565b60007f000000000000000000000000000000000000000000000000000000000000000083106114c6576114b87f000000000000000000000000000000000000000000000000000000000000000084612097565b6114c3906001612024565b90505b825b818110611530576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561151d57949350505050565b5080611528816120da565b9150506114c8565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016106ec565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ae9828260405180602001604052806000815250611809565b60006001600160a01b0384163b156116ff57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611641903390899088908890600401611f27565b602060405180830381600087803b15801561165b57600080fd5b505af192505050801561168b575060408051601f3d908101601f1916820190925261168891810190611daf565b60015b6116e5573d8080156116b9576040519150601f19603f3d011682016040523d82523d6000602084013e6116be565b606091505b5080516116dd5760405162461bcd60e51b81526004016106ec90611fa6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611703565b5060015b949350505050565b60608161172f5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561175957806117438161212c565b91506117529050600a8361203c565b9150611733565b60008167ffffffffffffffff8111156117745761177461219d565b6040519080825280601f01601f19166020018201604052801561179e576020820181803683370190505b5090505b8415611703576117b3600183612097565b91506117c0600a86612147565b6117cb906030612024565b60f81b8183815181106117e0576117e0612187565b60200101906001600160f81b031916908160001a905350611802600a8661203c565b94506117a2565b6000546001600160a01b03841661186c5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106ec565b611877816000541190565b156118c45760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016106ec565b7f000000000000000000000000000000000000000000000000000000000000000083111561193f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016106ec565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061199b908790611ff9565b6001600160801b031681526020018583602001516119b99190611ff9565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611ad95760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a9d60008884886115fd565b611ab95760405162461bcd60e51b81526004016106ec90611fa6565b81611ac38161212c565b9250508080611ad19061212c565b915050611a50565b5060008190556113df565b828054611af0906120f1565b90600052602060002090601f016020900481019282611b125760008555611b58565b82601f10611b2b57805160ff1916838001178555611b58565b82800160010185558215611b58579182015b82811115611b58578251825591602001919060010190611b3d565b50610aa89291505b80821115610aa85760008155600101611b60565b600067ffffffffffffffff80841115611b8f57611b8f61219d565b604051601f8501601f19908116603f01168101908282118183101715611bb757611bb761219d565b81604052809350858152868686011115611bd057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c0157600080fd5b919050565b80358015158114611c0157600080fd5b600060208284031215611c2857600080fd5b611c3182611bea565b9392505050565b60008060408385031215611c4b57600080fd5b611c5483611bea565b9150611c6260208401611bea565b90509250929050565b600080600060608486031215611c8057600080fd5b611c8984611bea565b9250611c9760208501611bea565b9150604084013590509250925092565b60008060008060808587031215611cbd57600080fd5b611cc685611bea565b9350611cd460208601611bea565b925060408501359150606085013567ffffffffffffffff811115611cf757600080fd5b8501601f81018713611d0857600080fd5b611d1787823560208401611b74565b91505092959194509250565b60008060408385031215611d3657600080fd5b611d3f83611bea565b9150611c6260208401611c06565b60008060408385031215611d6057600080fd5b611d6983611bea565b946020939093013593505050565b600060208284031215611d8957600080fd5b611c3182611c06565b600060208284031215611da457600080fd5b8135611c31816121b3565b600060208284031215611dc157600080fd5b8151611c31816121b3565b600060208284031215611dde57600080fd5b813567ffffffffffffffff811115611df557600080fd5b8201601f81018413611e0657600080fd5b61170384823560208401611b74565b600060208284031215611e2757600080fd5b5035919050565b60008151808452611e468160208601602086016120ae565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680611e7457607f831692505b6020808410821415611e9657634e487b7160e01b600052602260045260246000fd5b818015611eaa5760018114611ebb57611ee8565b60ff19861689528489019650611ee8565b60008881526020902060005b86811015611ee05781548b820152908501908301611ec7565b505084890196505b50505050505092915050565b6000611f008286611e5a565b8451611f108183602089016120ae565b611f1c81830186611e5a565b979650505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f5a90830184611e2e565b9695505050505050565b602081526000611c316020830184611e2e565b6020808252601590820152742cb7ba9030b932903737ba103a34329037bbb732b960591b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b0380831681851680830382111561201b5761201b61215b565b01949350505050565b600082198211156120375761203761215b565b500190565b60008261204b5761204b612171565b500490565b600081600019048311821515161561206a5761206a61215b565b500290565b60006001600160801b038381169083168181101561208f5761208f61215b565b039392505050565b6000828210156120a9576120a961215b565b500390565b60005b838110156120c95781810151838201526020016120b1565b83811115610ea05750506000910152565b6000816120e9576120e961215b565b506000190190565b600181811c9082168061210557607f821691505b6020821081141561212657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121405761214061215b565b5060010190565b60008261215657612156612171565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e6a57600080fdfea26469706673582212202aa085ae99565c0f389262603fa4786a2fe8070fcb4f029a7e53987d97b380d564736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636352211e11610102578063a8a5aa3011610095578063d63b60c211610064578063d63b60c21461028c578063d7224ba014610503578063e985e9c514610519578063f2fde38b1461056257600080fd5b8063a8a5aa301461049b578063b88d4fde146104ae578063c6682862146104ce578063c87b56dd146104e357600080fd5b80638da5cb5b116100d15780638da5cb5b146104325780638eb089f91461045057806395d89b4114610466578063a22cb4651461047b57600080fd5b80636352211e146103c85780636c0360eb146103e857806370a08231146103fd578063715018a61461041d57600080fd5b806324d1ccea1161017a5780634affbaf3116101495780634affbaf31461034e5780634f6ccce71461036e57806355f804b31461038e57806362ee842a146103ae57600080fd5b806324d1ccea146102e35780632f745c59146102f857806342842e0e14610318578063463c1bf61461033857600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806318160ddd1461028e57806323b872dd146102ad57806323e8b8a5146102cd57600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611d92565b610582565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b506102276105ef565b6040516102099190611f64565b34801561024057600080fd5b5061025461024f366004611e15565b610681565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004611d4d565b610711565b005b34801561029a57600080fd5b506000545b604051908152602001610209565b3480156102b957600080fd5b5061028c6102c8366004611c6b565b610829565b3480156102d957600080fd5b5061029f600a5481565b3480156102ef57600080fd5b5061028c610834565b34801561030457600080fd5b5061029f610313366004611d4d565b610884565b34801561032457600080fd5b5061028c610333366004611c6b565b6109f2565b34801561034457600080fd5b5061029f600b5481565b34801561035a57600080fd5b5061028c610369366004611d77565b610a0d565b34801561037a57600080fd5b5061029f610389366004611e15565b610a4a565b34801561039a57600080fd5b5061028c6103a9366004611dcc565b610aac565b3480156103ba57600080fd5b50600e546101fd9060ff1681565b3480156103d457600080fd5b506102546103e3366004611e15565b610aed565b3480156103f457600080fd5b50610227610aff565b34801561040957600080fd5b5061029f610418366004611c16565b610b8d565b34801561042957600080fd5b5061028c610c1e565b34801561043e57600080fd5b506008546001600160a01b0316610254565b34801561045c57600080fd5b5061029f60095481565b34801561047257600080fd5b50610227610c52565b34801561048757600080fd5b5061028c610496366004611d23565b610c61565b61028c6104a9366004611e15565b610d26565b3480156104ba57600080fd5b5061028c6104c9366004611ca7565b610e6d565b3480156104da57600080fd5b50610227610ea6565b3480156104ef57600080fd5b506102276104fe366004611e15565b610eb3565b34801561050f57600080fd5b5061029f60075481565b34801561052557600080fd5b506101fd610534366004611c38565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561056e57600080fd5b5061028c61057d366004611c16565b610f6b565b60006001600160e01b031982166380ac58cd60e01b14806105b357506001600160e01b03198216635b5e139f60e01b145b806105ce57506001600160e01b0319821663780e9d6360e01b145b806105e957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105fe906120f1565b80601f016020809104026020016040519081016040528092919081815260200182805461062a906120f1565b80156106775780601f1061064c57610100808354040283529160200191610677565b820191906000526020600020905b81548152906001019060200180831161065a57829003601f168201915b5050505050905090565b600061068e826000541190565b6106f55760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061071c82610aed565b9050806001600160a01b0316836001600160a01b0316141561078b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106ec565b336001600160a01b03821614806107a757506107a78133610534565b6108195760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106ec565b610824838383611003565b505050565b61082483838361105f565b6008546001600160a01b0316331461085e5760405162461bcd60e51b81526004016106ec90611f77565b60405133904780156108fc02916000818181858888f1935050505061088257600080fd5b565b600061088f83610b8d565b82106108e85760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106ec565b600080549080805b83811015610992576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561094357805192505b876001600160a01b0316836001600160a01b0316141561097f5786841415610971575093506105e992505050565b8361097b8161212c565b9450505b508061098a8161212c565b9150506108f0565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106ec565b61082483838360405180602001604052806000815250610e6d565b6008546001600160a01b03163314610a375760405162461bcd60e51b81526004016106ec90611f77565b600e805460ff1916911515919091179055565b600080548210610aa85760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106ec565b5090565b6008546001600160a01b03163314610ad65760405162461bcd60e51b81526004016106ec90611f77565b8051610ae990600c906020840190611ae4565b5050565b6000610af8826113e7565b5192915050565b600c8054610b0c906120f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610b38906120f1565b8015610b855780601f10610b5a57610100808354040283529160200191610b85565b820191906000526020600020905b815481529060010190602001808311610b6857829003601f168201915b505050505081565b60006001600160a01b038216610bf95760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106ec565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610c485760405162461bcd60e51b81526004016106ec90611f77565b6108826000611591565b6060600280546105fe906120f1565b6001600160a01b038216331415610cba5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106ec565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600e5460ff1615610d635760405162461bcd60e51b815260206004820152600760248201526612185d5b1d195960ca1b60448201526064016106ec565b600081118015610d755750600b548111155b610db25760405162461bcd60e51b815260206004820152600e60248201526d546f206d616e792048756d616e7360901b60448201526064016106ec565b600a5481610dbf60005490565b610dc99190612024565b1115610e0b5760405162461bcd60e51b815260206004820152601160248201527052616e206f7574206f662048756d616e7360781b60448201526064016106ec565b600954610e189082612050565b341015610e605760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b60448201526064016106ec565b610e6a33826115e3565b50565b610e7884848461105f565b610e84848484846115fd565b610ea05760405162461bcd60e51b81526004016106ec90611fa6565b50505050565b600d8054610b0c906120f1565b6060610ec0826000541190565b610f0c5760405162461bcd60e51b815260206004820152601860248201527f546861742048756d616e20646f65736e2774206578697374000000000000000060448201526064016106ec565b6000600c8054610f1b906120f1565b905011610f3757604051806020016040528060008152506105e9565b600c610f428361170b565b600d604051602001610f5693929190611ef4565b60405160208183030381529060405292915050565b6008546001600160a01b03163314610f955760405162461bcd60e51b81526004016106ec90611f77565b6001600160a01b038116610ffa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ec565b610e6a81611591565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061106a826113e7565b80519091506000906001600160a01b0316336001600160a01b031614806110a157503361109684610681565b6001600160a01b0316145b806110b3575081516110b39033610534565b90508061111d5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106ec565b846001600160a01b031682600001516001600160a01b0316146111915760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106ec565b6001600160a01b0384166111f55760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106ec565b6112056000848460000151611003565b6001600160a01b03851660009081526004602052604081208054600192906112379084906001600160801b031661206f565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261128391859116611ff9565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561130b846001612024565b6000818152600360205260409020549091506001600160a01b031661139d57611335816000541190565b1561139d5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611406826000541190565b6114655760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106ec565b60007f000000000000000000000000000000000000000000000000000000000000000683106114c6576114b87f000000000000000000000000000000000000000000000000000000000000000684612097565b6114c3906001612024565b90505b825b818110611530576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561151d57949350505050565b5080611528816120da565b9150506114c8565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016106ec565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ae9828260405180602001604052806000815250611809565b60006001600160a01b0384163b156116ff57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611641903390899088908890600401611f27565b602060405180830381600087803b15801561165b57600080fd5b505af192505050801561168b575060408051601f3d908101601f1916820190925261168891810190611daf565b60015b6116e5573d8080156116b9576040519150601f19603f3d011682016040523d82523d6000602084013e6116be565b606091505b5080516116dd5760405162461bcd60e51b81526004016106ec90611fa6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611703565b5060015b949350505050565b60608161172f5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561175957806117438161212c565b91506117529050600a8361203c565b9150611733565b60008167ffffffffffffffff8111156117745761177461219d565b6040519080825280601f01601f19166020018201604052801561179e576020820181803683370190505b5090505b8415611703576117b3600183612097565b91506117c0600a86612147565b6117cb906030612024565b60f81b8183815181106117e0576117e0612187565b60200101906001600160f81b031916908160001a905350611802600a8661203c565b94506117a2565b6000546001600160a01b03841661186c5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106ec565b611877816000541190565b156118c45760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016106ec565b7f000000000000000000000000000000000000000000000000000000000000000683111561193f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016106ec565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061199b908790611ff9565b6001600160801b031681526020018583602001516119b99190611ff9565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611ad95760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a9d60008884886115fd565b611ab95760405162461bcd60e51b81526004016106ec90611fa6565b81611ac38161212c565b9250508080611ad19061212c565b915050611a50565b5060008190556113df565b828054611af0906120f1565b90600052602060002090601f016020900481019282611b125760008555611b58565b82601f10611b2b57805160ff1916838001178555611b58565b82800160010185558215611b58579182015b82811115611b58578251825591602001919060010190611b3d565b50610aa89291505b80821115610aa85760008155600101611b60565b600067ffffffffffffffff80841115611b8f57611b8f61219d565b604051601f8501601f19908116603f01168101908282118183101715611bb757611bb761219d565b81604052809350858152868686011115611bd057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c0157600080fd5b919050565b80358015158114611c0157600080fd5b600060208284031215611c2857600080fd5b611c3182611bea565b9392505050565b60008060408385031215611c4b57600080fd5b611c5483611bea565b9150611c6260208401611bea565b90509250929050565b600080600060608486031215611c8057600080fd5b611c8984611bea565b9250611c9760208501611bea565b9150604084013590509250925092565b60008060008060808587031215611cbd57600080fd5b611cc685611bea565b9350611cd460208601611bea565b925060408501359150606085013567ffffffffffffffff811115611cf757600080fd5b8501601f81018713611d0857600080fd5b611d1787823560208401611b74565b91505092959194509250565b60008060408385031215611d3657600080fd5b611d3f83611bea565b9150611c6260208401611c06565b60008060408385031215611d6057600080fd5b611d6983611bea565b946020939093013593505050565b600060208284031215611d8957600080fd5b611c3182611c06565b600060208284031215611da457600080fd5b8135611c31816121b3565b600060208284031215611dc157600080fd5b8151611c31816121b3565b600060208284031215611dde57600080fd5b813567ffffffffffffffff811115611df557600080fd5b8201601f81018413611e0657600080fd5b61170384823560208401611b74565b600060208284031215611e2757600080fd5b5035919050565b60008151808452611e468160208601602086016120ae565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680611e7457607f831692505b6020808410821415611e9657634e487b7160e01b600052602260045260246000fd5b818015611eaa5760018114611ebb57611ee8565b60ff19861689528489019650611ee8565b60008881526020902060005b86811015611ee05781548b820152908501908301611ec7565b505084890196505b50505050505092915050565b6000611f008286611e5a565b8451611f108183602089016120ae565b611f1c81830186611e5a565b979650505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f5a90830184611e2e565b9695505050505050565b602081526000611c316020830184611e2e565b6020808252601590820152742cb7ba9030b932903737ba103a34329037bbb732b960591b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b0380831681851680830382111561201b5761201b61215b565b01949350505050565b600082198211156120375761203761215b565b500190565b60008261204b5761204b612171565b500490565b600081600019048311821515161561206a5761206a61215b565b500290565b60006001600160801b038381169083168181101561208f5761208f61215b565b039392505050565b6000828210156120a9576120a961215b565b500390565b60005b838110156120c95781810151838201526020016120b1565b83811115610ea05750506000910152565b6000816120e9576120e961215b565b506000190190565b600181811c9082168061210557607f821691505b6020821081141561212657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121405761214061215b565b5060010190565b60008261215657612156612171565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e6a57600080fdfea26469706673582212202aa085ae99565c0f389262603fa4786a2fe8070fcb4f029a7e53987d97b380d564736f6c63430008070033

Deployed Bytecode Sourcemap

39844:2008:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25126:370;;;;;;;;;;-1:-1:-1;25126:370:0;;;;;:::i;:::-;;:::i;:::-;;;6867:14:1;;6860:22;6842:41;;6830:2;6815:18;25126:370:0;;;;;;;;26852:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28386:204::-;;;;;;;;;;-1:-1:-1;28386:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6165:32:1;;;6147:51;;6135:2;6120:18;28386:204:0;6001:203:1;27949:379:0;;;;;;;;;;-1:-1:-1;27949:379:0;;;;;:::i;:::-;;:::i;:::-;;23687:94;;;;;;;;;;-1:-1:-1;23740:7:0;23763:12;23687:94;;;16623:25:1;;;16611:2;16596:18;23687:94:0;16477:177:1;29236:142:0;;;;;;;;;;-1:-1:-1;29236:142:0;;;;;:::i;:::-;;:::i;39937:33::-;;;;;;;;;;;;;;;;41730:119;;;;;;;;;;;;;:::i;24318:744::-;;;;;;;;;;-1:-1:-1;24318:744:0;;;;;:::i;:::-;;:::i;29441:157::-;;;;;;;;;;-1:-1:-1;29441:157:0;;;;;:::i;:::-;;:::i;39977:31::-;;;;;;;;;;;;;;;;40905:80;;;;;;;;;;-1:-1:-1;40905:80:0;;;;;:::i;:::-;;:::i;23850:177::-;;;;;;;;;;-1:-1:-1;23850:177:0;;;;;:::i;:::-;;:::i;40991:102::-;;;;;;;;;;-1:-1:-1;40991:102:0;;;;;:::i;:::-;;:::i;40093:26::-;;;;;;;;;;-1:-1:-1;40093:26:0;;;;;;;;26675:118;;;;;;;;;;-1:-1:-1;26675:118:0;;;;;:::i;:::-;;:::i;40015:26::-;;;;;;;;;;;;;:::i;25552:211::-;;;;;;;;;;-1:-1:-1;25552:211:0;;;;;:::i;:::-;;:::i;39107:103::-;;;;;;;;;;;;;:::i;38467:87::-;;;;;;;;;;-1:-1:-1;38540:6:0;;-1:-1:-1;;;;;38540:6:0;38467:87;;39894:36;;;;;;;;;;;;;;;;27007:98;;;;;;;;;;;;;:::i;28654:274::-;;;;;;;;;;-1:-1:-1;28654:274:0;;;;;:::i;:::-;;:::i;40313:586::-;;;;;;:::i;:::-;;:::i;29661:311::-;;;;;;;;;;-1:-1:-1;29661:311:0;;;;;:::i;:::-;;:::i;40048:37::-;;;;;;;;;;;;;:::i;41099:507::-;;;;;;;;;;-1:-1:-1;41099:507:0;;;;;:::i;:::-;;:::i;34076:43::-;;;;;;;;;;;;;;;;28991:186;;;;;;;;;;-1:-1:-1;28991:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;29136:25:0;;;29113:4;29136:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28991:186;39365:238;;;;;;;;;;-1:-1:-1;39365:238:0;;;;;:::i;:::-;;:::i;25126:370::-;25253:4;-1:-1:-1;;;;;;25283:40:0;;-1:-1:-1;;;25283:40:0;;:99;;-1:-1:-1;;;;;;;25334:48:0;;-1:-1:-1;;;25334:48:0;25283:99;:160;;;-1:-1:-1;;;;;;;25393:50:0;;-1:-1:-1;;;25393:50:0;25283:160;:207;;;-1:-1:-1;;;;;;;;;;8857:40:0;;;25454:36;25269:221;25126:370;-1:-1:-1;;25126:370:0:o;26852:94::-;26906:13;26935:5;26928:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26852:94;:::o;28386:204::-;28454:7;28478:16;28486:7;30268:4;30298:12;-1:-1:-1;30288:22:0;30211:105;28478:16;28470:74;;;;-1:-1:-1;;;28470:74:0;;15862:2:1;28470:74:0;;;15844:21:1;15901:2;15881:18;;;15874:30;15940:34;15920:18;;;15913:62;-1:-1:-1;;;15991:18:1;;;15984:43;16044:19;;28470:74:0;;;;;;;;;-1:-1:-1;28560:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28560:24:0;;28386:204::o;27949:379::-;28018:13;28034:24;28050:7;28034:15;:24::i;:::-;28018:40;;28079:5;-1:-1:-1;;;;;28073:11:0;:2;-1:-1:-1;;;;;28073:11:0;;;28065:58;;;;-1:-1:-1;;;28065:58:0;;13448:2:1;28065:58:0;;;13430:21:1;13487:2;13467:18;;;13460:30;13526:34;13506:18;;;13499:62;-1:-1:-1;;;13577:18:1;;;13570:32;13619:19;;28065:58:0;13246:398:1;28065:58:0;18177:10;-1:-1:-1;;;;;28148:21:0;;;;:62;;-1:-1:-1;28173:37:0;28190:5;18177:10;28991:186;:::i;28173:37::-;28132:153;;;;-1:-1:-1;;;28132:153:0;;10725:2:1;28132:153:0;;;10707:21:1;10764:2;10744:18;;;10737:30;10803:34;10783:18;;;10776:62;10874:27;10854:18;;;10847:55;10919:19;;28132:153:0;10523:421:1;28132:153:0;28294:28;28303:2;28307:7;28316:5;28294:8;:28::i;:::-;28011:317;27949:379;;:::o;29236:142::-;29344:28;29354:4;29360:2;29364:7;29344:9;:28::i;41730:119::-;38540:6;;-1:-1:-1;;;;;38540:6:0;18177:10;38687:23;38679:57;;;;-1:-1:-1;;;38679:57:0;;;;;;;:::i;:::-;41793:47:::1;::::0;41801:10:::1;::::0;41818:21:::1;41793:47:::0;::::1;;;::::0;::::1;::::0;;;41818:21;41801:10;41793:47;::::1;;;;;;41785:56;;;::::0;::::1;;41730:119::o:0;24318:744::-;24427:7;24462:16;24472:5;24462:9;:16::i;:::-;24454:5;:24;24446:71;;;;-1:-1:-1;;;24446:71:0;;7320:2:1;24446:71:0;;;7302:21:1;7359:2;7339:18;;;7332:30;7398:34;7378:18;;;7371:62;-1:-1:-1;;;7449:18:1;;;7442:32;7491:19;;24446:71:0;7118:398:1;24446:71:0;24524:22;23763:12;;;24524:22;;24644:350;24668:14;24664:1;:18;24644:350;;;24698:31;24732:14;;;:11;:14;;;;;;;;;24698:48;;;;;;;;;-1:-1:-1;;;;;24698:48:0;;;;;-1:-1:-1;;;24698:48:0;;;;;;;;;;;;24759:28;24755:89;;24820:14;;;-1:-1:-1;24755:89:0;24877:5;-1:-1:-1;;;;;24856:26:0;:17;-1:-1:-1;;;;;24856:26:0;;24852:135;;;24914:5;24899:11;:20;24895:59;;;-1:-1:-1;24941:1:0;-1:-1:-1;24934:8:0;;-1:-1:-1;;;24934:8:0;24895:59;24964:13;;;;:::i;:::-;;;;24852:135;-1:-1:-1;24684:3:0;;;;:::i;:::-;;;;24644:350;;;-1:-1:-1;25000:56:0;;-1:-1:-1;;;25000:56:0;;15031:2:1;25000:56:0;;;15013:21:1;15070:2;15050:18;;;15043:30;15109:34;15089:18;;;15082:62;-1:-1:-1;;;15160:18:1;;;15153:44;15214:19;;25000:56:0;14829:410:1;29441:157:0;29553:39;29570:4;29576:2;29580:7;29553:39;;;;;;;;;;;;:16;:39::i;40905:80::-;38540:6;;-1:-1:-1;;;;;38540:6:0;18177:10;38687:23;38679:57;;;;-1:-1:-1;;;38679:57:0;;;;;;;:::i;:::-;40961:7:::1;:16:::0;;-1:-1:-1;;40961:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;40905:80::o;23850:177::-;23917:7;23763:12;;23941:5;:21;23933:69;;;;-1:-1:-1;;;23933:69:0;;9219:2:1;23933:69:0;;;9201:21:1;9258:2;9238:18;;;9231:30;9297:34;9277:18;;;9270:62;-1:-1:-1;;;9348:18:1;;;9341:33;9391:19;;23933:69:0;9017:399:1;23933:69:0;-1:-1:-1;24016:5:0;23850:177::o;40991:102::-;38540:6;;-1:-1:-1;;;;;38540:6:0;18177:10;38687:23;38679:57;;;;-1:-1:-1;;;38679:57:0;;;;;;;:::i;:::-;41065:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;;40991:102:::0;:::o;26675:118::-;26739:7;26762:20;26774:7;26762:11;:20::i;:::-;:25;;26675:118;-1:-1:-1;;26675:118:0:o;40015:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25552:211::-;25616:7;-1:-1:-1;;;;;25640:19:0;;25632:75;;;;-1:-1:-1;;;25632:75:0;;11504:2:1;25632:75:0;;;11486:21:1;11543:2;11523:18;;;11516:30;11582:34;11562:18;;;11555:62;-1:-1:-1;;;11633:18:1;;;11626:41;11684:19;;25632:75:0;11302:407:1;25632:75:0;-1:-1:-1;;;;;;25729:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25729:27:0;;25552:211::o;39107:103::-;38540:6;;-1:-1:-1;;;;;38540:6:0;18177:10;38687:23;38679:57;;;;-1:-1:-1;;;38679:57:0;;;;;;;:::i;:::-;39172:30:::1;39199:1;39172:18;:30::i;27007:98::-:0;27063:13;27092:7;27085:14;;;;;:::i;28654:274::-;-1:-1:-1;;;;;28745:24:0;;18177:10;28745:24;;28737:63;;;;-1:-1:-1;;;28737:63:0;;12323:2:1;28737:63:0;;;12305:21:1;12362:2;12342:18;;;12335:30;12401:28;12381:18;;;12374:56;12447:18;;28737:63:0;12121:350:1;28737:63:0;18177:10;28809:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28809:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28809:53:0;;;;;;;;;;28874:48;;6842:41:1;;;28809:42:0;;18177:10;28874:48;;6815:18:1;28874:48:0;;;;;;;28654:274;;:::o;40313:586::-;40578:7;;;;40577:8;40569:28;;;;-1:-1:-1;;;40569:28:0;;7723:2:1;40569:28:0;;;7705:21:1;7762:1;7742:18;;;7735:29;-1:-1:-1;;;7780:18:1;;;7773:37;7827:18;;40569:28:0;7521:330:1;40569:28:0;40628:1;40616:9;:13;:42;;;;;40646:12;;40633:9;:25;;40616:42;40608:68;;;;-1:-1:-1;;;40608:68:0;;8876:2:1;40608:68:0;;;8858:21:1;8915:2;8895:18;;;8888:30;-1:-1:-1;;;8934:18:1;;;8927:44;8988:18;;40608:68:0;8674:338:1;40608:68:0;40724:10;;40711:9;40695:13;23740:7;23763:12;;23687:94;40695:13;:25;;;;:::i;:::-;:39;;40687:69;;;;-1:-1:-1;;;40687:69:0;;10379:2:1;40687:69:0;;;10361:21:1;10418:2;10398:18;;;10391:30;-1:-1:-1;;;10437:18:1;;;10430:47;10494:18;;40687:69:0;10177:341:1;40687:69:0;40800:11;;40788:23;;:9;:23;:::i;:::-;40775:9;:36;;40767:71;;;;-1:-1:-1;;;40767:71:0;;13097:2:1;40767:71:0;;;13079:21:1;13136:2;13116:18;;;13109:30;-1:-1:-1;;;13155:18:1;;;13148:52;13217:18;;40767:71:0;12895:346:1;40767:71:0;40859:32;40869:10;40881:9;40859;:32::i;:::-;40313:586;:::o;29661:311::-;29798:28;29808:4;29814:2;29818:7;29798:9;:28::i;:::-;29849:48;29872:4;29878:2;29882:7;29891:5;29849:22;:48::i;:::-;29833:133;;;;-1:-1:-1;;;29833:133:0;;;;;;;:::i;:::-;29661:311;;;;:::o;40048:37::-;;;;;;;:::i;41099:507::-;41201:13;41240:17;41248:8;30268:4;30298:12;-1:-1:-1;30288:22:0;30211:105;41240:17;41232:54;;;;-1:-1:-1;;;41232:54:0;;11151:2:1;41232:54:0;;;11133:21:1;11190:2;11170:18;;;11163:30;11229:26;11209:18;;;11202:54;11273:18;;41232:54:0;10949:348:1;41232:54:0;41341:1;41323:7;41317:21;;;;;:::i;:::-;;;:25;:281;;;;;;;;;;;;;;;;;41434:7;41468:26;41485:8;41468:16;:26::i;:::-;41521:13;41391:166;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41297:301;41099:507;-1:-1:-1;;41099:507:0:o;39365:238::-;38540:6;;-1:-1:-1;;;;;38540:6:0;18177:10;38687:23;38679:57;;;;-1:-1:-1;;;38679:57:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39468:22:0;::::1;39446:110;;;::::0;-1:-1:-1;;;39446:110:0;;8058:2:1;39446:110:0::1;::::0;::::1;8040:21:1::0;8097:2;8077:18;;;8070:30;8136:34;8116:18;;;8109:62;-1:-1:-1;;;8187:18:1;;;8180:36;8233:19;;39446:110:0::1;7856:402:1::0;39446:110:0::1;39567:28;39586:8;39567:18;:28::i;33898:172::-:0;33995:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;33995:29:0;-1:-1:-1;;;;;33995:29:0;;;;;;;;;34036:28;;33995:24;;34036:28;;;;;;;33898:172;;;:::o;32263:1529::-;32360:35;32398:20;32410:7;32398:11;:20::i;:::-;32469:18;;32360:58;;-1:-1:-1;32427:22:0;;-1:-1:-1;;;;;32453:34:0;18177:10;-1:-1:-1;;;;;32453:34:0;;:81;;;-1:-1:-1;18177:10:0;32498:20;32510:7;32498:11;:20::i;:::-;-1:-1:-1;;;;;32498:36:0;;32453:81;:142;;;-1:-1:-1;32562:18:0;;32545:50;;18177:10;28991:186;:::i;32545:50::-;32427:169;;32621:17;32605:101;;;;-1:-1:-1;;;32605:101:0;;12678:2:1;32605:101:0;;;12660:21:1;12717:2;12697:18;;;12690:30;12756:34;12736:18;;;12729:62;-1:-1:-1;;;12807:18:1;;;12800:48;12865:19;;32605:101:0;12476:414:1;32605:101:0;32753:4;-1:-1:-1;;;;;32731:26:0;:13;:18;;;-1:-1:-1;;;;;32731:26:0;;32715:98;;;;-1:-1:-1;;;32715:98:0;;11916:2:1;32715:98:0;;;11898:21:1;11955:2;11935:18;;;11928:30;11994:34;11974:18;;;11967:62;-1:-1:-1;;;12045:18:1;;;12038:36;12091:19;;32715:98:0;11714:402:1;32715:98:0;-1:-1:-1;;;;;32828:16:0;;32820:66;;;;-1:-1:-1;;;32820:66:0;;9623:2:1;32820:66:0;;;9605:21:1;9662:2;9642:18;;;9635:30;9701:34;9681:18;;;9674:62;-1:-1:-1;;;9752:18:1;;;9745:35;9797:19;;32820:66:0;9421:401:1;32820:66:0;32995:49;33012:1;33016:7;33025:13;:18;;;32995:8;:49::i;:::-;-1:-1:-1;;;;;33053:18:0;;;;;;:12;:18;;;;;:31;;33083:1;;33053:18;:31;;33083:1;;-1:-1:-1;;;;;33053:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;33053:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33091:16:0;;-1:-1:-1;33091:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;33091:16:0;;:29;;-1:-1:-1;;33091:29:0;;:::i;:::-;;;-1:-1:-1;;;;;33091:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33150:43:0;;;;;;;;-1:-1:-1;;;;;33150:43:0;;;;;;33176:15;33150:43;;;;;;;;;-1:-1:-1;33127:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;33127:66:0;-1:-1:-1;;;;;;33127:66:0;;;;;;;;;;;33443:11;33139:7;-1:-1:-1;33443:11:0;:::i;:::-;33506:1;33465:24;;;:11;:24;;;;;:29;33421:33;;-1:-1:-1;;;;;;33465:29:0;33461:236;;33523:20;33531:11;30268:4;30298:12;-1:-1:-1;30288:22:0;30211:105;33523:20;33519:171;;;33583:97;;;;;;;;33610:18;;-1:-1:-1;;;;;33583:97:0;;;;;;33641:28;;;;33583:97;;;;;;;;;;-1:-1:-1;33556:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;33556:124:0;-1:-1:-1;;;;;;33556:124:0;;;;;;;;;;;;33519:171;33729:7;33725:2;-1:-1:-1;;;;;33710:27:0;33719:4;-1:-1:-1;;;;;33710:27:0;;;;;;;;;;;33744:42;32353:1439;;;32263:1529;;;:::o;26015:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;26132:16:0;26140:7;30268:4;30298:12;-1:-1:-1;30288:22:0;30211:105;26132:16;26124:71;;;;-1:-1:-1;;;26124:71:0;;8465:2:1;26124:71:0;;;8447:21:1;8504:2;8484:18;;;8477:30;8543:34;8523:18;;;8516:62;-1:-1:-1;;;8594:18:1;;;8587:40;8644:19;;26124:71:0;8263:406:1;26124:71:0;26204:26;26252:12;26241:7;:23;26237:93;;26296:22;26306:12;26296:7;:22;:::i;:::-;:26;;26321:1;26296:26;:::i;:::-;26275:47;;26237:93;26358:7;26338:212;26375:18;26367:4;:26;26338:212;;26412:31;26446:17;;;:11;:17;;;;;;;;;26412:51;;;;;;;;;-1:-1:-1;;;;;26412:51:0;;;;;-1:-1:-1;;;26412:51:0;;;;;;;;;;;;26476:28;26472:71;;26524:9;26015:606;-1:-1:-1;;;;26015:606:0:o;26472:71::-;-1:-1:-1;26395:6:0;;;;:::i;:::-;;;;26338:212;;;-1:-1:-1;26558:57:0;;-1:-1:-1;;;26558:57:0;;15446:2:1;26558:57:0;;;15428:21:1;15485:2;15465:18;;;15458:30;15524:34;15504:18;;;15497:62;-1:-1:-1;;;15575:18:1;;;15568:45;15630:19;;26558:57:0;15244:411:1;39617:191:0;39710:6;;;-1:-1:-1;;;;;39727:17:0;;;-1:-1:-1;;;;;;39727:17:0;;;;;;;39760:40;;39710:6;;;39727:17;39710:6;;39760:40;;39691:16;;39760:40;39680:128;39617:191;:::o;30322:98::-;30387:27;30397:2;30401:8;30387:27;;;;;;;;;;;;:9;:27::i;35613:690::-;35750:4;-1:-1:-1;;;;;35767:13:0;;9999:20;10047:8;35763:535;;35806:72;;-1:-1:-1;;;35806:72:0;;-1:-1:-1;;;;;35806:36:0;;;;;:72;;18177:10;;35857:4;;35863:7;;35872:5;;35806:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35806:72:0;;;;;;;;-1:-1:-1;;35806:72:0;;;;;;;;;;;;:::i;:::-;;;35793:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36037:13:0;;36033:215;;36070:61;;-1:-1:-1;;;36070:61:0;;;;;;;:::i;36033:215::-;36216:6;36210:13;36201:6;36197:2;36193:15;36186:38;35793:464;-1:-1:-1;;;;;;35928:55:0;-1:-1:-1;;;35928:55:0;;-1:-1:-1;35921:62:0;;35763:535;-1:-1:-1;36286:4:0;35763:535;35613:690;;;;;;:::o;18620:723::-;18676:13;18897:10;18893:53;;-1:-1:-1;;18924:10:0;;;;;;;;;;;;-1:-1:-1;;;18924:10:0;;;;;18620:723::o;18893:53::-;18971:5;18956:12;19012:78;19019:9;;19012:78;;19045:8;;;;:::i;:::-;;-1:-1:-1;19068:10:0;;-1:-1:-1;19076:2:0;19068:10;;:::i;:::-;;;19012:78;;;19100:19;19132:6;19122:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19122:17:0;;19100:39;;19150:154;19157:10;;19150:154;;19184:11;19194:1;19184:11;;:::i;:::-;;-1:-1:-1;19253:10:0;19261:2;19253:5;:10;:::i;:::-;19240:24;;:2;:24;:::i;:::-;19227:39;;19210:6;19217;19210:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19210:56:0;;;;;;;;-1:-1:-1;19281:11:0;19290:2;19281:11;;:::i;:::-;;;19150:154;;30759:1272;30864:20;30887:12;-1:-1:-1;;;;;30914:16:0;;30906:62;;;;-1:-1:-1;;;30906:62:0;;14629:2:1;30906:62:0;;;14611:21:1;14668:2;14648:18;;;14641:30;14707:34;14687:18;;;14680:62;-1:-1:-1;;;14758:18:1;;;14751:31;14799:19;;30906:62:0;14427:397:1;30906:62:0;31105:21;31113:12;30268:4;30298:12;-1:-1:-1;30288:22:0;30211:105;31105:21;31104:22;31096:64;;;;-1:-1:-1;;;31096:64:0;;14271:2:1;31096:64:0;;;14253:21:1;14310:2;14290:18;;;14283:30;14349:31;14329:18;;;14322:59;14398:18;;31096:64:0;14069:353:1;31096:64:0;31187:12;31175:8;:24;;31167:71;;;;-1:-1:-1;;;31167:71:0;;16276:2:1;31167:71:0;;;16258:21:1;16315:2;16295:18;;;16288:30;16354:34;16334:18;;;16327:62;-1:-1:-1;;;16405:18:1;;;16398:32;16447:19;;31167:71:0;16074:398:1;31167:71:0;-1:-1:-1;;;;;31350:16:0;;31317:30;31350:16;;;:12;:16;;;;;;;;;31317:49;;;;;;;;;-1:-1:-1;;;;;31317:49:0;;;;;-1:-1:-1;;;31317:49:0;;;;;;;;;;;31392:119;;;;;;;;31412:19;;31317:49;;31392:119;;;31412:39;;31442:8;;31412:39;:::i;:::-;-1:-1:-1;;;;;31392:119:0;;;;;31495:8;31460:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;31392:119:0;;;;;;-1:-1:-1;;;;;31373:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;31373:138:0;;;;;;;;;;;;31546:43;;;;;;;;;;;31572:15;31546:43;;;;;;;;31518:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;31518:71:0;-1:-1:-1;;;;;;31518:71:0;;;;;;;;;;;;;;;;;;31530:12;;31642:281;31666:8;31662:1;:12;31642:281;;;31695:38;;31720:12;;-1:-1:-1;;;;;31695:38:0;;;31712:1;;31695:38;;31712:1;;31695:38;31760:59;31791:1;31795:2;31799:12;31813:5;31760:22;:59::i;:::-;31742:150;;;;-1:-1:-1;;;31742:150:0;;;;;;;:::i;:::-;31901:14;;;;:::i;:::-;;;;31676:3;;;;;:::i;:::-;;;;31642:281;;;-1:-1:-1;31931:12:0;:27;;;31965:60;29661:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;:::-;1134:39;993:186;-1:-1:-1;;;993:186:1:o;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:973::-;4647:12;;4612:3;;4702:1;4722:18;;;;4775;;;;4802:61;;4856:4;4848:6;4844:17;4834:27;;4802:61;4882:2;4930;4922:6;4919:14;4899:18;4896:38;4893:161;;;4976:10;4971:3;4967:20;4964:1;4957:31;5011:4;5008:1;5001:15;5039:4;5036:1;5029:15;4893:161;5070:18;5097:104;;;;5215:1;5210:319;;;;5063:466;;5097:104;-1:-1:-1;;5130:24:1;;5118:37;;5175:16;;;;-1:-1:-1;5097:104:1;;5210:319;16732:1;16725:14;;;16769:4;16756:18;;5304:1;5318:165;5332:6;5329:1;5326:13;5318:165;;;5410:14;;5397:11;;;5390:35;5453:16;;;;5347:10;;5318:165;;;5322:3;;5512:6;5507:3;5503:16;5496:23;;5063:466;;;;;;;4562:973;;;;:::o;5540:456::-;5761:3;5789:38;5823:3;5815:6;5789:38;:::i;:::-;5856:6;5850:13;5872:52;5917:6;5913:2;5906:4;5898:6;5894:17;5872:52;:::i;:::-;5940:50;5982:6;5978:2;5974:15;5966:6;5940:50;:::i;:::-;5933:57;5540:456;-1:-1:-1;;;;;;;5540:456:1:o;6209:488::-;-1:-1:-1;;;;;6478:15:1;;;6460:34;;6530:15;;6525:2;6510:18;;6503:43;6577:2;6562:18;;6555:34;;;6625:3;6620:2;6605:18;;6598:31;;;6403:4;;6646:45;;6671:19;;6663:6;6646:45;:::i;:::-;6638:53;6209:488;-1:-1:-1;;;;;;6209:488:1:o;6894:219::-;7043:2;7032:9;7025:21;7006:4;7063:44;7103:2;7092:9;7088:18;7080:6;7063:44;:::i;9827:345::-;10029:2;10011:21;;;10068:2;10048:18;;;10041:30;-1:-1:-1;;;10102:2:1;10087:18;;10080:51;10163:2;10148:18;;9827:345::o;13649:415::-;13851:2;13833:21;;;13890:2;13870:18;;;13863:30;13929:34;13924:2;13909:18;;13902:62;-1:-1:-1;;;13995:2:1;13980:18;;13973:49;14054:3;14039:19;;13649:415::o;16785:253::-;16825:3;-1:-1:-1;;;;;16914:2:1;16911:1;16907:10;16944:2;16941:1;16937:10;16975:3;16971:2;16967:12;16962:3;16959:21;16956:47;;;16983:18;;:::i;:::-;17019:13;;16785:253;-1:-1:-1;;;;16785:253:1:o;17043:128::-;17083:3;17114:1;17110:6;17107:1;17104:13;17101:39;;;17120:18;;:::i;:::-;-1:-1:-1;17156:9:1;;17043:128::o;17176:120::-;17216:1;17242;17232:35;;17247:18;;:::i;:::-;-1:-1:-1;17281:9:1;;17176:120::o;17301:168::-;17341:7;17407:1;17403;17399:6;17395:14;17392:1;17389:21;17384:1;17377:9;17370:17;17366:45;17363:71;;;17414:18;;:::i;:::-;-1:-1:-1;17454:9:1;;17301:168::o;17474:246::-;17514:4;-1:-1:-1;;;;;17627:10:1;;;;17597;;17649:12;;;17646:38;;;17664:18;;:::i;:::-;17701:13;;17474:246;-1:-1:-1;;;17474:246:1:o;17725:125::-;17765:4;17793:1;17790;17787:8;17784:34;;;17798:18;;:::i;:::-;-1:-1:-1;17835:9:1;;17725:125::o;17855:258::-;17927:1;17937:113;17951:6;17948:1;17945:13;17937:113;;;18027:11;;;18021:18;18008:11;;;18001:39;17973:2;17966:10;17937:113;;;18068:6;18065:1;18062:13;18059:48;;;-1:-1:-1;;18103:1:1;18085:16;;18078:27;17855:258::o;18118:136::-;18157:3;18185:5;18175:39;;18194:18;;:::i;:::-;-1:-1:-1;;;18230:18:1;;18118:136::o;18259:380::-;18338:1;18334:12;;;;18381;;;18402:61;;18456:4;18448:6;18444:17;18434:27;;18402:61;18509:2;18501:6;18498:14;18478:18;18475:38;18472:161;;;18555:10;18550:3;18546:20;18543:1;18536:31;18590:4;18587:1;18580:15;18618:4;18615:1;18608:15;18472:161;;18259:380;;;:::o;18644:135::-;18683:3;-1:-1:-1;;18704:17:1;;18701:43;;;18724:18;;:::i;:::-;-1:-1:-1;18771:1:1;18760:13;;18644:135::o;18784:112::-;18816:1;18842;18832:35;;18847:18;;:::i;:::-;-1:-1:-1;18881:9:1;;18784:112::o;18901:127::-;18962:10;18957:3;18953:20;18950:1;18943:31;18993:4;18990:1;18983:15;19017:4;19014:1;19007:15;19033:127;19094:10;19089:3;19085:20;19082:1;19075:31;19125:4;19122:1;19115:15;19149:4;19146:1;19139:15;19165:127;19226:10;19221:3;19217:20;19214:1;19207:31;19257:4;19254:1;19247:15;19281:4;19278:1;19271:15;19297:127;19358:10;19353:3;19349:20;19346:1;19339:31;19389:4;19386:1;19379:15;19413:4;19410:1;19403:15;19429:131;-1:-1:-1;;;;;;19503:32:1;;19493:43;;19483:71;;19550:1;19547;19540:12

Swarm Source

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