ETH Price: $3,276.63 (+0.95%)
Gas: 2 Gwei

Token

oxMoonbirds (oxMB)
 

Overview

Max Total Supply

4,717 oxMB

Holders

157

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jpgr.eth
Balance
3 oxMB
0x0dcf85A7f550c4455E82b8e9115511F29d4c3D25
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:
oxMoonbirds

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-17
*/

// SPDX-License-Identifier: MIT

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


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


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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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);
            }
        }
    }
}








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




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


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


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


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


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  collectionSize;
  uint256 internal  collectionSizeFree;
  uint256 internal  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_,
    uint256 collectionSizeFree_
  ) {
    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_;
    collectionSizeFree = collectionSizeFree_;
  }

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

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

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

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

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

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

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

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

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

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

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

  /**
   * @dev See {IERC721Metadata-name}.
   */
  function name() public view virtual override returns (string memory) {
    return _name;
  }

  /**
   * @dev See {IERC721Metadata-symbol}.
   */
  function symbol() public view virtual override returns (string memory) {
    return _symbol;
  }

  /**
   * @dev See {IERC721Metadata-tokenURI}.
   */
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `tokenId` token must be owned by `from`.
   *
   * Emits a {Transfer} event.
   */
  function _transfer(
    address from,
    address to,
    uint256 tokenId
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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


pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


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() {
        _setOwner(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


pragma solidity ^0.8.0;


contract oxMoonbirds is Ownable, ERC721A, ReentrancyGuard {
  uint256 public maxPerAddressDuringMint;
  uint256 public amountForDevs;
  uint256 public price = 0.005 ether;
  uint256 public mintAmount = 20;
  bool public revealed = false;
  struct SaleConfig {
    uint64 publicPrice;
  }

  SaleConfig public saleConfig;
  mapping(address => uint256) public allowlist;

  // // metadata URI
  string private _baseTokenURI;
  string private _hiddenMetadataUri ='https://gateway.pinata.cloud/ipfs/QmW8J86P6PBxKVkpPFdiS84xpzYPEggS3dgopNQeBsxKBX/0xMoonbirds_json';
  
  constructor() ERC721A("oxMoonbirds", "oxMB", 20, 5555, 1000) {
    maxPerAddressDuringMint = 20;
    amountForDevs = 10;
  }


  function Mint(uint256 quantity)
    external
    payable
    nonReentrant
  {
    require(totalSupply() + quantity <= collectionSize, "reached max supply");
    require(quantity <= mintAmount, "Too many minted at once");
    require(msg.value >= price * quantity, "Need to send more ETH.");
    _safeMint(msg.sender, quantity);
  }


  function refundIfOver(uint256 _price) private {
    require(msg.value >= _price, "Need to send more ETH.");
    if (msg.value > _price) {
      payable(msg.sender).transfer(msg.value - _price);
    }
  }


  function seedAllowlist(address[] memory addresses, uint256[] memory numSlots)
    external
    onlyOwner
  {
    require(
      addresses.length == numSlots.length,
      "addresses does not match numSlots length"
    );
    for (uint256 i = 0; i < addresses.length; i++) {
      allowlist[addresses[i]] = numSlots[i];
    }
  }

  // For marketing etc.
  function Mints(uint256 quantity) external onlyOwner {
    
     require(totalSupply() + quantity <= amountForDevs, "reached max supply");
    _safeMint(msg.sender, quantity);
  }
    
  function _baseURI() internal view virtual override returns (string memory) {
      return _baseTokenURI;
  }


    function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    if (revealed){
      return super.tokenURI(tokenId);
    }
    else{
      return _hiddenMetadataUri;
    }
  }


  function setBaseURI(string calldata baseURI) external onlyOwner {
    _baseTokenURI = baseURI;
  }

  function setHiddenURI(string calldata baseURI) external onlyOwner {
    _hiddenMetadataUri = baseURI;
  }


  function withdrawMoney() external onlyOwner nonReentrant {
    (bool success, ) = msg.sender.call{value: address(this).balance}("");
    require(success, "Transfer failed.");
  }

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

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

  function getOwnershipData(uint256 tokenId)
    external
    view
    returns (TokenOwnership memory)
  {
    return ownershipOf(tokenId);
  }
  
  function setRevealed(bool _state) external onlyOwner{
    revealed = _state;
  }
  function setprice(uint256 _newprice) public onlyOwner {
        price = _newprice;
    }

  function setfreemints(uint256 _newfreemints) public onlyOwner {
        collectionSizeFree = _newfreemints;
    }

    function setamountForDevs(uint256 _newamountForDevs) public onlyOwner {
        amountForDevs = _newamountForDevs;
    }

  function setmintAmount(uint256 _newmintAmount) public onlyOwner {
        mintAmount = _newmintAmount;
    }
  function getCollectionSize() external view returns(uint256){
    return collectionSize;
  }
  function getFreeCollectionSize() external view returns(uint256){
    return collectionSizeFree;
  }
}

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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"Mints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountForDevs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCollectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFreeCollectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleConfig","outputs":[{"internalType":"uint64","name":"publicPrice","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"numSlots","type":"uint256[]"}],"name":"seedAllowlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setHiddenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newamountForDevs","type":"uint256"}],"name":"setamountForDevs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newfreemints","type":"uint256"}],"name":"setfreemints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmintAmount","type":"uint256"}],"name":"setmintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newprice","type":"uint256"}],"name":"setprice","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"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60006001819055600b556611c37937e08000600f5560146010556011805460ff19169055610120604052606160808181529062002e4260a03980516200004e9160159160209091019062000232565b503480156200005c57600080fd5b506040518060400160405280600b81526020016a6f784d6f6f6e626972647360a81b8152506040518060400160405280600481526020016337bc26a160e11b81525060146115b36103e8620000c0620000ba620001de60201b60201c565b620001e2565b600082116200012d5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600083116200018f5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000124565b8451620001a490600590602088019062000232565b508351620001ba90600690602087019062000232565b5060049290925560025560035550506001600c556014600d55600a600e5562000315565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200024090620002d8565b90600052602060002090601f016020900481019282620002645760008555620002af565b82601f106200027f57805160ff1916838001178555620002af565b82800160010185558215620002af579182015b82811115620002af57825182559160200191906001019062000292565b50620002bd929150620002c1565b5090565b5b80821115620002bd5760008155600101620002c2565b600181811c90821680620002ed57607f821691505b602082108114156200030f57634e487b7160e01b600052602260045260246000fd5b50919050565b612b1d80620003256000396000f3fe60806040526004361061025c5760003560e01c80638da5cb5b11610144578063bbaac02f116100b6578063dc33e6811161007a578063dc33e6811461070f578063e0a808531461072f578063e985e9c51461074f578063eb7f13ad14610798578063f2fde38b146107b8578063fbe1aa51146107d857600080fd5b8063bbaac02f14610679578063c87b56dd14610699578063d0d99907146106b9578063d49f0fa5146106d9578063d7224ba0146106f957600080fd5b8063a035b1fe11610108578063a035b1fe146105c1578063a22cb465146105d7578063a7cd52cb146105f7578063ac44600214610624578063b05863d514610639578063b88d4fde1461065957600080fd5b80638da5cb5b146104f457806390aa0b0f146105125780639231ab2a1461054a57806395d89b411461059757806399562c22146105ac57600080fd5b806342842e0e116101dd5780636352211e116101a15780636352211e1461045457806370a0823114610474578063715018a6146104945780637155c1ea146104a957806380e28ea5146104be5780638bc35c2f146104de57600080fd5b806342842e0e146103c45780634f6ccce7146103e4578063518302271461040457806355f804b31461041e5780635a2bcc181461043e57600080fd5b806318160ddd1161022457806318160ddd1461032557806321b2a6cb1461034457806323b872dd146103645780632d20fb60146103845780632f745c59146103a457600080fd5b806301ffc9a71461026157806306fdde031461029657806307883703146102b8578063081812fc146102cd578063095ea7b314610305575b600080fd5b34801561026d57600080fd5b5061028161027c3660046123ac565b6107ee565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab61085b565b60405161028d9190612421565b6102cb6102c6366004612434565b6108ed565b005b3480156102d957600080fd5b506102ed6102e8366004612434565b610a32565b6040516001600160a01b03909116815260200161028d565b34801561031157600080fd5b506102cb610320366004612464565b610abd565b34801561033157600080fd5b506001545b60405190815260200161028d565b34801561035057600080fd5b506102cb61035f366004612434565b610bd5565b34801561037057600080fd5b506102cb61037f36600461248e565b610c04565b34801561039057600080fd5b506102cb61039f366004612434565b610c0f565b3480156103b057600080fd5b506103366103bf366004612464565b610c6a565b3480156103d057600080fd5b506102cb6103df36600461248e565b610de2565b3480156103f057600080fd5b506103366103ff366004612434565b610dfd565b34801561041057600080fd5b506011546102819060ff1681565b34801561042a57600080fd5b506102cb6104393660046124ca565b610e66565b34801561044a57600080fd5b5061033660105481565b34801561046057600080fd5b506102ed61046f366004612434565b610e9c565b34801561048057600080fd5b5061033661048f36600461253b565b610eae565b3480156104a057600080fd5b506102cb610f3f565b3480156104b557600080fd5b50600254610336565b3480156104ca57600080fd5b506102cb6104d9366004612434565b610f75565b3480156104ea57600080fd5b50610336600d5481565b34801561050057600080fd5b506000546001600160a01b03166102ed565b34801561051e57600080fd5b50601254610532906001600160401b031681565b6040516001600160401b03909116815260200161028d565b34801561055657600080fd5b5061056a610565366004612434565b610fa4565b6040805182516001600160a01b031681526020928301516001600160401b0316928101929092520161028d565b3480156105a357600080fd5b506102ab610fc1565b3480156105b857600080fd5b50600354610336565b3480156105cd57600080fd5b50610336600f5481565b3480156105e357600080fd5b506102cb6105f2366004612566565b610fd0565b34801561060357600080fd5b5061033661061236600461253b565b60136020526000908152604090205481565b34801561063057600080fd5b506102cb611095565b34801561064557600080fd5b506102cb61065436600461266d565b611172565b34801561066557600080fd5b506102cb61067436600461272c565b611279565b34801561068557600080fd5b506102cb6106943660046124ca565b6112b2565b3480156106a557600080fd5b506102ab6106b4366004612434565b6112e8565b3480156106c557600080fd5b506102cb6106d4366004612434565b611396565b3480156106e557600080fd5b506102cb6106f4366004612434565b6113c5565b34801561070557600080fd5b50610336600b5481565b34801561071b57600080fd5b5061033661072a36600461253b565b6113f4565b34801561073b57600080fd5b506102cb61074a3660046127eb565b6113ff565b34801561075b57600080fd5b5061028161076a366004612806565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205460ff1690565b3480156107a457600080fd5b506102cb6107b3366004612434565b61143c565b3480156107c457600080fd5b506102cb6107d336600461253b565b6114cd565b3480156107e457600080fd5b50610336600e5481565b60006001600160e01b031982166380ac58cd60e01b148061081f57506001600160e01b03198216635b5e139f60e01b145b8061083a57506001600160e01b0319821663780e9d6360e01b145b8061085557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606005805461086a90612830565b80601f016020809104026020016040519081016040528092919081815260200182805461089690612830565b80156108e35780601f106108b8576101008083540402835291602001916108e3565b820191906000526020600020905b8154815290600101906020018083116108c657829003601f168201915b5050505050905090565b6002600c5414156109195760405162461bcd60e51b81526004016109109061286b565b60405180910390fd5b6002600c819055548161092b60015490565b61093591906128b8565b11156109785760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610910565b6010548111156109ca5760405162461bcd60e51b815260206004820152601760248201527f546f6f206d616e79206d696e746564206174206f6e63650000000000000000006044820152606401610910565b80600f546109d891906128d0565b341015610a205760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610910565b610a2a3382611565565b506001600c55565b6000610a3f826001541190565b610aa15760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610910565b506000908152600960205260409020546001600160a01b031690565b6000610ac882610e9c565b9050806001600160a01b0316836001600160a01b03161415610b375760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610910565b336001600160a01b0382161480610b535750610b53813361076a565b610bc55760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610910565b610bd0838383611583565b505050565b6000546001600160a01b03163314610bff5760405162461bcd60e51b8152600401610910906128ef565b600e55565b610bd08383836115df565b6000546001600160a01b03163314610c395760405162461bcd60e51b8152600401610910906128ef565b6002600c541415610c5c5760405162461bcd60e51b81526004016109109061286b565b6002600c55610a2a81611965565b6000610c7583610eae565b8210610cce5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610910565b6000610cd960015490565b905060008060005b83811015610d82576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610d3357805192505b876001600160a01b0316836001600160a01b03161415610d6f5786841415610d615750935061085592505050565b83610d6b81612924565b9450505b5080610d7a81612924565b915050610ce1565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610910565b610bd083838360405180602001604052806000815250611279565b6000610e0860015490565b8210610e625760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610910565b5090565b6000546001600160a01b03163314610e905760405162461bcd60e51b8152600401610910906128ef565b610bd060148383612306565b6000610ea782611b16565b5192915050565b60006001600160a01b038216610f1a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610910565b506001600160a01b03166000908152600860205260409020546001600160801b031690565b6000546001600160a01b03163314610f695760405162461bcd60e51b8152600401610910906128ef565b610f736000611c84565b565b6000546001600160a01b03163314610f9f5760405162461bcd60e51b8152600401610910906128ef565b600355565b604080518082019091526000808252602082015261085582611b16565b60606006805461086a90612830565b6001600160a01b0382163314156110295760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610910565b336000818152600a602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146110bf5760405162461bcd60e51b8152600401610910906128ef565b6002600c5414156110e25760405162461bcd60e51b81526004016109109061286b565b6002600c55604051600090339047908381818185875af1925050503d8060008114611129576040519150601f19603f3d011682016040523d82523d6000602084013e61112e565b606091505b5050905080610a2a5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610910565b6000546001600160a01b0316331461119c5760405162461bcd60e51b8152600401610910906128ef565b80518251146111fe5760405162461bcd60e51b815260206004820152602860248201527f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f746044820152670e640d8cadccee8d60c31b6064820152608401610910565b60005b8251811015610bd05781818151811061121c5761121c61293f565b60200260200101516013600085848151811061123a5761123a61293f565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550808061127190612924565b915050611201565b6112848484846115df565b61129084848484611cd4565b6112ac5760405162461bcd60e51b815260040161091090612955565b50505050565b6000546001600160a01b031633146112dc5760405162461bcd60e51b8152600401610910906128ef565b610bd060158383612306565b60115460609060ff16156112ff5761085582611dd3565b6015805461130c90612830565b80601f016020809104026020016040519081016040528092919081815260200182805461133890612830565b80156113855780601f1061135a57610100808354040283529160200191611385565b820191906000526020600020905b81548152906001019060200180831161136857829003601f168201915b50505050509050919050565b919050565b6000546001600160a01b031633146113c05760405162461bcd60e51b8152600401610910906128ef565b601055565b6000546001600160a01b031633146113ef5760405162461bcd60e51b8152600401610910906128ef565b600f55565b600061085582611ea0565b6000546001600160a01b031633146114295760405162461bcd60e51b8152600401610910906128ef565b6011805460ff1916911515919091179055565b6000546001600160a01b031633146114665760405162461bcd60e51b8152600401610910906128ef565b600e548161147360015490565b61147d91906128b8565b11156114c05760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610910565b6114ca3382611565565b50565b6000546001600160a01b031633146114f75760405162461bcd60e51b8152600401610910906128ef565b6001600160a01b03811661155c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610910565b6114ca81611c84565b61157f828260405180602001604052806000815250611f3e565b5050565b60008281526009602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115ea82611b16565b80519091506000906001600160a01b0316336001600160a01b0316148061162157503361161684610a32565b6001600160a01b0316145b8061163357508151611633903361076a565b90508061169d5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610910565b846001600160a01b031682600001516001600160a01b0316146117115760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610910565b6001600160a01b0384166117755760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610910565b6117856000848460000151611583565b6001600160a01b03851660009081526008602052604081208054600192906117b79084906001600160801b03166129a8565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526008602052604081208054600194509092611803918591166129d0565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526007909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561188a8460016128b8565b6000818152600760205260409020549091506001600160a01b031661191b576118b4816001541190565b1561191b5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600790935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600b54816119b55760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610910565b600060016119c384846128b8565b6119cd91906129fb565b905060016002546119de91906129fb565b8111156119f75760016002546119f491906129fb565b90505b611a02816001541190565b611a5d5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610910565b815b818111611b02576000818152600760205260409020546001600160a01b0316611af0576000611a8d82611b16565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600790965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611afa81612924565b915050611a5f565b50611b0e8160016128b8565b600b55505050565b6040805180820190915260008082526020820152611b35826001541190565b611b945760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610910565b60006004548310611bba57600454611bac90846129fb565b611bb79060016128b8565b90505b825b818110611c23576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611c1057949350505050565b5080611c1b81612a12565b915050611bbc565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610910565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15611dc757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d18903390899088908890600401612a29565b6020604051808303816000875af1925050508015611d53575060408051601f3d908101601f19168201909252611d5091810190612a66565b60015b611dad573d808015611d81576040519150601f19603f3d011682016040523d82523d6000602084013e611d86565b606091505b508051611da55760405162461bcd60e51b815260040161091090612955565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611dcb565b5060015b949350505050565b6060611de0826001541190565b611e445760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610910565b6000611e4e6121fa565b90506000815111611e6e5760405180602001604052806000815250611e99565b80611e7884612209565b604051602001611e89929190612a83565b6040516020818303038152906040525b9392505050565b60006001600160a01b038216611f125760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610910565b506001600160a01b0316600090815260086020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416611fa15760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610910565b611fac816001541190565b15611ff95760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610910565b6004548311156120565760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610910565b6001600160a01b0384166000908152600860209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906120b29087906129d0565b6001600160801b031681526020018583602001516120d091906129d0565b6001600160801b039081169091526001600160a01b0380881660008181526008602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526007909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156121ef5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121b36000888488611cd4565b6121cf5760405162461bcd60e51b815260040161091090612955565b816121d981612924565b92505080806121e790612924565b915050612166565b50600181905561195d565b60606014805461086a90612830565b60608161222d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612257578061224181612924565b91506122509050600a83612abf565b9150612231565b6000816001600160401b0381111561227157612271612599565b6040519080825280601f01601f19166020018201604052801561229b576020820181803683370190505b5090505b8415611dcb576122b06001836129fb565b91506122bd600a86612ad3565b6122c89060306128b8565b60f81b8183815181106122dd576122dd61293f565b60200101906001600160f81b031916908160001a9053506122ff600a86612abf565b945061229f565b82805461231290612830565b90600052602060002090601f016020900481019282612334576000855561237a565b82601f1061234d5782800160ff1982351617855561237a565b8280016001018555821561237a579182015b8281111561237a57823582559160200191906001019061235f565b50610e629291505b80821115610e625760008155600101612382565b6001600160e01b0319811681146114ca57600080fd5b6000602082840312156123be57600080fd5b8135611e9981612396565b60005b838110156123e45781810151838201526020016123cc565b838111156112ac5750506000910152565b6000815180845261240d8160208601602086016123c9565b601f01601f19169290920160200192915050565b602081526000611e9960208301846123f5565b60006020828403121561244657600080fd5b5035919050565b80356001600160a01b038116811461139157600080fd5b6000806040838503121561247757600080fd5b6124808361244d565b946020939093013593505050565b6000806000606084860312156124a357600080fd5b6124ac8461244d565b92506124ba6020850161244d565b9150604084013590509250925092565b600080602083850312156124dd57600080fd5b82356001600160401b03808211156124f457600080fd5b818501915085601f83011261250857600080fd5b81358181111561251757600080fd5b86602082850101111561252957600080fd5b60209290920196919550909350505050565b60006020828403121561254d57600080fd5b611e998261244d565b8035801515811461139157600080fd5b6000806040838503121561257957600080fd5b6125828361244d565b915061259060208401612556565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156125d7576125d7612599565b604052919050565b60006001600160401b038211156125f8576125f8612599565b5060051b60200190565b600082601f83011261261357600080fd5b81356020612628612623836125df565b6125af565b82815260059290921b8401810191818101908684111561264757600080fd5b8286015b84811015612662578035835291830191830161264b565b509695505050505050565b6000806040838503121561268057600080fd5b82356001600160401b038082111561269757600080fd5b818501915085601f8301126126ab57600080fd5b813560206126bb612623836125df565b82815260059290921b840181019181810190898411156126da57600080fd5b948201945b838610156126ff576126f08661244d565b825294820194908201906126df565b9650508601359250508082111561271557600080fd5b5061272285828601612602565b9150509250929050565b6000806000806080858703121561274257600080fd5b61274b8561244d565b9350602061275a81870161244d565b93506040860135925060608601356001600160401b038082111561277d57600080fd5b818801915088601f83011261279157600080fd5b8135818111156127a3576127a3612599565b6127b5601f8201601f191685016125af565b915080825289848285010111156127cb57600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000602082840312156127fd57600080fd5b611e9982612556565b6000806040838503121561281957600080fd5b6128228361244d565b91506125906020840161244d565b600181811c9082168061284457607f821691505b6020821081141561286557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156128cb576128cb6128a2565b500190565b60008160001904831182151516156128ea576128ea6128a2565b500290565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000600019821415612938576129386128a2565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03838116908316818110156129c8576129c86128a2565b039392505050565b60006001600160801b038083168185168083038211156129f2576129f26128a2565b01949350505050565b600082821015612a0d57612a0d6128a2565b500390565b600081612a2157612a216128a2565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a5c908301846123f5565b9695505050505050565b600060208284031215612a7857600080fd5b8151611e9981612396565b60008351612a958184602088016123c9565b8351908301906129f28183602088016123c9565b634e487b7160e01b600052601260045260246000fd5b600082612ace57612ace612aa9565b500490565b600082612ae257612ae2612aa9565b50069056fea264697066735822122014a65c7c1e0c9a1b1aa50f5ff6563bcd51f4bc4c04fb97aadb39ba91686df9ce64736f6c634300080c003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d57384a383650365042784b566b705046646953383478707a5950456767533364676f704e51654273784b42582f30784d6f6f6e62697264735f6a736f6e

Deployed Bytecode

0x60806040526004361061025c5760003560e01c80638da5cb5b11610144578063bbaac02f116100b6578063dc33e6811161007a578063dc33e6811461070f578063e0a808531461072f578063e985e9c51461074f578063eb7f13ad14610798578063f2fde38b146107b8578063fbe1aa51146107d857600080fd5b8063bbaac02f14610679578063c87b56dd14610699578063d0d99907146106b9578063d49f0fa5146106d9578063d7224ba0146106f957600080fd5b8063a035b1fe11610108578063a035b1fe146105c1578063a22cb465146105d7578063a7cd52cb146105f7578063ac44600214610624578063b05863d514610639578063b88d4fde1461065957600080fd5b80638da5cb5b146104f457806390aa0b0f146105125780639231ab2a1461054a57806395d89b411461059757806399562c22146105ac57600080fd5b806342842e0e116101dd5780636352211e116101a15780636352211e1461045457806370a0823114610474578063715018a6146104945780637155c1ea146104a957806380e28ea5146104be5780638bc35c2f146104de57600080fd5b806342842e0e146103c45780634f6ccce7146103e4578063518302271461040457806355f804b31461041e5780635a2bcc181461043e57600080fd5b806318160ddd1161022457806318160ddd1461032557806321b2a6cb1461034457806323b872dd146103645780632d20fb60146103845780632f745c59146103a457600080fd5b806301ffc9a71461026157806306fdde031461029657806307883703146102b8578063081812fc146102cd578063095ea7b314610305575b600080fd5b34801561026d57600080fd5b5061028161027c3660046123ac565b6107ee565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab61085b565b60405161028d9190612421565b6102cb6102c6366004612434565b6108ed565b005b3480156102d957600080fd5b506102ed6102e8366004612434565b610a32565b6040516001600160a01b03909116815260200161028d565b34801561031157600080fd5b506102cb610320366004612464565b610abd565b34801561033157600080fd5b506001545b60405190815260200161028d565b34801561035057600080fd5b506102cb61035f366004612434565b610bd5565b34801561037057600080fd5b506102cb61037f36600461248e565b610c04565b34801561039057600080fd5b506102cb61039f366004612434565b610c0f565b3480156103b057600080fd5b506103366103bf366004612464565b610c6a565b3480156103d057600080fd5b506102cb6103df36600461248e565b610de2565b3480156103f057600080fd5b506103366103ff366004612434565b610dfd565b34801561041057600080fd5b506011546102819060ff1681565b34801561042a57600080fd5b506102cb6104393660046124ca565b610e66565b34801561044a57600080fd5b5061033660105481565b34801561046057600080fd5b506102ed61046f366004612434565b610e9c565b34801561048057600080fd5b5061033661048f36600461253b565b610eae565b3480156104a057600080fd5b506102cb610f3f565b3480156104b557600080fd5b50600254610336565b3480156104ca57600080fd5b506102cb6104d9366004612434565b610f75565b3480156104ea57600080fd5b50610336600d5481565b34801561050057600080fd5b506000546001600160a01b03166102ed565b34801561051e57600080fd5b50601254610532906001600160401b031681565b6040516001600160401b03909116815260200161028d565b34801561055657600080fd5b5061056a610565366004612434565b610fa4565b6040805182516001600160a01b031681526020928301516001600160401b0316928101929092520161028d565b3480156105a357600080fd5b506102ab610fc1565b3480156105b857600080fd5b50600354610336565b3480156105cd57600080fd5b50610336600f5481565b3480156105e357600080fd5b506102cb6105f2366004612566565b610fd0565b34801561060357600080fd5b5061033661061236600461253b565b60136020526000908152604090205481565b34801561063057600080fd5b506102cb611095565b34801561064557600080fd5b506102cb61065436600461266d565b611172565b34801561066557600080fd5b506102cb61067436600461272c565b611279565b34801561068557600080fd5b506102cb6106943660046124ca565b6112b2565b3480156106a557600080fd5b506102ab6106b4366004612434565b6112e8565b3480156106c557600080fd5b506102cb6106d4366004612434565b611396565b3480156106e557600080fd5b506102cb6106f4366004612434565b6113c5565b34801561070557600080fd5b50610336600b5481565b34801561071b57600080fd5b5061033661072a36600461253b565b6113f4565b34801561073b57600080fd5b506102cb61074a3660046127eb565b6113ff565b34801561075b57600080fd5b5061028161076a366004612806565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205460ff1690565b3480156107a457600080fd5b506102cb6107b3366004612434565b61143c565b3480156107c457600080fd5b506102cb6107d336600461253b565b6114cd565b3480156107e457600080fd5b50610336600e5481565b60006001600160e01b031982166380ac58cd60e01b148061081f57506001600160e01b03198216635b5e139f60e01b145b8061083a57506001600160e01b0319821663780e9d6360e01b145b8061085557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606005805461086a90612830565b80601f016020809104026020016040519081016040528092919081815260200182805461089690612830565b80156108e35780601f106108b8576101008083540402835291602001916108e3565b820191906000526020600020905b8154815290600101906020018083116108c657829003601f168201915b5050505050905090565b6002600c5414156109195760405162461bcd60e51b81526004016109109061286b565b60405180910390fd5b6002600c819055548161092b60015490565b61093591906128b8565b11156109785760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610910565b6010548111156109ca5760405162461bcd60e51b815260206004820152601760248201527f546f6f206d616e79206d696e746564206174206f6e63650000000000000000006044820152606401610910565b80600f546109d891906128d0565b341015610a205760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610910565b610a2a3382611565565b506001600c55565b6000610a3f826001541190565b610aa15760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610910565b506000908152600960205260409020546001600160a01b031690565b6000610ac882610e9c565b9050806001600160a01b0316836001600160a01b03161415610b375760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610910565b336001600160a01b0382161480610b535750610b53813361076a565b610bc55760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610910565b610bd0838383611583565b505050565b6000546001600160a01b03163314610bff5760405162461bcd60e51b8152600401610910906128ef565b600e55565b610bd08383836115df565b6000546001600160a01b03163314610c395760405162461bcd60e51b8152600401610910906128ef565b6002600c541415610c5c5760405162461bcd60e51b81526004016109109061286b565b6002600c55610a2a81611965565b6000610c7583610eae565b8210610cce5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610910565b6000610cd960015490565b905060008060005b83811015610d82576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610d3357805192505b876001600160a01b0316836001600160a01b03161415610d6f5786841415610d615750935061085592505050565b83610d6b81612924565b9450505b5080610d7a81612924565b915050610ce1565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610910565b610bd083838360405180602001604052806000815250611279565b6000610e0860015490565b8210610e625760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610910565b5090565b6000546001600160a01b03163314610e905760405162461bcd60e51b8152600401610910906128ef565b610bd060148383612306565b6000610ea782611b16565b5192915050565b60006001600160a01b038216610f1a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610910565b506001600160a01b03166000908152600860205260409020546001600160801b031690565b6000546001600160a01b03163314610f695760405162461bcd60e51b8152600401610910906128ef565b610f736000611c84565b565b6000546001600160a01b03163314610f9f5760405162461bcd60e51b8152600401610910906128ef565b600355565b604080518082019091526000808252602082015261085582611b16565b60606006805461086a90612830565b6001600160a01b0382163314156110295760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610910565b336000818152600a602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146110bf5760405162461bcd60e51b8152600401610910906128ef565b6002600c5414156110e25760405162461bcd60e51b81526004016109109061286b565b6002600c55604051600090339047908381818185875af1925050503d8060008114611129576040519150601f19603f3d011682016040523d82523d6000602084013e61112e565b606091505b5050905080610a2a5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610910565b6000546001600160a01b0316331461119c5760405162461bcd60e51b8152600401610910906128ef565b80518251146111fe5760405162461bcd60e51b815260206004820152602860248201527f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f746044820152670e640d8cadccee8d60c31b6064820152608401610910565b60005b8251811015610bd05781818151811061121c5761121c61293f565b60200260200101516013600085848151811061123a5761123a61293f565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550808061127190612924565b915050611201565b6112848484846115df565b61129084848484611cd4565b6112ac5760405162461bcd60e51b815260040161091090612955565b50505050565b6000546001600160a01b031633146112dc5760405162461bcd60e51b8152600401610910906128ef565b610bd060158383612306565b60115460609060ff16156112ff5761085582611dd3565b6015805461130c90612830565b80601f016020809104026020016040519081016040528092919081815260200182805461133890612830565b80156113855780601f1061135a57610100808354040283529160200191611385565b820191906000526020600020905b81548152906001019060200180831161136857829003601f168201915b50505050509050919050565b919050565b6000546001600160a01b031633146113c05760405162461bcd60e51b8152600401610910906128ef565b601055565b6000546001600160a01b031633146113ef5760405162461bcd60e51b8152600401610910906128ef565b600f55565b600061085582611ea0565b6000546001600160a01b031633146114295760405162461bcd60e51b8152600401610910906128ef565b6011805460ff1916911515919091179055565b6000546001600160a01b031633146114665760405162461bcd60e51b8152600401610910906128ef565b600e548161147360015490565b61147d91906128b8565b11156114c05760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610910565b6114ca3382611565565b50565b6000546001600160a01b031633146114f75760405162461bcd60e51b8152600401610910906128ef565b6001600160a01b03811661155c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610910565b6114ca81611c84565b61157f828260405180602001604052806000815250611f3e565b5050565b60008281526009602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115ea82611b16565b80519091506000906001600160a01b0316336001600160a01b0316148061162157503361161684610a32565b6001600160a01b0316145b8061163357508151611633903361076a565b90508061169d5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610910565b846001600160a01b031682600001516001600160a01b0316146117115760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610910565b6001600160a01b0384166117755760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610910565b6117856000848460000151611583565b6001600160a01b03851660009081526008602052604081208054600192906117b79084906001600160801b03166129a8565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526008602052604081208054600194509092611803918591166129d0565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526007909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561188a8460016128b8565b6000818152600760205260409020549091506001600160a01b031661191b576118b4816001541190565b1561191b5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600790935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600b54816119b55760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610910565b600060016119c384846128b8565b6119cd91906129fb565b905060016002546119de91906129fb565b8111156119f75760016002546119f491906129fb565b90505b611a02816001541190565b611a5d5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610910565b815b818111611b02576000818152600760205260409020546001600160a01b0316611af0576000611a8d82611b16565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600790965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611afa81612924565b915050611a5f565b50611b0e8160016128b8565b600b55505050565b6040805180820190915260008082526020820152611b35826001541190565b611b945760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610910565b60006004548310611bba57600454611bac90846129fb565b611bb79060016128b8565b90505b825b818110611c23576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611c1057949350505050565b5080611c1b81612a12565b915050611bbc565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610910565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15611dc757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d18903390899088908890600401612a29565b6020604051808303816000875af1925050508015611d53575060408051601f3d908101601f19168201909252611d5091810190612a66565b60015b611dad573d808015611d81576040519150601f19603f3d011682016040523d82523d6000602084013e611d86565b606091505b508051611da55760405162461bcd60e51b815260040161091090612955565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611dcb565b5060015b949350505050565b6060611de0826001541190565b611e445760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610910565b6000611e4e6121fa565b90506000815111611e6e5760405180602001604052806000815250611e99565b80611e7884612209565b604051602001611e89929190612a83565b6040516020818303038152906040525b9392505050565b60006001600160a01b038216611f125760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610910565b506001600160a01b0316600090815260086020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416611fa15760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610910565b611fac816001541190565b15611ff95760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610910565b6004548311156120565760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610910565b6001600160a01b0384166000908152600860209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906120b29087906129d0565b6001600160801b031681526020018583602001516120d091906129d0565b6001600160801b039081169091526001600160a01b0380881660008181526008602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526007909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156121ef5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121b36000888488611cd4565b6121cf5760405162461bcd60e51b815260040161091090612955565b816121d981612924565b92505080806121e790612924565b915050612166565b50600181905561195d565b60606014805461086a90612830565b60608161222d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612257578061224181612924565b91506122509050600a83612abf565b9150612231565b6000816001600160401b0381111561227157612271612599565b6040519080825280601f01601f19166020018201604052801561229b576020820181803683370190505b5090505b8415611dcb576122b06001836129fb565b91506122bd600a86612ad3565b6122c89060306128b8565b60f81b8183815181106122dd576122dd61293f565b60200101906001600160f81b031916908160001a9053506122ff600a86612abf565b945061229f565b82805461231290612830565b90600052602060002090601f016020900481019282612334576000855561237a565b82601f1061234d5782800160ff1982351617855561237a565b8280016001018555821561237a579182015b8281111561237a57823582559160200191906001019061235f565b50610e629291505b80821115610e625760008155600101612382565b6001600160e01b0319811681146114ca57600080fd5b6000602082840312156123be57600080fd5b8135611e9981612396565b60005b838110156123e45781810151838201526020016123cc565b838111156112ac5750506000910152565b6000815180845261240d8160208601602086016123c9565b601f01601f19169290920160200192915050565b602081526000611e9960208301846123f5565b60006020828403121561244657600080fd5b5035919050565b80356001600160a01b038116811461139157600080fd5b6000806040838503121561247757600080fd5b6124808361244d565b946020939093013593505050565b6000806000606084860312156124a357600080fd5b6124ac8461244d565b92506124ba6020850161244d565b9150604084013590509250925092565b600080602083850312156124dd57600080fd5b82356001600160401b03808211156124f457600080fd5b818501915085601f83011261250857600080fd5b81358181111561251757600080fd5b86602082850101111561252957600080fd5b60209290920196919550909350505050565b60006020828403121561254d57600080fd5b611e998261244d565b8035801515811461139157600080fd5b6000806040838503121561257957600080fd5b6125828361244d565b915061259060208401612556565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156125d7576125d7612599565b604052919050565b60006001600160401b038211156125f8576125f8612599565b5060051b60200190565b600082601f83011261261357600080fd5b81356020612628612623836125df565b6125af565b82815260059290921b8401810191818101908684111561264757600080fd5b8286015b84811015612662578035835291830191830161264b565b509695505050505050565b6000806040838503121561268057600080fd5b82356001600160401b038082111561269757600080fd5b818501915085601f8301126126ab57600080fd5b813560206126bb612623836125df565b82815260059290921b840181019181810190898411156126da57600080fd5b948201945b838610156126ff576126f08661244d565b825294820194908201906126df565b9650508601359250508082111561271557600080fd5b5061272285828601612602565b9150509250929050565b6000806000806080858703121561274257600080fd5b61274b8561244d565b9350602061275a81870161244d565b93506040860135925060608601356001600160401b038082111561277d57600080fd5b818801915088601f83011261279157600080fd5b8135818111156127a3576127a3612599565b6127b5601f8201601f191685016125af565b915080825289848285010111156127cb57600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000602082840312156127fd57600080fd5b611e9982612556565b6000806040838503121561281957600080fd5b6128228361244d565b91506125906020840161244d565b600181811c9082168061284457607f821691505b6020821081141561286557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156128cb576128cb6128a2565b500190565b60008160001904831182151516156128ea576128ea6128a2565b500290565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000600019821415612938576129386128a2565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03838116908316818110156129c8576129c86128a2565b039392505050565b60006001600160801b038083168185168083038211156129f2576129f26128a2565b01949350505050565b600082821015612a0d57612a0d6128a2565b500390565b600081612a2157612a216128a2565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a5c908301846123f5565b9695505050505050565b600060208284031215612a7857600080fd5b8151611e9981612396565b60008351612a958184602088016123c9565b8351908301906129f28183602088016123c9565b634e487b7160e01b600052601260045260246000fd5b600082612ace57612ace612aa9565b500490565b600082612ae257612ae2612aa9565b50069056fea264697066735822122014a65c7c1e0c9a1b1aa50f5ff6563bcd51f4bc4c04fb97aadb39ba91686df9ce64736f6c634300080c0033

Deployed Bytecode Sourcemap

40516:3760:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23335:370;;;;;;;;;;-1:-1:-1;23335:370:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;23335:370:0;;;;;;;;25061:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;41234:340::-;;;;;;:::i;:::-;;:::i;:::-;;26586:204;;;;;;;;;;-1:-1:-1;26586:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;26586:204:0;1528:203:1;26149:379:0;;;;;;;;;;-1:-1:-1;26149:379:0;;;;;:::i;:::-;;:::i;21896:94::-;;;;;;;;;;-1:-1:-1;21972:12:0;;21896:94;;;2319:25:1;;;2307:2;2292:18;21896:94:0;2173:177:1;43833:122:0;;;;;;;;;;-1:-1:-1;43833:122:0;;;;;:::i;:::-;;:::i;27436:142::-;;;;;;;;;;-1:-1:-1;27436:142:0;;;;;:::i;:::-;;:::i;43136:118::-;;;;;;;;;;-1:-1:-1;43136:118:0;;;;;:::i;:::-;;:::i;22527:744::-;;;;;;;;;;-1:-1:-1;22527:744:0;;;;;:::i;:::-;;:::i;27641:157::-;;;;;;;;;;-1:-1:-1;27641:157:0;;;;;:::i;:::-;;:::i;22059:177::-;;;;;;;;;;-1:-1:-1;22059:177:0;;;;;:::i;:::-;;:::i;40729:28::-;;;;;;;;;;-1:-1:-1;40729:28:0;;;;;;;;42728:100;;;;;;;;;;-1:-1:-1;42728:100:0;;;;;:::i;:::-;;:::i;40694:30::-;;;;;;;;;;;;;;;;24884:118;;;;;;;;;;-1:-1:-1;24884:118:0;;;;;:::i;:::-;;:::i;23761:211::-;;;;;;;;;;-1:-1:-1;23761:211:0;;;;;:::i;:::-;;:::i;39856:94::-;;;;;;;;;;;;;:::i;44075:93::-;;;;;;;;;;-1:-1:-1;44148:14:0;;44075:93;;43710:115;;;;;;;;;;-1:-1:-1;43710:115:0;;;;;:::i;:::-;;:::i;40579:38::-;;;;;;;;;;;;;;;;39205:87;;;;;;;;;;-1:-1:-1;39251:7:0;39278:6;-1:-1:-1;;;;;39278:6:0;39205:87;;40817:28;;;;;;;;;;-1:-1:-1;40817:28:0;;;;-1:-1:-1;;;;;40817:28:0;;;;;;-1:-1:-1;;;;;3638:31:1;;;3620:50;;3608:2;3593:18;40817:28:0;3476:200:1;43373:147:0;;;;;;;;;;-1:-1:-1;43373:147:0;;;;;:::i;:::-;;:::i;:::-;;;;3911:13:1;;-1:-1:-1;;;;;3907:39:1;3889:58;;4007:4;3995:17;;;3989:24;-1:-1:-1;;;;;3985:49:1;3963:20;;;3956:79;;;;3862:18;43373:147:0;3681:360:1;25216:98:0;;;;;;;;;;;;;:::i;44172:101::-;;;;;;;;;;-1:-1:-1;44249:18:0;;44172:101;;40655:34;;;;;;;;;;;;;;;;26854:274;;;;;;;;;;-1:-1:-1;26854:274:0;;;;;:::i;:::-;;:::i;40850:44::-;;;;;;;;;;-1:-1:-1;40850:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;42949:181;;;;;;;;;;;;;:::i;41798:339::-;;;;;;;;;;-1:-1:-1;41798:339:0;;;;;:::i;:::-;;:::i;27861:311::-;;;;;;;;;;-1:-1:-1;27861:311:0;;;;;:::i;:::-;;:::i;42834:107::-;;;;;;;;;;-1:-1:-1;42834:107:0;;;;;:::i;:::-;;:::i;42480:240::-;;;;;;;;;;-1:-1:-1;42480:240:0;;;;;:::i;:::-;;:::i;43961:110::-;;;;;;;;;;-1:-1:-1;43961:110:0;;;;;:::i;:::-;;:::i;43614:90::-;;;;;;;;;;-1:-1:-1;43614:90:0;;;;;:::i;:::-;;:::i;32276:43::-;;;;;;;;;;;;;;;;43260:107;;;;;;;;;;-1:-1:-1;43260:107:0;;;;;:::i;:::-;;:::i;43528:82::-;;;;;;;;;;-1:-1:-1;43528:82:0;;;;;:::i;:::-;;:::i;27191:186::-;;;;;;;;;;-1:-1:-1;27191:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;27336:25:0;;;27313:4;27336:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27191:186;42168:182;;;;;;;;;;-1:-1:-1;42168:182:0;;;;;:::i;:::-;;:::i;40105:192::-;;;;;;;;;;-1:-1:-1;40105:192:0;;;;;:::i;:::-;;:::i;40622:28::-;;;;;;;;;;;;;;;;23335:370;23462:4;-1:-1:-1;;;;;;23492:40:0;;-1:-1:-1;;;23492:40:0;;:99;;-1:-1:-1;;;;;;;23543:48:0;;-1:-1:-1;;;23543:48:0;23492:99;:160;;;-1:-1:-1;;;;;;;23602:50:0;;-1:-1:-1;;;23602:50:0;23492:160;:207;;;-1:-1:-1;;;;;;;;;;1650:40:0;;;23663:36;23478:221;23335:370;-1:-1:-1;;23335:370:0:o;25061:94::-;25115:13;25144:5;25137:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25061:94;:::o;41234:340::-;37319:1;37915:7;;:19;;37907:63;;;;-1:-1:-1;;;37907:63:0;;;;;;;:::i;:::-;;;;;;;;;37319:1;38048:7;:18;;;41357:14;41345:8;41329:13:::1;21972:12:::0;;;21896:94;41329:13:::1;:24;;;;:::i;:::-;:42;;41321:73;;;::::0;-1:-1:-1;;;41321:73:0;;9535:2:1;41321:73:0::1;::::0;::::1;9517:21:1::0;9574:2;9554:18;;;9547:30;-1:-1:-1;;;9593:18:1;;;9586:48;9651:18;;41321:73:0::1;9333:342:1::0;41321:73:0::1;41421:10;;41409:8;:22;;41401:58;;;::::0;-1:-1:-1;;;41401:58:0;;9882:2:1;41401:58:0::1;::::0;::::1;9864:21:1::0;9921:2;9901:18;;;9894:30;9960:25;9940:18;;;9933:53;10003:18;;41401:58:0::1;9680:347:1::0;41401:58:0::1;41495:8;41487:5;;:16;;;;:::i;:::-;41474:9;:29;;41466:64;;;::::0;-1:-1:-1;;;41466:64:0;;10407:2:1;41466:64:0::1;::::0;::::1;10389:21:1::0;10446:2;10426:18;;;10419:30;-1:-1:-1;;;10465:18:1;;;10458:52;10527:18;;41466:64:0::1;10205:346:1::0;41466:64:0::1;41537:31;41547:10;41559:8;41537:9;:31::i;:::-;-1:-1:-1::0;37275:1:0;38227:7;:22;41234:340::o;26586:204::-;26654:7;26678:16;26686:7;28498:12;;-1:-1:-1;28488:22:0;28411:105;26678:16;26670:74;;;;-1:-1:-1;;;26670:74:0;;10758:2:1;26670:74:0;;;10740:21:1;10797:2;10777:18;;;10770:30;10836:34;10816:18;;;10809:62;-1:-1:-1;;;10887:18:1;;;10880:43;10940:19;;26670:74:0;10556:409:1;26670:74:0;-1:-1:-1;26760:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26760:24:0;;26586:204::o;26149:379::-;26218:13;26234:24;26250:7;26234:15;:24::i;:::-;26218:40;;26279:5;-1:-1:-1;;;;;26273:11:0;:2;-1:-1:-1;;;;;26273:11:0;;;26265:58;;;;-1:-1:-1;;;26265:58:0;;11172:2:1;26265:58:0;;;11154:21:1;11211:2;11191:18;;;11184:30;11250:34;11230:18;;;11223:62;-1:-1:-1;;;11301:18:1;;;11294:32;11343:19;;26265:58:0;10970:398:1;26265:58:0;17378:10;-1:-1:-1;;;;;26348:21:0;;;;:62;;-1:-1:-1;26373:37:0;26390:5;17378:10;27191:186;:::i;26373:37::-;26332:153;;;;-1:-1:-1;;;26332:153:0;;11575:2:1;26332:153:0;;;11557:21:1;11614:2;11594:18;;;11587:30;11653:34;11633:18;;;11626:62;11724:27;11704:18;;;11697:55;11769:19;;26332:153:0;11373:421:1;26332:153:0;26494:28;26503:2;26507:7;26516:5;26494:8;:28::i;:::-;26211:317;26149:379;;:::o;43833:122::-;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;43914:13:::1;:33:::0;43833:122::o;27436:142::-;27544:28;27554:4;27560:2;27564:7;27544:9;:28::i;43136:118::-;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;37319:1:::1;37915:7;;:19;;37907:63;;;;-1:-1:-1::0;;;37907:63:0::1;;;;;;;:::i;:::-;37319:1;38048:7;:18:::0;43220:28:::2;43239:8:::0;43220:18:::2;:28::i;22527:744::-:0;22636:7;22671:16;22681:5;22671:9;:16::i;:::-;22663:5;:24;22655:71;;;;-1:-1:-1;;;22655:71:0;;12362:2:1;22655:71:0;;;12344:21:1;12401:2;12381:18;;;12374:30;12440:34;12420:18;;;12413:62;-1:-1:-1;;;12491:18:1;;;12484:32;12533:19;;22655:71:0;12160:398:1;22655:71:0;22733:22;22758:13;21972:12;;;21896:94;22758:13;22733:38;;22778:19;22808:25;22858:9;22853:350;22877:14;22873:1;:18;22853:350;;;22907:31;22941:14;;;:11;:14;;;;;;;;;22907:48;;;;;;;;;-1:-1:-1;;;;;22907:48:0;;;;;-1:-1:-1;;;22907:48:0;;;-1:-1:-1;;;;;22907:48:0;;;;;;;;22968:28;22964:89;;23029:14;;;-1:-1:-1;22964:89:0;23086:5;-1:-1:-1;;;;;23065:26:0;:17;-1:-1:-1;;;;;23065:26:0;;23061:135;;;23123:5;23108:11;:20;23104:59;;;-1:-1:-1;23150:1:0;-1:-1:-1;23143:8:0;;-1:-1:-1;;;23143:8:0;23104:59;23173:13;;;;:::i;:::-;;;;23061:135;-1:-1:-1;22893:3:0;;;;:::i;:::-;;;;22853:350;;;-1:-1:-1;23209:56:0;;-1:-1:-1;;;23209:56:0;;12905:2:1;23209:56:0;;;12887:21:1;12944:2;12924:18;;;12917:30;12983:34;12963:18;;;12956:62;-1:-1:-1;;;13034:18:1;;;13027:44;13088:19;;23209:56:0;12703:410:1;27641:157:0;27753:39;27770:4;27776:2;27780:7;27753:39;;;;;;;;;;;;:16;:39::i;22059:177::-;22126:7;22158:13;21972:12;;;21896:94;22158:13;22150:5;:21;22142:69;;;;-1:-1:-1;;;22142:69:0;;13320:2:1;22142:69:0;;;13302:21:1;13359:2;13339:18;;;13332:30;13398:34;13378:18;;;13371:62;-1:-1:-1;;;13449:18:1;;;13442:33;13492:19;;22142:69:0;13118:399:1;22142:69:0;-1:-1:-1;22225:5:0;22059:177::o;42728:100::-;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;42799:23:::1;:13;42815:7:::0;;42799:23:::1;:::i;24884:118::-:0;24948:7;24971:20;24983:7;24971:11;:20::i;:::-;:25;;24884:118;-1:-1:-1;;24884:118:0:o;23761:211::-;23825:7;-1:-1:-1;;;;;23849:19:0;;23841:75;;;;-1:-1:-1;;;23841:75:0;;13724:2:1;23841:75:0;;;13706:21:1;13763:2;13743:18;;;13736:30;13802:34;13782:18;;;13775:62;-1:-1:-1;;;13853:18:1;;;13846:41;13904:19;;23841:75:0;13522:407:1;23841:75:0;-1:-1:-1;;;;;;23938:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;23938:27:0;;23761:211::o;39856:94::-;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;39921:21:::1;39939:1;39921:9;:21::i;:::-;39856:94::o:0;43710:115::-;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;43783:18:::1;:34:::0;43710:115::o;43373:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;43494:20:0;43506:7;43494:11;:20::i;25216:98::-;25272:13;25301:7;25294:14;;;;;:::i;26854:274::-;-1:-1:-1;;;;;26945:24:0;;17378:10;26945:24;;26937:63;;;;-1:-1:-1;;;26937:63:0;;14136:2:1;26937:63:0;;;14118:21:1;14175:2;14155:18;;;14148:30;14214:28;14194:18;;;14187:56;14260:18;;26937:63:0;13934:350:1;26937:63:0;17378:10;27009:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27009:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27009:53:0;;;;;;;;;;27074:48;;540:41:1;;;27009:42:0;;17378:10;27074:48;;513:18:1;27074:48:0;;;;;;;26854:274;;:::o;42949:181::-;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;37319:1:::1;37915:7;;:19;;37907:63;;;;-1:-1:-1::0;;;37907:63:0::1;;;;;;;:::i;:::-;37319:1;38048:7;:18:::0;43032:49:::2;::::0;43014:12:::2;::::0;43032:10:::2;::::0;43055:21:::2;::::0;43014:12;43032:49;43014:12;43032:49;43055:21;43032:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43013:68;;;43096:7;43088:36;;;::::0;-1:-1:-1;;;43088:36:0;;14701:2:1;43088:36:0::2;::::0;::::2;14683:21:1::0;14740:2;14720:18;;;14713:30;-1:-1:-1;;;14759:18:1;;;14752:46;14815:18;;43088:36:0::2;14499:340:1::0;41798:339:0;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;41951:8:::1;:15;41931:9;:16;:35;41915:109;;;::::0;-1:-1:-1;;;41915:109:0;;15046:2:1;41915:109:0::1;::::0;::::1;15028:21:1::0;15085:2;15065:18;;;15058:30;15124:34;15104:18;;;15097:62;-1:-1:-1;;;15175:18:1;;;15168:38;15223:19;;41915:109:0::1;14844:404:1::0;41915:109:0::1;42036:9;42031:101;42055:9;:16;42051:1;:20;42031:101;;;42113:8;42122:1;42113:11;;;;;;;;:::i;:::-;;;;;;;42087:9;:23;42097:9;42107:1;42097:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;42087:23:0::1;-1:-1:-1::0;;;;;42087:23:0::1;;;;;;;;;;;;:37;;;;42073:3;;;;;:::i;:::-;;;;42031:101;;27861:311:::0;27998:28;28008:4;28014:2;28018:7;27998:9;:28::i;:::-;28049:48;28072:4;28078:2;28082:7;28091:5;28049:22;:48::i;:::-;28033:133;;;;-1:-1:-1;;;28033:133:0;;;;;;;:::i;:::-;27861:311;;;;:::o;42834:107::-;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;42907:28:::1;:18;42928:7:::0;;42907:28:::1;:::i;42480:240::-:0;42607:8;;42578:13;;42607:8;;42603:112;;;42632:23;42647:7;42632:14;:23::i;42603:112::-;42689:18;42682:25;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42480:240;;;:::o;42603:112::-;42480:240;;;:::o;43961:110::-;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;44036:10:::1;:27:::0;43961:110::o;43614:90::-;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;43679:5:::1;:17:::0;43614:90::o;43260:107::-;43318:7;43341:20;43355:5;43341:13;:20::i;43528:82::-;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;43587:8:::1;:17:::0;;-1:-1:-1;;43587:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;43528:82::o;42168:182::-;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;42270:13:::1;;42258:8;42242:13;21972:12:::0;;;21896:94;42242:13:::1;:24;;;;:::i;:::-;:41;;42234:72;;;::::0;-1:-1:-1;;;42234:72:0;;9535:2:1;42234:72:0::1;::::0;::::1;9517:21:1::0;9574:2;9554:18;;;9547:30;-1:-1:-1;;;9593:18:1;;;9586:48;9651:18;;42234:72:0::1;9333:342:1::0;42234:72:0::1;42313:31;42323:10;42335:8;42313:9;:31::i;:::-;42168:182:::0;:::o;40105:192::-;39251:7;39278:6;-1:-1:-1;;;;;39278:6:0;17378:10;39425:23;39417:68;;;;-1:-1:-1;;;39417:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40194:22:0;::::1;40186:73;;;::::0;-1:-1:-1;;;40186:73:0;;16007:2:1;40186:73:0::1;::::0;::::1;15989:21:1::0;16046:2;16026:18;;;16019:30;16085:34;16065:18;;;16058:62;-1:-1:-1;;;16136:18:1;;;16129:36;16182:19;;40186:73:0::1;15805:402:1::0;40186:73:0::1;40270:19;40280:8;40270:9;:19::i;28522:98::-:0;28587:27;28597:2;28601:8;28587:27;;;;;;;;;;;;:9;:27::i;:::-;28522:98;;:::o;32098:172::-;32195:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;32195:29:0;-1:-1:-1;;;;;32195:29:0;;;;;;;;;32236:28;;32195:24;;32236:28;;;;;;;32098:172;;;:::o;30463:1529::-;30560:35;30598:20;30610:7;30598:11;:20::i;:::-;30669:18;;30560:58;;-1:-1:-1;30627:22:0;;-1:-1:-1;;;;;30653:34:0;17378:10;-1:-1:-1;;;;;30653:34:0;;:81;;;-1:-1:-1;17378:10:0;30698:20;30710:7;30698:11;:20::i;:::-;-1:-1:-1;;;;;30698:36:0;;30653:81;:142;;;-1:-1:-1;30762:18:0;;30745:50;;17378:10;27191:186;:::i;30745:50::-;30627:169;;30821:17;30805:101;;;;-1:-1:-1;;;30805:101:0;;16414:2:1;30805:101:0;;;16396:21:1;16453:2;16433:18;;;16426:30;16492:34;16472:18;;;16465:62;-1:-1:-1;;;16543:18:1;;;16536:48;16601:19;;30805:101:0;16212:414:1;30805:101:0;30953:4;-1:-1:-1;;;;;30931:26:0;:13;:18;;;-1:-1:-1;;;;;30931:26:0;;30915:98;;;;-1:-1:-1;;;30915:98:0;;16833:2:1;30915:98:0;;;16815:21:1;16872:2;16852:18;;;16845:30;16911:34;16891:18;;;16884:62;-1:-1:-1;;;16962:18:1;;;16955:36;17008:19;;30915:98:0;16631:402:1;30915:98:0;-1:-1:-1;;;;;31028:16:0;;31020:66;;;;-1:-1:-1;;;31020:66:0;;17240:2:1;31020:66:0;;;17222:21:1;17279:2;17259:18;;;17252:30;17318:34;17298:18;;;17291:62;-1:-1:-1;;;17369:18:1;;;17362:35;17414:19;;31020:66:0;17038:401:1;31020:66:0;31195:49;31212:1;31216:7;31225:13;:18;;;31195:8;:49::i;:::-;-1:-1:-1;;;;;31253:18:0;;;;;;:12;:18;;;;;:31;;31283:1;;31253:18;:31;;31283:1;;-1:-1:-1;;;;;31253:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;31253:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31291:16:0;;-1:-1:-1;31291:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;31291:16:0;;:29;;-1:-1:-1;;31291:29:0;;:::i;:::-;;;-1:-1:-1;;;;;31291:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31350:43:0;;;;;;;;-1:-1:-1;;;;;31350:43:0;;;;;-1:-1:-1;;;;;31376:15:0;31350:43;;;;;;;;;-1:-1:-1;31327:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;31327:66:0;-1:-1:-1;;;;;;31327:66:0;;;;;;;;;;;31643:11;31339:7;-1:-1:-1;31643:11:0;:::i;:::-;31706:1;31665:24;;;:11;:24;;;;;:29;31621:33;;-1:-1:-1;;;;;;31665:29:0;31661:236;;31723:20;31731:11;28498:12;;-1:-1:-1;28488:22:0;28411:105;31723:20;31719:171;;;31783:97;;;;;;;;31810:18;;-1:-1:-1;;;;;31783:97:0;;;;;;31841:28;;;;-1:-1:-1;;;;;31783:97:0;;;;;;;;;-1:-1:-1;31756:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;31756:124:0;-1:-1:-1;;;;;;31756:124:0;;;;;;;;;;;;31719:171;31929:7;31925:2;-1:-1:-1;;;;;31910:27:0;31919:4;-1:-1:-1;;;;;31910:27:0;;;;;;;;;;;31944:42;30553:1439;;;30463:1529;;;:::o;32424:846::-;32514:24;;32553:12;32545:49;;;;-1:-1:-1;;;32545:49:0;;18155:2:1;32545:49:0;;;18137:21:1;18194:2;18174:18;;;18167:30;18233:26;18213:18;;;18206:54;18277:18;;32545:49:0;17953:348:1;32545:49:0;32601:16;32651:1;32620:28;32640:8;32620:17;:28;:::i;:::-;:32;;;;:::i;:::-;32601:51;;32691:1;32674:14;;:18;;;;:::i;:::-;32663:8;:29;32659:81;;;32731:1;32714:14;;:18;;;;:::i;:::-;32703:29;;32659:81;32855:17;32863:8;28498:12;;-1:-1:-1;28488:22:0;28411:105;32855:17;32847:68;;;;-1:-1:-1;;;32847:68:0;;18638:2:1;32847:68:0;;;18620:21:1;18677:2;18657:18;;;18650:30;18716:34;18696:18;;;18689:62;-1:-1:-1;;;18767:18:1;;;18760:36;18813:19;;32847:68:0;18436:402:1;32847:68:0;32939:17;32922:297;32963:8;32958:1;:13;32922:297;;33022:1;32991:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;32991:19:0;32987:225;;33037:31;33071:14;33083:1;33071:11;:14::i;:::-;33113:89;;;;;;;;33140:14;;-1:-1:-1;;;;;33113:89:0;;;;;;33167:24;;;;-1:-1:-1;;;;;33113:89:0;;;;;;;;;-1:-1:-1;33096:14:0;;;:11;:14;;;;;;;:106;;;;;;;;;-1:-1:-1;;;33096:106:0;-1:-1:-1;;;;;;33096:106:0;;;;;;;;;;;;-1:-1:-1;32987:225:0;32973:3;;;;:::i;:::-;;;;32922:297;;;-1:-1:-1;33252:12:0;:8;33263:1;33252:12;:::i;:::-;33225:24;:39;-1:-1:-1;;;32424:846:0:o;24224:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;24341:16:0;24349:7;28498:12;;-1:-1:-1;28488:22:0;28411:105;24341:16;24333:71;;;;-1:-1:-1;;;24333:71:0;;19045:2:1;24333:71:0;;;19027:21:1;19084:2;19064:18;;;19057:30;19123:34;19103:18;;;19096:62;-1:-1:-1;;;19174:18:1;;;19167:40;19224:19;;24333:71:0;18843:406:1;24333:71:0;24413:26;24461:12;;24450:7;:23;24446:93;;24515:12;;24505:22;;:7;:22;:::i;:::-;:26;;24530:1;24505:26;:::i;:::-;24484:47;;24446:93;24567:7;24547:212;24584:18;24576:4;:26;24547:212;;24621:31;24655:17;;;:11;:17;;;;;;;;;24621:51;;;;;;;;;-1:-1:-1;;;;;24621:51:0;;;;;-1:-1:-1;;;24621:51:0;;;-1:-1:-1;;;;;24621:51:0;;;;;;;;24685:28;24681:71;;24733:9;24224:606;-1:-1:-1;;;;24224:606:0:o;24681:71::-;-1:-1:-1;24604:6:0;;;;:::i;:::-;;;;24547:212;;;-1:-1:-1;24767:57:0;;-1:-1:-1;;;24767:57:0;;19597:2:1;24767:57:0;;;19579:21:1;19636:2;19616:18;;;19609:30;19675:34;19655:18;;;19648:62;-1:-1:-1;;;19726:18:1;;;19719:45;19781:19;;24767:57:0;19395:411:1;40305:173:0;40361:16;40380:6;;-1:-1:-1;;;;;40397:17:0;;;-1:-1:-1;;;;;;40397:17:0;;;;;;40430:40;;40380:6;;;;;;;40430:40;;40361:16;40430:40;40350:128;40305:173;:::o;33813:690::-;33950:4;-1:-1:-1;;;;;33967:13:0;;2738:20;2786:8;33963:535;;34006:72;;-1:-1:-1;;;34006:72:0;;-1:-1:-1;;;;;34006:36:0;;;;;:72;;17378:10;;34057:4;;34063:7;;34072:5;;34006:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34006:72:0;;;;;;;;-1:-1:-1;;34006:72:0;;;;;;;;;;;;:::i;:::-;;;33993:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34237:13:0;;34233:215;;34270:61;;-1:-1:-1;;;34270:61:0;;;;;;;:::i;34233:215::-;34416:6;34410:13;34401:6;34397:2;34393:15;34386:38;33993:464;-1:-1:-1;;;;;;34128:55:0;-1:-1:-1;;;34128:55:0;;-1:-1:-1;34121:62:0;;33963:535;-1:-1:-1;34486:4:0;33963:535;33813:690;;;;;;:::o;25377:394::-;25475:13;25516:16;25524:7;28498:12;;-1:-1:-1;28488:22:0;28411:105;25516:16;25500:97;;;;-1:-1:-1;;;25500:97:0;;20761:2:1;25500:97:0;;;20743:21:1;20800:2;20780:18;;;20773:30;20839:34;20819:18;;;20812:62;-1:-1:-1;;;20890:18:1;;;20883:45;20945:19;;25500:97:0;20559:411:1;25500:97:0;25606:21;25630:10;:8;:10::i;:::-;25606:34;;25685:1;25667:7;25661:21;:25;:104;;;;;;;;;;;;;;;;;25722:7;25731:18;:7;:16;:18::i;:::-;25705:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25661:104;25647:118;25377:394;-1:-1:-1;;;25377:394:0:o;23978:240::-;24039:7;-1:-1:-1;;;;;24071:19:0;;24055:102;;;;-1:-1:-1;;;24055:102:0;;21652:2:1;24055:102:0;;;21634:21:1;21691:2;21671:18;;;21664:30;21730:34;21710:18;;;21703:62;-1:-1:-1;;;21781:18:1;;;21774:47;21838:19;;24055:102:0;21450:413:1;24055:102:0;-1:-1:-1;;;;;;24179:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;24179:32:0;;-1:-1:-1;;;;;24179:32:0;;23978:240::o;28959:1272::-;29087:12;;-1:-1:-1;;;;;29114:16:0;;29106:62;;;;-1:-1:-1;;;29106:62:0;;22070:2:1;29106:62:0;;;22052:21:1;22109:2;22089:18;;;22082:30;22148:34;22128:18;;;22121:62;-1:-1:-1;;;22199:18:1;;;22192:31;22240:19;;29106:62:0;21868:397:1;29106:62:0;29305:21;29313:12;28498;;-1:-1:-1;28488:22:0;28411:105;29305:21;29304:22;29296:64;;;;-1:-1:-1;;;29296:64:0;;22472:2:1;29296:64:0;;;22454:21:1;22511:2;22491:18;;;22484:30;22550:31;22530:18;;;22523:59;22599:18;;29296:64:0;22270:353:1;29296:64:0;29387:12;;29375:8;:24;;29367:71;;;;-1:-1:-1;;;29367:71:0;;22830:2:1;29367:71:0;;;22812:21:1;22869:2;22849:18;;;22842:30;22908:34;22888:18;;;22881:62;-1:-1:-1;;;22959:18:1;;;22952:32;23001:19;;29367:71:0;22628:398:1;29367:71:0;-1:-1:-1;;;;;29550:16:0;;29517:30;29550:16;;;:12;:16;;;;;;;;;29517:49;;;;;;;;;-1:-1:-1;;;;;29517:49:0;;;;;-1:-1:-1;;;29517:49:0;;;;;;;;;;;29592:119;;;;;;;;29612:19;;29517:49;;29592:119;;;29612:39;;29642:8;;29612:39;:::i;:::-;-1:-1:-1;;;;;29592:119:0;;;;;29695:8;29660:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;29592:119:0;;;;;;-1:-1:-1;;;;;29573:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;29573:138:0;;;;;;;;;;;;29746:43;;;;;;;;;;-1:-1:-1;;;;;29772:15:0;29746:43;;;;;;;;29718:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;29718:71:0;-1:-1:-1;;;;;;29718:71:0;;;;;;;;;;;;;;;;;;29730:12;;29842:281;29866:8;29862:1;:12;29842:281;;;29895:38;;29920:12;;-1:-1:-1;;;;;29895:38:0;;;29912:1;;29895:38;;29912:1;;29895:38;29960:59;29991:1;29995:2;29999:12;30013:5;29960:22;:59::i;:::-;29942:150;;;;-1:-1:-1;;;29942:150:0;;;;;;;:::i;:::-;30101:14;;;;:::i;:::-;;;;29876:3;;;;;:::i;:::-;;;;29842:281;;;-1:-1:-1;30131:12:0;:27;;;30165:60;27861:311;42360:110;42420:13;42451;42444:20;;;;;:::i;17767:723::-;17823:13;18044:10;18040:53;;-1:-1:-1;;18071:10:0;;;;;;;;;;;;-1:-1:-1;;;18071:10:0;;;;;17767:723::o;18040:53::-;18118:5;18103:12;18159:78;18166:9;;18159:78;;18192:8;;;;:::i;:::-;;-1:-1:-1;18215:10:0;;-1:-1:-1;18223:2:0;18215:10;;:::i;:::-;;;18159:78;;;18247:19;18279:6;-1:-1:-1;;;;;18269:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18269:17:0;;18247:39;;18297:154;18304:10;;18297:154;;18331:11;18341:1;18331:11;;:::i;:::-;;-1:-1:-1;18400:10:0;18408:2;18400:5;:10;:::i;:::-;18387:24;;:2;:24;:::i;:::-;18374:39;;18357:6;18364;18357:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;18357:56:0;;;;;;;;-1:-1:-1;18428:11:0;18437:2;18428:11;;:::i;:::-;;;18297:154;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1914:254;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:592::-;2759:6;2767;2820:2;2808:9;2799:7;2795:23;2791:32;2788:52;;;2836:1;2833;2826:12;2788:52;2876:9;2863:23;-1:-1:-1;;;;;2946:2:1;2938:6;2935:14;2932:34;;;2962:1;2959;2952:12;2932:34;3000:6;2989:9;2985:22;2975:32;;3045:7;3038:4;3034:2;3030:13;3026:27;3016:55;;3067:1;3064;3057:12;3016:55;3107:2;3094:16;3133:2;3125:6;3122:14;3119:34;;;3149:1;3146;3139:12;3119:34;3194:7;3189:2;3180:6;3176:2;3172:15;3168:24;3165:37;3162:57;;;3215:1;3212;3205:12;3162:57;3246:2;3238:11;;;;;3268:6;;-1:-1:-1;2688:592:1;;-1:-1:-1;;;;2688:592:1:o;3285:186::-;3344:6;3397:2;3385:9;3376:7;3372:23;3368:32;3365:52;;;3413:1;3410;3403:12;3365:52;3436:29;3455:9;3436:29;:::i;4046:160::-;4111:20;;4167:13;;4160:21;4150:32;;4140:60;;4196:1;4193;4186:12;4211:254;4276:6;4284;4337:2;4325:9;4316:7;4312:23;4308:32;4305:52;;;4353:1;4350;4343:12;4305:52;4376:29;4395:9;4376:29;:::i;:::-;4366:39;;4424:35;4455:2;4444:9;4440:18;4424:35;:::i;:::-;4414:45;;4211:254;;;;;:::o;4470:127::-;4531:10;4526:3;4522:20;4519:1;4512:31;4562:4;4559:1;4552:15;4586:4;4583:1;4576:15;4602:275;4673:2;4667:9;4738:2;4719:13;;-1:-1:-1;;4715:27:1;4703:40;;-1:-1:-1;;;;;4758:34:1;;4794:22;;;4755:62;4752:88;;;4820:18;;:::i;:::-;4856:2;4849:22;4602:275;;-1:-1:-1;4602:275:1:o;4882:183::-;4942:4;-1:-1:-1;;;;;4967:6:1;4964:30;4961:56;;;4997:18;;:::i;:::-;-1:-1:-1;5042:1:1;5038:14;5054:4;5034:25;;4882:183::o;5070:662::-;5124:5;5177:3;5170:4;5162:6;5158:17;5154:27;5144:55;;5195:1;5192;5185:12;5144:55;5231:6;5218:20;5257:4;5281:60;5297:43;5337:2;5297:43;:::i;:::-;5281:60;:::i;:::-;5375:15;;;5461:1;5457:10;;;;5445:23;;5441:32;;;5406:12;;;;5485:15;;;5482:35;;;5513:1;5510;5503:12;5482:35;5549:2;5541:6;5537:15;5561:142;5577:6;5572:3;5569:15;5561:142;;;5643:17;;5631:30;;5681:12;;;;5594;;5561:142;;;-1:-1:-1;5721:5:1;5070:662;-1:-1:-1;;;;;;5070:662:1:o;5737:1146::-;5855:6;5863;5916:2;5904:9;5895:7;5891:23;5887:32;5884:52;;;5932:1;5929;5922:12;5884:52;5972:9;5959:23;-1:-1:-1;;;;;6042:2:1;6034:6;6031:14;6028:34;;;6058:1;6055;6048:12;6028:34;6096:6;6085:9;6081:22;6071:32;;6141:7;6134:4;6130:2;6126:13;6122:27;6112:55;;6163:1;6160;6153:12;6112:55;6199:2;6186:16;6221:4;6245:60;6261:43;6301:2;6261:43;:::i;6245:60::-;6339:15;;;6421:1;6417:10;;;;6409:19;;6405:28;;;6370:12;;;;6445:19;;;6442:39;;;6477:1;6474;6467:12;6442:39;6501:11;;;;6521:148;6537:6;6532:3;6529:15;6521:148;;;6603:23;6622:3;6603:23;:::i;:::-;6591:36;;6554:12;;;;6647;;;;6521:148;;;6688:5;-1:-1:-1;;6731:18:1;;6718:32;;-1:-1:-1;;6762:16:1;;;6759:36;;;6791:1;6788;6781:12;6759:36;;6814:63;6869:7;6858:8;6847:9;6843:24;6814:63;:::i;:::-;6804:73;;;5737:1146;;;;;:::o;6888:980::-;6983:6;6991;6999;7007;7060:3;7048:9;7039:7;7035:23;7031:33;7028:53;;;7077:1;7074;7067:12;7028:53;7100:29;7119:9;7100:29;:::i;:::-;7090:39;;7148:2;7169:38;7203:2;7192:9;7188:18;7169:38;:::i;:::-;7159:48;;7254:2;7243:9;7239:18;7226:32;7216:42;;7309:2;7298:9;7294:18;7281:32;-1:-1:-1;;;;;7373:2:1;7365:6;7362:14;7359:34;;;7389:1;7386;7379:12;7359:34;7427:6;7416:9;7412:22;7402:32;;7472:7;7465:4;7461:2;7457:13;7453:27;7443:55;;7494:1;7491;7484:12;7443:55;7530:2;7517:16;7552:2;7548;7545:10;7542:36;;;7558:18;;:::i;:::-;7600:53;7643:2;7624:13;;-1:-1:-1;;7620:27:1;7616:36;;7600:53;:::i;:::-;7587:66;;7676:2;7669:5;7662:17;7716:7;7711:2;7706;7702;7698:11;7694:20;7691:33;7688:53;;;7737:1;7734;7727:12;7688:53;7792:2;7787;7783;7779:11;7774:2;7767:5;7763:14;7750:45;7836:1;7831:2;7826;7819:5;7815:14;7811:23;7804:34;;7857:5;7847:15;;;;;6888:980;;;;;;;:::o;7873:180::-;7929:6;7982:2;7970:9;7961:7;7957:23;7953:32;7950:52;;;7998:1;7995;7988:12;7950:52;8021:26;8037:9;8021:26;:::i;8058:260::-;8126:6;8134;8187:2;8175:9;8166:7;8162:23;8158:32;8155:52;;;8203:1;8200;8193:12;8155:52;8226:29;8245:9;8226:29;:::i;:::-;8216:39;;8274:38;8308:2;8297:9;8293:18;8274:38;:::i;8323:380::-;8402:1;8398:12;;;;8445;;;8466:61;;8520:4;8512:6;8508:17;8498:27;;8466:61;8573:2;8565:6;8562:14;8542:18;8539:38;8536:161;;;8619:10;8614:3;8610:20;8607:1;8600:31;8654:4;8651:1;8644:15;8682:4;8679:1;8672:15;8536:161;;8323:380;;;:::o;8708:355::-;8910:2;8892:21;;;8949:2;8929:18;;;8922:30;8988:33;8983:2;8968:18;;8961:61;9054:2;9039:18;;8708:355::o;9068:127::-;9129:10;9124:3;9120:20;9117:1;9110:31;9160:4;9157:1;9150:15;9184:4;9181:1;9174:15;9200:128;9240:3;9271:1;9267:6;9264:1;9261:13;9258:39;;;9277:18;;:::i;:::-;-1:-1:-1;9313:9:1;;9200:128::o;10032:168::-;10072:7;10138:1;10134;10130:6;10126:14;10123:1;10120:21;10115:1;10108:9;10101:17;10097:45;10094:71;;;10145:18;;:::i;:::-;-1:-1:-1;10185:9:1;;10032:168::o;11799:356::-;12001:2;11983:21;;;12020:18;;;12013:30;12079:34;12074:2;12059:18;;12052:62;12146:2;12131:18;;11799:356::o;12563:135::-;12602:3;-1:-1:-1;;12623:17:1;;12620:43;;;12643:18;;:::i;:::-;-1:-1:-1;12690:1:1;12679:13;;12563:135::o;15253:127::-;15314:10;15309:3;15305:20;15302:1;15295:31;15345:4;15342:1;15335:15;15369:4;15366:1;15359:15;15385:415;15587:2;15569:21;;;15626:2;15606:18;;;15599:30;15665:34;15660:2;15645:18;;15638:62;-1:-1:-1;;;15731:2:1;15716:18;;15709:49;15790:3;15775:19;;15385:415::o;17444:246::-;17484:4;-1:-1:-1;;;;;17597:10:1;;;;17567;;17619:12;;;17616:38;;;17634:18;;:::i;:::-;17671:13;;17444:246;-1:-1:-1;;;17444:246:1:o;17695:253::-;17735:3;-1:-1:-1;;;;;17824:2:1;17821:1;17817:10;17854:2;17851:1;17847:10;17885:3;17881:2;17877:12;17872:3;17869:21;17866:47;;;17893:18;;:::i;:::-;17929:13;;17695:253;-1:-1:-1;;;;17695:253:1:o;18306:125::-;18346:4;18374:1;18371;18368:8;18365:34;;;18379:18;;:::i;:::-;-1:-1:-1;18416:9:1;;18306:125::o;19254:136::-;19293:3;19321:5;19311:39;;19330:18;;:::i;:::-;-1:-1:-1;;;19366:18:1;;19254:136::o;19811:489::-;-1:-1:-1;;;;;20080:15:1;;;20062:34;;20132:15;;20127:2;20112:18;;20105:43;20179:2;20164:18;;20157:34;;;20227:3;20222:2;20207:18;;20200:31;;;20005:4;;20248:46;;20274:19;;20266:6;20248:46;:::i;:::-;20240:54;19811:489;-1:-1:-1;;;;;;19811:489:1:o;20305:249::-;20374:6;20427:2;20415:9;20406:7;20402:23;20398:32;20395:52;;;20443:1;20440;20433:12;20395:52;20475:9;20469:16;20494:30;20518:5;20494:30;:::i;20975:470::-;21154:3;21192:6;21186:13;21208:53;21254:6;21249:3;21242:4;21234:6;21230:17;21208:53;:::i;:::-;21324:13;;21283:16;;;;21346:57;21324:13;21283:16;21380:4;21368:17;;21346:57;:::i;23031:127::-;23092:10;23087:3;23083:20;23080:1;23073:31;23123:4;23120:1;23113:15;23147:4;23144:1;23137:15;23163:120;23203:1;23229;23219:35;;23234:18;;:::i;:::-;-1:-1:-1;23268:9:1;;23163:120::o;23288:112::-;23320:1;23346;23336:35;;23351:18;;:::i;:::-;-1:-1:-1;23385:9:1;;23288:112::o

Swarm Source

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