ETH Price: $2,507.60 (-3.12%)

Token

OkayApesClub (OAC)
 

Overview

Max Total Supply

9,010 OAC

Holders

229

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 OAC
0x3ee13342db4bc021233f9e9f5c83d7e0f0995ae3
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:
OkayApesClub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: ERC721A.sol


// Creators: locationtba.eth, 2pmflow.eth

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..).
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable 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.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_
  ) {
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
  }

  /**
   * @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(totalSupply). 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:
   *
   * - `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 > currentIndex - 1) {
      endIndex = currentIndex - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: OkayApes.sol




 
 /*

============================================== Okay Apes Club ==============================================
*/                                                                                                         



pragma solidity ^0.8.0;


/**
 * @title Okay Apes Club
 */
                                                                                                     
                                                                                            

 contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}
 
contract OkayApesClub is ERC721A, Ownable {
        
    bool public saleIsActive = true;
    uint256 public Price = 0.045 ether;
    
    string private _baseURIextended = "https://okayapes.s3.us-west-1.amazonaws.com/metadata/okayapes-metadata-";	     
    address private proxyRegistryAddress;
    
	
    constructor() ERC721A("OkayApesClub", "OAC",500) {       
    }

    function setBaseURI(string memory baseURI_) external onlyOwner() {
        _baseURIextended = baseURI_;
    }

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

    function setPrice(uint256 newPrice) public onlyOwner {
        Price = newPrice;
    }
    
    function setProxyRegistryAddress(address proxyAddress) external onlyOwner {
        proxyRegistryAddress = proxyAddress;
    }

    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    function mint(uint256 numberOfTokens) external payable {    
        uint256 totalNum = 10000;
        require(totalSupply() + numberOfTokens <= totalNum, "already mint out");      
        require((Price * numberOfTokens) <= msg.value, "Don't send under (in ETH).");
        _safeMint(msg.sender, numberOfTokens);       	                
    }

    function mintBatch(address to, uint256 quantity) external onlyOwner {
        uint256 totalNum = 10000;
        uint256 maxBatchSize = 500;
        require(totalSupply() + quantity <= totalNum, "already mint out");
        require(quantity % maxBatchSize == 0, "can only mint a multiple of the maxBatchSize");

        uint256 numChunks = quantity / maxBatchSize;
        for (uint256 i = 0; i < numChunks; i++) {
            _safeMint(to, maxBatchSize);
        }
    }

    function gift(address _to,uint256 numberOfTokens) external onlyOwner {    
        uint256 totalNum = 10000; 
        require(totalSupply() + numberOfTokens <= totalNum, "already mint out");            
        _safeMint(_to, numberOfTokens);
    }

    function withdraw() public onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"proxyAddress","type":"address"}],"name":"setProxyRegistryAddress","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60008080556007556008805460ff60a01b1916600160a01b179055669fdf42f6e48000600955610120604052604760a081815290620025ff60c03980516200005091600a916020909101906200019d565b503480156200005e57600080fd5b506040518060400160405280600c81526020016b27b5b0bca0b832b9a1b63ab160a11b815250604051806040016040528060038152602001624f414360e81b8152506101f460008111620001085760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840160405180910390fd5b82516200011d9060019060208601906200019d565b508151620001339060029060208501906200019d565b5060805250620001459050336200014b565b62000280565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001ab9062000243565b90600052602060002090601f016020900481019282620001cf57600085556200021a565b82601f10620001ea57805160ff19168380011785556200021a565b828001600101855582156200021a579182015b828111156200021a578251825591602001919060010190620001fd565b50620002289291506200022c565b5090565b5b808211156200022857600081556001016200022d565b600181811c908216806200025857607f821691505b602082108114156200027a57634e487b7160e01b600052602260045260246000fd5b50919050565b608051612355620002aa600039600081816116420152818161166c0152611a9301526123556000f3fe6080604052600436106101c25760003560e01c8063715018a6116100f7578063b88d4fde11610095578063d7224ba011610064578063d7224ba0146104dd578063e985e9c5146104f3578063eb8d244414610513578063f2fde38b1461053457600080fd5b8063b88d4fde1461045d578063c87b56dd1461047d578063cbce4c971461049d578063d26ea6c0146104bd57600080fd5b806395d89b41116100d157806395d89b41146103ff5780639dfde20114610414578063a0712d681461042a578063a22cb4651461043d57600080fd5b8063715018a6146103ac5780638da5cb5b146103c157806391b7f5ed146103df57600080fd5b80632f745c59116101645780634f6ccce71161013e5780634f6ccce71461032c57806355f804b31461034c5780636352211e1461036c57806370a082311461038c57600080fd5b80632f745c59146102d75780633ccfd60b146102f757806342842e0e1461030c57600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806323b872dd14610297578063248b71fc146102b757600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611f2d565b610554565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105c1565b6040516101f3919061207e565b34801561022a57600080fd5b5061023e610239366004611fcd565b610653565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611f01565b6106e3565b005b34801561028457600080fd5b506000545b6040519081526020016101f3565b3480156102a357600080fd5b506102766102b2366004611e0d565b6107fb565b3480156102c357600080fd5b506102766102d2366004611f01565b610806565b3480156102e357600080fd5b506102896102f2366004611f01565b610912565b34801561030357600080fd5b50610276610a80565b34801561031857600080fd5b50610276610327366004611e0d565b610b6b565b34801561033857600080fd5b50610289610347366004611fcd565b610b86565b34801561035857600080fd5b50610276610367366004611f84565b610be8565b34801561037857600080fd5b5061023e610387366004611fcd565b610c29565b34801561039857600080fd5b506102896103a7366004611db7565b610c3b565b3480156103b857600080fd5b50610276610ccc565b3480156103cd57600080fd5b506008546001600160a01b031661023e565b3480156103eb57600080fd5b506102766103fa366004611fcd565b610d02565b34801561040b57600080fd5b50610211610d31565b34801561042057600080fd5b5061028960095481565b610276610438366004611fcd565b610d40565b34801561044957600080fd5b50610276610458366004611ece565b610ddd565b34801561046957600080fd5b50610276610478366004611e4e565b610ea2565b34801561048957600080fd5b50610211610498366004611fcd565b610edb565b3480156104a957600080fd5b506102766104b8366004611f01565b610fa8565b3480156104c957600080fd5b506102766104d8366004611db7565b611012565b3480156104e957600080fd5b5061028960075481565b3480156104ff57600080fd5b506101e761050e366004611dd4565b61105e565b34801561051f57600080fd5b506008546101e790600160a01b900460ff1681565b34801561054057600080fd5b5061027661054f366004611db7565b61112e565b60006001600160e01b031982166380ac58cd60e01b148061058557506001600160e01b03198216635b5e139f60e01b145b806105a057506001600160e01b0319821663780e9d6360e01b145b806105bb57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105d090612232565b80601f01602080910402602001604051908101604052809291908181526020018280546105fc90612232565b80156106495780601f1061061e57610100808354040283529160200191610649565b820191906000526020600020905b81548152906001019060200180831161062c57829003601f168201915b5050505050905090565b6000610660826000541190565b6106c75760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106ee82610c29565b9050806001600160a01b0316836001600160a01b0316141561075d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106be565b336001600160a01b03821614806107795750610779813361105e565b6107eb5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106be565b6107f68383836111c6565b505050565b6107f6838383611222565b6008546001600160a01b031633146108305760405162461bcd60e51b81526004016106be90612091565b6127106101f4818361084160005490565b61084b9190612165565b11156108695760405162461bcd60e51b81526004016106be90612119565b6108738184612288565b156108d55760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b60648201526084016106be565b60006108e1828561217d565b905060005b8181101561090a576108f886846115a6565b806109028161226d565b9150506108e6565b505050505050565b600061091d83610c3b565b82106109765760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106be565b600080549080805b83811015610a20576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109d157805192505b876001600160a01b0316836001600160a01b03161415610a0d57868414156109ff575093506105bb92505050565b83610a098161226d565b9450505b5080610a188161226d565b91505061097e565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106be565b6008546001600160a01b03163314610aaa5760405162461bcd60e51b81526004016106be90612091565b604051600090339047908381818185875af1925050503d8060008114610aec576040519150601f19603f3d011682016040523d82523d6000602084013e610af1565b606091505b5050905080610b685760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016106be565b50565b6107f683838360405180602001604052806000815250610ea2565b600080548210610be45760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106be565b5090565b6008546001600160a01b03163314610c125760405162461bcd60e51b81526004016106be90612091565b8051610c2590600a906020840190611cb1565b5050565b6000610c34826115c0565b5192915050565b60006001600160a01b038216610ca75760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106be565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610cf65760405162461bcd60e51b81526004016106be90612091565b610d00600061176a565b565b6008546001600160a01b03163314610d2c5760405162461bcd60e51b81526004016106be90612091565b600955565b6060600280546105d090612232565b6127108082610d4e60005490565b610d589190612165565b1115610d765760405162461bcd60e51b81526004016106be90612119565b3482600954610d859190612191565b1115610dd35760405162461bcd60e51b815260206004820152601a60248201527f446f6e27742073656e6420756e6465722028696e20455448292e00000000000060448201526064016106be565b610c2533836115a6565b6001600160a01b038216331415610e365760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106be565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ead848484611222565b610eb9848484846117bc565b610ed55760405162461bcd60e51b81526004016106be906120c6565b50505050565b6060610ee8826000541190565b610f4c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106be565b6000610f566118c9565b90506000815111610f765760405180602001604052806000815250610fa1565b80610f80846118d8565b604051602001610f91929190612012565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610fd25760405162461bcd60e51b81526004016106be90612091565b6127108082610fe060005490565b610fea9190612165565b11156110085760405162461bcd60e51b81526004016106be90612119565b6107f683836115a6565b6008546001600160a01b0316331461103c5760405162461bcd60e51b81526004016106be90612091565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b600b5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b1580156110ab57600080fd5b505afa1580156110bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e39190611f67565b6001600160a01b031614156110fc5760019150506105bb565b6001600160a01b0380851660009081526006602090815260408083209387168352929052205460ff165b949350505050565b6008546001600160a01b031633146111585760405162461bcd60e51b81526004016106be90612091565b6001600160a01b0381166111bd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106be565b610b688161176a565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061122d826115c0565b80519091506000906001600160a01b0316336001600160a01b0316148061126457503361125984610653565b6001600160a01b0316145b8061127657508151611276903361105e565b9050806112e05760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106be565b846001600160a01b031682600001516001600160a01b0316146113545760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106be565b6001600160a01b0384166113b85760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106be565b6113c860008484600001516111c6565b6001600160a01b03851660009081526004602052604081208054600192906113fa9084906001600160801b03166121b0565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261144691859116612143565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556114ce846001612165565b6000818152600360205260409020549091506001600160a01b0316611560576114f8816000541190565b156115605760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461090a565b610c258282604051806020016040528060008152506119d6565b60408051808201909152600080825260208201526115df826000541190565b61163e5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106be565b60007f0000000000000000000000000000000000000000000000000000000000000000831061169f576116917f0000000000000000000000000000000000000000000000000000000000000000846121d8565b61169c906001612165565b90505b825b818110611709576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156116f657949350505050565b50806117018161221b565b9150506116a1565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016106be565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156118be57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611800903390899088908890600401612041565b602060405180830381600087803b15801561181a57600080fd5b505af192505050801561184a575060408051601f3d908101601f1916820190925261184791810190611f4a565b60015b6118a4573d808015611878576040519150601f19603f3d011682016040523d82523d6000602084013e61187d565b606091505b50805161189c5760405162461bcd60e51b81526004016106be906120c6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611126565b506001949350505050565b6060600a80546105d090612232565b6060816118fc5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561192657806119108161226d565b915061191f9050600a8361217d565b9150611900565b60008167ffffffffffffffff811115611941576119416122de565b6040519080825280601f01601f19166020018201604052801561196b576020820181803683370190505b5090505b8415611126576119806001836121d8565b915061198d600a86612288565b611998906030612165565b60f81b8183815181106119ad576119ad6122c8565b60200101906001600160f81b031916908160001a9053506119cf600a8661217d565b945061196f565b6000546001600160a01b038416611a395760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106be565b611a44816000541190565b15611a915760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016106be565b7f0000000000000000000000000000000000000000000000000000000000000000831115611b0c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016106be565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611b68908790612143565b6001600160801b03168152602001858360200151611b869190612143565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611ca65760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c6a60008884886117bc565b611c865760405162461bcd60e51b81526004016106be906120c6565b81611c908161226d565b9250508080611c9e9061226d565b915050611c1d565b50600081905561090a565b828054611cbd90612232565b90600052602060002090601f016020900481019282611cdf5760008555611d25565b82601f10611cf857805160ff1916838001178555611d25565b82800160010185558215611d25579182015b82811115611d25578251825591602001919060010190611d0a565b50610be49291505b80821115610be45760008155600101611d2d565b600067ffffffffffffffff80841115611d5c57611d5c6122de565b604051601f8501601f19908116603f01168101908282118183101715611d8457611d846122de565b81604052809350858152868686011115611d9d57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611dc957600080fd5b8135610fa1816122f4565b60008060408385031215611de757600080fd5b8235611df2816122f4565b91506020830135611e02816122f4565b809150509250929050565b600080600060608486031215611e2257600080fd5b8335611e2d816122f4565b92506020840135611e3d816122f4565b929592945050506040919091013590565b60008060008060808587031215611e6457600080fd5b8435611e6f816122f4565b93506020850135611e7f816122f4565b925060408501359150606085013567ffffffffffffffff811115611ea257600080fd5b8501601f81018713611eb357600080fd5b611ec287823560208401611d41565b91505092959194509250565b60008060408385031215611ee157600080fd5b8235611eec816122f4565b915060208301358015158114611e0257600080fd5b60008060408385031215611f1457600080fd5b8235611f1f816122f4565b946020939093013593505050565b600060208284031215611f3f57600080fd5b8135610fa181612309565b600060208284031215611f5c57600080fd5b8151610fa181612309565b600060208284031215611f7957600080fd5b8151610fa1816122f4565b600060208284031215611f9657600080fd5b813567ffffffffffffffff811115611fad57600080fd5b8201601f81018413611fbe57600080fd5b61112684823560208401611d41565b600060208284031215611fdf57600080fd5b5035919050565b60008151808452611ffe8160208601602086016121ef565b601f01601f19169290920160200192915050565b600083516120248184602088016121ef565b8351908301906120388183602088016121ef565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061207490830184611fe6565b9695505050505050565b602081526000610fa16020830184611fe6565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60208082526010908201526f185b1c9958591e481b5a5b9d081bdd5d60821b604082015260600190565b60006001600160801b038083168185168083038211156120385761203861229c565b600082198211156121785761217861229c565b500190565b60008261218c5761218c6122b2565b500490565b60008160001904831182151516156121ab576121ab61229c565b500290565b60006001600160801b03838116908316818110156121d0576121d061229c565b039392505050565b6000828210156121ea576121ea61229c565b500390565b60005b8381101561220a5781810151838201526020016121f2565b83811115610ed55750506000910152565b60008161222a5761222a61229c565b506000190190565b600181811c9082168061224657607f821691505b6020821081141561226757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122815761228161229c565b5060010190565b600082612297576122976122b2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610b6857600080fd5b6001600160e01b031981168114610b6857600080fdfea2646970667358221220848442a6813653d40bcee1bfdc1df588ac55bf16b1ae94cea16708b75e57282964736f6c6343000807003368747470733a2f2f6f6b6179617065732e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6d657461646174612f6f6b6179617065732d6d657461646174612d

Deployed Bytecode

0x6080604052600436106101c25760003560e01c8063715018a6116100f7578063b88d4fde11610095578063d7224ba011610064578063d7224ba0146104dd578063e985e9c5146104f3578063eb8d244414610513578063f2fde38b1461053457600080fd5b8063b88d4fde1461045d578063c87b56dd1461047d578063cbce4c971461049d578063d26ea6c0146104bd57600080fd5b806395d89b41116100d157806395d89b41146103ff5780639dfde20114610414578063a0712d681461042a578063a22cb4651461043d57600080fd5b8063715018a6146103ac5780638da5cb5b146103c157806391b7f5ed146103df57600080fd5b80632f745c59116101645780634f6ccce71161013e5780634f6ccce71461032c57806355f804b31461034c5780636352211e1461036c57806370a082311461038c57600080fd5b80632f745c59146102d75780633ccfd60b146102f757806342842e0e1461030c57600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806323b872dd14610297578063248b71fc146102b757600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611f2d565b610554565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105c1565b6040516101f3919061207e565b34801561022a57600080fd5b5061023e610239366004611fcd565b610653565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611f01565b6106e3565b005b34801561028457600080fd5b506000545b6040519081526020016101f3565b3480156102a357600080fd5b506102766102b2366004611e0d565b6107fb565b3480156102c357600080fd5b506102766102d2366004611f01565b610806565b3480156102e357600080fd5b506102896102f2366004611f01565b610912565b34801561030357600080fd5b50610276610a80565b34801561031857600080fd5b50610276610327366004611e0d565b610b6b565b34801561033857600080fd5b50610289610347366004611fcd565b610b86565b34801561035857600080fd5b50610276610367366004611f84565b610be8565b34801561037857600080fd5b5061023e610387366004611fcd565b610c29565b34801561039857600080fd5b506102896103a7366004611db7565b610c3b565b3480156103b857600080fd5b50610276610ccc565b3480156103cd57600080fd5b506008546001600160a01b031661023e565b3480156103eb57600080fd5b506102766103fa366004611fcd565b610d02565b34801561040b57600080fd5b50610211610d31565b34801561042057600080fd5b5061028960095481565b610276610438366004611fcd565b610d40565b34801561044957600080fd5b50610276610458366004611ece565b610ddd565b34801561046957600080fd5b50610276610478366004611e4e565b610ea2565b34801561048957600080fd5b50610211610498366004611fcd565b610edb565b3480156104a957600080fd5b506102766104b8366004611f01565b610fa8565b3480156104c957600080fd5b506102766104d8366004611db7565b611012565b3480156104e957600080fd5b5061028960075481565b3480156104ff57600080fd5b506101e761050e366004611dd4565b61105e565b34801561051f57600080fd5b506008546101e790600160a01b900460ff1681565b34801561054057600080fd5b5061027661054f366004611db7565b61112e565b60006001600160e01b031982166380ac58cd60e01b148061058557506001600160e01b03198216635b5e139f60e01b145b806105a057506001600160e01b0319821663780e9d6360e01b145b806105bb57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105d090612232565b80601f01602080910402602001604051908101604052809291908181526020018280546105fc90612232565b80156106495780601f1061061e57610100808354040283529160200191610649565b820191906000526020600020905b81548152906001019060200180831161062c57829003601f168201915b5050505050905090565b6000610660826000541190565b6106c75760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106ee82610c29565b9050806001600160a01b0316836001600160a01b0316141561075d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106be565b336001600160a01b03821614806107795750610779813361105e565b6107eb5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106be565b6107f68383836111c6565b505050565b6107f6838383611222565b6008546001600160a01b031633146108305760405162461bcd60e51b81526004016106be90612091565b6127106101f4818361084160005490565b61084b9190612165565b11156108695760405162461bcd60e51b81526004016106be90612119565b6108738184612288565b156108d55760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b60648201526084016106be565b60006108e1828561217d565b905060005b8181101561090a576108f886846115a6565b806109028161226d565b9150506108e6565b505050505050565b600061091d83610c3b565b82106109765760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106be565b600080549080805b83811015610a20576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109d157805192505b876001600160a01b0316836001600160a01b03161415610a0d57868414156109ff575093506105bb92505050565b83610a098161226d565b9450505b5080610a188161226d565b91505061097e565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106be565b6008546001600160a01b03163314610aaa5760405162461bcd60e51b81526004016106be90612091565b604051600090339047908381818185875af1925050503d8060008114610aec576040519150601f19603f3d011682016040523d82523d6000602084013e610af1565b606091505b5050905080610b685760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016106be565b50565b6107f683838360405180602001604052806000815250610ea2565b600080548210610be45760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106be565b5090565b6008546001600160a01b03163314610c125760405162461bcd60e51b81526004016106be90612091565b8051610c2590600a906020840190611cb1565b5050565b6000610c34826115c0565b5192915050565b60006001600160a01b038216610ca75760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106be565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610cf65760405162461bcd60e51b81526004016106be90612091565b610d00600061176a565b565b6008546001600160a01b03163314610d2c5760405162461bcd60e51b81526004016106be90612091565b600955565b6060600280546105d090612232565b6127108082610d4e60005490565b610d589190612165565b1115610d765760405162461bcd60e51b81526004016106be90612119565b3482600954610d859190612191565b1115610dd35760405162461bcd60e51b815260206004820152601a60248201527f446f6e27742073656e6420756e6465722028696e20455448292e00000000000060448201526064016106be565b610c2533836115a6565b6001600160a01b038216331415610e365760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106be565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ead848484611222565b610eb9848484846117bc565b610ed55760405162461bcd60e51b81526004016106be906120c6565b50505050565b6060610ee8826000541190565b610f4c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106be565b6000610f566118c9565b90506000815111610f765760405180602001604052806000815250610fa1565b80610f80846118d8565b604051602001610f91929190612012565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610fd25760405162461bcd60e51b81526004016106be90612091565b6127108082610fe060005490565b610fea9190612165565b11156110085760405162461bcd60e51b81526004016106be90612119565b6107f683836115a6565b6008546001600160a01b0316331461103c5760405162461bcd60e51b81526004016106be90612091565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b600b5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b1580156110ab57600080fd5b505afa1580156110bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e39190611f67565b6001600160a01b031614156110fc5760019150506105bb565b6001600160a01b0380851660009081526006602090815260408083209387168352929052205460ff165b949350505050565b6008546001600160a01b031633146111585760405162461bcd60e51b81526004016106be90612091565b6001600160a01b0381166111bd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106be565b610b688161176a565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061122d826115c0565b80519091506000906001600160a01b0316336001600160a01b0316148061126457503361125984610653565b6001600160a01b0316145b8061127657508151611276903361105e565b9050806112e05760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106be565b846001600160a01b031682600001516001600160a01b0316146113545760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106be565b6001600160a01b0384166113b85760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106be565b6113c860008484600001516111c6565b6001600160a01b03851660009081526004602052604081208054600192906113fa9084906001600160801b03166121b0565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261144691859116612143565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556114ce846001612165565b6000818152600360205260409020549091506001600160a01b0316611560576114f8816000541190565b156115605760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461090a565b610c258282604051806020016040528060008152506119d6565b60408051808201909152600080825260208201526115df826000541190565b61163e5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106be565b60007f00000000000000000000000000000000000000000000000000000000000001f4831061169f576116917f00000000000000000000000000000000000000000000000000000000000001f4846121d8565b61169c906001612165565b90505b825b818110611709576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156116f657949350505050565b50806117018161221b565b9150506116a1565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016106be565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156118be57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611800903390899088908890600401612041565b602060405180830381600087803b15801561181a57600080fd5b505af192505050801561184a575060408051601f3d908101601f1916820190925261184791810190611f4a565b60015b6118a4573d808015611878576040519150601f19603f3d011682016040523d82523d6000602084013e61187d565b606091505b50805161189c5760405162461bcd60e51b81526004016106be906120c6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611126565b506001949350505050565b6060600a80546105d090612232565b6060816118fc5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561192657806119108161226d565b915061191f9050600a8361217d565b9150611900565b60008167ffffffffffffffff811115611941576119416122de565b6040519080825280601f01601f19166020018201604052801561196b576020820181803683370190505b5090505b8415611126576119806001836121d8565b915061198d600a86612288565b611998906030612165565b60f81b8183815181106119ad576119ad6122c8565b60200101906001600160f81b031916908160001a9053506119cf600a8661217d565b945061196f565b6000546001600160a01b038416611a395760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106be565b611a44816000541190565b15611a915760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016106be565b7f00000000000000000000000000000000000000000000000000000000000001f4831115611b0c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016106be565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611b68908790612143565b6001600160801b03168152602001858360200151611b869190612143565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611ca65760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c6a60008884886117bc565b611c865760405162461bcd60e51b81526004016106be906120c6565b81611c908161226d565b9250508080611c9e9061226d565b915050611c1d565b50600081905561090a565b828054611cbd90612232565b90600052602060002090601f016020900481019282611cdf5760008555611d25565b82601f10611cf857805160ff1916838001178555611d25565b82800160010185558215611d25579182015b82811115611d25578251825591602001919060010190611d0a565b50610be49291505b80821115610be45760008155600101611d2d565b600067ffffffffffffffff80841115611d5c57611d5c6122de565b604051601f8501601f19908116603f01168101908282118183101715611d8457611d846122de565b81604052809350858152868686011115611d9d57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611dc957600080fd5b8135610fa1816122f4565b60008060408385031215611de757600080fd5b8235611df2816122f4565b91506020830135611e02816122f4565b809150509250929050565b600080600060608486031215611e2257600080fd5b8335611e2d816122f4565b92506020840135611e3d816122f4565b929592945050506040919091013590565b60008060008060808587031215611e6457600080fd5b8435611e6f816122f4565b93506020850135611e7f816122f4565b925060408501359150606085013567ffffffffffffffff811115611ea257600080fd5b8501601f81018713611eb357600080fd5b611ec287823560208401611d41565b91505092959194509250565b60008060408385031215611ee157600080fd5b8235611eec816122f4565b915060208301358015158114611e0257600080fd5b60008060408385031215611f1457600080fd5b8235611f1f816122f4565b946020939093013593505050565b600060208284031215611f3f57600080fd5b8135610fa181612309565b600060208284031215611f5c57600080fd5b8151610fa181612309565b600060208284031215611f7957600080fd5b8151610fa1816122f4565b600060208284031215611f9657600080fd5b813567ffffffffffffffff811115611fad57600080fd5b8201601f81018413611fbe57600080fd5b61112684823560208401611d41565b600060208284031215611fdf57600080fd5b5035919050565b60008151808452611ffe8160208601602086016121ef565b601f01601f19169290920160200192915050565b600083516120248184602088016121ef565b8351908301906120388183602088016121ef565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061207490830184611fe6565b9695505050505050565b602081526000610fa16020830184611fe6565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60208082526010908201526f185b1c9958591e481b5a5b9d081bdd5d60821b604082015260600190565b60006001600160801b038083168185168083038211156120385761203861229c565b600082198211156121785761217861229c565b500190565b60008261218c5761218c6122b2565b500490565b60008160001904831182151516156121ab576121ab61229c565b500290565b60006001600160801b03838116908316818110156121d0576121d061229c565b039392505050565b6000828210156121ea576121ea61229c565b500390565b60005b8381101561220a5781810151838201526020016121f2565b83811115610ed55750506000910152565b60008161222a5761222a61229c565b506000190190565b600181811c9082168061224657607f821691505b6020821081141561226757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122815761228161229c565b5060010190565b600082612297576122976122b2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610b6857600080fd5b6001600160e01b031981168114610b6857600080fdfea2646970667358221220848442a6813653d40bcee1bfdc1df588ac55bf16b1ae94cea16708b75e57282964736f6c63430008070033

Deployed Bytecode Sourcemap

40089:2618:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24684:370;;;;;;;;;;-1:-1:-1;24684:370:0;;;;;:::i;:::-;;:::i;:::-;;;6538:14:1;;6531:22;6513:41;;6501:2;6486:18;24684:370:0;;;;;;;;26410:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27935:204::-;;;;;;;;;;-1:-1:-1;27935:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5836:32:1;;;5818:51;;5806:2;5791:18;27935:204:0;5672:203:1;27498:379:0;;;;;;;;;;-1:-1:-1;27498:379:0;;;;;:::i;:::-;;:::i;:::-;;23248:94;;;;;;;;;;-1:-1:-1;23301:7:0;23324:12;23248:94;;;16533:25:1;;;16521:2;16506:18;23248:94:0;16387:177:1;28785:142:0;;;;;;;;;;-1:-1:-1;28785:142:0;;;;;:::i;:::-;;:::i;41704:480::-;;;;;;;;;;-1:-1:-1;41704:480:0;;;;;:::i;:::-;;:::i;23876:744::-;;;;;;;;;;-1:-1:-1;23876:744:0;;;;;:::i;:::-;;:::i;42452:250::-;;;;;;;;;;;;;:::i;28990:157::-;;;;;;;;;;-1:-1:-1;28990:157:0;;;;;:::i;:::-;;:::i;23411:177::-;;;;;;;;;;-1:-1:-1;23411:177:0;;;;;:::i;:::-;;:::i;40477:111::-;;;;;;;;;;-1:-1:-1;40477:111:0;;;;;:::i;:::-;;:::i;26233:118::-;;;;;;;;;;-1:-1:-1;26233:118:0;;;;;:::i;:::-;;:::i;25110:211::-;;;;;;;;;;-1:-1:-1;25110:211:0;;;;;:::i;:::-;;:::i;38611:103::-;;;;;;;;;;;;;:::i;37960:87::-;;;;;;;;;;-1:-1:-1;38033:6:0;;-1:-1:-1;;;;;38033:6:0;37960:87;;40721:88;;;;;;;;;;-1:-1:-1;40721:88:0;;;;;:::i;:::-;;:::i;26565:98::-;;;;;;;;;;;;;:::i;40186:34::-;;;;;;;;;;;;;;;;41347:349;;;;;;:::i;:::-;;:::i;28203:274::-;;;;;;;;;;-1:-1:-1;28203:274:0;;;;;:::i;:::-;;:::i;29210:311::-;;;;;;;;;;-1:-1:-1;29210:311:0;;;;;:::i;:::-;;:::i;26726:394::-;;;;;;;;;;-1:-1:-1;26726:394:0;;;;;:::i;:::-;;:::i;42192:252::-;;;;;;;;;;-1:-1:-1;42192:252:0;;;;;:::i;:::-;;:::i;40821:128::-;;;;;;;;;;-1:-1:-1;40821:128:0;;;;;:::i;:::-;;:::i;33541:43::-;;;;;;;;;;;;;;;;40957:382;;;;;;;;;;-1:-1:-1;40957:382:0;;;;;:::i;:::-;;:::i;40148:31::-;;;;;;;;;;-1:-1:-1;40148:31:0;;;;-1:-1:-1;;;40148:31:0;;;;;;38869:201;;;;;;;;;;-1:-1:-1;38869:201:0;;;;;:::i;:::-;;:::i;24684:370::-;24811:4;-1:-1:-1;;;;;;24841:40:0;;-1:-1:-1;;;24841:40:0;;:99;;-1:-1:-1;;;;;;;24892:48:0;;-1:-1:-1;;;24892:48:0;24841:99;:160;;;-1:-1:-1;;;;;;;24951:50:0;;-1:-1:-1;;;24951:50:0;24841:160;:207;;;-1:-1:-1;;;;;;;;;;13572:40:0;;;25012:36;24827:221;24684:370;-1:-1:-1;;24684:370:0:o;26410:94::-;26464:13;26493:5;26486:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26410:94;:::o;27935:204::-;28003:7;28027:16;28035:7;29817:4;29847:12;-1:-1:-1;29837:22:0;29760:105;28027:16;28019:74;;;;-1:-1:-1;;;28019:74:0;;15772:2:1;28019:74:0;;;15754:21:1;15811:2;15791:18;;;15784:30;15850:34;15830:18;;;15823:62;-1:-1:-1;;;15901:18:1;;;15894:43;15954:19;;28019:74:0;;;;;;;;;-1:-1:-1;28109:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28109:24:0;;27935:204::o;27498:379::-;27567:13;27583:24;27599:7;27583:15;:24::i;:::-;27567:40;;27628:5;-1:-1:-1;;;;;27622:11:0;:2;-1:-1:-1;;;;;27622:11:0;;;27614:58;;;;-1:-1:-1;;;27614:58:0;;13013:2:1;27614:58:0;;;12995:21:1;13052:2;13032:18;;;13025:30;13091:34;13071:18;;;13064:62;-1:-1:-1;;;13142:18:1;;;13135:32;13184:19;;27614:58:0;12811:398:1;27614:58:0;21156:10;-1:-1:-1;;;;;27697:21:0;;;;:62;;-1:-1:-1;27722:37:0;27739:5;21156:10;40957:382;:::i;27722:37::-;27681:153;;;;-1:-1:-1;;;27681:153:0;;9862:2:1;27681:153:0;;;9844:21:1;9901:2;9881:18;;;9874:30;9940:34;9920:18;;;9913:62;10011:27;9991:18;;;9984:55;10056:19;;27681:153:0;9660:421:1;27681:153:0;27843:28;27852:2;27856:7;27865:5;27843:8;:28::i;:::-;27560:317;27498:379;;:::o;28785:142::-;28893:28;28903:4;28909:2;28913:7;28893:9;:28::i;41704:480::-;38033:6;;-1:-1:-1;;;;;38033:6:0;21156:10;38180:23;38172:68;;;;-1:-1:-1;;;38172:68:0;;;;;;;:::i;:::-;41802:5:::1;41841:3;41802:5:::0;41879:8;41863:13:::1;23301:7:::0;23324:12;;23248:94;41863:13:::1;:24;;;;:::i;:::-;:36;;41855:65;;;;-1:-1:-1::0;;;41855:65:0::1;;;;;;;:::i;:::-;41939:23;41950:12:::0;41939:8;:23:::1;:::i;:::-;:28:::0;41931:85:::1;;;::::0;-1:-1:-1;;;41931:85:0;;8212:2:1;41931:85:0::1;::::0;::::1;8194:21:1::0;8251:2;8231:18;;;8224:30;8290:34;8270:18;;;8263:62;-1:-1:-1;;;8341:18:1;;;8334:42;8393:19;;41931:85:0::1;8010:408:1::0;41931:85:0::1;42029:17;42049:23;42060:12:::0;42049:8;:23:::1;:::i;:::-;42029:43;;42088:9;42083:94;42107:9;42103:1;:13;42083:94;;;42138:27;42148:2;42152:12;42138:9;:27::i;:::-;42118:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42083:94;;;;41772:412;;;41704:480:::0;;:::o;23876:744::-;23985:7;24020:16;24030:5;24020:9;:16::i;:::-;24012:5;:24;24004:71;;;;-1:-1:-1;;;24004:71:0;;6991:2:1;24004:71:0;;;6973:21:1;7030:2;7010:18;;;7003:30;7069:34;7049:18;;;7042:62;-1:-1:-1;;;7120:18:1;;;7113:32;7162:19;;24004:71:0;6789:398:1;24004:71:0;24082:22;23324:12;;;24082:22;;24202:350;24226:14;24222:1;:18;24202:350;;;24256:31;24290:14;;;:11;:14;;;;;;;;;24256:48;;;;;;;;;-1:-1:-1;;;;;24256:48:0;;;;;-1:-1:-1;;;24256:48:0;;;;;;;;;;;;24317:28;24313:89;;24378:14;;;-1:-1:-1;24313:89:0;24435:5;-1:-1:-1;;;;;24414:26:0;:17;-1:-1:-1;;;;;24414:26:0;;24410:135;;;24472:5;24457:11;:20;24453:59;;;-1:-1:-1;24499:1:0;-1:-1:-1;24492:8:0;;-1:-1:-1;;;24492:8:0;24453:59;24522:13;;;;:::i;:::-;;;;24410:135;-1:-1:-1;24242:3:0;;;;:::i;:::-;;;;24202:350;;;-1:-1:-1;24558:56:0;;-1:-1:-1;;;24558:56:0;;14941:2:1;24558:56:0;;;14923:21:1;14980:2;14960:18;;;14953:30;15019:34;14999:18;;;14992:62;-1:-1:-1;;;15070:18:1;;;15063:44;15124:19;;24558:56:0;14739:410:1;42452:250:0;38033:6;;-1:-1:-1;;;;;38033:6:0;21156:10;38180:23;38172:68;;;;-1:-1:-1;;;38172:68:0;;;;;;;:::i;:::-;42519:49:::1;::::0;42501:12:::1;::::0;42519:10:::1;::::0;42542:21:::1;::::0;42501:12;42519:49;42501:12;42519:49;42542:21;42519:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42500:68;;;42601:7;42579:115;;;::::0;-1:-1:-1;;;42579:115:0;;9435:2:1;42579:115:0::1;::::0;::::1;9417:21:1::0;9474:2;9454:18;;;9447:30;9513:34;9493:18;;;9486:62;9584:28;9564:18;;;9557:56;9630:19;;42579:115:0::1;9233:422:1::0;42579:115:0::1;42489:213;42452:250::o:0;28990:157::-;29102:39;29119:4;29125:2;29129:7;29102:39;;;;;;;;;;;;:16;:39::i;23411:177::-;23478:7;23324:12;;23502:5;:21;23494:69;;;;-1:-1:-1;;;23494:69:0;;8625:2:1;23494:69:0;;;8607:21:1;8664:2;8644:18;;;8637:30;8703:34;8683:18;;;8676:62;-1:-1:-1;;;8754:18:1;;;8747:33;8797:19;;23494:69:0;8423:399:1;23494:69:0;-1:-1:-1;23577:5:0;23411:177::o;40477:111::-;38033:6;;-1:-1:-1;;;;;38033:6:0;21156:10;38180:23;38172:68;;;;-1:-1:-1;;;38172:68:0;;;;;;;:::i;:::-;40553:27;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;40477:111:::0;:::o;26233:118::-;26297:7;26320:20;26332:7;26320:11;:20::i;:::-;:25;;26233:118;-1:-1:-1;;26233:118:0:o;25110:211::-;25174:7;-1:-1:-1;;;;;25198:19:0;;25190:75;;;;-1:-1:-1;;;25190:75:0;;10288:2:1;25190:75:0;;;10270:21:1;10327:2;10307:18;;;10300:30;10366:34;10346:18;;;10339:62;-1:-1:-1;;;10417:18:1;;;10410:41;10468:19;;25190:75:0;10086:407:1;25190:75:0;-1:-1:-1;;;;;;25287:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25287:27:0;;25110:211::o;38611:103::-;38033:6;;-1:-1:-1;;;;;38033:6:0;21156:10;38180:23;38172:68;;;;-1:-1:-1;;;38172:68:0;;;;;;;:::i;:::-;38676:30:::1;38703:1;38676:18;:30::i;:::-;38611:103::o:0;40721:88::-;38033:6;;-1:-1:-1;;;;;38033:6:0;21156:10;38180:23;38172:68;;;;-1:-1:-1;;;38172:68:0;;;;;;;:::i;:::-;40785:5:::1;:16:::0;40721:88::o;26565:98::-;26621:13;26650:7;26643:14;;;;;:::i;41347:349::-;41436:5;;41476:14;41460:13;23301:7;23324:12;;23248:94;41460:13;:30;;;;:::i;:::-;:42;;41452:71;;;;-1:-1:-1;;;41452:71:0;;;;;;;:::i;:::-;41576:9;41557:14;41549:5;;:22;;;;:::i;:::-;41548:37;;41540:76;;;;-1:-1:-1;;;41540:76:0;;10700:2:1;41540:76:0;;;10682:21:1;10739:2;10719:18;;;10712:30;10778:28;10758:18;;;10751:56;10824:18;;41540:76:0;10498:350:1;41540:76:0;41627:37;41637:10;41649:14;41627:9;:37::i;28203:274::-;-1:-1:-1;;;;;28294:24:0;;21156:10;28294:24;;28286:63;;;;-1:-1:-1;;;28286:63:0;;12239:2:1;28286:63:0;;;12221:21:1;12278:2;12258:18;;;12251:30;12317:28;12297:18;;;12290:56;12363:18;;28286:63:0;12037:350:1;28286:63:0;21156:10;28358:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28358:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28358:53:0;;;;;;;;;;28423:48;;6513:41:1;;;28358:42:0;;21156:10;28423:48;;6486:18:1;28423:48:0;;;;;;;28203:274;;:::o;29210:311::-;29347:28;29357:4;29363:2;29367:7;29347:9;:28::i;:::-;29398:48;29421:4;29427:2;29431:7;29440:5;29398:22;:48::i;:::-;29382:133;;;;-1:-1:-1;;;29382:133:0;;;;;;;:::i;:::-;29210:311;;;;:::o;26726:394::-;26824:13;26865:16;26873:7;29817:4;29847:12;-1:-1:-1;29837:22:0;29760:105;26865:16;26849:97;;;;-1:-1:-1;;;26849:97:0;;11823:2:1;26849:97:0;;;11805:21:1;11862:2;11842:18;;;11835:30;11901:34;11881:18;;;11874:62;-1:-1:-1;;;11952:18:1;;;11945:45;12007:19;;26849:97:0;11621:411:1;26849:97:0;26955:21;26979:10;:8;:10::i;:::-;26955:34;;27034:1;27016:7;27010:21;:25;:104;;;;;;;;;;;;;;;;;27071:7;27080:18;:7;:16;:18::i;:::-;27054:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27010:104;26996:118;26726:394;-1:-1:-1;;;26726:394:0:o;42192:252::-;38033:6;;-1:-1:-1;;;;;38033:6:0;21156:10;38180:23;38172:68;;;;-1:-1:-1;;;38172:68:0;;;;;;;:::i;:::-;42295:5:::1;::::0;42336:14;42320:13:::1;23301:7:::0;23324:12;;23248:94;42320:13:::1;:30;;;;:::i;:::-;:42;;42312:71;;;;-1:-1:-1::0;;;42312:71:0::1;;;;;;;:::i;:::-;42406:30;42416:3;42421:14;42406:9;:30::i;40821:128::-:0;38033:6;;-1:-1:-1;;;;;38033:6:0;21156:10;38180:23;38172:68;;;;-1:-1:-1;;;38172:68:0;;;;;;;:::i;:::-;40906:20:::1;:35:::0;;-1:-1:-1;;;;;;40906:35:0::1;-1:-1:-1::0;;;;;40906:35:0;;;::::1;::::0;;;::::1;::::0;;40821:128::o;40957:382::-;41148:20;;41192:28;;-1:-1:-1;;;41192:28:0;;-1:-1:-1;;;;;5836:32:1;;;41192:28:0;;;5818:51:1;41082:4:0;;41148:20;;;41184:49;;;;41148:20;;41192:21;;5791:18:1;;41192:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;41184:49:0;;41180:93;;;41257:4;41250:11;;;;;41180:93;-1:-1:-1;;;;;28685:25:0;;;28662:4;28685:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;41292:39;41285:46;40957:382;-1:-1:-1;;;;40957:382:0:o;38869:201::-;38033:6;;-1:-1:-1;;;;;38033:6:0;21156:10;38180:23;38172:68;;;;-1:-1:-1;;;38172:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38958:22:0;::::1;38950:73;;;::::0;-1:-1:-1;;;38950:73:0;;7394:2:1;38950:73:0::1;::::0;::::1;7376:21:1::0;7433:2;7413:18;;;7406:30;7472:34;7452:18;;;7445:62;-1:-1:-1;;;7523:18:1;;;7516:36;7569:19;;38950:73:0::1;7192:402:1::0;38950:73:0::1;39034:28;39053:8;39034:18;:28::i;33363:172::-:0;33460:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;33460:29:0;-1:-1:-1;;;;;33460:29:0;;;;;;;;;33501:28;;33460:24;;33501:28;;;;;;;33363:172;;;:::o;31728:1529::-;31825:35;31863:20;31875:7;31863:11;:20::i;:::-;31934:18;;31825:58;;-1:-1:-1;31892:22:0;;-1:-1:-1;;;;;31918:34:0;21156:10;-1:-1:-1;;;;;31918:34:0;;:81;;;-1:-1:-1;21156:10:0;31963:20;31975:7;31963:11;:20::i;:::-;-1:-1:-1;;;;;31963:36:0;;31918:81;:142;;;-1:-1:-1;32027:18:0;;32010:50;;21156:10;40957:382;:::i;32010:50::-;31892:169;;32086:17;32070:101;;;;-1:-1:-1;;;32070:101:0;;12594:2:1;32070:101:0;;;12576:21:1;12633:2;12613:18;;;12606:30;12672:34;12652:18;;;12645:62;-1:-1:-1;;;12723:18:1;;;12716:48;12781:19;;32070:101:0;12392:414:1;32070:101:0;32218:4;-1:-1:-1;;;;;32196:26:0;:13;:18;;;-1:-1:-1;;;;;32196:26:0;;32180:98;;;;-1:-1:-1;;;32180:98:0;;11055:2:1;32180:98:0;;;11037:21:1;11094:2;11074:18;;;11067:30;11133:34;11113:18;;;11106:62;-1:-1:-1;;;11184:18:1;;;11177:36;11230:19;;32180:98:0;10853:402:1;32180:98:0;-1:-1:-1;;;;;32293:16:0;;32285:66;;;;-1:-1:-1;;;32285:66:0;;9029:2:1;32285:66:0;;;9011:21:1;9068:2;9048:18;;;9041:30;9107:34;9087:18;;;9080:62;-1:-1:-1;;;9158:18:1;;;9151:35;9203:19;;32285:66:0;8827:401:1;32285:66:0;32460:49;32477:1;32481:7;32490:13;:18;;;32460:8;:49::i;:::-;-1:-1:-1;;;;;32518:18:0;;;;;;:12;:18;;;;;:31;;32548:1;;32518:18;:31;;32548:1;;-1:-1:-1;;;;;32518:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;32518:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32556:16:0;;-1:-1:-1;32556:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;32556:16:0;;:29;;-1:-1:-1;;32556:29:0;;:::i;:::-;;;-1:-1:-1;;;;;32556:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32615:43:0;;;;;;;;-1:-1:-1;;;;;32615:43:0;;;;;;32641:15;32615:43;;;;;;;;;-1:-1:-1;32592:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;32592:66:0;-1:-1:-1;;;;;;32592:66:0;;;;;;;;;;;32908:11;32604:7;-1:-1:-1;32908:11:0;:::i;:::-;32971:1;32930:24;;;:11;:24;;;;;:29;32886:33;;-1:-1:-1;;;;;;32930:29:0;32926:236;;32988:20;32996:11;29817:4;29847:12;-1:-1:-1;29837:22:0;29760:105;32988:20;32984:171;;;33048:97;;;;;;;;33075:18;;-1:-1:-1;;;;;33048:97:0;;;;;;33106:28;;;;33048:97;;;;;;;;;;-1:-1:-1;33021:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;33021:124:0;-1:-1:-1;;;;;;33021:124:0;;;;;;;;;;;;32984:171;33194:7;33190:2;-1:-1:-1;;;;;33175:27:0;33184:4;-1:-1:-1;;;;;33175:27:0;;;;;;;;;;;33209:42;29210:311;29871:98;29936:27;29946:2;29950:8;29936:27;;;;;;;;;;;;:9;:27::i;25573:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;25690:16:0;25698:7;29817:4;29847:12;-1:-1:-1;29837:22:0;29760:105;25690:16;25682:71;;;;-1:-1:-1;;;25682:71:0;;7801:2:1;25682:71:0;;;7783:21:1;7840:2;7820:18;;;7813:30;7879:34;7859:18;;;7852:62;-1:-1:-1;;;7930:18:1;;;7923:40;7980:19;;25682:71:0;7599:406:1;25682:71:0;25762:26;25810:12;25799:7;:23;25795:93;;25854:22;25864:12;25854:7;:22;:::i;:::-;:26;;25879:1;25854:26;:::i;:::-;25833:47;;25795:93;25916:7;25896:212;25933:18;25925:4;:26;25896:212;;25970:31;26004:17;;;:11;:17;;;;;;;;;25970:51;;;;;;;;;-1:-1:-1;;;;;25970:51:0;;;;;-1:-1:-1;;;25970:51:0;;;;;;;;;;;;26034:28;26030:71;;26082:9;25573:606;-1:-1:-1;;;;25573:606:0:o;26030:71::-;-1:-1:-1;25953:6:0;;;;:::i;:::-;;;;25896:212;;;-1:-1:-1;26116:57:0;;-1:-1:-1;;;26116:57:0;;15356:2:1;26116:57:0;;;15338:21:1;15395:2;15375:18;;;15368:30;15434:34;15414:18;;;15407:62;-1:-1:-1;;;15485:18:1;;;15478:45;15540:19;;26116:57:0;15154:411:1;39230:191:0;39323:6;;;-1:-1:-1;;;;;39340:17:0;;;-1:-1:-1;;;;;;39340:17:0;;;;;;;39373:40;;39323:6;;;39340:17;39323:6;;39373:40;;39304:16;;39373:40;39293:128;39230:191;:::o;35074:690::-;35211:4;-1:-1:-1;;;;;35228:13:0;;3652:19;:23;35224:535;;35267:72;;-1:-1:-1;;;35267:72:0;;-1:-1:-1;;;;;35267:36:0;;;;;:72;;21156:10;;35318:4;;35324:7;;35333:5;;35267:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35267:72:0;;;;;;;;-1:-1:-1;;35267:72:0;;;;;;;;;;;;:::i;:::-;;;35254:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35498:13:0;;35494:215;;35531:61;;-1:-1:-1;;;35531:61:0;;;;;;;:::i;35494:215::-;35677:6;35671:13;35662:6;35658:2;35654:15;35647:38;35254:464;-1:-1:-1;;;;;;35389:55:0;-1:-1:-1;;;35389:55:0;;-1:-1:-1;35382:62:0;;35224:535;-1:-1:-1;35747:4:0;35074:690;;;;;;:::o;40596:117::-;40656:13;40689:16;40682:23;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;30224:1272;30329:20;30352:12;-1:-1:-1;;;;;30379:16:0;;30371:62;;;;-1:-1:-1;;;30371:62:0;;14194:2:1;30371:62:0;;;14176:21:1;14233:2;14213:18;;;14206:30;14272:34;14252:18;;;14245:62;-1:-1:-1;;;14323:18:1;;;14316:31;14364:19;;30371:62:0;13992:397:1;30371:62:0;30570:21;30578:12;29817:4;29847:12;-1:-1:-1;29837:22:0;29760:105;30570:21;30569:22;30561:64;;;;-1:-1:-1;;;30561:64:0;;13836:2:1;30561:64:0;;;13818:21:1;13875:2;13855:18;;;13848:30;13914:31;13894:18;;;13887:59;13963:18;;30561:64:0;13634:353:1;30561:64:0;30652:12;30640:8;:24;;30632:71;;;;-1:-1:-1;;;30632:71:0;;16186:2:1;30632:71:0;;;16168:21:1;16225:2;16205:18;;;16198:30;16264:34;16244:18;;;16237:62;-1:-1:-1;;;16315:18:1;;;16308:32;16357:19;;30632:71:0;15984:398:1;30632:71:0;-1:-1:-1;;;;;30815:16:0;;30782:30;30815:16;;;:12;:16;;;;;;;;;30782:49;;;;;;;;;-1:-1:-1;;;;;30782:49:0;;;;;-1:-1:-1;;;30782:49:0;;;;;;;;;;;30857:119;;;;;;;;30877:19;;30782:49;;30857:119;;;30877:39;;30907:8;;30877:39;:::i;:::-;-1:-1:-1;;;;;30857:119:0;;;;;30960:8;30925:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;30857:119:0;;;;;;-1:-1:-1;;;;;30838:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;30838:138:0;;;;;;;;;;;;31011:43;;;;;;;;;;;31037:15;31011:43;;;;;;;;30983:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;30983:71:0;-1:-1:-1;;;;;;30983:71:0;;;;;;;;;;;;;;;;;;30995:12;;31107:281;31131:8;31127:1;:12;31107:281;;;31160:38;;31185:12;;-1:-1:-1;;;;;31160:38:0;;;31177:1;;31160:38;;31177:1;;31160:38;31225:59;31256:1;31260:2;31264:12;31278:5;31225:22;:59::i;:::-;31207:150;;;;-1:-1:-1;;;31207:150:0;;;;;;;:::i;:::-;31366:14;;;;:::i;:::-;;;;31141:3;;;;;:::i;:::-;;;;31107:281;;;-1:-1:-1;31396:12:0;:27;;;31430:60;29210:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:52;;;778:1;775;768:12;730:52;817:9;804:23;836:31;861:5;836:31;:::i;902:388::-;970:6;978;1031:2;1019:9;1010:7;1006:23;1002:32;999:52;;;1047:1;1044;1037:12;999:52;1086:9;1073:23;1105:31;1130:5;1105:31;:::i;:::-;1155:5;-1:-1:-1;1212:2:1;1197:18;;1184:32;1225:33;1184:32;1225:33;:::i;:::-;1277:7;1267:17;;;902:388;;;;;:::o;1295:456::-;1372:6;1380;1388;1441:2;1429:9;1420:7;1416:23;1412:32;1409:52;;;1457:1;1454;1447:12;1409:52;1496:9;1483:23;1515:31;1540:5;1515:31;:::i;:::-;1565:5;-1:-1:-1;1622:2:1;1607:18;;1594:32;1635:33;1594:32;1635:33;:::i;:::-;1295:456;;1687:7;;-1:-1:-1;;;1741:2:1;1726:18;;;;1713:32;;1295:456::o;1756:794::-;1851:6;1859;1867;1875;1928:3;1916:9;1907:7;1903:23;1899:33;1896:53;;;1945:1;1942;1935:12;1896:53;1984:9;1971:23;2003:31;2028:5;2003:31;:::i;:::-;2053:5;-1:-1:-1;2110:2:1;2095:18;;2082:32;2123:33;2082:32;2123:33;:::i;:::-;2175:7;-1:-1:-1;2229:2:1;2214:18;;2201:32;;-1:-1:-1;2284:2:1;2269:18;;2256:32;2311:18;2300:30;;2297:50;;;2343:1;2340;2333:12;2297:50;2366:22;;2419:4;2411:13;;2407:27;-1:-1:-1;2397:55:1;;2448:1;2445;2438:12;2397:55;2471:73;2536:7;2531:2;2518:16;2513:2;2509;2505:11;2471:73;:::i;:::-;2461:83;;;1756:794;;;;;;;:::o;2555:416::-;2620:6;2628;2681:2;2669:9;2660:7;2656:23;2652:32;2649:52;;;2697:1;2694;2687:12;2649:52;2736:9;2723:23;2755:31;2780:5;2755:31;:::i;:::-;2805:5;-1:-1:-1;2862:2:1;2847:18;;2834:32;2904:15;;2897:23;2885:36;;2875:64;;2935:1;2932;2925:12;2976:315;3044:6;3052;3105:2;3093:9;3084:7;3080:23;3076:32;3073:52;;;3121:1;3118;3111:12;3073:52;3160:9;3147:23;3179:31;3204:5;3179:31;:::i;:::-;3229:5;3281:2;3266:18;;;;3253:32;;-1:-1:-1;;;2976:315:1:o;3296:245::-;3354:6;3407:2;3395:9;3386:7;3382:23;3378:32;3375:52;;;3423:1;3420;3413:12;3375:52;3462:9;3449:23;3481:30;3505:5;3481:30;:::i;3546:249::-;3615:6;3668:2;3656:9;3647:7;3643:23;3639:32;3636:52;;;3684:1;3681;3674:12;3636:52;3716:9;3710:16;3735:30;3759:5;3735:30;:::i;3800:280::-;3899:6;3952:2;3940:9;3931:7;3927:23;3923:32;3920:52;;;3968:1;3965;3958:12;3920:52;4000:9;3994:16;4019:31;4044:5;4019:31;:::i;4085:450::-;4154:6;4207:2;4195:9;4186:7;4182:23;4178:32;4175:52;;;4223:1;4220;4213:12;4175:52;4263:9;4250:23;4296:18;4288:6;4285:30;4282:50;;;4328:1;4325;4318:12;4282:50;4351:22;;4404:4;4396:13;;4392:27;-1:-1:-1;4382:55:1;;4433:1;4430;4423:12;4382:55;4456:73;4521:7;4516:2;4503:16;4498:2;4494;4490:11;4456:73;:::i;4540:180::-;4599:6;4652:2;4640:9;4631:7;4627:23;4623:32;4620:52;;;4668:1;4665;4658:12;4620:52;-1:-1:-1;4691:23:1;;4540:180;-1:-1:-1;4540:180:1:o;4725:257::-;4766:3;4804:5;4798:12;4831:6;4826:3;4819:19;4847:63;4903:6;4896:4;4891:3;4887:14;4880:4;4873:5;4869:16;4847:63;:::i;:::-;4964:2;4943:15;-1:-1:-1;;4939:29:1;4930:39;;;;4971:4;4926:50;;4725:257;-1:-1:-1;;4725:257:1:o;4987:470::-;5166:3;5204:6;5198:13;5220:53;5266:6;5261:3;5254:4;5246:6;5242:17;5220:53;:::i;:::-;5336:13;;5295:16;;;;5358:57;5336:13;5295:16;5392:4;5380:17;;5358:57;:::i;:::-;5431:20;;4987:470;-1:-1:-1;;;;4987:470:1:o;5880:488::-;-1:-1:-1;;;;;6149:15:1;;;6131:34;;6201:15;;6196:2;6181:18;;6174:43;6248:2;6233:18;;6226:34;;;6296:3;6291:2;6276:18;;6269:31;;;6074:4;;6317:45;;6342:19;;6334:6;6317:45;:::i;:::-;6309:53;5880:488;-1:-1:-1;;;;;;5880:488:1:o;6565:219::-;6714:2;6703:9;6696:21;6677:4;6734:44;6774:2;6763:9;6759:18;6751:6;6734:44;:::i;11260:356::-;11462:2;11444:21;;;11481:18;;;11474:30;11540:34;11535:2;11520:18;;11513:62;11607:2;11592:18;;11260:356::o;13214:415::-;13416:2;13398:21;;;13455:2;13435:18;;;13428:30;13494:34;13489:2;13474:18;;13467:62;-1:-1:-1;;;13560:2:1;13545:18;;13538:49;13619:3;13604:19;;13214:415::o;14394:340::-;14596:2;14578:21;;;14635:2;14615:18;;;14608:30;-1:-1:-1;;;14669:2:1;14654:18;;14647:46;14725:2;14710:18;;14394:340::o;16569:253::-;16609:3;-1:-1:-1;;;;;16698:2:1;16695:1;16691:10;16728:2;16725:1;16721:10;16759:3;16755:2;16751:12;16746:3;16743:21;16740:47;;;16767:18;;:::i;16827:128::-;16867:3;16898:1;16894:6;16891:1;16888:13;16885:39;;;16904:18;;:::i;:::-;-1:-1:-1;16940:9:1;;16827:128::o;16960:120::-;17000:1;17026;17016:35;;17031:18;;:::i;:::-;-1:-1:-1;17065:9:1;;16960:120::o;17085:168::-;17125:7;17191:1;17187;17183:6;17179:14;17176:1;17173:21;17168:1;17161:9;17154:17;17150:45;17147:71;;;17198:18;;:::i;:::-;-1:-1:-1;17238:9:1;;17085:168::o;17258:246::-;17298:4;-1:-1:-1;;;;;17411:10:1;;;;17381;;17433:12;;;17430:38;;;17448:18;;:::i;:::-;17485:13;;17258:246;-1:-1:-1;;;17258:246:1:o;17509:125::-;17549:4;17577:1;17574;17571:8;17568:34;;;17582:18;;:::i;:::-;-1:-1:-1;17619:9:1;;17509:125::o;17639:258::-;17711:1;17721:113;17735:6;17732:1;17729:13;17721:113;;;17811:11;;;17805:18;17792:11;;;17785:39;17757:2;17750:10;17721:113;;;17852:6;17849:1;17846:13;17843:48;;;-1:-1:-1;;17887:1:1;17869:16;;17862:27;17639:258::o;17902:136::-;17941:3;17969:5;17959:39;;17978:18;;:::i;:::-;-1:-1:-1;;;18014:18:1;;17902:136::o;18043:380::-;18122:1;18118:12;;;;18165;;;18186:61;;18240:4;18232:6;18228:17;18218:27;;18186:61;18293:2;18285:6;18282:14;18262:18;18259:38;18256:161;;;18339:10;18334:3;18330:20;18327:1;18320:31;18374:4;18371:1;18364:15;18402:4;18399:1;18392:15;18256:161;;18043:380;;;:::o;18428:135::-;18467:3;-1:-1:-1;;18488:17:1;;18485:43;;;18508:18;;:::i;:::-;-1:-1:-1;18555:1:1;18544:13;;18428:135::o;18568:112::-;18600:1;18626;18616:35;;18631:18;;:::i;:::-;-1:-1:-1;18665:9:1;;18568:112::o;18685:127::-;18746:10;18741:3;18737:20;18734:1;18727:31;18777:4;18774:1;18767:15;18801:4;18798:1;18791:15;18817:127;18878:10;18873:3;18869:20;18866:1;18859:31;18909:4;18906:1;18899:15;18933:4;18930:1;18923:15;18949:127;19010:10;19005:3;19001:20;18998:1;18991:31;19041:4;19038:1;19031:15;19065:4;19062:1;19055:15;19081:127;19142:10;19137:3;19133:20;19130:1;19123:31;19173:4;19170:1;19163:15;19197:4;19194:1;19187:15;19213:131;-1:-1:-1;;;;;19288:31:1;;19278:42;;19268:70;;19334:1;19331;19324:12;19349:131;-1:-1:-1;;;;;;19423:32:1;;19413:43;;19403:71;;19470:1;19467;19460:12

Swarm Source

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