ETH Price: $3,096.33 (+4.57%)
Gas: 3 Gwei

Token

egirldao (EGIRL)
 

Overview

Max Total Supply

391 EGIRL

Holders

164

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
whatsfloor.eth
Balance
1 EGIRL
0x939c7466fbf91865528f11a39ce4f5f76ee593a4
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:
egirldao

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 500 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-19
*/

// 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 v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

// 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 v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// 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: contracts/ERC721A.sol



pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _ownerships;

  // Mapping owner address to address data
  mapping(address => AddressData) private _addressData;

  // Mapping from token ID to approved address
  mapping(uint256 => address) private _tokenApprovals;

  // Mapping from owner to operator approvals
  mapping(address => mapping(address => bool)) private _operatorApprovals;

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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


pragma solidity ^0.8.0;

//import "@openzeppelin/contracts/token/ERC721/ERC721.sol";


contract egirldao is Ownable, ERC721A {
    uint256 public constant MAX_SUPPLY = 1095;
    uint256 public constant FREE_MINT_AMOUNT = 200;
    uint256 public constant MINT_LIMIT = 5;

    uint256 public mintPrice = 0.02 ether;
    uint256 public currentSupply;
    string public baseURI;

    constructor() ERC721A("egirldao", "EGIRL", MINT_LIMIT, MAX_SUPPLY) {}

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

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

    function lowerPrice(uint256 _new) external onlyOwner {
        require(_new < mintPrice, "egirldao: new price must be lower than previous price");
        mintPrice = _new;
    }

    function mint(uint256 _amount) external payable {
        uint256 supply = currentSupply;

        require(supply + _amount < MAX_SUPPLY, "egirldao: mint would exceed total supply");
        require(_amount > 0 && _amount <= MINT_LIMIT, "egirldao: mint amount too high");
        require(msg.value >= (mintPrice * _amount), "egirldao: insufficient eth sent");

        currentSupply += _amount;

        _safeMint(msg.sender, _amount);
    }

    function freeMint() external {
        uint256 supply = currentSupply;
        
        require(supply < FREE_MINT_AMOUNT, "egirldao: free mints exhausted");

        currentSupply += 1;

        _safeMint(msg.sender, 1);
    }

    function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MINT_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_new","type":"uint256"}],"name":"lowerPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_base","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526000600155600060085566470de4df8200006009553480156200002657600080fd5b5060405180604001604052806008815260200167656769726c64616f60c01b815250604051806040016040528060058152602001641151d2549360da1b8152506005610447620000856200007f6200019260201b60201c565b62000196565b60008111620000f25760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001545760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620000e9565b835162000169906002906020870190620001e6565b5082516200017f906003906020860190620001e6565b5060a09190915260805250620002c99050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001f4906200028c565b90600052602060002090601f01602090048101928262000218576000855562000263565b82601f106200023357805160ff191683800117855562000263565b8280016001018555821562000263579182015b828111156200026357825182559160200191906001019062000246565b506200027192915062000275565b5090565b5b8082111562000271576000815560010162000276565b600181811c90821680620002a157607f821691505b60208210811415620002c357634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612426620002fa60003960008181611709015281816117330152611bd80152600050506124266000f3fe6080604052600436106101d85760003560e01c80636352211e11610102578063a0712d6811610095578063d337396011610064578063d337396014610502578063d7224ba014610517578063e985e9c51461052d578063f2fde38b1461057657600080fd5b8063a0712d681461048f578063a22cb465146104a2578063b88d4fde146104c2578063c87b56dd146104e257600080fd5b8063715018a6116100d1578063715018a614610431578063771282f6146104465780638da5cb5b1461045c57806395d89b411461047a57600080fd5b80636352211e146103c65780636817c76c146103e65780636c0360eb146103fc57806370a082311461041157600080fd5b806323b872dd1161017a57806342842e0e1161014957806342842e0e146103515780634f6ccce71461037157806355f804b3146103915780635b70ea9f146103b157600080fd5b806323b872dd146102e65780632f745c591461030657806332cb6b0c146103265780633ccfd60b1461033c57600080fd5b8063081812fc116101b6578063081812fc14610257578063095ea7b31461028f5780630c3986e2146102b157806318160ddd146102d157600080fd5b806301ffc9a7146101dd578063027752401461021257806306fdde0314610235575b600080fd5b3480156101e957600080fd5b506101fd6101f83660046120ba565b610596565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b50610227600581565b604051908152602001610209565b34801561024157600080fd5b5061024a610603565b6040516102099190612216565b34801561026357600080fd5b50610277610272366004612166565b610695565b6040516001600160a01b039091168152602001610209565b34801561029b57600080fd5b506102af6102aa366004612090565b610725565b005b3480156102bd57600080fd5b506102af6102cc366004612166565b61083d565b3480156102dd57600080fd5b50600154610227565b3480156102f257600080fd5b506102af610301366004611f3c565b610913565b34801561031257600080fd5b50610227610321366004612090565b61091e565b34801561033257600080fd5b5061022761044781565b34801561034857600080fd5b506102af610aa6565b34801561035d57600080fd5b506102af61036c366004611f3c565b610b2f565b34801561037d57600080fd5b5061022761038c366004612166565b610b4a565b34801561039d57600080fd5b506102af6103ac3660046120f4565b610bb3565b3480156103bd57600080fd5b506102af610c19565b3480156103d257600080fd5b506102776103e1366004612166565b610c90565b3480156103f257600080fd5b5061022760095481565b34801561040857600080fd5b5061024a610ca2565b34801561041d57600080fd5b5061022761042c366004611eee565b610d30565b34801561043d57600080fd5b506102af610dc1565b34801561045257600080fd5b50610227600a5481565b34801561046857600080fd5b506000546001600160a01b0316610277565b34801561048657600080fd5b5061024a610e27565b6102af61049d366004612166565b610e36565b3480156104ae57600080fd5b506102af6104bd366004612054565b610f84565b3480156104ce57600080fd5b506102af6104dd366004611f78565b611049565b3480156104ee57600080fd5b5061024a6104fd366004612166565b6110ce565b34801561050e57600080fd5b5061022760c881565b34801561052357600080fd5b5061022760085481565b34801561053957600080fd5b506101fd610548366004611f09565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561058257600080fd5b506102af610591366004611eee565b6111a9565b60006001600160e01b031982166380ac58cd60e01b14806105c757506001600160e01b03198216635b5e139f60e01b145b806105e257506001600160e01b0319821663780e9d6360e01b145b806105fd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461061290612318565b80601f016020809104026020016040519081016040528092919081815260200182805461063e90612318565b801561068b5780601f106106605761010080835404028352916020019161068b565b820191906000526020600020905b81548152906001019060200180831161066e57829003601f168201915b5050505050905090565b60006106a2826001541190565b6107095760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061073082610c90565b9050806001600160a01b0316836001600160a01b0316141561079f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610700565b336001600160a01b03821614806107bb57506107bb8133610548565b61082d5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610700565b610838838383611271565b505050565b6000546001600160a01b031633146108975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610700565b600954811061090e5760405162461bcd60e51b815260206004820152603560248201527f656769726c64616f3a206e6577207072696365206d757374206265206c6f776560448201527f72207468616e2070726576696f757320707269636500000000000000000000006064820152608401610700565b600955565b6108388383836112da565b600061092983610d30565b82106109825760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610700565b600061098d60015490565b905060008060005b83811015610a37576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109e857805192505b876001600160a01b0316836001600160a01b03161415610a245786841415610a16575093506105fd92505050565b83610a2081612353565b9450505b5080610a2f81612353565b915050610995565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610700565b6000546001600160a01b03163314610b005760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610700565b60405133904780156108fc02916000818181858888f19350505050158015610b2c573d6000803e3d6000fd5b50565b61083883838360405180602001604052806000815250611049565b6000610b5560015490565b8210610baf5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610700565b5090565b6000546001600160a01b03163314610c0d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610700565b610838600b8383611e42565b600a5460c88110610c6c5760405162461bcd60e51b815260206004820152601e60248201527f656769726c64616f3a2066726565206d696e74732065786861757374656400006044820152606401610700565b6001600a6000828254610c7f919061224b565b90915550610b2c905033600161166d565b6000610c9b82611687565b5192915050565b600b8054610caf90612318565b80601f0160208091040260200160405190810160405280929190818152602001828054610cdb90612318565b8015610d285780601f10610cfd57610100808354040283529160200191610d28565b820191906000526020600020905b815481529060010190602001808311610d0b57829003601f168201915b505050505081565b60006001600160a01b038216610d9c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610700565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610e1b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610700565b610e25600061183f565b565b60606003805461061290612318565b600a54610447610e46838361224b565b10610ea45760405162461bcd60e51b815260206004820152602860248201527f656769726c64616f3a206d696e7420776f756c642065786365656420746f74616044820152676c20737570706c7960c01b6064820152608401610700565b600082118015610eb5575060058211155b610f015760405162461bcd60e51b815260206004820152601e60248201527f656769726c64616f3a206d696e7420616d6f756e7420746f6f206869676800006044820152606401610700565b81600954610f0f9190612277565b341015610f5e5760405162461bcd60e51b815260206004820152601f60248201527f656769726c64616f3a20696e73756666696369656e74206574682073656e74006044820152606401610700565b81600a6000828254610f70919061224b565b90915550610f809050338361166d565b5050565b6001600160a01b038216331415610fdd5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610700565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110548484846112da565b6110608484848461189c565b6110c85760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610700565b50505050565b60606110db826001541190565b61114d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610700565b60006111576119f6565b9050600081511161117757604051806020016040528060008152506111a2565b8061118184611a05565b6040516020016111929291906121ab565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146112035760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610700565b6001600160a01b0381166112685760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610700565b610b2c8161183f565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112e582611687565b80519091506000906001600160a01b0316336001600160a01b0316148061131c57503361131184610695565b6001600160a01b0316145b8061132e5750815161132e9033610548565b9050806113a35760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610700565b846001600160a01b031682600001516001600160a01b0316146114175760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610700565b6001600160a01b03841661147b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610700565b61148b6000848460000151611271565b6001600160a01b03851660009081526005602052604081208054600192906114bd9084906001600160801b0316612296565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261150991859116612229565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561159184600161224b565b6000818152600460205260409020549091506001600160a01b0316611623576115bb816001541190565b156116235760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610f80828260405180602001604052806000815250611b1b565b60408051808201909152600080825260208201526116a6826001541190565b6117055760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610700565b60007f00000000000000000000000000000000000000000000000000000000000000008310611766576117587f0000000000000000000000000000000000000000000000000000000000000000846122be565b61176390600161224b565b90505b825b8181106117d0576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156117bd57949350505050565b50806117c881612301565b915050611768565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006064820152608401610700565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b156119ea57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118e09033908990889088906004016121da565b602060405180830381600087803b1580156118fa57600080fd5b505af192505050801561192a575060408051601f3d908101601f19168201909252611927918101906120d7565b60015b6119d0573d808015611958576040519150601f19603f3d011682016040523d82523d6000602084013e61195d565b606091505b5080516119c85760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610700565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119ee565b5060015b949350505050565b6060600b805461061290612318565b606081611a295750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a535780611a3d81612353565b9150611a4c9050600a83612263565b9150611a2d565b60008167ffffffffffffffff811115611a6e57611a6e6123c4565b6040519080825280601f01601f191660200182016040528015611a98576020820181803683370190505b5090505b84156119ee57611aad6001836122be565b9150611aba600a8661236e565b611ac590603061224b565b60f81b818381518110611ada57611ada6123ae565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611b14600a86612263565b9450611a9c565b6001546001600160a01b038416611b7e5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610700565b611b89816001541190565b15611bd65760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610700565b7f0000000000000000000000000000000000000000000000000000000000000000831115611c515760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610700565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611cad908790612229565b6001600160801b03168152602001858360200151611ccb9190612229565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611e375760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611daf600088848861189c565b611e175760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610700565b81611e2181612353565b9250508080611e2f90612353565b915050611d62565b506001819055611665565b828054611e4e90612318565b90600052602060002090601f016020900481019282611e705760008555611eb6565b82601f10611e895782800160ff19823516178555611eb6565b82800160010185558215611eb6579182015b82811115611eb6578235825591602001919060010190611e9b565b50610baf9291505b80821115610baf5760008155600101611ebe565b80356001600160a01b0381168114611ee957600080fd5b919050565b600060208284031215611f0057600080fd5b6111a282611ed2565b60008060408385031215611f1c57600080fd5b611f2583611ed2565b9150611f3360208401611ed2565b90509250929050565b600080600060608486031215611f5157600080fd5b611f5a84611ed2565b9250611f6860208501611ed2565b9150604084013590509250925092565b60008060008060808587031215611f8e57600080fd5b611f9785611ed2565b9350611fa560208601611ed2565b925060408501359150606085013567ffffffffffffffff80821115611fc957600080fd5b818701915087601f830112611fdd57600080fd5b813581811115611fef57611fef6123c4565b604051601f8201601f19908116603f01168101908382118183101715612017576120176123c4565b816040528281528a602084870101111561203057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561206757600080fd5b61207083611ed2565b91506020830135801515811461208557600080fd5b809150509250929050565b600080604083850312156120a357600080fd5b6120ac83611ed2565b946020939093013593505050565b6000602082840312156120cc57600080fd5b81356111a2816123da565b6000602082840312156120e957600080fd5b81516111a2816123da565b6000806020838503121561210757600080fd5b823567ffffffffffffffff8082111561211f57600080fd5b818501915085601f83011261213357600080fd5b81358181111561214257600080fd5b86602082850101111561215457600080fd5b60209290920196919550909350505050565b60006020828403121561217857600080fd5b5035919050565b600081518084526121978160208601602086016122d5565b601f01601f19169290920160200192915050565b600083516121bd8184602088016122d5565b8351908301906121d18183602088016122d5565b01949350505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261220c608083018461217f565b9695505050505050565b6020815260006111a2602083018461217f565b60006001600160801b038083168185168083038211156121d1576121d1612382565b6000821982111561225e5761225e612382565b500190565b60008261227257612272612398565b500490565b600081600019048311821515161561229157612291612382565b500290565b60006001600160801b03838116908316818110156122b6576122b6612382565b039392505050565b6000828210156122d0576122d0612382565b500390565b60005b838110156122f05781810151838201526020016122d8565b838111156110c85750506000910152565b60008161231057612310612382565b506000190190565b600181811c9082168061232c57607f821691505b6020821081141561234d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561236757612367612382565b5060010190565b60008261237d5761237d612398565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b2c57600080fdfea264697066735822122079d71a34d86cdc024efff84831cab4360ec8707f5384a934da3492cfdf0100c564736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636352211e11610102578063a0712d6811610095578063d337396011610064578063d337396014610502578063d7224ba014610517578063e985e9c51461052d578063f2fde38b1461057657600080fd5b8063a0712d681461048f578063a22cb465146104a2578063b88d4fde146104c2578063c87b56dd146104e257600080fd5b8063715018a6116100d1578063715018a614610431578063771282f6146104465780638da5cb5b1461045c57806395d89b411461047a57600080fd5b80636352211e146103c65780636817c76c146103e65780636c0360eb146103fc57806370a082311461041157600080fd5b806323b872dd1161017a57806342842e0e1161014957806342842e0e146103515780634f6ccce71461037157806355f804b3146103915780635b70ea9f146103b157600080fd5b806323b872dd146102e65780632f745c591461030657806332cb6b0c146103265780633ccfd60b1461033c57600080fd5b8063081812fc116101b6578063081812fc14610257578063095ea7b31461028f5780630c3986e2146102b157806318160ddd146102d157600080fd5b806301ffc9a7146101dd578063027752401461021257806306fdde0314610235575b600080fd5b3480156101e957600080fd5b506101fd6101f83660046120ba565b610596565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b50610227600581565b604051908152602001610209565b34801561024157600080fd5b5061024a610603565b6040516102099190612216565b34801561026357600080fd5b50610277610272366004612166565b610695565b6040516001600160a01b039091168152602001610209565b34801561029b57600080fd5b506102af6102aa366004612090565b610725565b005b3480156102bd57600080fd5b506102af6102cc366004612166565b61083d565b3480156102dd57600080fd5b50600154610227565b3480156102f257600080fd5b506102af610301366004611f3c565b610913565b34801561031257600080fd5b50610227610321366004612090565b61091e565b34801561033257600080fd5b5061022761044781565b34801561034857600080fd5b506102af610aa6565b34801561035d57600080fd5b506102af61036c366004611f3c565b610b2f565b34801561037d57600080fd5b5061022761038c366004612166565b610b4a565b34801561039d57600080fd5b506102af6103ac3660046120f4565b610bb3565b3480156103bd57600080fd5b506102af610c19565b3480156103d257600080fd5b506102776103e1366004612166565b610c90565b3480156103f257600080fd5b5061022760095481565b34801561040857600080fd5b5061024a610ca2565b34801561041d57600080fd5b5061022761042c366004611eee565b610d30565b34801561043d57600080fd5b506102af610dc1565b34801561045257600080fd5b50610227600a5481565b34801561046857600080fd5b506000546001600160a01b0316610277565b34801561048657600080fd5b5061024a610e27565b6102af61049d366004612166565b610e36565b3480156104ae57600080fd5b506102af6104bd366004612054565b610f84565b3480156104ce57600080fd5b506102af6104dd366004611f78565b611049565b3480156104ee57600080fd5b5061024a6104fd366004612166565b6110ce565b34801561050e57600080fd5b5061022760c881565b34801561052357600080fd5b5061022760085481565b34801561053957600080fd5b506101fd610548366004611f09565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561058257600080fd5b506102af610591366004611eee565b6111a9565b60006001600160e01b031982166380ac58cd60e01b14806105c757506001600160e01b03198216635b5e139f60e01b145b806105e257506001600160e01b0319821663780e9d6360e01b145b806105fd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461061290612318565b80601f016020809104026020016040519081016040528092919081815260200182805461063e90612318565b801561068b5780601f106106605761010080835404028352916020019161068b565b820191906000526020600020905b81548152906001019060200180831161066e57829003601f168201915b5050505050905090565b60006106a2826001541190565b6107095760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061073082610c90565b9050806001600160a01b0316836001600160a01b0316141561079f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610700565b336001600160a01b03821614806107bb57506107bb8133610548565b61082d5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610700565b610838838383611271565b505050565b6000546001600160a01b031633146108975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610700565b600954811061090e5760405162461bcd60e51b815260206004820152603560248201527f656769726c64616f3a206e6577207072696365206d757374206265206c6f776560448201527f72207468616e2070726576696f757320707269636500000000000000000000006064820152608401610700565b600955565b6108388383836112da565b600061092983610d30565b82106109825760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610700565b600061098d60015490565b905060008060005b83811015610a37576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109e857805192505b876001600160a01b0316836001600160a01b03161415610a245786841415610a16575093506105fd92505050565b83610a2081612353565b9450505b5080610a2f81612353565b915050610995565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610700565b6000546001600160a01b03163314610b005760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610700565b60405133904780156108fc02916000818181858888f19350505050158015610b2c573d6000803e3d6000fd5b50565b61083883838360405180602001604052806000815250611049565b6000610b5560015490565b8210610baf5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610700565b5090565b6000546001600160a01b03163314610c0d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610700565b610838600b8383611e42565b600a5460c88110610c6c5760405162461bcd60e51b815260206004820152601e60248201527f656769726c64616f3a2066726565206d696e74732065786861757374656400006044820152606401610700565b6001600a6000828254610c7f919061224b565b90915550610b2c905033600161166d565b6000610c9b82611687565b5192915050565b600b8054610caf90612318565b80601f0160208091040260200160405190810160405280929190818152602001828054610cdb90612318565b8015610d285780601f10610cfd57610100808354040283529160200191610d28565b820191906000526020600020905b815481529060010190602001808311610d0b57829003601f168201915b505050505081565b60006001600160a01b038216610d9c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610700565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610e1b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610700565b610e25600061183f565b565b60606003805461061290612318565b600a54610447610e46838361224b565b10610ea45760405162461bcd60e51b815260206004820152602860248201527f656769726c64616f3a206d696e7420776f756c642065786365656420746f74616044820152676c20737570706c7960c01b6064820152608401610700565b600082118015610eb5575060058211155b610f015760405162461bcd60e51b815260206004820152601e60248201527f656769726c64616f3a206d696e7420616d6f756e7420746f6f206869676800006044820152606401610700565b81600954610f0f9190612277565b341015610f5e5760405162461bcd60e51b815260206004820152601f60248201527f656769726c64616f3a20696e73756666696369656e74206574682073656e74006044820152606401610700565b81600a6000828254610f70919061224b565b90915550610f809050338361166d565b5050565b6001600160a01b038216331415610fdd5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610700565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110548484846112da565b6110608484848461189c565b6110c85760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610700565b50505050565b60606110db826001541190565b61114d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610700565b60006111576119f6565b9050600081511161117757604051806020016040528060008152506111a2565b8061118184611a05565b6040516020016111929291906121ab565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146112035760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610700565b6001600160a01b0381166112685760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610700565b610b2c8161183f565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112e582611687565b80519091506000906001600160a01b0316336001600160a01b0316148061131c57503361131184610695565b6001600160a01b0316145b8061132e5750815161132e9033610548565b9050806113a35760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610700565b846001600160a01b031682600001516001600160a01b0316146114175760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610700565b6001600160a01b03841661147b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610700565b61148b6000848460000151611271565b6001600160a01b03851660009081526005602052604081208054600192906114bd9084906001600160801b0316612296565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261150991859116612229565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561159184600161224b565b6000818152600460205260409020549091506001600160a01b0316611623576115bb816001541190565b156116235760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610f80828260405180602001604052806000815250611b1b565b60408051808201909152600080825260208201526116a6826001541190565b6117055760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610700565b60007f00000000000000000000000000000000000000000000000000000000000000058310611766576117587f0000000000000000000000000000000000000000000000000000000000000005846122be565b61176390600161224b565b90505b825b8181106117d0576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156117bd57949350505050565b50806117c881612301565b915050611768565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006064820152608401610700565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b156119ea57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118e09033908990889088906004016121da565b602060405180830381600087803b1580156118fa57600080fd5b505af192505050801561192a575060408051601f3d908101601f19168201909252611927918101906120d7565b60015b6119d0573d808015611958576040519150601f19603f3d011682016040523d82523d6000602084013e61195d565b606091505b5080516119c85760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610700565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119ee565b5060015b949350505050565b6060600b805461061290612318565b606081611a295750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a535780611a3d81612353565b9150611a4c9050600a83612263565b9150611a2d565b60008167ffffffffffffffff811115611a6e57611a6e6123c4565b6040519080825280601f01601f191660200182016040528015611a98576020820181803683370190505b5090505b84156119ee57611aad6001836122be565b9150611aba600a8661236e565b611ac590603061224b565b60f81b818381518110611ada57611ada6123ae565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611b14600a86612263565b9450611a9c565b6001546001600160a01b038416611b7e5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610700565b611b89816001541190565b15611bd65760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610700565b7f0000000000000000000000000000000000000000000000000000000000000005831115611c515760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610700565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611cad908790612229565b6001600160801b03168152602001858360200151611ccb9190612229565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611e375760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611daf600088848861189c565b611e175760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401610700565b81611e2181612353565b9250508080611e2f90612353565b915050611d62565b506001819055611665565b828054611e4e90612318565b90600052602060002090601f016020900481019282611e705760008555611eb6565b82601f10611e895782800160ff19823516178555611eb6565b82800160010185558215611eb6579182015b82811115611eb6578235825591602001919060010190611e9b565b50610baf9291505b80821115610baf5760008155600101611ebe565b80356001600160a01b0381168114611ee957600080fd5b919050565b600060208284031215611f0057600080fd5b6111a282611ed2565b60008060408385031215611f1c57600080fd5b611f2583611ed2565b9150611f3360208401611ed2565b90509250929050565b600080600060608486031215611f5157600080fd5b611f5a84611ed2565b9250611f6860208501611ed2565b9150604084013590509250925092565b60008060008060808587031215611f8e57600080fd5b611f9785611ed2565b9350611fa560208601611ed2565b925060408501359150606085013567ffffffffffffffff80821115611fc957600080fd5b818701915087601f830112611fdd57600080fd5b813581811115611fef57611fef6123c4565b604051601f8201601f19908116603f01168101908382118183101715612017576120176123c4565b816040528281528a602084870101111561203057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561206757600080fd5b61207083611ed2565b91506020830135801515811461208557600080fd5b809150509250929050565b600080604083850312156120a357600080fd5b6120ac83611ed2565b946020939093013593505050565b6000602082840312156120cc57600080fd5b81356111a2816123da565b6000602082840312156120e957600080fd5b81516111a2816123da565b6000806020838503121561210757600080fd5b823567ffffffffffffffff8082111561211f57600080fd5b818501915085601f83011261213357600080fd5b81358181111561214257600080fd5b86602082850101111561215457600080fd5b60209290920196919550909350505050565b60006020828403121561217857600080fd5b5035919050565b600081518084526121978160208601602086016122d5565b601f01601f19169290920160200192915050565b600083516121bd8184602088016122d5565b8351908301906121d18183602088016122d5565b01949350505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261220c608083018461217f565b9695505050505050565b6020815260006111a2602083018461217f565b60006001600160801b038083168185168083038211156121d1576121d1612382565b6000821982111561225e5761225e612382565b500190565b60008261227257612272612398565b500490565b600081600019048311821515161561229157612291612382565b500290565b60006001600160801b03838116908316818110156122b6576122b6612382565b039392505050565b6000828210156122d0576122d0612382565b500390565b60005b838110156122f05781810151838201526020016122d8565b838111156110c85750506000910152565b60008161231057612310612382565b506000190190565b600181811c9082168061232c57607f821691505b6020821081141561234d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561236757612367612382565b5060010190565b60008261237d5761237d612398565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b2c57600080fdfea264697066735822122079d71a34d86cdc024efff84831cab4360ec8707f5384a934da3492cfdf0100c564736f6c63430008070033

Deployed Bytecode Sourcemap

39609:1602:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24648:370;;;;;;;;;;-1:-1:-1;24648:370:0;;;;;:::i;:::-;;:::i;:::-;;;5693:14:1;;5686:22;5668:41;;5656:2;5641:18;24648:370:0;;;;;;;;39755:38;;;;;;;;;;;;39792:1;39755:38;;;;;16057:25:1;;;16045:2;16030:18;39755:38:0;15911:177:1;26374:94:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27899:204::-;;;;;;;;;;-1:-1:-1;27899:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4945:55:1;;;4927:74;;4915:2;4900:18;27899:204:0;4781:226:1;27462:379:0;;;;;;;;;;-1:-1:-1;27462:379:0;;;;;:::i;:::-;;:::i;:::-;;40208:181;;;;;;;;;;-1:-1:-1;40208:181:0;;;;;:::i;:::-;;:::i;23209:94::-;;;;;;;;;;-1:-1:-1;23285:12:0;;23209:94;;28749:142;;;;;;;;;;-1:-1:-1;28749:142:0;;;;;:::i;:::-;;:::i;23840:744::-;;;;;;;;;;-1:-1:-1;23840:744:0;;;;;:::i;:::-;;:::i;39654:41::-;;;;;;;;;;;;39691:4;39654:41;;41099:109;;;;;;;;;;;;;:::i;28954:157::-;;;;;;;;;;-1:-1:-1;28954:157:0;;;;;:::i;:::-;;:::i;23372:177::-;;;;;;;;;;-1:-1:-1;23372:177:0;;;;;:::i;:::-;;:::i;39988:96::-;;;;;;;;;;-1:-1:-1;39988:96:0;;;;;:::i;:::-;;:::i;40856:235::-;;;;;;;;;;;;;:::i;26197:118::-;;;;;;;;;;-1:-1:-1;26197:118:0;;;;;:::i;:::-;;:::i;39802:37::-;;;;;;;;;;;;;;;;39881:21;;;;;;;;;;;;;:::i;25074:211::-;;;;;;;;;;-1:-1:-1;25074:211:0;;;;;:::i;:::-;;:::i;38663:103::-;;;;;;;;;;;;;:::i;39846:28::-;;;;;;;;;;;;;;;;38012:87;;;;;;;;;;-1:-1:-1;38058:7:0;38085:6;-1:-1:-1;;;;;38085:6:0;38012:87;;26529:98;;;;;;;;;;;;;:::i;40397:451::-;;;;;;:::i;:::-;;:::i;28167:274::-;;;;;;;;;;-1:-1:-1;28167:274:0;;;;;:::i;:::-;;:::i;29174:311::-;;;;;;;;;;-1:-1:-1;29174:311:0;;;;;:::i;:::-;;:::i;26690:394::-;;;;;;;;;;-1:-1:-1;26690:394:0;;;;;:::i;:::-;;:::i;39702:46::-;;;;;;;;;;;;39745:3;39702:46;;33589:43;;;;;;;;;;;;;;;;28504:186;;;;;;;;;;-1:-1:-1;28504:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;28649:25:0;;;28626:4;28649:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28504:186;38921:201;;;;;;;;;;-1:-1:-1;38921:201:0;;;;;:::i;:::-;;:::i;24648:370::-;24775:4;-1:-1:-1;;;;;;24805:40:0;;-1:-1:-1;;;24805:40:0;;:99;;-1:-1:-1;;;;;;;24856:48:0;;-1:-1:-1;;;24856:48:0;24805:99;:160;;;-1:-1:-1;;;;;;;24915:50:0;;-1:-1:-1;;;24915:50:0;24805:160;:207;;;-1:-1:-1;;;;;;;;;;13197:40:0;;;24976:36;24791:221;24648:370;-1:-1:-1;;24648:370:0:o;26374:94::-;26428:13;26457:5;26450:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26374:94;:::o;27899:204::-;27967:7;27991:16;27999:7;29811:12;;-1:-1:-1;29801:22:0;29724:105;27991:16;27983:74;;;;-1:-1:-1;;;27983:74:0;;15296:2:1;27983:74:0;;;15278:21:1;15335:2;15315:18;;;15308:30;15374:34;15354:18;;;15347:62;-1:-1:-1;;;15425:18:1;;;15418:43;15478:19;;27983:74:0;;;;;;;;;-1:-1:-1;28073:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28073:24:0;;27899:204::o;27462:379::-;27531:13;27547:24;27563:7;27547:15;:24::i;:::-;27531:40;;27592:5;-1:-1:-1;;;;;27586:11:0;:2;-1:-1:-1;;;;;27586:11:0;;;27578:58;;;;-1:-1:-1;;;27578:58:0;;12163:2:1;27578:58:0;;;12145:21:1;12202:2;12182:18;;;12175:30;12241:34;12221:18;;;12214:62;-1:-1:-1;;;12292:18:1;;;12285:32;12334:19;;27578:58:0;11961:398:1;27578:58:0;20759:10;-1:-1:-1;;;;;27661:21:0;;;;:62;;-1:-1:-1;27686:37:0;27703:5;20759:10;28504:186;:::i;27686:37::-;27645:153;;;;-1:-1:-1;;;27645:153:0;;9367:2:1;27645:153:0;;;9349:21:1;9406:2;9386:18;;;9379:30;9445:34;9425:18;;;9418:62;9516:27;9496:18;;;9489:55;9561:19;;27645:153:0;9165:421:1;27645:153:0;27807:28;27816:2;27820:7;27829:5;27807:8;:28::i;:::-;27524:317;27462:379;;:::o;40208:181::-;38058:7;38085:6;-1:-1:-1;;;;;38085:6:0;20759:10;38232:23;38224:68;;;;-1:-1:-1;;;38224:68:0;;10612:2:1;38224:68:0;;;10594:21:1;;;10631:18;;;10624:30;10690:34;10670:18;;;10663:62;10742:18;;38224:68:0;10410:356:1;38224:68:0;40287:9:::1;;40280:4;:16;40272:82;;;::::0;-1:-1:-1;;;40272:82:0;;8945:2:1;40272:82:0::1;::::0;::::1;8927:21:1::0;8984:2;8964:18;;;8957:30;9023:34;9003:18;;;8996:62;9094:23;9074:18;;;9067:51;9135:19;;40272:82:0::1;8743:417:1::0;40272:82:0::1;40365:9;:16:::0;40208:181::o;28749:142::-;28857:28;28867:4;28873:2;28877:7;28857:9;:28::i;23840:744::-;23949:7;23984:16;23994:5;23984:9;:16::i;:::-;23976:5;:24;23968:71;;;;-1:-1:-1;;;23968:71:0;;6146:2:1;23968:71:0;;;6128:21:1;6185:2;6165:18;;;6158:30;6224:34;6204:18;;;6197:62;-1:-1:-1;;;6275:18:1;;;6268:32;6317:19;;23968:71:0;5944:398:1;23968:71:0;24046:22;24071:13;23285:12;;;23209:94;24071:13;24046:38;;24091:19;24121:25;24171:9;24166:350;24190:14;24186:1;:18;24166:350;;;24220:31;24254:14;;;:11;:14;;;;;;;;;24220:48;;;;;;;;;-1:-1:-1;;;;;24220:48:0;;;;;-1:-1:-1;;;24220:48:0;;;;;;;;;;;;24281:28;24277:89;;24342:14;;;-1:-1:-1;24277:89:0;24399:5;-1:-1:-1;;;;;24378:26:0;:17;-1:-1:-1;;;;;24378:26:0;;24374:135;;;24436:5;24421:11;:20;24417:59;;;-1:-1:-1;24463:1:0;-1:-1:-1;24456:8:0;;-1:-1:-1;;;24456:8:0;24417:59;24486:13;;;;:::i;:::-;;;;24374:135;-1:-1:-1;24206:3:0;;;;:::i;:::-;;;;24166:350;;;-1:-1:-1;24522:56:0;;-1:-1:-1;;;24522:56:0;;14105:2:1;24522:56:0;;;14087:21:1;14144:2;14124:18;;;14117:30;14183:34;14163:18;;;14156:62;14254:16;14234:18;;;14227:44;14288:19;;24522:56:0;13903:410:1;41099:109:0;38058:7;38085:6;-1:-1:-1;;;;;38085:6:0;20759:10;38232:23;38224:68;;;;-1:-1:-1;;;38224:68:0;;10612:2:1;38224:68:0;;;10594:21:1;;;10631:18;;;10624:30;10690:34;10670:18;;;10663:62;10742:18;;38224:68:0;10410:356:1;38224:68:0;41149:51:::1;::::0;41157:10:::1;::::0;41178:21:::1;41149:51:::0;::::1;;;::::0;::::1;::::0;;;41178:21;41157:10;41149:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;41099:109::o:0;28954:157::-;29066:39;29083:4;29089:2;29093:7;29066:39;;;;;;;;;;;;:16;:39::i;23372:177::-;23439:7;23471:13;23285:12;;;23209:94;23471:13;23463:5;:21;23455:69;;;;-1:-1:-1;;;23455:69:0;;7726:2:1;23455:69:0;;;7708:21:1;7765:2;7745:18;;;7738:30;7804:34;7784:18;;;7777:62;-1:-1:-1;;;7855:18:1;;;7848:33;7898:19;;23455:69:0;7524:399:1;23455:69:0;-1:-1:-1;23538:5:0;23372:177::o;39988:96::-;38058:7;38085:6;-1:-1:-1;;;;;38085:6:0;20759:10;38232:23;38224:68;;;;-1:-1:-1;;;38224:68:0;;10612:2:1;38224:68:0;;;10594:21:1;;;10631:18;;;10624:30;10690:34;10670:18;;;10663:62;10742:18;;38224:68:0;10410:356:1;38224:68:0;40061:15:::1;:7;40071:5:::0;;40061:15:::1;:::i;40856:235::-:0;40913:13;;39745:3;40955:25;;40947:68;;;;-1:-1:-1;;;40947:68:0;;13344:2:1;40947:68:0;;;13326:21:1;13383:2;13363:18;;;13356:30;13422:32;13402:18;;;13395:60;13472:18;;40947:68:0;13142:354:1;40947:68:0;41045:1;41028:13;;:18;;;;;;;:::i;:::-;;;;-1:-1:-1;41059:24:0;;-1:-1:-1;41069:10:0;41081:1;41059:9;:24::i;26197:118::-;26261:7;26284:20;26296:7;26284:11;:20::i;:::-;:25;;26197:118;-1:-1:-1;;26197:118:0:o;39881:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25074:211::-;25138:7;-1:-1:-1;;;;;25162:19:0;;25154:75;;;;-1:-1:-1;;;25154:75:0;;9793:2:1;25154:75:0;;;9775:21:1;9832:2;9812:18;;;9805:30;9871:34;9851:18;;;9844:62;-1:-1:-1;;;9922:18:1;;;9915:41;9973:19;;25154:75:0;9591:407:1;25154:75:0;-1:-1:-1;;;;;;25251:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25251:27:0;;25074:211::o;38663:103::-;38058:7;38085:6;-1:-1:-1;;;;;38085:6:0;20759:10;38232:23;38224:68;;;;-1:-1:-1;;;38224:68:0;;10612:2:1;38224:68:0;;;10594:21:1;;;10631:18;;;10624:30;10690:34;10670:18;;;10663:62;10742:18;;38224:68:0;10410:356:1;38224:68:0;38728:30:::1;38755:1;38728:18;:30::i;:::-;38663:103::o:0;26529:98::-;26585:13;26614:7;26607:14;;;;;:::i;40397:451::-;40473:13;;39691:4;40507:16;40516:7;40473:13;40507:16;:::i;:::-;:29;40499:82;;;;-1:-1:-1;;;40499:82:0;;8536:2:1;40499:82:0;;;8518:21:1;8575:2;8555:18;;;8548:30;8614:34;8594:18;;;8587:62;-1:-1:-1;;;8665:18:1;;;8658:38;8713:19;;40499:82:0;8334:404:1;40499:82:0;40610:1;40600:7;:11;:36;;;;;39792:1;40615:7;:21;;40600:36;40592:79;;;;-1:-1:-1;;;40592:79:0;;6549:2:1;40592:79:0;;;6531:21:1;6588:2;6568:18;;;6561:30;6627:32;6607:18;;;6600:60;6677:18;;40592:79:0;6347:354:1;40592:79:0;40716:7;40704:9;;:19;;;;:::i;:::-;40690:9;:34;;40682:78;;;;-1:-1:-1;;;40682:78:0;;14936:2:1;40682:78:0;;;14918:21:1;14975:2;14955:18;;;14948:30;15014:33;14994:18;;;14987:61;15065:18;;40682:78:0;14734:355:1;40682:78:0;40790:7;40773:13;;:24;;;;;;;:::i;:::-;;;;-1:-1:-1;40810:30:0;;-1:-1:-1;40820:10:0;40832:7;40810:9;:30::i;:::-;40445:403;40397:451;:::o;28167:274::-;-1:-1:-1;;;;;28258:24:0;;20759:10;28258:24;;28250:63;;;;-1:-1:-1;;;28250:63:0;;11389:2:1;28250:63:0;;;11371:21:1;11428:2;11408:18;;;11401:30;11467:28;11447:18;;;11440:56;11513:18;;28250:63:0;11187:350:1;28250:63:0;20759:10;28322:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28322:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28322:53:0;;;;;;;;;;28387:48;;5668:41:1;;;28322:42:0;;20759:10;28387:48;;5641:18:1;28387:48:0;;;;;;;28167:274;;:::o;29174:311::-;29311:28;29321:4;29327:2;29331:7;29311:9;:28::i;:::-;29362:48;29385:4;29391:2;29395:7;29404:5;29362:22;:48::i;:::-;29346:133;;;;-1:-1:-1;;;29346:133:0;;12566:2:1;29346:133:0;;;12548:21:1;12605:2;12585:18;;;12578:30;12644:34;12624:18;;;12617:62;-1:-1:-1;;;12695:18:1;;;12688:49;12754:19;;29346:133:0;12364:415:1;29346:133:0;29174:311;;;;:::o;26690:394::-;26788:13;26829:16;26837:7;29811:12;;-1:-1:-1;29801:22:0;29724:105;26829:16;26813:97;;;;-1:-1:-1;;;26813:97:0;;10973:2:1;26813:97:0;;;10955:21:1;11012:2;10992:18;;;10985:30;11051:34;11031:18;;;11024:62;11122:17;11102:18;;;11095:45;11157:19;;26813:97:0;10771:411:1;26813:97:0;26919:21;26943:10;:8;:10::i;:::-;26919:34;;26998:1;26980:7;26974:21;:25;:104;;;;;;;;;;;;;;;;;27035:7;27044:18;:7;:16;:18::i;:::-;27018:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26974:104;26960:118;26690:394;-1:-1:-1;;;26690:394:0:o;38921:201::-;38058:7;38085:6;-1:-1:-1;;;;;38085:6:0;20759:10;38232:23;38224:68;;;;-1:-1:-1;;;38224:68:0;;10612:2:1;38224:68:0;;;10594:21:1;;;10631:18;;;10624:30;10690:34;10670:18;;;10663:62;10742:18;;38224:68:0;10410:356:1;38224:68:0;-1:-1:-1;;;;;39010:22:0;::::1;39002:73;;;::::0;-1:-1:-1;;;39002:73:0;;6908:2:1;39002:73:0::1;::::0;::::1;6890:21:1::0;6947:2;6927:18;;;6920:30;6986:34;6966:18;;;6959:62;-1:-1:-1;;;7037:18:1;;;7030:36;7083:19;;39002:73:0::1;6706:402:1::0;39002:73:0::1;39086:28;39105:8;39086:18;:28::i;33411:172::-:0;33508:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;33508:29:0;-1:-1:-1;;;;;33508:29:0;;;;;;;;;33549:28;;33508:24;;33549:28;;;;;;;33411:172;;;:::o;31776:1529::-;31873:35;31911:20;31923:7;31911:11;:20::i;:::-;31982:18;;31873:58;;-1:-1:-1;31940:22:0;;-1:-1:-1;;;;;31966:34:0;20759:10;-1:-1:-1;;;;;31966:34:0;;:81;;;-1:-1:-1;20759:10:0;32011:20;32023:7;32011:11;:20::i;:::-;-1:-1:-1;;;;;32011:36:0;;31966:81;:142;;;-1:-1:-1;32075:18:0;;32058:50;;20759:10;28504:186;:::i;32058:50::-;31940:169;;32134:17;32118:101;;;;-1:-1:-1;;;32118:101:0;;11744:2:1;32118:101:0;;;11726:21:1;11783:2;11763:18;;;11756:30;11822:34;11802:18;;;11795:62;11893:20;11873:18;;;11866:48;11931:19;;32118:101:0;11542:414:1;32118:101:0;32266:4;-1:-1:-1;;;;;32244:26:0;:13;:18;;;-1:-1:-1;;;;;32244:26:0;;32228:98;;;;-1:-1:-1;;;32228:98:0;;10205:2:1;32228:98:0;;;10187:21:1;10244:2;10224:18;;;10217:30;10283:34;10263:18;;;10256:62;-1:-1:-1;;;10334:18:1;;;10327:36;10380:19;;32228:98:0;10003:402:1;32228:98:0;-1:-1:-1;;;;;32341:16:0;;32333:66;;;;-1:-1:-1;;;32333:66:0;;8130:2:1;32333:66:0;;;8112:21:1;8169:2;8149:18;;;8142:30;8208:34;8188:18;;;8181:62;-1:-1:-1;;;8259:18:1;;;8252:35;8304:19;;32333:66:0;7928:401:1;32333:66:0;32508:49;32525:1;32529:7;32538:13;:18;;;32508:8;:49::i;:::-;-1:-1:-1;;;;;32566:18:0;;;;;;:12;:18;;;;;:31;;32596:1;;32566:18;:31;;32596:1;;-1:-1:-1;;;;;32566:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;32566:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32604:16:0;;-1:-1:-1;32604:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;32604:16:0;;:29;;-1:-1:-1;;32604:29:0;;:::i;:::-;;;-1:-1:-1;;;;;32604:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32663:43:0;;;;;;;;-1:-1:-1;;;;;32663:43:0;;;;;;32689:15;32663:43;;;;;;;;;-1:-1:-1;32640:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;32640:66:0;-1:-1:-1;;;;;;32640:66:0;;;;;;;;;;;32956:11;32652:7;-1:-1:-1;32956:11:0;:::i;:::-;33019:1;32978:24;;;:11;:24;;;;;:29;32934:33;;-1:-1:-1;;;;;;32978:29:0;32974:236;;33036:20;33044:11;29811:12;;-1:-1:-1;29801:22:0;29724:105;33036:20;33032:171;;;33096:97;;;;;;;;33123:18;;-1:-1:-1;;;;;33096:97:0;;;;;;33154:28;;;;33096:97;;;;;;;;;;-1:-1:-1;33069:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;33069:124:0;-1:-1:-1;;;;;;33069:124:0;;;;;;;;;;;;33032:171;33242:7;33238:2;-1:-1:-1;;;;;33223:27:0;33232:4;-1:-1:-1;;;;;33223:27:0;;;;;;;;;;;33257:42;31866:1439;;;31776:1529;;;:::o;29835:98::-;29900:27;29910:2;29914:8;29900:27;;;;;;;;;;;;:9;:27::i;25537:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;25654:16:0;25662:7;29811:12;;-1:-1:-1;29801:22:0;29724:105;25654:16;25646:71;;;;-1:-1:-1;;;25646:71:0;;7315:2:1;25646:71:0;;;7297:21:1;7354:2;7334:18;;;7327:30;7393:34;7373:18;;;7366:62;-1:-1:-1;;;7444:18:1;;;7437:40;7494:19;;25646:71:0;7113:406:1;25646:71:0;25726:26;25774:12;25763:7;:23;25759:93;;25818:22;25828:12;25818:7;:22;:::i;:::-;:26;;25843:1;25818:26;:::i;:::-;25797:47;;25759:93;25880:7;25860:212;25897:18;25889:4;:26;25860:212;;25934:31;25968:17;;;:11;:17;;;;;;;;;25934:51;;;;;;;;;-1:-1:-1;;;;;25934:51:0;;;;;-1:-1:-1;;;25934:51:0;;;;;;;;;;;;25998:28;25994:71;;26046:9;25537:606;-1:-1:-1;;;;25537:606:0:o;25994:71::-;-1:-1:-1;25917:6:0;;;;:::i;:::-;;;;25860:212;;;-1:-1:-1;26080:57:0;;-1:-1:-1;;;26080:57:0;;14520:2:1;26080:57:0;;;14502:21:1;14559:2;14539:18;;;14532:30;14598:34;14578:18;;;14571:62;14669:17;14649:18;;;14642:45;14704:19;;26080:57:0;14318:411:1;39282:191:0;39356:16;39375:6;;-1:-1:-1;;;;;39392:17:0;;;-1:-1:-1;;39392:17:0;;;;;;39425:40;;39375:6;;;;;;;39425:40;;39356:16;39425:40;39345:128;39282:191;:::o;35126:690::-;35263:4;-1:-1:-1;;;;;35280:13:0;;3267:20;3315:8;35276:535;;35319:72;;-1:-1:-1;;;35319:72:0;;-1:-1:-1;;;;;35319:36:0;;;;;:72;;20759:10;;35370:4;;35376:7;;35385:5;;35319:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35319:72:0;;;;;;;;-1:-1:-1;;35319:72:0;;;;;;;;;;;;:::i;:::-;;;35306:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35550:13:0;;35546:215;;35583:61;;-1:-1:-1;;;35583:61:0;;12566:2:1;35583:61:0;;;12548:21:1;12605:2;12585:18;;;12578:30;12644:34;12624:18;;;12617:62;-1:-1:-1;;;12695:18:1;;;12688:49;12754:19;;35583:61:0;12364:415:1;35546:215:0;35729:6;35723:13;35714:6;35710:2;35706:15;35699:38;35306:464;-1:-1:-1;;;;;;35441:55:0;-1:-1:-1;;;35441:55:0;;-1:-1:-1;35434:62:0;;35276:535;-1:-1:-1;35799:4:0;35276:535;35126:690;;;;;;:::o;40092:108::-;40152:13;40185:7;40178:14;;;;;:::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;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;30272:1272;30400:12;;-1:-1:-1;;;;;30427:16:0;;30419:62;;;;-1:-1:-1;;;30419:62:0;;13703:2:1;30419:62:0;;;13685:21:1;13742:2;13722:18;;;13715:30;13781:34;13761:18;;;13754:62;-1:-1:-1;;;13832:18:1;;;13825:31;13873:19;;30419:62:0;13501:397:1;30419:62:0;30618:21;30626:12;29811;;-1:-1:-1;29801:22:0;29724:105;30618:21;30617:22;30609:64;;;;-1:-1:-1;;;30609:64:0;;12986:2:1;30609:64:0;;;12968:21:1;13025:2;13005:18;;;12998:30;13064:31;13044:18;;;13037:59;13113:18;;30609:64:0;12784:353:1;30609:64:0;30700:12;30688:8;:24;;30680:71;;;;-1:-1:-1;;;30680:71:0;;15710:2:1;30680:71:0;;;15692:21:1;15749:2;15729:18;;;15722:30;15788:34;15768:18;;;15761:62;-1:-1:-1;;;15839:18:1;;;15832:32;15881:19;;30680:71:0;15508:398:1;30680:71:0;-1:-1:-1;;;;;30863:16:0;;30830:30;30863:16;;;:12;:16;;;;;;;;;30830:49;;;;;;;;;-1:-1:-1;;;;;30830:49:0;;;;;-1:-1:-1;;;30830:49:0;;;;;;;;;;;30905:119;;;;;;;;30925:19;;30830:49;;30905:119;;;30925:39;;30955:8;;30925:39;:::i;:::-;-1:-1:-1;;;;;30905:119:0;;;;;31008:8;30973:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;30905:119:0;;;;;;-1:-1:-1;;;;;30886:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;30886:138:0;;;;;;;;;;;;31059:43;;;;;;;;;;;31085:15;31059:43;;;;;;;;31031:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;31031:71:0;-1:-1:-1;;;;;;31031:71:0;;;;;;;;;;;;;;;;;;31043:12;;31155:281;31179:8;31175:1;:12;31155:281;;;31208:38;;31233:12;;-1:-1:-1;;;;;31208:38:0;;;31225:1;;31208:38;;31225:1;;31208:38;31273:59;31304:1;31308:2;31312:12;31326:5;31273:22;:59::i;:::-;31255:150;;;;-1:-1:-1;;;31255:150:0;;12566:2:1;31255:150:0;;;12548:21:1;12605:2;12585:18;;;12578:30;12644:34;12624:18;;;12617:62;-1:-1:-1;;;12695:18:1;;;12688:49;12754:19;;31255:150:0;12364:415:1;31255:150:0;31414:14;;;;:::i;:::-;;;;31189:3;;;;;:::i;:::-;;;;31155:281;;;-1:-1:-1;31444:12:0;:27;;;31478:60;29174:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:196:1;82:20;;-1:-1:-1;;;;;131:54:1;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:186::-;274:6;327:2;315:9;306:7;302:23;298:32;295:52;;;343:1;340;333:12;295:52;366:29;385:9;366:29;:::i;406:260::-;474:6;482;535:2;523:9;514:7;510:23;506:32;503:52;;;551:1;548;541:12;503:52;574:29;593:9;574:29;:::i;:::-;564:39;;622:38;656:2;645:9;641:18;622:38;:::i;:::-;612:48;;406:260;;;;;:::o;671:328::-;748:6;756;764;817:2;805:9;796:7;792:23;788:32;785:52;;;833:1;830;823:12;785:52;856:29;875:9;856:29;:::i;:::-;846:39;;904:38;938:2;927:9;923:18;904:38;:::i;:::-;894:48;;989:2;978:9;974:18;961:32;951:42;;671:328;;;;;:::o;1004:1138::-;1099:6;1107;1115;1123;1176:3;1164:9;1155:7;1151:23;1147:33;1144:53;;;1193:1;1190;1183:12;1144:53;1216:29;1235:9;1216:29;:::i;:::-;1206:39;;1264:38;1298:2;1287:9;1283:18;1264:38;:::i;:::-;1254:48;;1349:2;1338:9;1334:18;1321:32;1311:42;;1404:2;1393:9;1389:18;1376:32;1427:18;1468:2;1460:6;1457:14;1454:34;;;1484:1;1481;1474:12;1454:34;1522:6;1511:9;1507:22;1497:32;;1567:7;1560:4;1556:2;1552:13;1548:27;1538:55;;1589:1;1586;1579:12;1538:55;1625:2;1612:16;1647:2;1643;1640:10;1637:36;;;1653:18;;:::i;:::-;1728:2;1722:9;1696:2;1782:13;;-1:-1:-1;;1778:22:1;;;1802:2;1774:31;1770:40;1758:53;;;1826:18;;;1846:22;;;1823:46;1820:72;;;1872:18;;:::i;:::-;1912:10;1908:2;1901:22;1947:2;1939:6;1932:18;1987:7;1982:2;1977;1973;1969:11;1965:20;1962:33;1959:53;;;2008:1;2005;1998:12;1959:53;2064:2;2059;2055;2051:11;2046:2;2038:6;2034:15;2021:46;2109:1;2104:2;2099;2091:6;2087:15;2083:24;2076:35;2130:6;2120:16;;;;;;;1004:1138;;;;;;;:::o;2147:347::-;2212:6;2220;2273:2;2261:9;2252:7;2248:23;2244:32;2241:52;;;2289:1;2286;2279:12;2241:52;2312:29;2331:9;2312:29;:::i;:::-;2302:39;;2391:2;2380:9;2376:18;2363:32;2438:5;2431:13;2424:21;2417:5;2414:32;2404:60;;2460:1;2457;2450:12;2404:60;2483:5;2473:15;;;2147:347;;;;;:::o;2499:254::-;2567:6;2575;2628:2;2616:9;2607:7;2603:23;2599:32;2596:52;;;2644:1;2641;2634:12;2596:52;2667:29;2686:9;2667:29;:::i;:::-;2657:39;2743:2;2728:18;;;;2715:32;;-1:-1:-1;;;2499:254:1:o;2758:245::-;2816:6;2869:2;2857:9;2848:7;2844:23;2840:32;2837:52;;;2885:1;2882;2875:12;2837:52;2924:9;2911:23;2943:30;2967:5;2943:30;:::i;3008:249::-;3077:6;3130:2;3118:9;3109:7;3105:23;3101:32;3098:52;;;3146:1;3143;3136:12;3098:52;3178:9;3172:16;3197:30;3221:5;3197:30;:::i;3262:592::-;3333:6;3341;3394:2;3382:9;3373:7;3369:23;3365:32;3362:52;;;3410:1;3407;3400:12;3362:52;3450:9;3437:23;3479:18;3520:2;3512:6;3509:14;3506:34;;;3536:1;3533;3526:12;3506:34;3574:6;3563:9;3559:22;3549:32;;3619:7;3612:4;3608:2;3604:13;3600:27;3590:55;;3641:1;3638;3631:12;3590:55;3681:2;3668:16;3707:2;3699:6;3696:14;3693:34;;;3723:1;3720;3713:12;3693:34;3768:7;3763:2;3754:6;3750:2;3746:15;3742:24;3739:37;3736:57;;;3789:1;3786;3779:12;3736:57;3820:2;3812:11;;;;;3842:6;;-1:-1:-1;3262:592:1;;-1:-1:-1;;;;3262:592:1:o;3859:180::-;3918:6;3971:2;3959:9;3950:7;3946:23;3942:32;3939:52;;;3987:1;3984;3977:12;3939:52;-1:-1:-1;4010:23:1;;3859:180;-1:-1:-1;3859:180:1:o;4044:257::-;4085:3;4123:5;4117:12;4150:6;4145:3;4138:19;4166:63;4222:6;4215:4;4210:3;4206:14;4199:4;4192:5;4188:16;4166:63;:::i;:::-;4283:2;4262:15;-1:-1:-1;;4258:29:1;4249:39;;;;4290:4;4245:50;;4044:257;-1:-1:-1;;4044:257:1:o;4306:470::-;4485:3;4523:6;4517:13;4539:53;4585:6;4580:3;4573:4;4565:6;4561:17;4539:53;:::i;:::-;4655:13;;4614:16;;;;4677:57;4655:13;4614:16;4711:4;4699:17;;4677:57;:::i;:::-;4750:20;;4306:470;-1:-1:-1;;;;4306:470:1:o;5012:511::-;5206:4;-1:-1:-1;;;;;5316:2:1;5308:6;5304:15;5293:9;5286:34;5368:2;5360:6;5356:15;5351:2;5340:9;5336:18;5329:43;;5408:6;5403:2;5392:9;5388:18;5381:34;5451:3;5446:2;5435:9;5431:18;5424:31;5472:45;5512:3;5501:9;5497:19;5489:6;5472:45;:::i;:::-;5464:53;5012:511;-1:-1:-1;;;;;;5012:511:1:o;5720:219::-;5869:2;5858:9;5851:21;5832:4;5889:44;5929:2;5918:9;5914:18;5906:6;5889:44;:::i;16093:253::-;16133:3;-1:-1:-1;;;;;16222:2:1;16219:1;16215:10;16252:2;16249:1;16245:10;16283:3;16279:2;16275:12;16270:3;16267:21;16264:47;;;16291:18;;:::i;16351:128::-;16391:3;16422:1;16418:6;16415:1;16412:13;16409:39;;;16428:18;;:::i;:::-;-1:-1:-1;16464:9:1;;16351:128::o;16484:120::-;16524:1;16550;16540:35;;16555:18;;:::i;:::-;-1:-1:-1;16589:9:1;;16484:120::o;16609:168::-;16649:7;16715:1;16711;16707:6;16703:14;16700:1;16697:21;16692:1;16685:9;16678:17;16674:45;16671:71;;;16722:18;;:::i;:::-;-1:-1:-1;16762:9:1;;16609:168::o;16782:246::-;16822:4;-1:-1:-1;;;;;16935:10:1;;;;16905;;16957:12;;;16954:38;;;16972:18;;:::i;:::-;17009:13;;16782:246;-1:-1:-1;;;16782:246:1:o;17033:125::-;17073:4;17101:1;17098;17095:8;17092:34;;;17106:18;;:::i;:::-;-1:-1:-1;17143:9:1;;17033:125::o;17163:258::-;17235:1;17245:113;17259:6;17256:1;17253:13;17245:113;;;17335:11;;;17329:18;17316:11;;;17309:39;17281:2;17274:10;17245:113;;;17376:6;17373:1;17370:13;17367:48;;;-1:-1:-1;;17411:1:1;17393:16;;17386:27;17163:258::o;17426:136::-;17465:3;17493:5;17483:39;;17502:18;;:::i;:::-;-1:-1:-1;;;17538:18:1;;17426:136::o;17567:380::-;17646:1;17642:12;;;;17689;;;17710:61;;17764:4;17756:6;17752:17;17742:27;;17710:61;17817:2;17809:6;17806:14;17786:18;17783:38;17780:161;;;17863:10;17858:3;17854:20;17851:1;17844:31;17898:4;17895:1;17888:15;17926:4;17923:1;17916:15;17780:161;;17567:380;;;:::o;17952:135::-;17991:3;-1:-1:-1;;18012:17:1;;18009:43;;;18032:18;;:::i;:::-;-1:-1:-1;18079:1:1;18068:13;;17952:135::o;18092:112::-;18124:1;18150;18140:35;;18155:18;;:::i;:::-;-1:-1:-1;18189:9:1;;18092:112::o;18209:127::-;18270:10;18265:3;18261:20;18258:1;18251:31;18301:4;18298:1;18291:15;18325:4;18322:1;18315:15;18341:127;18402:10;18397:3;18393:20;18390:1;18383:31;18433:4;18430:1;18423:15;18457:4;18454:1;18447:15;18473:127;18534:10;18529:3;18525:20;18522:1;18515:31;18565:4;18562:1;18555:15;18589:4;18586:1;18579:15;18605:127;18666:10;18661:3;18657:20;18654:1;18647:31;18697:4;18694:1;18687:15;18721:4;18718:1;18711:15;18737:131;-1:-1:-1;;;;;;18811:32:1;;18801:43;;18791:71;;18858:1;18855;18848:12

Swarm Source

ipfs://79d71a34d86cdc024efff84831cab4360ec8707f5384a934da3492cfdf0100c5
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.