ETH Price: $2,545.59 (+3.31%)

Token

Kfer (kfer)
 

Overview

Max Total Supply

1,007 kfer

Holders

44

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jjjoel.eth
Balance
20 kfer
0xd34a4a35da531b2c81e4832427f1d1de841c62fa
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:
Kfers

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-23
*/

/**
 *Submitted for verification at Etherscan.io on 2022-02-21
*/

// 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 Kfers is Ownable, ERC721A, ReentrancyGuard {

  uint256 public collection_Size = 5000;
  uint256 public collection_Size_Free = 1000;
  uint256 public amountForDevs = 5;
  uint256 public price = 0.007 ether;
  uint256 public freemintAmount = 20;
  uint256 public max_Batch_Size = 20;
  uint256 public mintAmount = 20;

  struct SaleConfig {
    uint64 publicPrice;
  }

  SaleConfig public saleConfig;

  mapping(address => uint256) public allowlist;

  constructor(
  ) ERC721A("Kfer", "kfer", max_Batch_Size, collection_Size, collection_Size_Free) {
  }

  modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }

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

  function MintFree(uint256 quantity)
    external
    payable
    callerIsUser
  {
    require(quantity <= freemintAmount, "Too many minted at once");
    require(totalSupply() + quantity <= collection_Size_Free, "reached max supply");
    _safeMint(msg.sender, quantity);
  }

  // For marketing etc.
  function devMint(uint256 quantity) external onlyOwner {
    
     require(totalSupply() + quantity <= amountForDevs, "reached max supply");
    _safeMint(msg.sender, quantity);
  }
    

  // // metadata URI
  string private _baseTokenURI;

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

  function setBaseURI(string calldata baseURI) external onlyOwner {
    _baseTokenURI = 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 setprice(uint256 _newprice) public onlyOwner {
	    price = _newprice;
	}

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

    function setcollectionSize(uint256 _newcollectionSize) public onlyOwner {
	    collection_Size = _newcollectionSize;
	}

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

    function setfreemintAmount(uint256 _newfreemintAmount) public onlyOwner {
	    freemintAmount = _newfreemintAmount;
	}

    function setmintAmount(uint256 _newmintAmount) public onlyOwner {
	    mintAmount = _newmintAmount;
	}


}

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":"MintFree","outputs":[],"stateMutability":"payable","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":[],"name":"collection_Size","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collection_Size_Free","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freemintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"max_Batch_Size","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":[{"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":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newamountForDevs","type":"uint256"}],"name":"setamountForDevs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newcollectionSize","type":"uint256"}],"name":"setcollectionSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newfreemintAmount","type":"uint256"}],"name":"setfreemintAmount","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"}]

608060405260006001556000600b55611388600d556103e8600e556005600f556618de76816d80006010556014601155601460125560146013553480156200004657600080fd5b506040518060400160405280600481526020016325b332b960e11b8152506040518060400160405280600481526020016335b332b960e11b815250601254600d54600e54620000a46200009e6200013860201b60201c565b6200013c565b60008211620000d05760405162461bcd60e51b8152600401620000c79062000279565b60405180910390fd5b60008311620000f35760405162461bcd60e51b8152600401620000c79062000232565b8451620001089060059060208801906200018c565b5083516200011e9060069060208701906200018c565b5060049290925560025560035550506001600c5562000304565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200019a90620002c7565b90600052602060002090601f016020900481019282620001be576000855562000209565b82601f10620001d957805160ff191683800117855562000209565b8280016001018555821562000209579182015b8281111562000209578251825591602001919060010190620001ec565b50620002179291506200021b565b5090565b5b808211156200021757600081556001016200021c565b60208082526027908201527f455243373231413a206d61782062617463682073697a65206d757374206265206040820152666e6f6e7a65726f60c81b606082015260800190565b6020808252602e908201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060408201526d6e6f6e7a65726f20737570706c7960901b606082015260800190565b600281046001821680620002dc57607f821691505b60208210811415620002fe57634e487b7160e01b600052602260045260246000fd5b50919050565b612b4080620003146000396000f3fe60806040526004361061025c5760003560e01c8063715018a611610144578063ac446002116100b6578063d49f0fa51161007a578063d49f0fa5146106b1578063d7224ba0146106d1578063dc33e681146106e6578063e985e9c514610706578063f2fde38b14610726578063fbe1aa51146107465761025c565b8063ac44600214610629578063ad6ac81b1461063e578063b88d4fde14610651578063c87b56dd14610671578063d0d99907146106915761025c565b806395d89b411161010857806395d89b411461058a5780639ecdce0d1461059f5780639f8afbcc146105b4578063a035b1fe146105d4578063a22cb465146105e9578063a7cd52cb146106095761025c565b8063715018a6146104f157806380e28ea5146105065780638da5cb5b1461052657806390aa0b0f1461053b5780639231ab2a1461055d5761025c565b806327e410f1116101dd5780634aaecb35116101a15780634aaecb35146104475780634f6ccce71461045c57806355f804b31461047c5780635a2bcc181461049c5780636352211e146104b157806370a08231146104d15761025c565b806327e410f1146103a75780632d20fb60146103c75780632f745c59146103e7578063375a069a1461040757806342842e0e146104275761025c565b8063130db2bb11610224578063130db2bb1461031b57806318160ddd1461033d5780631efa03531461035257806321b2a6cb1461036757806323b872dd146103875761025c565b806301ffc9a71461026157806306fdde031461029757806307883703146102b9578063081812fc146102ce578063095ea7b3146102fb575b600080fd5b34801561026d57600080fd5b5061028161027c366004612000565b61075b565b60405161028e919061216c565b60405180910390f35b3480156102a357600080fd5b506102ac6107be565b60405161028e9190612177565b6102cc6102c73660046120a5565b610850565b005b3480156102da57600080fd5b506102ee6102e93660046120a5565b610908565b60405161028e919061211b565b34801561030757600080fd5b506102cc610316366004611fd7565b61094b565b34801561032757600080fd5b506103306109e4565b60405161028e919061293b565b34801561034957600080fd5b506103306109ea565b34801561035e57600080fd5b506103306109f0565b34801561037357600080fd5b506102cc6103823660046120a5565b6109f6565b34801561039357600080fd5b506102cc6103a2366004611e96565b610a3a565b3480156103b357600080fd5b506102cc6103c23660046120a5565b610a45565b3480156103d357600080fd5b506102cc6103e23660046120a5565b610a89565b3480156103f357600080fd5b50610330610402366004611fd7565b610b01565b34801561041357600080fd5b506102cc6104223660046120a5565b610bfd565b34801561043357600080fd5b506102cc610442366004611e96565b610c48565b34801561045357600080fd5b50610330610c63565b34801561046857600080fd5b506103306104773660046120a5565b610c69565b34801561048857600080fd5b506102cc610497366004612038565b610c95565b3480156104a857600080fd5b50610330610ce0565b3480156104bd57600080fd5b506102ee6104cc3660046120a5565b610ce6565b3480156104dd57600080fd5b506103306104ec366004611e4a565b610cf8565b3480156104fd57600080fd5b506102cc610d45565b34801561051257600080fd5b506102cc6105213660046120a5565b610d90565b34801561053257600080fd5b506102ee610dd4565b34801561054757600080fd5b50610550610de3565b60405161028e9190612944565b34801561056957600080fd5b5061057d6105783660046120a5565b610df3565b60405161028e9190612911565b34801561059657600080fd5b506102ac610e04565b3480156105ab57600080fd5b50610330610e13565b3480156105c057600080fd5b506102cc6105cf3660046120a5565b610e19565b3480156105e057600080fd5b50610330610e5d565b3480156105f557600080fd5b506102cc610604366004611f9d565b610e63565b34801561061557600080fd5b50610330610624366004611e4a565b610f31565b34801561063557600080fd5b506102cc610f43565b6102cc61064c3660046120a5565b611020565b34801561065d57600080fd5b506102cc61066c366004611ed1565b61106d565b34801561067d57600080fd5b506102ac61068c3660046120a5565b6110a6565b34801561069d57600080fd5b506102cc6106ac3660046120a5565b611129565b3480156106bd57600080fd5b506102cc6106cc3660046120a5565b61116d565b3480156106dd57600080fd5b506103306111b1565b3480156106f257600080fd5b50610330610701366004611e4a565b6111b7565b34801561071257600080fd5b50610281610721366004611e64565b6111c2565b34801561073257600080fd5b506102cc610741366004611e4a565b6111f0565b34801561075257600080fd5b5061033061125e565b60006001600160e01b031982166380ac58cd60e01b148061078c57506001600160e01b03198216635b5e139f60e01b145b806107a757506001600160e01b0319821663780e9d6360e01b145b806107b657506107b682611264565b90505b919050565b6060600580546107cd90612a48565b80601f01602080910402602001604051908101604052809291908181526020018280546107f990612a48565b80156108465780601f1061081b57610100808354040283529160200191610846565b820191906000526020600020905b81548152906001019060200180831161082957829003601f168201915b5050505050905090565b3233146108785760405162461bcd60e51b815260040161086f9061236c565b60405180910390fd5b60135481111561089a5760405162461bcd60e51b815260040161086f906121cc565b806010546108a891906129a7565b3410156108c75760405162461bcd60e51b815260040161086f906126c0565b600d54816108d36109ea565b6108dd919061297b565b11156108fb5760405162461bcd60e51b815260040161086f90612482565b610905338261127d565b50565b60006109138261129b565b61092f5760405162461bcd60e51b815260040161086f90612882565b506000908152600960205260409020546001600160a01b031690565b600061095682610ce6565b9050806001600160a01b0316836001600160a01b0316141561098a5760405162461bcd60e51b815260040161086f90612601565b806001600160a01b031661099c6112a2565b6001600160a01b031614806109b857506109b8816107216112a2565b6109d45760405162461bcd60e51b815260040161086f906123a3565b6109df8383836112a6565b505050565b60115481565b60015490565b60125481565b6109fe6112a2565b6001600160a01b0316610a0f610dd4565b6001600160a01b031614610a355760405162461bcd60e51b815260040161086f906124f4565b600f55565b6109df838383611302565b610a4d6112a2565b6001600160a01b0316610a5e610dd4565b6001600160a01b031614610a845760405162461bcd60e51b815260040161086f906124f4565b601155565b610a916112a2565b6001600160a01b0316610aa2610dd4565b6001600160a01b031614610ac85760405162461bcd60e51b815260040161086f906124f4565b6002600c541415610aeb5760405162461bcd60e51b815260040161086f906127fc565b6002600c55610af981611616565b506001600c55565b6000610b0c83610cf8565b8210610b2a5760405162461bcd60e51b815260040161086f9061218a565b6000610b346109ea565b905060008060005b83811015610bde576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b8f57805192505b876001600160a01b0316836001600160a01b03161415610bcb5786841415610bbd57509350610bf792505050565b83610bc781612a83565b9450505b5080610bd681612a83565b915050610b3c565b5060405162461bcd60e51b815260040161086f90612768565b92915050565b610c056112a2565b6001600160a01b0316610c16610dd4565b6001600160a01b031614610c3c5760405162461bcd60e51b815260040161086f906124f4565b600f54816108d36109ea565b6109df8383836040518060200160405280600081525061106d565b600d5481565b6000610c736109ea565b8210610c915760405162461bcd60e51b815260040161086f90612293565b5090565b610c9d6112a2565b6001600160a01b0316610cae610dd4565b6001600160a01b031614610cd45760405162461bcd60e51b815260040161086f906124f4565b6109df60168383611d87565b60135481565b6000610cf182611769565b5192915050565b60006001600160a01b038216610d205760405162461bcd60e51b815260040161086f90612437565b506001600160a01b03166000908152600860205260409020546001600160801b031690565b610d4d6112a2565b6001600160a01b0316610d5e610dd4565b6001600160a01b031614610d845760405162461bcd60e51b815260040161086f906124f4565b610d8e6000611841565b565b610d986112a2565b6001600160a01b0316610da9610dd4565b6001600160a01b031614610dcf5760405162461bcd60e51b815260040161086f906124f4565b600e55565b6000546001600160a01b031690565b60145467ffffffffffffffff1681565b610dfb611e07565b6107b682611769565b6060600680546107cd90612a48565b600e5481565b610e216112a2565b6001600160a01b0316610e32610dd4565b6001600160a01b031614610e585760405162461bcd60e51b815260040161086f906124f4565b600d55565b60105481565b610e6b6112a2565b6001600160a01b0316826001600160a01b03161415610e9c5760405162461bcd60e51b815260040161086f90612578565b80600a6000610ea96112a2565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610eed6112a2565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f25919061216c565b60405180910390a35050565b60156020526000908152604090205481565b610f4b6112a2565b6001600160a01b0316610f5c610dd4565b6001600160a01b031614610f825760405162461bcd60e51b815260040161086f906124f4565b6002600c541415610fa55760405162461bcd60e51b815260040161086f906127fc565b6002600c5560405160009033904790610fbd90612118565b60006040518083038185875af1925050503d8060008114610ffa576040519150601f19603f3d011682016040523d82523d6000602084013e610fff565b606091505b5050905080610af95760405162461bcd60e51b815260040161086f90612643565b32331461103f5760405162461bcd60e51b815260040161086f9061236c565b6011548111156110615760405162461bcd60e51b815260040161086f906121cc565b600e54816108d36109ea565b611078848484611302565b61108484848484611891565b6110a05760405162461bcd60e51b815260040161086f9061266d565b50505050565b60606110b18261129b565b6110cd5760405162461bcd60e51b815260040161086f90612529565b60006110d76119ad565b905060008151116110f75760405180602001604052806000815250611122565b80611101846119bc565b6040516020016111129291906120e9565b6040516020818303038152906040525b9392505050565b6111316112a2565b6001600160a01b0316611142610dd4565b6001600160a01b0316146111685760405162461bcd60e51b815260040161086f906124f4565b601355565b6111756112a2565b6001600160a01b0316611186610dd4565b6001600160a01b0316146111ac5760405162461bcd60e51b815260040161086f906124f4565b601055565b600b5481565b60006107b682611ad7565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205460ff1690565b6111f86112a2565b6001600160a01b0316611209610dd4565b6001600160a01b03161461122f5760405162461bcd60e51b815260040161086f906124f4565b6001600160a01b0381166112555760405162461bcd60e51b815260040161086f90612203565b61090581611841565b600f5481565b6001600160e01b031981166301ffc9a760e01b14919050565b611297828260405180602001604052806000815250611b2b565b5050565b6001541190565b3390565b60008281526009602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061130d82611769565b9050600081600001516001600160a01b03166113276112a2565b6001600160a01b0316148061135c575061133f6112a2565b6001600160a01b031661135184610908565b6001600160a01b0316145b8061137057508151611370906107216112a2565b90508061138f5760405162461bcd60e51b815260040161086f906125af565b846001600160a01b031682600001516001600160a01b0316146113c45760405162461bcd60e51b815260040161086f906124ae565b6001600160a01b0384166113ea5760405162461bcd60e51b815260040161086f906122d6565b6113f785858560016110a0565b61140760008484600001516112a6565b6001600160a01b03851660009081526008602052604081208054600192906114399084906001600160801b03166129c6565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600860205260408120805460019450909261148591859116612959565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526007909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b0319909116171617905561151b84600161297b565b6000818152600760205260409020549091506001600160a01b03166115c0576115438161129b565b156115c05760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526007909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461160e86868660016110a0565b505050505050565b600b54816116365760405162461bcd60e51b815260040161086f90612400565b60006001611644848461297b565b61164e91906129ee565b9050600160025461165f91906129ee565b81111561167857600160025461167591906129ee565b90505b6116818161129b565b61169d5760405162461bcd60e51b815260040161086f906127b6565b815b818111611755576000818152600760205260409020546001600160a01b03166117435760006116cd82611769565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff90811685840190815260008881526007909652939094209151825493516001600160a01b031990941691161767ffffffffffffffff60a01b1916600160a01b9290931691909102919091179055505b8061174d81612a83565b91505061169f565b5061176181600161297b565b600b55505050565b611771611e07565b61177a8261129b565b6117965760405162461bcd60e51b815260040161086f90612249565b600060045483106117bc576004546117ae90846129ee565b6117b990600161297b565b90505b825b818110611828576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156118155792506107b9915050565b508061182081612a31565b9150506117be565b5060405162461bcd60e51b815260040161086f90612833565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006118a5846001600160a01b0316611d81565b156119a157836001600160a01b031663150b7a026118c16112a2565b8786866040518563ffffffff1660e01b81526004016118e3949392919061212f565b602060405180830381600087803b1580156118fd57600080fd5b505af192505050801561192d575060408051601f3d908101601f1916820190925261192a9181019061201c565b60015b611987573d80801561195b576040519150601f19603f3d011682016040523d82523d6000602084013e611960565b606091505b50805161197f5760405162461bcd60e51b815260040161086f9061266d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119a5565b5060015b949350505050565b6060601680546107cd90612a48565b6060816119e157506040805180820190915260018152600360fc1b60208201526107b9565b8160005b8115611a0b57806119f581612a83565b9150611a049050600a83612993565b91506119e5565b60008167ffffffffffffffff811115611a3457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a5e576020820181803683370190505b5090505b84156119a557611a736001836129ee565b9150611a80600a86612a9e565b611a8b90603061297b565b60f81b818381518110611aae57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611ad0600a86612993565b9450611a62565b60006001600160a01b038216611aff5760405162461bcd60e51b815260040161086f9061231b565b506001600160a01b0316600090815260086020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416611b545760405162461bcd60e51b815260040161086f90612727565b611b5d8161129b565b15611b7a5760405162461bcd60e51b815260040161086f906126f0565b600454831115611b9c5760405162461bcd60e51b815260040161086f906128cf565b611ba960008583866110a0565b6001600160a01b0384166000908152600860209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611c05908790612959565b6001600160801b03168152602001858360200151611c239190612959565b6001600160801b039081169091526001600160a01b03808816600081815260086020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff1990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526007909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b85811015611d6e5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611d326000888488611891565b611d4e5760405162461bcd60e51b815260040161086f9061266d565b81611d5881612a83565b9250508080611d6690612a83565b915050611ce5565b50600181905561160e60008785886110a0565b3b151590565b828054611d9390612a48565b90600052602060002090601f016020900481019282611db55760008555611dfb565b82601f10611dce5782800160ff19823516178555611dfb565b82800160010185558215611dfb579182015b82811115611dfb578235825591602001919060010190611de0565b50610c91929150611e1e565b604080518082019091526000808252602082015290565b5b80821115610c915760008155600101611e1f565b80356001600160a01b03811681146107b957600080fd5b600060208284031215611e5b578081fd5b61112282611e33565b60008060408385031215611e76578081fd5b611e7f83611e33565b9150611e8d60208401611e33565b90509250929050565b600080600060608486031215611eaa578081fd5b611eb384611e33565b9250611ec160208501611e33565b9150604084013590509250925092565b60008060008060808587031215611ee6578081fd5b611eef85611e33565b93506020611efe818701611e33565b935060408601359250606086013567ffffffffffffffff80821115611f21578384fd5b818801915088601f830112611f34578384fd5b813581811115611f4657611f46612ade565b604051601f8201601f1916810185018381118282101715611f6957611f69612ade565b60405281815283820185018b1015611f7f578586fd5b81858501868301379081019093019390935250939692955090935050565b60008060408385031215611faf578182fd5b611fb883611e33565b915060208301358015158114611fcc578182fd5b809150509250929050565b60008060408385031215611fe9578182fd5b611ff283611e33565b946020939093013593505050565b600060208284031215612011578081fd5b813561112281612af4565b60006020828403121561202d578081fd5b815161112281612af4565b6000806020838503121561204a578182fd5b823567ffffffffffffffff80821115612061578384fd5b818501915085601f830112612074578384fd5b813581811115612082578485fd5b866020828501011115612093578485fd5b60209290920196919550909350505050565b6000602082840312156120b6578081fd5b5035919050565b600081518084526120d5816020860160208601612a05565b601f01601f19169290920160200192915050565b600083516120fb818460208801612a05565b83519083019061210f818360208801612a05565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612162908301846120bd565b9695505050505050565b901515815260200190565b60006020825261112260208301846120bd565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526017908201527f546f6f206d616e79206d696e746564206174206f6e6365000000000000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526031908201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260408201527020746865207a65726f206164647265737360781b606082015260800190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b60208082526018908201527f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000604082015260600190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526012908201527172656163686564206d617820737570706c7960701b604082015260600190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601690820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b604082015260600190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b60208082526026908201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360408201526506c65616e75760d41b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b81516001600160a01b0316815260209182015167ffffffffffffffff169181019190915260400190565b90815260200190565b67ffffffffffffffff91909116815260200190565b60006001600160801b0380831681851680830382111561210f5761210f612ab2565b6000821982111561298e5761298e612ab2565b500190565b6000826129a2576129a2612ac8565b500490565b60008160001904831182151516156129c1576129c1612ab2565b500290565b60006001600160801b03838116908316818110156129e6576129e6612ab2565b039392505050565b600082821015612a0057612a00612ab2565b500390565b60005b83811015612a20578181015183820152602001612a08565b838111156110a05750506000910152565b600081612a4057612a40612ab2565b506000190190565b600281046001821680612a5c57607f821691505b60208210811415612a7d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a9757612a97612ab2565b5060010190565b600082612aad57612aad612ac8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461090557600080fdfea26469706673582212206b40945aed1e55b02f4a243fa4d1b741217d140d675360123435b82879aa56c264736f6c63430008000033

Deployed Bytecode

0x60806040526004361061025c5760003560e01c8063715018a611610144578063ac446002116100b6578063d49f0fa51161007a578063d49f0fa5146106b1578063d7224ba0146106d1578063dc33e681146106e6578063e985e9c514610706578063f2fde38b14610726578063fbe1aa51146107465761025c565b8063ac44600214610629578063ad6ac81b1461063e578063b88d4fde14610651578063c87b56dd14610671578063d0d99907146106915761025c565b806395d89b411161010857806395d89b411461058a5780639ecdce0d1461059f5780639f8afbcc146105b4578063a035b1fe146105d4578063a22cb465146105e9578063a7cd52cb146106095761025c565b8063715018a6146104f157806380e28ea5146105065780638da5cb5b1461052657806390aa0b0f1461053b5780639231ab2a1461055d5761025c565b806327e410f1116101dd5780634aaecb35116101a15780634aaecb35146104475780634f6ccce71461045c57806355f804b31461047c5780635a2bcc181461049c5780636352211e146104b157806370a08231146104d15761025c565b806327e410f1146103a75780632d20fb60146103c75780632f745c59146103e7578063375a069a1461040757806342842e0e146104275761025c565b8063130db2bb11610224578063130db2bb1461031b57806318160ddd1461033d5780631efa03531461035257806321b2a6cb1461036757806323b872dd146103875761025c565b806301ffc9a71461026157806306fdde031461029757806307883703146102b9578063081812fc146102ce578063095ea7b3146102fb575b600080fd5b34801561026d57600080fd5b5061028161027c366004612000565b61075b565b60405161028e919061216c565b60405180910390f35b3480156102a357600080fd5b506102ac6107be565b60405161028e9190612177565b6102cc6102c73660046120a5565b610850565b005b3480156102da57600080fd5b506102ee6102e93660046120a5565b610908565b60405161028e919061211b565b34801561030757600080fd5b506102cc610316366004611fd7565b61094b565b34801561032757600080fd5b506103306109e4565b60405161028e919061293b565b34801561034957600080fd5b506103306109ea565b34801561035e57600080fd5b506103306109f0565b34801561037357600080fd5b506102cc6103823660046120a5565b6109f6565b34801561039357600080fd5b506102cc6103a2366004611e96565b610a3a565b3480156103b357600080fd5b506102cc6103c23660046120a5565b610a45565b3480156103d357600080fd5b506102cc6103e23660046120a5565b610a89565b3480156103f357600080fd5b50610330610402366004611fd7565b610b01565b34801561041357600080fd5b506102cc6104223660046120a5565b610bfd565b34801561043357600080fd5b506102cc610442366004611e96565b610c48565b34801561045357600080fd5b50610330610c63565b34801561046857600080fd5b506103306104773660046120a5565b610c69565b34801561048857600080fd5b506102cc610497366004612038565b610c95565b3480156104a857600080fd5b50610330610ce0565b3480156104bd57600080fd5b506102ee6104cc3660046120a5565b610ce6565b3480156104dd57600080fd5b506103306104ec366004611e4a565b610cf8565b3480156104fd57600080fd5b506102cc610d45565b34801561051257600080fd5b506102cc6105213660046120a5565b610d90565b34801561053257600080fd5b506102ee610dd4565b34801561054757600080fd5b50610550610de3565b60405161028e9190612944565b34801561056957600080fd5b5061057d6105783660046120a5565b610df3565b60405161028e9190612911565b34801561059657600080fd5b506102ac610e04565b3480156105ab57600080fd5b50610330610e13565b3480156105c057600080fd5b506102cc6105cf3660046120a5565b610e19565b3480156105e057600080fd5b50610330610e5d565b3480156105f557600080fd5b506102cc610604366004611f9d565b610e63565b34801561061557600080fd5b50610330610624366004611e4a565b610f31565b34801561063557600080fd5b506102cc610f43565b6102cc61064c3660046120a5565b611020565b34801561065d57600080fd5b506102cc61066c366004611ed1565b61106d565b34801561067d57600080fd5b506102ac61068c3660046120a5565b6110a6565b34801561069d57600080fd5b506102cc6106ac3660046120a5565b611129565b3480156106bd57600080fd5b506102cc6106cc3660046120a5565b61116d565b3480156106dd57600080fd5b506103306111b1565b3480156106f257600080fd5b50610330610701366004611e4a565b6111b7565b34801561071257600080fd5b50610281610721366004611e64565b6111c2565b34801561073257600080fd5b506102cc610741366004611e4a565b6111f0565b34801561075257600080fd5b5061033061125e565b60006001600160e01b031982166380ac58cd60e01b148061078c57506001600160e01b03198216635b5e139f60e01b145b806107a757506001600160e01b0319821663780e9d6360e01b145b806107b657506107b682611264565b90505b919050565b6060600580546107cd90612a48565b80601f01602080910402602001604051908101604052809291908181526020018280546107f990612a48565b80156108465780601f1061081b57610100808354040283529160200191610846565b820191906000526020600020905b81548152906001019060200180831161082957829003601f168201915b5050505050905090565b3233146108785760405162461bcd60e51b815260040161086f9061236c565b60405180910390fd5b60135481111561089a5760405162461bcd60e51b815260040161086f906121cc565b806010546108a891906129a7565b3410156108c75760405162461bcd60e51b815260040161086f906126c0565b600d54816108d36109ea565b6108dd919061297b565b11156108fb5760405162461bcd60e51b815260040161086f90612482565b610905338261127d565b50565b60006109138261129b565b61092f5760405162461bcd60e51b815260040161086f90612882565b506000908152600960205260409020546001600160a01b031690565b600061095682610ce6565b9050806001600160a01b0316836001600160a01b0316141561098a5760405162461bcd60e51b815260040161086f90612601565b806001600160a01b031661099c6112a2565b6001600160a01b031614806109b857506109b8816107216112a2565b6109d45760405162461bcd60e51b815260040161086f906123a3565b6109df8383836112a6565b505050565b60115481565b60015490565b60125481565b6109fe6112a2565b6001600160a01b0316610a0f610dd4565b6001600160a01b031614610a355760405162461bcd60e51b815260040161086f906124f4565b600f55565b6109df838383611302565b610a4d6112a2565b6001600160a01b0316610a5e610dd4565b6001600160a01b031614610a845760405162461bcd60e51b815260040161086f906124f4565b601155565b610a916112a2565b6001600160a01b0316610aa2610dd4565b6001600160a01b031614610ac85760405162461bcd60e51b815260040161086f906124f4565b6002600c541415610aeb5760405162461bcd60e51b815260040161086f906127fc565b6002600c55610af981611616565b506001600c55565b6000610b0c83610cf8565b8210610b2a5760405162461bcd60e51b815260040161086f9061218a565b6000610b346109ea565b905060008060005b83811015610bde576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b8f57805192505b876001600160a01b0316836001600160a01b03161415610bcb5786841415610bbd57509350610bf792505050565b83610bc781612a83565b9450505b5080610bd681612a83565b915050610b3c565b5060405162461bcd60e51b815260040161086f90612768565b92915050565b610c056112a2565b6001600160a01b0316610c16610dd4565b6001600160a01b031614610c3c5760405162461bcd60e51b815260040161086f906124f4565b600f54816108d36109ea565b6109df8383836040518060200160405280600081525061106d565b600d5481565b6000610c736109ea565b8210610c915760405162461bcd60e51b815260040161086f90612293565b5090565b610c9d6112a2565b6001600160a01b0316610cae610dd4565b6001600160a01b031614610cd45760405162461bcd60e51b815260040161086f906124f4565b6109df60168383611d87565b60135481565b6000610cf182611769565b5192915050565b60006001600160a01b038216610d205760405162461bcd60e51b815260040161086f90612437565b506001600160a01b03166000908152600860205260409020546001600160801b031690565b610d4d6112a2565b6001600160a01b0316610d5e610dd4565b6001600160a01b031614610d845760405162461bcd60e51b815260040161086f906124f4565b610d8e6000611841565b565b610d986112a2565b6001600160a01b0316610da9610dd4565b6001600160a01b031614610dcf5760405162461bcd60e51b815260040161086f906124f4565b600e55565b6000546001600160a01b031690565b60145467ffffffffffffffff1681565b610dfb611e07565b6107b682611769565b6060600680546107cd90612a48565b600e5481565b610e216112a2565b6001600160a01b0316610e32610dd4565b6001600160a01b031614610e585760405162461bcd60e51b815260040161086f906124f4565b600d55565b60105481565b610e6b6112a2565b6001600160a01b0316826001600160a01b03161415610e9c5760405162461bcd60e51b815260040161086f90612578565b80600a6000610ea96112a2565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610eed6112a2565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f25919061216c565b60405180910390a35050565b60156020526000908152604090205481565b610f4b6112a2565b6001600160a01b0316610f5c610dd4565b6001600160a01b031614610f825760405162461bcd60e51b815260040161086f906124f4565b6002600c541415610fa55760405162461bcd60e51b815260040161086f906127fc565b6002600c5560405160009033904790610fbd90612118565b60006040518083038185875af1925050503d8060008114610ffa576040519150601f19603f3d011682016040523d82523d6000602084013e610fff565b606091505b5050905080610af95760405162461bcd60e51b815260040161086f90612643565b32331461103f5760405162461bcd60e51b815260040161086f9061236c565b6011548111156110615760405162461bcd60e51b815260040161086f906121cc565b600e54816108d36109ea565b611078848484611302565b61108484848484611891565b6110a05760405162461bcd60e51b815260040161086f9061266d565b50505050565b60606110b18261129b565b6110cd5760405162461bcd60e51b815260040161086f90612529565b60006110d76119ad565b905060008151116110f75760405180602001604052806000815250611122565b80611101846119bc565b6040516020016111129291906120e9565b6040516020818303038152906040525b9392505050565b6111316112a2565b6001600160a01b0316611142610dd4565b6001600160a01b0316146111685760405162461bcd60e51b815260040161086f906124f4565b601355565b6111756112a2565b6001600160a01b0316611186610dd4565b6001600160a01b0316146111ac5760405162461bcd60e51b815260040161086f906124f4565b601055565b600b5481565b60006107b682611ad7565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205460ff1690565b6111f86112a2565b6001600160a01b0316611209610dd4565b6001600160a01b03161461122f5760405162461bcd60e51b815260040161086f906124f4565b6001600160a01b0381166112555760405162461bcd60e51b815260040161086f90612203565b61090581611841565b600f5481565b6001600160e01b031981166301ffc9a760e01b14919050565b611297828260405180602001604052806000815250611b2b565b5050565b6001541190565b3390565b60008281526009602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061130d82611769565b9050600081600001516001600160a01b03166113276112a2565b6001600160a01b0316148061135c575061133f6112a2565b6001600160a01b031661135184610908565b6001600160a01b0316145b8061137057508151611370906107216112a2565b90508061138f5760405162461bcd60e51b815260040161086f906125af565b846001600160a01b031682600001516001600160a01b0316146113c45760405162461bcd60e51b815260040161086f906124ae565b6001600160a01b0384166113ea5760405162461bcd60e51b815260040161086f906122d6565b6113f785858560016110a0565b61140760008484600001516112a6565b6001600160a01b03851660009081526008602052604081208054600192906114399084906001600160801b03166129c6565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600860205260408120805460019450909261148591859116612959565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526007909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b0319909116171617905561151b84600161297b565b6000818152600760205260409020549091506001600160a01b03166115c0576115438161129b565b156115c05760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526007909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461160e86868660016110a0565b505050505050565b600b54816116365760405162461bcd60e51b815260040161086f90612400565b60006001611644848461297b565b61164e91906129ee565b9050600160025461165f91906129ee565b81111561167857600160025461167591906129ee565b90505b6116818161129b565b61169d5760405162461bcd60e51b815260040161086f906127b6565b815b818111611755576000818152600760205260409020546001600160a01b03166117435760006116cd82611769565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff90811685840190815260008881526007909652939094209151825493516001600160a01b031990941691161767ffffffffffffffff60a01b1916600160a01b9290931691909102919091179055505b8061174d81612a83565b91505061169f565b5061176181600161297b565b600b55505050565b611771611e07565b61177a8261129b565b6117965760405162461bcd60e51b815260040161086f90612249565b600060045483106117bc576004546117ae90846129ee565b6117b990600161297b565b90505b825b818110611828576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156118155792506107b9915050565b508061182081612a31565b9150506117be565b5060405162461bcd60e51b815260040161086f90612833565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006118a5846001600160a01b0316611d81565b156119a157836001600160a01b031663150b7a026118c16112a2565b8786866040518563ffffffff1660e01b81526004016118e3949392919061212f565b602060405180830381600087803b1580156118fd57600080fd5b505af192505050801561192d575060408051601f3d908101601f1916820190925261192a9181019061201c565b60015b611987573d80801561195b576040519150601f19603f3d011682016040523d82523d6000602084013e611960565b606091505b50805161197f5760405162461bcd60e51b815260040161086f9061266d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119a5565b5060015b949350505050565b6060601680546107cd90612a48565b6060816119e157506040805180820190915260018152600360fc1b60208201526107b9565b8160005b8115611a0b57806119f581612a83565b9150611a049050600a83612993565b91506119e5565b60008167ffffffffffffffff811115611a3457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a5e576020820181803683370190505b5090505b84156119a557611a736001836129ee565b9150611a80600a86612a9e565b611a8b90603061297b565b60f81b818381518110611aae57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611ad0600a86612993565b9450611a62565b60006001600160a01b038216611aff5760405162461bcd60e51b815260040161086f9061231b565b506001600160a01b0316600090815260086020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416611b545760405162461bcd60e51b815260040161086f90612727565b611b5d8161129b565b15611b7a5760405162461bcd60e51b815260040161086f906126f0565b600454831115611b9c5760405162461bcd60e51b815260040161086f906128cf565b611ba960008583866110a0565b6001600160a01b0384166000908152600860209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611c05908790612959565b6001600160801b03168152602001858360200151611c239190612959565b6001600160801b039081169091526001600160a01b03808816600081815260086020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff1990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526007909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b85811015611d6e5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611d326000888488611891565b611d4e5760405162461bcd60e51b815260040161086f9061266d565b81611d5881612a83565b9250508080611d6690612a83565b915050611ce5565b50600181905561160e60008785886110a0565b3b151590565b828054611d9390612a48565b90600052602060002090601f016020900481019282611db55760008555611dfb565b82601f10611dce5782800160ff19823516178555611dfb565b82800160010185558215611dfb579182015b82811115611dfb578235825591602001919060010190611de0565b50610c91929150611e1e565b604080518082019091526000808252602082015290565b5b80821115610c915760008155600101611e1f565b80356001600160a01b03811681146107b957600080fd5b600060208284031215611e5b578081fd5b61112282611e33565b60008060408385031215611e76578081fd5b611e7f83611e33565b9150611e8d60208401611e33565b90509250929050565b600080600060608486031215611eaa578081fd5b611eb384611e33565b9250611ec160208501611e33565b9150604084013590509250925092565b60008060008060808587031215611ee6578081fd5b611eef85611e33565b93506020611efe818701611e33565b935060408601359250606086013567ffffffffffffffff80821115611f21578384fd5b818801915088601f830112611f34578384fd5b813581811115611f4657611f46612ade565b604051601f8201601f1916810185018381118282101715611f6957611f69612ade565b60405281815283820185018b1015611f7f578586fd5b81858501868301379081019093019390935250939692955090935050565b60008060408385031215611faf578182fd5b611fb883611e33565b915060208301358015158114611fcc578182fd5b809150509250929050565b60008060408385031215611fe9578182fd5b611ff283611e33565b946020939093013593505050565b600060208284031215612011578081fd5b813561112281612af4565b60006020828403121561202d578081fd5b815161112281612af4565b6000806020838503121561204a578182fd5b823567ffffffffffffffff80821115612061578384fd5b818501915085601f830112612074578384fd5b813581811115612082578485fd5b866020828501011115612093578485fd5b60209290920196919550909350505050565b6000602082840312156120b6578081fd5b5035919050565b600081518084526120d5816020860160208601612a05565b601f01601f19169290920160200192915050565b600083516120fb818460208801612a05565b83519083019061210f818360208801612a05565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612162908301846120bd565b9695505050505050565b901515815260200190565b60006020825261112260208301846120bd565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526017908201527f546f6f206d616e79206d696e746564206174206f6e6365000000000000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526031908201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260408201527020746865207a65726f206164647265737360781b606082015260800190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b60208082526018908201527f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000604082015260600190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526012908201527172656163686564206d617820737570706c7960701b604082015260600190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601690820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b604082015260600190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b60208082526026908201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360408201526506c65616e75760d41b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b81516001600160a01b0316815260209182015167ffffffffffffffff169181019190915260400190565b90815260200190565b67ffffffffffffffff91909116815260200190565b60006001600160801b0380831681851680830382111561210f5761210f612ab2565b6000821982111561298e5761298e612ab2565b500190565b6000826129a2576129a2612ac8565b500490565b60008160001904831182151516156129c1576129c1612ab2565b500290565b60006001600160801b03838116908316818110156129e6576129e6612ab2565b039392505050565b600082821015612a0057612a00612ab2565b500390565b60005b83811015612a20578181015183820152602001612a08565b838111156110a05750506000910152565b600081612a4057612a40612ab2565b506000190190565b600281046001821680612a5c57607f821691505b60208210811415612a7d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a9757612a97612ab2565b5060010190565b600082612aad57612aad612ac8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461090557600080fdfea26469706673582212206b40945aed1e55b02f4a243fa4d1b741217d140d675360123435b82879aa56c264736f6c63430008000033

Deployed Bytecode Sourcemap

40587:3126:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23406:370;;;;;;;;;;-1:-1:-1;23406:370:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25132:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;41293:351::-;;;;;;:::i;:::-;;:::i;:::-;;26657:204;;;;;;;;;;-1:-1:-1;26657:204:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;26220:379::-;;;;;;;;;;-1:-1:-1;26220:379:0;;;;;:::i;:::-;;:::i;40811:34::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;21967:94::-;;;;;;;;;;;;;:::i;40850:34::-;;;;;;;;;;;;;:::i;43350:116::-;;;;;;;;;;-1:-1:-1;43350:116:0;;;;;:::i;:::-;;:::i;27507:142::-;;;;;;;;;;-1:-1:-1;27507:142:0;;;;;:::i;:::-;;:::i;43474:120::-;;;;;;;;;;-1:-1:-1;43474:120:0;;;;;:::i;:::-;;:::i;42624:118::-;;;;;;;;;;-1:-1:-1;42624:118:0;;;;;:::i;:::-;;:::i;22598:744::-;;;;;;;;;;-1:-1:-1;22598:744:0;;;;;:::i;:::-;;:::i;41964:184::-;;;;;;;;;;-1:-1:-1;41964:184:0;;;;;:::i;:::-;;:::i;27712:157::-;;;;;;;;;;-1:-1:-1;27712:157:0;;;;;:::i;:::-;;:::i;40646:37::-;;;;;;;;;;;;;:::i;22130:177::-;;;;;;;;;;-1:-1:-1;22130:177:0;;;;;:::i;:::-;;:::i;42331:100::-;;;;;;;;;;-1:-1:-1;42331:100:0;;;;;:::i;:::-;;:::i;40889:30::-;;;;;;;;;;;;;:::i;24955:118::-;;;;;;;;;;-1:-1:-1;24955:118:0;;;;;:::i;:::-;;:::i;23832:211::-;;;;;;;;;;-1:-1:-1;23832:211:0;;;;;:::i;:::-;;:::i;39927:94::-;;;;;;;;;;;;;:::i;43102:111::-;;;;;;;;;;-1:-1:-1;43102:111:0;;;;;:::i;:::-;;:::i;39276:87::-;;;;;;;;;;;;;:::i;40981:28::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42861:147::-;;;;;;;;;;-1:-1:-1;42861:147:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;25287:98::-;;;;;;;;;;;;;:::i;40688:42::-;;;;;;;;;;;;;:::i;43221:121::-;;;;;;;;;;-1:-1:-1;43221:121:0;;;;;:::i;:::-;;:::i;40772:34::-;;;;;;;;;;;;;:::i;26925:274::-;;;;;;;;;;-1:-1:-1;26925:274:0;;;;;:::i;:::-;;:::i;41016:44::-;;;;;;;;;;-1:-1:-1;41016:44:0;;;;;:::i;:::-;;:::i;42437:181::-;;;;;;;;;;;;;:::i;41650:283::-;;;;;;:::i;:::-;;:::i;27932:311::-;;;;;;;;;;-1:-1:-1;27932:311:0;;;;;:::i;:::-;;:::i;25448:394::-;;;;;;;;;;-1:-1:-1;25448:394:0;;;;;:::i;:::-;;:::i;43602:104::-;;;;;;;;;;-1:-1:-1;43602:104:0;;;;;:::i;:::-;;:::i;43012:84::-;;;;;;;;;;-1:-1:-1;43012:84:0;;;;;:::i;:::-;;:::i;32347:43::-;;;;;;;;;;;;;:::i;42748:107::-;;;;;;;;;;-1:-1:-1;42748:107:0;;;;;:::i;:::-;;:::i;27262:186::-;;;;;;;;;;-1:-1:-1;27262:186:0;;;;;:::i;:::-;;:::i;40176:192::-;;;;;;;;;;-1:-1:-1;40176:192:0;;;;;:::i;:::-;;:::i;40735:32::-;;;;;;;;;;;;;:::i;23406:370::-;23533:4;-1:-1:-1;;;;;;23563:40:0;;-1:-1:-1;;;23563:40:0;;:99;;-1:-1:-1;;;;;;;23614:48:0;;-1:-1:-1;;;23614:48:0;23563:99;:160;;;-1:-1:-1;;;;;;;23673:50:0;;-1:-1:-1;;;23673:50:0;23563:160;:207;;;;23734:36;23758:11;23734:23;:36::i;:::-;23549:221;;23406:370;;;;:::o;25132:94::-;25186:13;25215:5;25208:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25132:94;:::o;41293:351::-;41215:9;41228:10;41215:23;41207:66;;;;-1:-1:-1;;;41207:66:0;;;;;;;:::i;:::-;;;;;;;;;41402:10:::1;;41390:8;:22;;41382:58;;;;-1:-1:-1::0;;;41382:58:0::1;;;;;;;:::i;:::-;41478:8;41470:5;;:16;;;;:::i;:::-;41457:9;:29;;41449:64;;;;-1:-1:-1::0;;;41449:64:0::1;;;;;;;:::i;:::-;41556:15;;41544:8;41528:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:43;;41520:74;;;;-1:-1:-1::0;;;41520:74:0::1;;;;;;;:::i;:::-;41601:31;41611:10;41623:8;41601:9;:31::i;:::-;41293:351:::0;:::o;26657:204::-;26725:7;26749:16;26757:7;26749;:16::i;:::-;26741:74;;;;-1:-1:-1;;;26741:74:0;;;;;;;:::i;:::-;-1:-1:-1;26831:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26831:24:0;;26657:204::o;26220:379::-;26289:13;26305:24;26321:7;26305:15;:24::i;:::-;26289:40;;26350:5;-1:-1:-1;;;;;26344:11:0;:2;-1:-1:-1;;;;;26344:11:0;;;26336:58;;;;-1:-1:-1;;;26336:58:0;;;;;;;:::i;:::-;26435:5;-1:-1:-1;;;;;26419:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;26419:21:0;;:62;;;;26444:37;26461:5;26468:12;:10;:12::i;26444:37::-;26403:153;;;;-1:-1:-1;;;26403:153:0;;;;;;;:::i;:::-;26565:28;26574:2;26578:7;26587:5;26565:8;:28::i;:::-;26220:379;;;:::o;40811:34::-;;;;:::o;21967:94::-;22043:12;;21967:94;:::o;40850:34::-;;;;:::o;43350:116::-;39507:12;:10;:12::i;:::-;-1:-1:-1;;;;;39496:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39496:23:0;;39488:68;;;;-1:-1:-1;;;39488:68:0;;;;;;;:::i;:::-;43428:13:::1;:33:::0;43350:116::o;27507:142::-;27615:28;27625:4;27631:2;27635:7;27615:9;:28::i;43474:120::-;39507:12;:10;:12::i;:::-;-1:-1:-1;;;;;39496:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39496:23:0;;39488:68;;;;-1:-1:-1;;;39488:68:0;;;;;;;:::i;:::-;43554:14:::1;:35:::0;43474:120::o;42624:118::-;39507:12;:10;:12::i;:::-;-1:-1:-1;;;;;39496:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39496:23:0;;39488:68;;;;-1:-1:-1;;;39488:68:0;;;;;;;:::i;:::-;37390:1:::1;37986:7;;:19;;37978:63;;;;-1:-1:-1::0;;;37978:63:0::1;;;;;;;:::i;:::-;37390:1;38119:7;:18:::0;42708:28:::2;42727:8:::0;42708:18:::2;:28::i;:::-;-1:-1:-1::0;37346:1:0::1;38298:7;:22:::0;42624:118::o;22598:744::-;22707:7;22742:16;22752:5;22742:9;:16::i;:::-;22734:5;:24;22726:71;;;;-1:-1:-1;;;22726:71:0;;;;;;;:::i;:::-;22804:22;22829:13;:11;:13::i;:::-;22804:38;;22849:19;22879:25;22929:9;22924:350;22948:14;22944:1;:18;22924:350;;;22978:31;23012:14;;;:11;:14;;;;;;;;;22978:48;;;;;;;;;-1:-1:-1;;;;;22978:48:0;;;;;-1:-1:-1;;;22978:48:0;;;;;;;;;;;;23039:28;23035:89;;23100:14;;;-1:-1:-1;23035:89:0;23157:5;-1:-1:-1;;;;;23136:26:0;:17;-1:-1:-1;;;;;23136:26:0;;23132:135;;;23194:5;23179:11;:20;23175:59;;;-1:-1:-1;23221:1:0;-1:-1:-1;23214:8:0;;-1:-1:-1;;;23214:8:0;23175:59;23244:13;;;;:::i;:::-;;;;23132:135;-1:-1:-1;22964:3:0;;;;:::i;:::-;;;;22924:350;;;;23280:56;;-1:-1:-1;;;23280:56:0;;;;;;;:::i;22598:744::-;;;;;:::o;41964:184::-;39507:12;:10;:12::i;:::-;-1:-1:-1;;;;;39496:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39496:23:0;;39488:68;;;;-1:-1:-1;;;39488:68:0;;;;;;;:::i;:::-;42068:13:::1;;42056:8;42040:13;:11;:13::i;27712:157::-:0;27824:39;27841:4;27847:2;27851:7;27824:39;;;;;;;;;;;;:16;:39::i;40646:37::-;;;;:::o;22130:177::-;22197:7;22229:13;:11;:13::i;:::-;22221:5;:21;22213:69;;;;-1:-1:-1;;;22213:69:0;;;;;;;:::i;:::-;-1:-1:-1;22296:5:0;22130:177::o;42331:100::-;39507:12;:10;:12::i;:::-;-1:-1:-1;;;;;39496:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39496:23:0;;39488:68;;;;-1:-1:-1;;;39488:68:0;;;;;;;:::i;:::-;42402:23:::1;:13;42418:7:::0;;42402:23:::1;:::i;40889:30::-:0;;;;:::o;24955:118::-;25019:7;25042:20;25054:7;25042:11;:20::i;:::-;:25;;24955:118;-1:-1:-1;;24955:118:0:o;23832:211::-;23896:7;-1:-1:-1;;;;;23920:19:0;;23912:75;;;;-1:-1:-1;;;23912:75:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;24009:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;24009:27:0;;23832:211::o;39927:94::-;39507:12;:10;:12::i;:::-;-1:-1:-1;;;;;39496:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39496:23:0;;39488:68;;;;-1:-1:-1;;;39488:68:0;;;;;;;:::i;:::-;39992:21:::1;40010:1;39992:9;:21::i;:::-;39927:94::o:0;43102:111::-;39507:12;:10;:12::i;:::-;-1:-1:-1;;;;;39496:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39496:23:0;;39488:68;;;;-1:-1:-1;;;39488:68:0;;;;;;;:::i;:::-;43172:20:::1;:36:::0;43102:111::o;39276:87::-;39322:7;39349:6;-1:-1:-1;;;;;39349:6:0;39276:87;:::o;40981:28::-;;;;;;:::o;42861:147::-;42942:21;;:::i;:::-;42982:20;42994:7;42982:11;:20::i;25287:98::-;25343:13;25372:7;25365:14;;;;;:::i;40688:42::-;;;;:::o;43221:121::-;39507:12;:10;:12::i;:::-;-1:-1:-1;;;;;39496:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39496:23:0;;39488:68;;;;-1:-1:-1;;;39488:68:0;;;;;;;:::i;:::-;43301:15:::1;:36:::0;43221:121::o;40772:34::-;;;;:::o;26925:274::-;27028:12;:10;:12::i;:::-;-1:-1:-1;;;;;27016:24:0;:8;-1:-1:-1;;;;;27016:24:0;;;27008:63;;;;-1:-1:-1;;;27008:63:0;;;;;;;:::i;:::-;27125:8;27080:18;:32;27099:12;:10;:12::i;:::-;-1:-1:-1;;;;;27080:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;27080:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;27080:53:0;;;;;;;;;;;27160:12;:10;:12::i;:::-;-1:-1:-1;;;;;27145:48:0;;27184:8;27145:48;;;;;;:::i;:::-;;;;;;;;26925:274;;:::o;41016:44::-;;;;;;;;;;;;;:::o;42437:181::-;39507:12;:10;:12::i;:::-;-1:-1:-1;;;;;39496:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39496:23:0;;39488:68;;;;-1:-1:-1;;;39488:68:0;;;;;;;:::i;:::-;37390:1:::1;37986:7;;:19;;37978:63;;;;-1:-1:-1::0;;;37978:63:0::1;;;;;;;:::i;:::-;37390:1;38119:7;:18:::0;42520:49:::2;::::0;42502:12:::2;::::0;42520:10:::2;::::0;42543:21:::2;::::0;42520:49:::2;::::0;::::2;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42501:68;;;42584:7;42576:36;;;;-1:-1:-1::0;;;42576:36:0::2;;;;;;;:::i;41650:283::-:0;41215:9;41228:10;41215:23;41207:66;;;;-1:-1:-1;;;41207:66:0;;;;;;;:::i;:::-;41761:14:::1;;41749:8;:26;;41741:62;;;;-1:-1:-1::0;;;41741:62:0::1;;;;;;;:::i;:::-;41846:20;;41834:8;41818:13;:11;:13::i;27932:311::-:0;28069:28;28079:4;28085:2;28089:7;28069:9;:28::i;:::-;28120:48;28143:4;28149:2;28153:7;28162:5;28120:22;:48::i;:::-;28104:133;;;;-1:-1:-1;;;28104:133:0;;;;;;;:::i;:::-;27932:311;;;;:::o;25448:394::-;25546:13;25587:16;25595:7;25587;:16::i;:::-;25571:97;;;;-1:-1:-1;;;25571:97:0;;;;;;;:::i;:::-;25677:21;25701:10;:8;:10::i;:::-;25677:34;;25756:1;25738:7;25732:21;:25;:104;;;;;;;;;;;;;;;;;25793:7;25802:18;:7;:16;:18::i;:::-;25776:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25732:104;25718:118;25448:394;-1:-1:-1;;;25448:394:0:o;43602:104::-;39507:12;:10;:12::i;:::-;-1:-1:-1;;;;;39496:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39496:23:0;;39488:68;;;;-1:-1:-1;;;39488:68:0;;;;;;;:::i;:::-;43674:10:::1;:27:::0;43602:104::o;43012:84::-;39507:12;:10;:12::i;:::-;-1:-1:-1;;;;;39496:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39496:23:0;;39488:68;;;;-1:-1:-1;;;39488:68:0;;;;;;;:::i;:::-;43074:5:::1;:17:::0;43012:84::o;32347:43::-;;;;:::o;42748:107::-;42806:7;42829:20;42843:5;42829:13;:20::i;27262:186::-;-1:-1:-1;;;;;27407:25:0;;;27384:4;27407:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27262:186::o;40176:192::-;39507:12;:10;:12::i;:::-;-1:-1:-1;;;;;39496:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39496:23:0;;39488:68;;;;-1:-1:-1;;;39488:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40265:22:0;::::1;40257:73;;;;-1:-1:-1::0;;;40257:73:0::1;;;;;;;:::i;:::-;40341:19;40351:8;40341:9;:19::i;40735:32::-:0;;;;:::o;1612:157::-;-1:-1:-1;;;;;;1721:40:0;;-1:-1:-1;;;1721:40:0;1612:157;;;:::o;28593:98::-;28658:27;28668:2;28672:8;28658:27;;;;;;;;;;;;:9;:27::i;:::-;28593:98;;:::o;28482:105::-;28569:12;;-1:-1:-1;28559:22:0;28482:105::o;17369:98::-;17449:10;17369:98;:::o;32169:172::-;32266:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;32266:29:0;-1:-1:-1;;;;;32266:29:0;;;;;;;;;32307:28;;32266:24;;32307:28;;;;;;;32169:172;;;:::o;30534:1529::-;30631:35;30669:20;30681:7;30669:11;:20::i;:::-;30631:58;;30698:22;30740:13;:18;;;-1:-1:-1;;;;;30724:34:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;30724:34:0;;:81;;;;30793:12;:10;:12::i;:::-;-1:-1:-1;;;;;30769:36:0;:20;30781:7;30769:11;:20::i;:::-;-1:-1:-1;;;;;30769:36:0;;30724:81;:142;;;-1:-1:-1;30833:18:0;;30816:50;;30853:12;:10;:12::i;30816:50::-;30698:169;;30892:17;30876:101;;;;-1:-1:-1;;;30876:101:0;;;;;;;:::i;:::-;31024:4;-1:-1:-1;;;;;31002:26:0;:13;:18;;;-1:-1:-1;;;;;31002:26:0;;30986:98;;;;-1:-1:-1;;;30986:98:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31099:16:0;;31091:66;;;;-1:-1:-1;;;31091:66:0;;;;;;;:::i;:::-;31166:43;31188:4;31194:2;31198:7;31207:1;31166:21;:43::i;:::-;31266:49;31283:1;31287:7;31296:13;:18;;;31266:8;:49::i;:::-;-1:-1:-1;;;;;31324:18:0;;;;;;:12;:18;;;;;:31;;31354:1;;31324:18;:31;;31354:1;;-1:-1:-1;;;;;31324:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;31324:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31362:16:0;;-1:-1:-1;31362:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;31362:16:0;;:29;;-1:-1:-1;;31362:29:0;;:::i;:::-;;;-1:-1:-1;;;;;31362:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31421:43:0;;;;;;;;-1:-1:-1;;;;;31421:43:0;;;;;;31447:15;31421:43;;;;;;;;;-1:-1:-1;31398:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;31398:66:0;-1:-1:-1;;;;31398:66:0;;;;-1:-1:-1;;;;;;31398:66:0;;;;;;;;31714:11;31410:7;-1:-1:-1;31714:11:0;:::i;:::-;31777:1;31736:24;;;:11;:24;;;;;:29;31692:33;;-1:-1:-1;;;;;;31736:29:0;31732:236;;31794:20;31802:11;31794:7;:20::i;:::-;31790:171;;;31854:97;;;;;;;;31881:18;;-1:-1:-1;;;;;31854:97:0;;;;;;31912:28;;;;31854:97;;;;;;;;;;-1:-1:-1;31827:24:0;;;:11;:24;;;;;;;:124;;;;;;-1:-1:-1;;;;;;31827:124:0;;;;;;;;;-1:-1:-1;;;;31827:124:0;-1:-1:-1;;;31827:124:0;;;;;;;;;;;;;;31790:171;32000:7;31996:2;-1:-1:-1;;;;;31981:27:0;31990:4;-1:-1:-1;;;;;31981:27:0;;;;;;;;;;;32015:42;32036:4;32042:2;32046:7;32055:1;32015:20;:42::i;:::-;30534:1529;;;;;;:::o;32495:846::-;32585:24;;32624:12;32616:49;;;;-1:-1:-1;;;32616:49:0;;;;;;;:::i;:::-;32672:16;32722:1;32691:28;32711:8;32691:17;:28;:::i;:::-;:32;;;;:::i;:::-;32672:51;;32762:1;32745:14;;:18;;;;:::i;:::-;32734:8;:29;32730:81;;;32802:1;32785:14;;:18;;;;:::i;:::-;32774:29;;32730:81;32926:17;32934:8;32926:7;:17::i;:::-;32918:68;;;;-1:-1:-1;;;32918:68:0;;;;;;;:::i;:::-;33010:17;32993:297;33034:8;33029:1;:13;32993:297;;33093:1;33062:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;33062:19:0;33058:225;;33108:31;33142:14;33154:1;33142:11;:14::i;:::-;33184:89;;;;;;;;33211:14;;-1:-1:-1;;;;;33184:89:0;;;;;;33238:24;;;;33184:89;;;;;;;;;;-1:-1:-1;33167:14:0;;;:11;:14;;;;;;;:106;;;;;;-1:-1:-1;;;;;;33167:106:0;;;;;;-1:-1:-1;;;;33167:106:0;-1:-1:-1;;;33167:106:0;;;;;;;;;;;;;;-1:-1:-1;33058:225:0;33044:3;;;;:::i;:::-;;;;32993:297;;;-1:-1:-1;33323:12:0;:8;33334:1;33323:12;:::i;:::-;33296:24;:39;-1:-1:-1;;;32495:846:0:o;24295:606::-;24371:21;;:::i;:::-;24412:16;24420:7;24412;:16::i;:::-;24404:71;;;;-1:-1:-1;;;24404:71:0;;;;;;;:::i;:::-;24484:26;24532:12;;24521:7;:23;24517:93;;24586:12;;24576:22;;:7;:22;:::i;:::-;:26;;24601:1;24576:26;:::i;:::-;24555:47;;24517:93;24638:7;24618:212;24655:18;24647:4;:26;24618:212;;24692:31;24726:17;;;:11;:17;;;;;;;;;24692:51;;;;;;;;;-1:-1:-1;;;;;24692:51:0;;;;;-1:-1:-1;;;24692:51:0;;;;;;;;;;;;24756:28;24752:71;;24804:9;-1:-1:-1;24797:16:0;;-1:-1:-1;;24797:16:0;24752:71;-1:-1:-1;24675:6:0;;;;:::i;:::-;;;;24618:212;;;;24838:57;;-1:-1:-1;;;24838:57:0;;;;;;;:::i;40376:173::-;40432:16;40451:6;;-1:-1:-1;;;;;40468:17:0;;;-1:-1:-1;;;;;;40468:17:0;;;;;;40501:40;;40451:6;;;;;;;40501:40;;40432:16;40501:40;40376:173;;:::o;33884:690::-;34021:4;34038:15;:2;-1:-1:-1;;;;;34038:13:0;;:15::i;:::-;34034:535;;;34093:2;-1:-1:-1;;;;;34077:36:0;;34114:12;:10;:12::i;:::-;34128:4;34134:7;34143:5;34077:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34077:72:0;;;;;;;;-1:-1:-1;;34077:72:0;;;;;;;;;;;;:::i;:::-;;;34064:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34308:13:0;;34304:215;;34341:61;;-1:-1:-1;;;34341:61:0;;;;;;;:::i;34304:215::-;34487:6;34481:13;34472:6;34468:2;34464:15;34457:38;34064:464;-1:-1:-1;;;;;;34199:55:0;-1:-1:-1;;;34199:55:0;;-1:-1:-1;34192:62:0;;34034:535;-1:-1:-1;34557:4:0;34034:535;33884:690;;;;;;:::o;42217:108::-;42277:13;42306;42299:20;;;;;:::i;17838:723::-;17894:13;18115:10;18111:53;;-1:-1:-1;18142:10:0;;;;;;;;;;;;-1:-1:-1;;;18142:10:0;;;;;;18111:53;18189:5;18174:12;18230:78;18237:9;;18230:78;;18263:8;;;;:::i;:::-;;-1:-1:-1;18286:10:0;;-1:-1:-1;18294:2:0;18286:10;;:::i;:::-;;;18230:78;;;18318:19;18350:6;18340:17;;;;;;-1:-1:-1;;;18340:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18340:17:0;;18318:39;;18368:154;18375:10;;18368:154;;18402:11;18412:1;18402:11;;:::i;:::-;;-1:-1:-1;18471:10:0;18479:2;18471:5;:10;:::i;:::-;18458:24;;:2;:24;:::i;:::-;18445:39;;18428:6;18435;18428:14;;;;;;-1:-1:-1;;;18428:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;18428:56:0;;;;;;;;-1:-1:-1;18499:11:0;18508:2;18499:11;;:::i;:::-;;;18368:154;;24049:240;24110:7;-1:-1:-1;;;;;24142:19:0;;24126:102;;;;-1:-1:-1;;;24126:102:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;24250:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;24250:32:0;;-1:-1:-1;;;;;24250:32:0;;24049:240::o;29030:1272::-;29158:12;;-1:-1:-1;;;;;29185:16:0;;29177:62;;;;-1:-1:-1;;;29177:62:0;;;;;;;:::i;:::-;29376:21;29384:12;29376:7;:21::i;:::-;29375:22;29367:64;;;;-1:-1:-1;;;29367:64:0;;;;;;;:::i;:::-;29458:12;;29446:8;:24;;29438:71;;;;-1:-1:-1;;;29438:71:0;;;;;;;:::i;:::-;29518:61;29548:1;29552:2;29556:12;29570:8;29518:21;:61::i;:::-;-1:-1:-1;;;;;29621:16:0;;29588:30;29621:16;;;:12;:16;;;;;;;;;29588:49;;;;;;;;;-1:-1:-1;;;;;29588:49:0;;;;;-1:-1:-1;;;29588:49:0;;;;;;;;;;;29663:119;;;;;;;;29683:19;;29588:49;;29663:119;;;29683:39;;29713:8;;29683:39;:::i;:::-;-1:-1:-1;;;;;29663:119:0;;;;;29766:8;29731:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;29663:119:0;;;;;;-1:-1:-1;;;;;29644:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;;;-1:-1:-1;;;29644:138:0;;;;-1:-1:-1;;29644:138:0;;;;;;;;;;;;;;;;;29817:43;;;;;;;;;;;29843:15;29817:43;;;;;;;;29789:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;29789:71:0;-1:-1:-1;;;;29789:71:0;;;;-1:-1:-1;;;;;;29789:71:0;;;;;;;;;;;;;;;29801:12;;29913:281;29937:8;29933:1;:12;29913:281;;;29966:38;;29991:12;;-1:-1:-1;;;;;29966:38:0;;;29983:1;;29966:38;;29983:1;;29966:38;30031:59;30062:1;30066:2;30070:12;30084:5;30031:22;:59::i;:::-;30013:150;;;;-1:-1:-1;;;30013:150:0;;;;;;;:::i;:::-;30172:14;;;;:::i;:::-;;;;29947:3;;;;;:::i;:::-;;;;29913:281;;;-1:-1:-1;30202:12:0;:27;;;30236:60;30265:1;30269:2;30273:12;30287:8;30236:20;:60::i;2486:387::-;2809:20;2857:8;;;2486:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:175:1;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:1178::-;;;;;1195:3;1183:9;1174:7;1170:23;1166:33;1163:2;;;1217:6;1209;1202:22;1163:2;1245:31;1266:9;1245:31;:::i;:::-;1235:41;;1295:2;1316:40;1352:2;1341:9;1337:18;1316:40;:::i;:::-;1306:50;;1403:2;1392:9;1388:18;1375:32;1365:42;;1458:2;1447:9;1443:18;1430:32;1481:18;1522:2;1514:6;1511:14;1508:2;;;1543:6;1535;1528:22;1508:2;1586:6;1575:9;1571:22;1561:32;;1631:7;1624:4;1620:2;1616:13;1612:27;1602:2;;1658:6;1650;1643:22;1602:2;1699;1686:16;1721:2;1717;1714:10;1711:2;;;1727:18;;:::i;:::-;1776:2;1770:9;1845:2;1826:13;;-1:-1:-1;;1822:27:1;1810:40;;1806:49;;1870:18;;;1890:22;;;1867:46;1864:2;;;1916:18;;:::i;:::-;1952:2;1945:22;1976:18;;;2013:11;;;2009:20;;2006:33;-1:-1:-1;2003:2:1;;;2057:6;2049;2042:22;2003:2;2118;2113;2109;2105:11;2100:2;2092:6;2088:15;2075:46;2141:15;;;2137:24;;;2130:40;;;;-1:-1:-1;1153:1048:1;;;;-1:-1:-1;1153:1048:1;;-1:-1:-1;;1153:1048:1:o;2206:369::-;;;2332:2;2320:9;2311:7;2307:23;2303:32;2300:2;;;2353:6;2345;2338:22;2300:2;2381:31;2402:9;2381:31;:::i;:::-;2371:41;;2462:2;2451:9;2447:18;2434:32;2509:5;2502:13;2495:21;2488:5;2485:32;2475:2;;2536:6;2528;2521:22;2475:2;2564:5;2554:15;;;2290:285;;;;;:::o;2580:266::-;;;2709:2;2697:9;2688:7;2684:23;2680:32;2677:2;;;2730:6;2722;2715:22;2677:2;2758:31;2779:9;2758:31;:::i;:::-;2748:41;2836:2;2821:18;;;;2808:32;;-1:-1:-1;;;2667:179:1:o;2851:257::-;;2962:2;2950:9;2941:7;2937:23;2933:32;2930:2;;;2983:6;2975;2968:22;2930:2;3027:9;3014:23;3046:32;3072:5;3046:32;:::i;3113:261::-;;3235:2;3223:9;3214:7;3210:23;3206:32;3203:2;;;3256:6;3248;3241:22;3203:2;3293:9;3287:16;3312:32;3338:5;3312:32;:::i;3379:642::-;;;3511:2;3499:9;3490:7;3486:23;3482:32;3479:2;;;3532:6;3524;3517:22;3479:2;3577:9;3564:23;3606:18;3647:2;3639:6;3636:14;3633:2;;;3668:6;3660;3653:22;3633:2;3711:6;3700:9;3696:22;3686:32;;3756:7;3749:4;3745:2;3741:13;3737:27;3727:2;;3783:6;3775;3768:22;3727:2;3828;3815:16;3854:2;3846:6;3843:14;3840:2;;;3875:6;3867;3860:22;3840:2;3925:7;3920:2;3911:6;3907:2;3903:15;3899:24;3896:37;3893:2;;;3951:6;3943;3936:22;3893:2;3987;3979:11;;;;;4009:6;;-1:-1:-1;3469:552:1;;-1:-1:-1;;;;3469:552:1:o;4026:190::-;;4138:2;4126:9;4117:7;4113:23;4109:32;4106:2;;;4159:6;4151;4144:22;4106:2;-1:-1:-1;4187:23:1;;4096:120;-1:-1:-1;4096:120:1:o;4221:259::-;;4302:5;4296:12;4329:6;4324:3;4317:19;4345:63;4401:6;4394:4;4389:3;4385:14;4378:4;4371:5;4367:16;4345:63;:::i;:::-;4462:2;4441:15;-1:-1:-1;;4437:29:1;4428:39;;;;4469:4;4424:50;;4272:208;-1:-1:-1;;4272:208:1:o;4485:470::-;;4702:6;4696:13;4718:53;4764:6;4759:3;4752:4;4744:6;4740:17;4718:53;:::i;:::-;4834:13;;4793:16;;;;4856:57;4834:13;4793:16;4890:4;4878:17;;4856:57;:::i;:::-;4929:20;;4672:283;-1:-1:-1;;;;4672:283:1:o;4960:205::-;5160:3;5151:14::o;5170:203::-;-1:-1:-1;;;;;5334:32:1;;;;5316:51;;5304:2;5289:18;;5271:102::o;5378:490::-;-1:-1:-1;;;;;5647:15:1;;;5629:34;;5699:15;;5694:2;5679:18;;5672:43;5746:2;5731:18;;5724:34;;;5794:3;5789:2;5774:18;;5767:31;;;5378:490;;5815:47;;5842:19;;5834:6;5815:47;:::i;:::-;5807:55;5581:287;-1:-1:-1;;;;;;5581:287:1:o;5873:187::-;6038:14;;6031:22;6013:41;;6001:2;5986:18;;5968:92::o;6065:221::-;;6214:2;6203:9;6196:21;6234:46;6276:2;6265:9;6261:18;6253:6;6234:46;:::i;6291:398::-;6493:2;6475:21;;;6532:2;6512:18;;;6505:30;6571:34;6566:2;6551:18;;6544:62;-1:-1:-1;;;6637:2:1;6622:18;;6615:32;6679:3;6664:19;;6465:224::o;6694:347::-;6896:2;6878:21;;;6935:2;6915:18;;;6908:30;6974:25;6969:2;6954:18;;6947:53;7032:2;7017:18;;6868:173::o;7046:402::-;7248:2;7230:21;;;7287:2;7267:18;;;7260:30;7326:34;7321:2;7306:18;;7299:62;-1:-1:-1;;;7392:2:1;7377:18;;7370:36;7438:3;7423:19;;7220:228::o;7453:406::-;7655:2;7637:21;;;7694:2;7674:18;;;7667:30;7733:34;7728:2;7713:18;;7706:62;-1:-1:-1;;;7799:2:1;7784:18;;7777:40;7849:3;7834:19;;7627:232::o;7864:399::-;8066:2;8048:21;;;8105:2;8085:18;;;8078:30;8144:34;8139:2;8124:18;;8117:62;-1:-1:-1;;;8210:2:1;8195:18;;8188:33;8253:3;8238:19;;8038:225::o;8268:401::-;8470:2;8452:21;;;8509:2;8489:18;;;8482:30;8548:34;8543:2;8528:18;;8521:62;-1:-1:-1;;;8614:2:1;8599:18;;8592:35;8659:3;8644:19;;8442:227::o;8674:413::-;8876:2;8858:21;;;8915:2;8895:18;;;8888:30;8954:34;8949:2;8934:18;;8927:62;-1:-1:-1;;;9020:2:1;9005:18;;8998:47;9077:3;9062:19;;8848:239::o;9092:354::-;9294:2;9276:21;;;9333:2;9313:18;;;9306:30;9372:32;9367:2;9352:18;;9345:60;9437:2;9422:18;;9266:180::o;9451:421::-;9653:2;9635:21;;;9692:2;9672:18;;;9665:30;9731:34;9726:2;9711:18;;9704:62;9802:27;9797:2;9782:18;;9775:55;9862:3;9847:19;;9625:247::o;9877:348::-;10079:2;10061:21;;;10118:2;10098:18;;;10091:30;10157:26;10152:2;10137:18;;10130:54;10216:2;10201:18;;10051:174::o;10230:407::-;10432:2;10414:21;;;10471:2;10451:18;;;10444:30;10510:34;10505:2;10490:18;;10483:62;-1:-1:-1;;;10576:2:1;10561:18;;10554:41;10627:3;10612:19;;10404:233::o;10642:342::-;10844:2;10826:21;;;10883:2;10863:18;;;10856:30;-1:-1:-1;;;10917:2:1;10902:18;;10895:48;10975:2;10960:18;;10816:168::o;10989:402::-;11191:2;11173:21;;;11230:2;11210:18;;;11203:30;11269:34;11264:2;11249:18;;11242:62;-1:-1:-1;;;11335:2:1;11320:18;;11313:36;11381:3;11366:19;;11163:228::o;11396:356::-;11598:2;11580:21;;;11617:18;;;11610:30;11676:34;11671:2;11656:18;;11649:62;11743:2;11728:18;;11570:182::o;11757:411::-;11959:2;11941:21;;;11998:2;11978:18;;;11971:30;12037:34;12032:2;12017:18;;12010:62;-1:-1:-1;;;12103:2:1;12088:18;;12081:45;12158:3;12143:19;;11931:237::o;12173:350::-;12375:2;12357:21;;;12414:2;12394:18;;;12387:30;12453:28;12448:2;12433:18;;12426:56;12514:2;12499:18;;12347:176::o;12528:414::-;12730:2;12712:21;;;12769:2;12749:18;;;12742:30;12808:34;12803:2;12788:18;;12781:62;-1:-1:-1;;;12874:2:1;12859:18;;12852:48;12932:3;12917:19;;12702:240::o;12947:398::-;13149:2;13131:21;;;13188:2;13168:18;;;13161:30;13227:34;13222:2;13207:18;;13200:62;-1:-1:-1;;;13293:2:1;13278:18;;13271:32;13335:3;13320:19;;13121:224::o;13350:340::-;13552:2;13534:21;;;13591:2;13571:18;;;13564:30;-1:-1:-1;;;13625:2:1;13610:18;;13603:46;13681:2;13666:18;;13524:166::o;13695:415::-;13897:2;13879:21;;;13936:2;13916:18;;;13909:30;13975:34;13970:2;13955:18;;13948:62;-1:-1:-1;;;14041:2:1;14026:18;;14019:49;14100:3;14085:19;;13869:241::o;14115:346::-;14317:2;14299:21;;;14356:2;14336:18;;;14329:30;-1:-1:-1;;;14390:2:1;14375:18;;14368:52;14452:2;14437:18;;14289:172::o;14466:353::-;14668:2;14650:21;;;14707:2;14687:18;;;14680:30;14746:31;14741:2;14726:18;;14719:59;14810:2;14795:18;;14640:179::o;14824:397::-;15026:2;15008:21;;;15065:2;15045:18;;;15038:30;15104:34;15099:2;15084:18;;15077:62;-1:-1:-1;;;15170:2:1;15155:18;;15148:31;15211:3;15196:19;;14998:223::o;15226:410::-;15428:2;15410:21;;;15467:2;15447:18;;;15440:30;15506:34;15501:2;15486:18;;15479:62;-1:-1:-1;;;15572:2:1;15557:18;;15550:44;15626:3;15611:19;;15400:236::o;15641:402::-;15843:2;15825:21;;;15882:2;15862:18;;;15855:30;15921:34;15916:2;15901:18;;15894:62;-1:-1:-1;;;15987:2:1;15972:18;;15965:36;16033:3;16018:19;;15815:228::o;16048:355::-;16250:2;16232:21;;;16289:2;16269:18;;;16262:30;16328:33;16323:2;16308:18;;16301:61;16394:2;16379:18;;16222:181::o;16408:411::-;16610:2;16592:21;;;16649:2;16629:18;;;16622:30;16688:34;16683:2;16668:18;;16661:62;-1:-1:-1;;;16754:2:1;16739:18;;16732:45;16809:3;16794:19;;16582:237::o;16824:409::-;17026:2;17008:21;;;17065:2;17045:18;;;17038:30;17104:34;17099:2;17084:18;;17077:62;-1:-1:-1;;;17170:2:1;17155:18;;17148:43;17223:3;17208:19;;16998:235::o;17238:398::-;17440:2;17422:21;;;17479:2;17459:18;;;17452:30;17518:34;17513:2;17498:18;;17491:62;-1:-1:-1;;;17584:2:1;17569:18;;17562:32;17626:3;17611:19;;17412:224::o;17641:360::-;17871:13;;-1:-1:-1;;;;;17867:39:1;17849:58;;17967:4;17955:17;;;17949:24;17975:18;17945:49;17923:20;;;17916:79;;;;17837:2;17822:18;;17804:197::o;18006:177::-;18152:25;;;18140:2;18125:18;;18107:76::o;18188:200::-;18362:18;18350:31;;;;18332:50;;18320:2;18305:18;;18287:101::o;18393:253::-;;-1:-1:-1;;;;;18522:2:1;18519:1;18515:10;18552:2;18549:1;18545:10;18583:3;18579:2;18575:12;18570:3;18567:21;18564:2;;;18591:18;;:::i;18651:128::-;;18722:1;18718:6;18715:1;18712:13;18709:2;;;18728:18;;:::i;:::-;-1:-1:-1;18764:9:1;;18699:80::o;18784:120::-;;18850:1;18840:2;;18855:18;;:::i;:::-;-1:-1:-1;18889:9:1;;18830:74::o;18909:168::-;;19015:1;19011;19007:6;19003:14;19000:1;18997:21;18992:1;18985:9;18978:17;18974:45;18971:2;;;19022:18;;:::i;:::-;-1:-1:-1;19062:9:1;;18961:116::o;19082:246::-;;-1:-1:-1;;;;;19235:10:1;;;;19205;;19257:12;;;19254:2;;;19272:18;;:::i;:::-;19309:13;;19131:197;-1:-1:-1;;;19131:197:1:o;19333:125::-;;19401:1;19398;19395:8;19392:2;;;19406:18;;:::i;:::-;-1:-1:-1;19443:9:1;;19382:76::o;19463:258::-;19535:1;19545:113;19559:6;19556:1;19553:13;19545:113;;;19635:11;;;19629:18;19616:11;;;19609:39;19581:2;19574:10;19545:113;;;19676:6;19673:1;19670:13;19667:2;;;-1:-1:-1;;19711:1:1;19693:16;;19686:27;19516:205::o;19726:136::-;;19793:5;19783:2;;19802:18;;:::i;:::-;-1:-1:-1;;;19838:18:1;;19773:89::o;19867:380::-;19952:1;19942:12;;19999:1;19989:12;;;20010:2;;20064:4;20056:6;20052:17;20042:27;;20010:2;20117;20109:6;20106:14;20086:18;20083:38;20080:2;;;20163:10;20158:3;20154:20;20151:1;20144:31;20198:4;20195:1;20188:15;20226:4;20223:1;20216:15;20080:2;;19922:325;;;:::o;20252:135::-;;-1:-1:-1;;20312:17:1;;20309:2;;;20332:18;;:::i;:::-;-1:-1:-1;20379:1:1;20368:13;;20299:88::o;20392:112::-;;20450:1;20440:2;;20455:18;;:::i;:::-;-1:-1:-1;20489:9:1;;20430:74::o;20509:127::-;20570:10;20565:3;20561:20;20558:1;20551:31;20601:4;20598:1;20591:15;20625:4;20622:1;20615:15;20641:127;20702:10;20697:3;20693:20;20690:1;20683:31;20733:4;20730:1;20723:15;20757:4;20754:1;20747:15;20773:127;20834:10;20829:3;20825:20;20822:1;20815:31;20865:4;20862:1;20855:15;20889:4;20886:1;20879:15;20905:133;-1:-1:-1;;;;;;20981:32:1;;20971:43;;20961:2;;21028:1;21025;21018:12

Swarm Source

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