ETH Price: $3,468.90 (-1.08%)
Gas: 3 Gwei

Token

InvisibleDoodle (IDoodle)
 

Overview

Max Total Supply

5,565 IDoodle

Holders

290

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 IDoodle
0xe0b196f941427d6cD5eB3E693bEDa5715d4087B9
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:
InvisibleDoodle

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts 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 (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: ERC721A.sol


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

pragma solidity ^0.8.0;









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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: Invisibledoodle.sol




 
 /*

============================================== InvisibleDoodle ==============================================
*/                                                                                                         



pragma solidity ^0.8.0;


/**
 * @title InvisibleDoodle
 */
                                                                                                     
                                                                                            

 contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}
 
contract InvisibleDoodle is ERC721A, Ownable {

    bool public saleIsActive = true;
    string private _baseURIextended = "https://invisibledoodle.s3.us-west-1.amazonaws.com/metadata/invisibledoodle-metadata-";

    uint256 public Price = 0.01 ether;
	
	uint public maxSupply = 5555;
	address proxyRegistryAddress ; 
	

    constructor() ERC721A("InvisibleDoodle", "IDoodle", 500) {
       
    }

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

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

    function setSaleState(bool newState) public onlyOwner {
        saleIsActive = newState;
    }

    function setPrice(uint256 newPrice) public onlyOwner {
        Price = newPrice;        
    }

    function setProxyRegistryAddress(address proxyAddress) external onlyOwner {
        proxyRegistryAddress = proxyAddress;
    }

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

        return super.isApprovedForAll(owner, operator);
    }

    function mint(uint numberOfTokens) external payable {        
        require(saleIsActive, "Sale is inactive.");
        require((Price * numberOfTokens) <= msg.value, "Don't send under (in ETH).");		
        _safeMint(msg.sender, numberOfTokens);        
    }

     function gift(address _to,uint numberOfTokens) external onlyOwner {
         require(totalSupply() + numberOfTokens <= maxSupply, "Purchase would exceed max supply of tokens");
        _safeMint(_to, numberOfTokens);
    }

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

}

Contract Security Audit

Contract ABI

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

60008080556007556008805460ff60a01b1916600160a01b179055610120604052605560a081815290620025ce60c03980516200004591600991602090910190620001aa565b50662386f26fc10000600a556115b3600b553480156200006457600080fd5b506040518060400160405280600f81526020016e496e76697369626c65446f6f646c6560881b8152506040518060400160405280600781526020016649446f6f646c6560c81b8152506101f460008111620001155760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840160405180910390fd5b82516200012a906001906020860190620001aa565b50815162000140906002906020850190620001aa565b50608052506200015290503362000158565b6200028d565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001b89062000250565b90600052602060002090601f016020900481019282620001dc576000855562000227565b82601f10620001f757805160ff191683800117855562000227565b8280016001018555821562000227579182015b82811115620002275782518255916020019190600101906200020a565b506200023592915062000239565b5090565b5b808211156200023557600081556001016200023a565b600181811c908216806200026557607f821691505b602082108114156200028757634e487b7160e01b600052602260045260246000fd5b50919050565b608051612317620002b7600039600081816115e20152818161160c0152611a4d01526123176000f3fe6080604052600436106101cd5760003560e01c806391b7f5ed116100f7578063c87b56dd11610095578063d7224ba011610064578063d7224ba0146104fe578063e985e9c514610514578063eb8d244414610534578063f2fde38b1461055557600080fd5b8063c87b56dd14610488578063cbce4c97146104a8578063d26ea6c0146104c8578063d5abeb01146104e857600080fd5b8063a0712d68116100d1578063a0712d6814610415578063a22cb46514610428578063b88d4fde14610448578063c4e370951461046857600080fd5b806391b7f5ed146103ca57806395d89b41146103ea5780639dfde201146103ff57600080fd5b80633ccfd60b1161016f5780636352211e1161013e5780636352211e1461035757806370a0823114610377578063715018a6146103975780638da5cb5b146103ac57600080fd5b80633ccfd60b146102e257806342842e0e146102f75780634f6ccce71461031757806355f804b31461033757600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd1461028357806323b872dd146102a25780632f745c59146102c257600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611f19565b610575565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105e2565b6040516101fe919061206a565b34801561023557600080fd5b50610249610244366004611fb9565b610674565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611ed2565b610704565b005b34801561028f57600080fd5b506000545b6040519081526020016101fe565b3480156102ae57600080fd5b506102816102bd366004611ddc565b61081c565b3480156102ce57600080fd5b506102946102dd366004611ed2565b610827565b3480156102ee57600080fd5b50610281610995565b34801561030357600080fd5b50610281610312366004611ddc565b610a80565b34801561032357600080fd5b50610294610332366004611fb9565b610a9b565b34801561034357600080fd5b50610281610352366004611f70565b610afd565b34801561036357600080fd5b50610249610372366004611fb9565b610b3e565b34801561038357600080fd5b50610294610392366004611d86565b610b50565b3480156103a357600080fd5b50610281610be1565b3480156103b857600080fd5b506008546001600160a01b0316610249565b3480156103d657600080fd5b506102816103e5366004611fb9565b610c17565b3480156103f657600080fd5b5061021c610c46565b34801561040b57600080fd5b50610294600a5481565b610281610423366004611fb9565b610c55565b34801561043457600080fd5b50610281610443366004611e9d565b610d09565b34801561045457600080fd5b50610281610463366004611e1d565b610dce565b34801561047457600080fd5b50610281610483366004611efe565b610e07565b34801561049457600080fd5b5061021c6104a3366004611fb9565b610e4f565b3480156104b457600080fd5b506102816104c3366004611ed2565b610f1c565b3480156104d457600080fd5b506102816104e3366004611d86565b610fc8565b3480156104f457600080fd5b50610294600b5481565b34801561050a57600080fd5b5061029460075481565b34801561052057600080fd5b506101f261052f366004611da3565b611014565b34801561054057600080fd5b506008546101f290600160a01b900460ff1681565b34801561056157600080fd5b50610281610570366004611d86565b6110e4565b60006001600160e01b031982166380ac58cd60e01b14806105a657506001600160e01b03198216635b5e139f60e01b145b806105c157506001600160e01b0319821663780e9d6360e01b145b806105dc57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105f1906121f4565b80601f016020809104026020016040519081016040528092919081815260200182805461061d906121f4565b801561066a5780601f1061063f5761010080835404028352916020019161066a565b820191906000526020600020905b81548152906001019060200180831161064d57829003601f168201915b5050505050905090565b6000610681826000541190565b6106e85760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061070f82610b3e565b9050806001600160a01b0316836001600160a01b0316141561077e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106df565b336001600160a01b038216148061079a575061079a8133611014565b61080c5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106df565b61081783838361117c565b505050565b6108178383836111d8565b600061083283610b50565b821061088b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106df565b600080549080805b83811015610935576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156108e657805192505b876001600160a01b0316836001600160a01b031614156109225786841415610914575093506105dc92505050565b8361091e8161222f565b9450505b508061092d8161222f565b915050610893565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106df565b6008546001600160a01b031633146109bf5760405162461bcd60e51b81526004016106df9061207d565b604051600090339047908381818185875af1925050503d8060008114610a01576040519150601f19603f3d011682016040523d82523d6000602084013e610a06565b606091505b5050905080610a7d5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016106df565b50565b61081783838360405180602001604052806000815250610dce565b600080548210610af95760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106df565b5090565b6008546001600160a01b03163314610b275760405162461bcd60e51b81526004016106df9061207d565b8051610b3a906009906020840190611c6b565b5050565b6000610b4982611560565b5192915050565b60006001600160a01b038216610bbc5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106df565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610c0b5760405162461bcd60e51b81526004016106df9061207d565b610c15600061170a565b565b6008546001600160a01b03163314610c415760405162461bcd60e51b81526004016106df9061207d565b600a55565b6060600280546105f1906121f4565b600854600160a01b900460ff16610ca25760405162461bcd60e51b815260206004820152601160248201527029b0b6329034b99034b730b1ba34bb329760791b60448201526064016106df565b3481600a54610cb19190612153565b1115610cff5760405162461bcd60e51b815260206004820152601a60248201527f446f6e27742073656e6420756e6465722028696e20455448292e00000000000060448201526064016106df565b610a7d338261175c565b6001600160a01b038216331415610d625760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106df565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dd98484846111d8565b610de584848484611776565b610e015760405162461bcd60e51b81526004016106df906120b2565b50505050565b6008546001600160a01b03163314610e315760405162461bcd60e51b81526004016106df9061207d565b60088054911515600160a01b0260ff60a01b19909216919091179055565b6060610e5c826000541190565b610ec05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106df565b6000610eca611883565b90506000815111610eea5760405180602001604052806000815250610f15565b80610ef484611892565b604051602001610f05929190611ffe565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610f465760405162461bcd60e51b81526004016106df9061207d565b600b5481610f5360005490565b610f5d9190612127565b1115610fbe5760405162461bcd60e51b815260206004820152602a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015269206f6620746f6b656e7360b01b60648201526084016106df565b610b3a828261175c565b6008546001600160a01b03163314610ff25760405162461bcd60e51b81526004016106df9061207d565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600c5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b15801561106157600080fd5b505afa158015611075573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110999190611f53565b6001600160a01b031614156110b25760019150506105dc565b6001600160a01b0380851660009081526006602090815260408083209387168352929052205460ff165b949350505050565b6008546001600160a01b0316331461110e5760405162461bcd60e51b81526004016106df9061207d565b6001600160a01b0381166111735760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106df565b610a7d8161170a565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111e382611560565b80519091506000906001600160a01b0316336001600160a01b0316148061121a57503361120f84610674565b6001600160a01b0316145b8061122c5750815161122c9033611014565b9050806112965760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106df565b846001600160a01b031682600001516001600160a01b03161461130a5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106df565b6001600160a01b03841661136e5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106df565b61137e600084846000015161117c565b6001600160a01b03851660009081526004602052604081208054600192906113b09084906001600160801b0316612172565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926113fc91859116612105565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611484846001612127565b6000818152600360205260409020549091506001600160a01b0316611516576114ae816000541190565b156115165760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b604080518082019091526000808252602082015261157f826000541190565b6115de5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106df565b60007f0000000000000000000000000000000000000000000000000000000000000000831061163f576116317f00000000000000000000000000000000000000000000000000000000000000008461219a565b61163c906001612127565b90505b825b8181106116a9576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561169657949350505050565b50806116a1816121dd565b915050611641565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016106df565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b3a828260405180602001604052806000815250611990565b60006001600160a01b0384163b1561187857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117ba90339089908890889060040161202d565b602060405180830381600087803b1580156117d457600080fd5b505af1925050508015611804575060408051601f3d908101601f1916820190925261180191810190611f36565b60015b61185e573d808015611832576040519150601f19603f3d011682016040523d82523d6000602084013e611837565b606091505b5080516118565760405162461bcd60e51b81526004016106df906120b2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110dc565b506001949350505050565b6060600980546105f1906121f4565b6060816118b65750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118e057806118ca8161222f565b91506118d99050600a8361213f565b91506118ba565b60008167ffffffffffffffff8111156118fb576118fb6122a0565b6040519080825280601f01601f191660200182016040528015611925576020820181803683370190505b5090505b84156110dc5761193a60018361219a565b9150611947600a8661224a565b611952906030612127565b60f81b8183815181106119675761196761228a565b60200101906001600160f81b031916908160001a905350611989600a8661213f565b9450611929565b6000546001600160a01b0384166119f35760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106df565b6119fe816000541190565b15611a4b5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016106df565b7f0000000000000000000000000000000000000000000000000000000000000000831115611ac65760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016106df565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611b22908790612105565b6001600160801b03168152602001858360200151611b409190612105565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611c605760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c246000888488611776565b611c405760405162461bcd60e51b81526004016106df906120b2565b81611c4a8161222f565b9250508080611c589061222f565b915050611bd7565b506000819055611558565b828054611c77906121f4565b90600052602060002090601f016020900481019282611c995760008555611cdf565b82601f10611cb257805160ff1916838001178555611cdf565b82800160010185558215611cdf579182015b82811115611cdf578251825591602001919060010190611cc4565b50610af99291505b80821115610af95760008155600101611ce7565b600067ffffffffffffffff80841115611d1657611d166122a0565b604051601f8501601f19908116603f01168101908282118183101715611d3e57611d3e6122a0565b81604052809350858152868686011115611d5757600080fd5b858560208301376000602087830101525050509392505050565b80358015158114611d8157600080fd5b919050565b600060208284031215611d9857600080fd5b8135610f15816122b6565b60008060408385031215611db657600080fd5b8235611dc1816122b6565b91506020830135611dd1816122b6565b809150509250929050565b600080600060608486031215611df157600080fd5b8335611dfc816122b6565b92506020840135611e0c816122b6565b929592945050506040919091013590565b60008060008060808587031215611e3357600080fd5b8435611e3e816122b6565b93506020850135611e4e816122b6565b925060408501359150606085013567ffffffffffffffff811115611e7157600080fd5b8501601f81018713611e8257600080fd5b611e9187823560208401611cfb565b91505092959194509250565b60008060408385031215611eb057600080fd5b8235611ebb816122b6565b9150611ec960208401611d71565b90509250929050565b60008060408385031215611ee557600080fd5b8235611ef0816122b6565b946020939093013593505050565b600060208284031215611f1057600080fd5b610f1582611d71565b600060208284031215611f2b57600080fd5b8135610f15816122cb565b600060208284031215611f4857600080fd5b8151610f15816122cb565b600060208284031215611f6557600080fd5b8151610f15816122b6565b600060208284031215611f8257600080fd5b813567ffffffffffffffff811115611f9957600080fd5b8201601f81018413611faa57600080fd5b6110dc84823560208401611cfb565b600060208284031215611fcb57600080fd5b5035919050565b60008151808452611fea8160208601602086016121b1565b601f01601f19169290920160200192915050565b600083516120108184602088016121b1565b8351908301906120248183602088016121b1565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061206090830184611fd2565b9695505050505050565b602081526000610f156020830184611fd2565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156120245761202461225e565b6000821982111561213a5761213a61225e565b500190565b60008261214e5761214e612274565b500490565b600081600019048311821515161561216d5761216d61225e565b500290565b60006001600160801b03838116908316818110156121925761219261225e565b039392505050565b6000828210156121ac576121ac61225e565b500390565b60005b838110156121cc5781810151838201526020016121b4565b83811115610e015750506000910152565b6000816121ec576121ec61225e565b506000190190565b600181811c9082168061220857607f821691505b6020821081141561222957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122435761224361225e565b5060010190565b60008261225957612259612274565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610a7d57600080fd5b6001600160e01b031981168114610a7d57600080fdfea2646970667358221220f7a256a6a9d10f3e6700651fc4177f6dbc179361d39ff81602eb8a2810ed3bd064736f6c6343000807003368747470733a2f2f696e76697369626c65646f6f646c652e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6d657461646174612f696e76697369626c65646f6f646c652d6d657461646174612d

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c806391b7f5ed116100f7578063c87b56dd11610095578063d7224ba011610064578063d7224ba0146104fe578063e985e9c514610514578063eb8d244414610534578063f2fde38b1461055557600080fd5b8063c87b56dd14610488578063cbce4c97146104a8578063d26ea6c0146104c8578063d5abeb01146104e857600080fd5b8063a0712d68116100d1578063a0712d6814610415578063a22cb46514610428578063b88d4fde14610448578063c4e370951461046857600080fd5b806391b7f5ed146103ca57806395d89b41146103ea5780639dfde201146103ff57600080fd5b80633ccfd60b1161016f5780636352211e1161013e5780636352211e1461035757806370a0823114610377578063715018a6146103975780638da5cb5b146103ac57600080fd5b80633ccfd60b146102e257806342842e0e146102f75780634f6ccce71461031757806355f804b31461033757600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd1461028357806323b872dd146102a25780632f745c59146102c257600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611f19565b610575565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105e2565b6040516101fe919061206a565b34801561023557600080fd5b50610249610244366004611fb9565b610674565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611ed2565b610704565b005b34801561028f57600080fd5b506000545b6040519081526020016101fe565b3480156102ae57600080fd5b506102816102bd366004611ddc565b61081c565b3480156102ce57600080fd5b506102946102dd366004611ed2565b610827565b3480156102ee57600080fd5b50610281610995565b34801561030357600080fd5b50610281610312366004611ddc565b610a80565b34801561032357600080fd5b50610294610332366004611fb9565b610a9b565b34801561034357600080fd5b50610281610352366004611f70565b610afd565b34801561036357600080fd5b50610249610372366004611fb9565b610b3e565b34801561038357600080fd5b50610294610392366004611d86565b610b50565b3480156103a357600080fd5b50610281610be1565b3480156103b857600080fd5b506008546001600160a01b0316610249565b3480156103d657600080fd5b506102816103e5366004611fb9565b610c17565b3480156103f657600080fd5b5061021c610c46565b34801561040b57600080fd5b50610294600a5481565b610281610423366004611fb9565b610c55565b34801561043457600080fd5b50610281610443366004611e9d565b610d09565b34801561045457600080fd5b50610281610463366004611e1d565b610dce565b34801561047457600080fd5b50610281610483366004611efe565b610e07565b34801561049457600080fd5b5061021c6104a3366004611fb9565b610e4f565b3480156104b457600080fd5b506102816104c3366004611ed2565b610f1c565b3480156104d457600080fd5b506102816104e3366004611d86565b610fc8565b3480156104f457600080fd5b50610294600b5481565b34801561050a57600080fd5b5061029460075481565b34801561052057600080fd5b506101f261052f366004611da3565b611014565b34801561054057600080fd5b506008546101f290600160a01b900460ff1681565b34801561056157600080fd5b50610281610570366004611d86565b6110e4565b60006001600160e01b031982166380ac58cd60e01b14806105a657506001600160e01b03198216635b5e139f60e01b145b806105c157506001600160e01b0319821663780e9d6360e01b145b806105dc57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105f1906121f4565b80601f016020809104026020016040519081016040528092919081815260200182805461061d906121f4565b801561066a5780601f1061063f5761010080835404028352916020019161066a565b820191906000526020600020905b81548152906001019060200180831161064d57829003601f168201915b5050505050905090565b6000610681826000541190565b6106e85760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061070f82610b3e565b9050806001600160a01b0316836001600160a01b0316141561077e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106df565b336001600160a01b038216148061079a575061079a8133611014565b61080c5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106df565b61081783838361117c565b505050565b6108178383836111d8565b600061083283610b50565b821061088b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106df565b600080549080805b83811015610935576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156108e657805192505b876001600160a01b0316836001600160a01b031614156109225786841415610914575093506105dc92505050565b8361091e8161222f565b9450505b508061092d8161222f565b915050610893565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106df565b6008546001600160a01b031633146109bf5760405162461bcd60e51b81526004016106df9061207d565b604051600090339047908381818185875af1925050503d8060008114610a01576040519150601f19603f3d011682016040523d82523d6000602084013e610a06565b606091505b5050905080610a7d5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016106df565b50565b61081783838360405180602001604052806000815250610dce565b600080548210610af95760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106df565b5090565b6008546001600160a01b03163314610b275760405162461bcd60e51b81526004016106df9061207d565b8051610b3a906009906020840190611c6b565b5050565b6000610b4982611560565b5192915050565b60006001600160a01b038216610bbc5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106df565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610c0b5760405162461bcd60e51b81526004016106df9061207d565b610c15600061170a565b565b6008546001600160a01b03163314610c415760405162461bcd60e51b81526004016106df9061207d565b600a55565b6060600280546105f1906121f4565b600854600160a01b900460ff16610ca25760405162461bcd60e51b815260206004820152601160248201527029b0b6329034b99034b730b1ba34bb329760791b60448201526064016106df565b3481600a54610cb19190612153565b1115610cff5760405162461bcd60e51b815260206004820152601a60248201527f446f6e27742073656e6420756e6465722028696e20455448292e00000000000060448201526064016106df565b610a7d338261175c565b6001600160a01b038216331415610d625760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106df565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dd98484846111d8565b610de584848484611776565b610e015760405162461bcd60e51b81526004016106df906120b2565b50505050565b6008546001600160a01b03163314610e315760405162461bcd60e51b81526004016106df9061207d565b60088054911515600160a01b0260ff60a01b19909216919091179055565b6060610e5c826000541190565b610ec05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106df565b6000610eca611883565b90506000815111610eea5760405180602001604052806000815250610f15565b80610ef484611892565b604051602001610f05929190611ffe565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610f465760405162461bcd60e51b81526004016106df9061207d565b600b5481610f5360005490565b610f5d9190612127565b1115610fbe5760405162461bcd60e51b815260206004820152602a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015269206f6620746f6b656e7360b01b60648201526084016106df565b610b3a828261175c565b6008546001600160a01b03163314610ff25760405162461bcd60e51b81526004016106df9061207d565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600c5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b15801561106157600080fd5b505afa158015611075573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110999190611f53565b6001600160a01b031614156110b25760019150506105dc565b6001600160a01b0380851660009081526006602090815260408083209387168352929052205460ff165b949350505050565b6008546001600160a01b0316331461110e5760405162461bcd60e51b81526004016106df9061207d565b6001600160a01b0381166111735760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106df565b610a7d8161170a565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111e382611560565b80519091506000906001600160a01b0316336001600160a01b0316148061121a57503361120f84610674565b6001600160a01b0316145b8061122c5750815161122c9033611014565b9050806112965760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106df565b846001600160a01b031682600001516001600160a01b03161461130a5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106df565b6001600160a01b03841661136e5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106df565b61137e600084846000015161117c565b6001600160a01b03851660009081526004602052604081208054600192906113b09084906001600160801b0316612172565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926113fc91859116612105565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611484846001612127565b6000818152600360205260409020549091506001600160a01b0316611516576114ae816000541190565b156115165760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b604080518082019091526000808252602082015261157f826000541190565b6115de5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106df565b60007f00000000000000000000000000000000000000000000000000000000000001f4831061163f576116317f00000000000000000000000000000000000000000000000000000000000001f48461219a565b61163c906001612127565b90505b825b8181106116a9576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561169657949350505050565b50806116a1816121dd565b915050611641565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016106df565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b3a828260405180602001604052806000815250611990565b60006001600160a01b0384163b1561187857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117ba90339089908890889060040161202d565b602060405180830381600087803b1580156117d457600080fd5b505af1925050508015611804575060408051601f3d908101601f1916820190925261180191810190611f36565b60015b61185e573d808015611832576040519150601f19603f3d011682016040523d82523d6000602084013e611837565b606091505b5080516118565760405162461bcd60e51b81526004016106df906120b2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110dc565b506001949350505050565b6060600980546105f1906121f4565b6060816118b65750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118e057806118ca8161222f565b91506118d99050600a8361213f565b91506118ba565b60008167ffffffffffffffff8111156118fb576118fb6122a0565b6040519080825280601f01601f191660200182016040528015611925576020820181803683370190505b5090505b84156110dc5761193a60018361219a565b9150611947600a8661224a565b611952906030612127565b60f81b8183815181106119675761196761228a565b60200101906001600160f81b031916908160001a905350611989600a8661213f565b9450611929565b6000546001600160a01b0384166119f35760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106df565b6119fe816000541190565b15611a4b5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016106df565b7f00000000000000000000000000000000000000000000000000000000000001f4831115611ac65760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016106df565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611b22908790612105565b6001600160801b03168152602001858360200151611b409190612105565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611c605760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c246000888488611776565b611c405760405162461bcd60e51b81526004016106df906120b2565b81611c4a8161222f565b9250508080611c589061222f565b915050611bd7565b506000819055611558565b828054611c77906121f4565b90600052602060002090601f016020900481019282611c995760008555611cdf565b82601f10611cb257805160ff1916838001178555611cdf565b82800160010185558215611cdf579182015b82811115611cdf578251825591602001919060010190611cc4565b50610af99291505b80821115610af95760008155600101611ce7565b600067ffffffffffffffff80841115611d1657611d166122a0565b604051601f8501601f19908116603f01168101908282118183101715611d3e57611d3e6122a0565b81604052809350858152868686011115611d5757600080fd5b858560208301376000602087830101525050509392505050565b80358015158114611d8157600080fd5b919050565b600060208284031215611d9857600080fd5b8135610f15816122b6565b60008060408385031215611db657600080fd5b8235611dc1816122b6565b91506020830135611dd1816122b6565b809150509250929050565b600080600060608486031215611df157600080fd5b8335611dfc816122b6565b92506020840135611e0c816122b6565b929592945050506040919091013590565b60008060008060808587031215611e3357600080fd5b8435611e3e816122b6565b93506020850135611e4e816122b6565b925060408501359150606085013567ffffffffffffffff811115611e7157600080fd5b8501601f81018713611e8257600080fd5b611e9187823560208401611cfb565b91505092959194509250565b60008060408385031215611eb057600080fd5b8235611ebb816122b6565b9150611ec960208401611d71565b90509250929050565b60008060408385031215611ee557600080fd5b8235611ef0816122b6565b946020939093013593505050565b600060208284031215611f1057600080fd5b610f1582611d71565b600060208284031215611f2b57600080fd5b8135610f15816122cb565b600060208284031215611f4857600080fd5b8151610f15816122cb565b600060208284031215611f6557600080fd5b8151610f15816122b6565b600060208284031215611f8257600080fd5b813567ffffffffffffffff811115611f9957600080fd5b8201601f81018413611faa57600080fd5b6110dc84823560208401611cfb565b600060208284031215611fcb57600080fd5b5035919050565b60008151808452611fea8160208601602086016121b1565b601f01601f19169290920160200192915050565b600083516120108184602088016121b1565b8351908301906120248183602088016121b1565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061206090830184611fd2565b9695505050505050565b602081526000610f156020830184611fd2565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156120245761202461225e565b6000821982111561213a5761213a61225e565b500190565b60008261214e5761214e612274565b500490565b600081600019048311821515161561216d5761216d61225e565b500290565b60006001600160801b03838116908316818110156121925761219261225e565b039392505050565b6000828210156121ac576121ac61225e565b500390565b60005b838110156121cc5781810151838201526020016121b4565b83811115610e015750506000910152565b6000816121ec576121ec61225e565b506000190190565b600181811c9082168061220857607f821691505b6020821081141561222957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122435761224361225e565b5060010190565b60008261225957612259612274565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610a7d57600080fd5b6001600160e01b031981168114610a7d57600080fdfea2646970667358221220f7a256a6a9d10f3e6700651fc4177f6dbc179361d39ff81602eb8a2810ed3bd064736f6c63430008070033

Deployed Bytecode Sourcemap

40060:2159:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24646:370;;;;;;;;;;-1:-1:-1;24646:370:0;;;;;:::i;:::-;;:::i;:::-;;;6787:14:1;;6780:22;6762:41;;6750:2;6735:18;24646:370:0;;;;;;;;26372:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27897:204::-;;;;;;;;;;-1:-1:-1;27897:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6085:32:1;;;6067:51;;6055:2;6040:18;27897:204:0;5921:203:1;27460:379:0;;;;;;;;;;-1:-1:-1;27460:379:0;;;;;:::i;:::-;;:::i;:::-;;23210:94;;;;;;;;;;-1:-1:-1;23263:7:0;23286:12;23210:94;;;16781:25:1;;;16769:2;16754:18;23210:94:0;16635:177:1;28747:142:0;;;;;;;;;;-1:-1:-1;28747:142:0;;;;;:::i;:::-;;:::i;23838:744::-;;;;;;;;;;-1:-1:-1;23838:744:0;;;;;:::i;:::-;;:::i;41964:250::-;;;;;;;;;;;;;:::i;28952:157::-;;;;;;;;;;-1:-1:-1;28952:157:0;;;;;:::i;:::-;;:::i;23373:177::-;;;;;;;;;;-1:-1:-1;23373:177:0;;;;;:::i;:::-;;:::i;40478:111::-;;;;;;;;;;-1:-1:-1;40478:111:0;;;;;:::i;:::-;;:::i;26195:118::-;;;;;;;;;;-1:-1:-1;26195:118:0;;;;;:::i;:::-;;:::i;25072:211::-;;;;;;;;;;-1:-1:-1;25072:211:0;;;;;:::i;:::-;;:::i;38573:103::-;;;;;;;;;;;;;:::i;37922:87::-;;;;;;;;;;-1:-1:-1;37995:6:0;;-1:-1:-1;;;;;37995:6:0;37922:87;;40826:96;;;;;;;;;;-1:-1:-1;40826:96:0;;;;;:::i;:::-;;:::i;26527:98::-;;;;;;;;;;;;;:::i;40282:33::-;;;;;;;;;;;;;;;;41456:266;;;;;;:::i;:::-;;:::i;28165:274::-;;;;;;;;;;-1:-1:-1;28165:274:0;;;;;:::i;:::-;;:::i;29172:311::-;;;;;;;;;;-1:-1:-1;29172:311:0;;;;;:::i;:::-;;:::i;40722:96::-;;;;;;;;;;-1:-1:-1;40722:96:0;;;;;:::i;:::-;;:::i;26688:394::-;;;;;;;;;;-1:-1:-1;26688:394:0;;;;;:::i;:::-;;:::i;41731:225::-;;;;;;;;;;-1:-1:-1;41731:225:0;;;;;:::i;:::-;;:::i;40930:128::-;;;;;;;;;;-1:-1:-1;40930:128:0;;;;;:::i;:::-;;:::i;40322:28::-;;;;;;;;;;;;;;;;33503:43;;;;;;;;;;;;;;;;41066:382;;;;;;;;;;-1:-1:-1;41066:382:0;;;;;:::i;:::-;;:::i;40114:31::-;;;;;;;;;;-1:-1:-1;40114:31:0;;;;-1:-1:-1;;;40114:31:0;;;;;;38831:201;;;;;;;;;;-1:-1:-1;38831:201:0;;;;;:::i;:::-;;:::i;24646:370::-;24773:4;-1:-1:-1;;;;;;24803:40:0;;-1:-1:-1;;;24803:40:0;;:99;;-1:-1:-1;;;;;;;24854:48:0;;-1:-1:-1;;;24854:48:0;24803:99;:160;;;-1:-1:-1;;;;;;;24913:50:0;;-1:-1:-1;;;24913:50:0;24803:160;:207;;;-1:-1:-1;;;;;;;;;;13549:40:0;;;24974:36;24789:221;24646:370;-1:-1:-1;;24646:370:0:o;26372:94::-;26426:13;26455:5;26448:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26372:94;:::o;27897:204::-;27965:7;27989:16;27997:7;29779:4;29809:12;-1:-1:-1;29799:22:0;29722:105;27989:16;27981:74;;;;-1:-1:-1;;;27981:74:0;;15674:2:1;27981:74:0;;;15656:21:1;15713:2;15693:18;;;15686:30;15752:34;15732:18;;;15725:62;-1:-1:-1;;;15803:18:1;;;15796:43;15856:19;;27981:74:0;;;;;;;;;-1:-1:-1;28071:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28071:24:0;;27897:204::o;27460:379::-;27529:13;27545:24;27561:7;27545:15;:24::i;:::-;27529:40;;27590:5;-1:-1:-1;;;;;27584:11:0;:2;-1:-1:-1;;;;;27584:11:0;;;27576:58;;;;-1:-1:-1;;;27576:58:0;;13260:2:1;27576:58:0;;;13242:21:1;13299:2;13279:18;;;13272:30;13338:34;13318:18;;;13311:62;-1:-1:-1;;;13389:18:1;;;13382:32;13431:19;;27576:58:0;13058:398:1;27576:58:0;21118:10;-1:-1:-1;;;;;27659:21:0;;;;:62;;-1:-1:-1;27684:37:0;27701:5;21118:10;41066:382;:::i;27684:37::-;27643:153;;;;-1:-1:-1;;;27643:153:0;;9698:2:1;27643:153:0;;;9680:21:1;9737:2;9717:18;;;9710:30;9776:34;9756:18;;;9749:62;9847:27;9827:18;;;9820:55;9892:19;;27643:153:0;9496:421:1;27643:153:0;27805:28;27814:2;27818:7;27827:5;27805:8;:28::i;:::-;27522:317;27460:379;;:::o;28747:142::-;28855:28;28865:4;28871:2;28875:7;28855:9;:28::i;23838:744::-;23947:7;23982:16;23992:5;23982:9;:16::i;:::-;23974:5;:24;23966:71;;;;-1:-1:-1;;;23966:71:0;;7240:2:1;23966:71:0;;;7222:21:1;7279:2;7259:18;;;7252:30;7318:34;7298:18;;;7291:62;-1:-1:-1;;;7369:18:1;;;7362:32;7411:19;;23966:71:0;7038:398:1;23966:71:0;24044:22;23286:12;;;24044:22;;24164:350;24188:14;24184:1;:18;24164:350;;;24218:31;24252:14;;;:11;:14;;;;;;;;;24218:48;;;;;;;;;-1:-1:-1;;;;;24218:48:0;;;;;-1:-1:-1;;;24218:48:0;;;;;;;;;;;;24279:28;24275:89;;24340:14;;;-1:-1:-1;24275:89:0;24397:5;-1:-1:-1;;;;;24376:26:0;:17;-1:-1:-1;;;;;24376:26:0;;24372:135;;;24434:5;24419:11;:20;24415:59;;;-1:-1:-1;24461:1:0;-1:-1:-1;24454:8:0;;-1:-1:-1;;;24454:8:0;24415:59;24484:13;;;;:::i;:::-;;;;24372:135;-1:-1:-1;24204:3:0;;;;:::i;:::-;;;;24164:350;;;-1:-1:-1;24520:56:0;;-1:-1:-1;;;24520:56:0;;14843:2:1;24520:56:0;;;14825:21:1;14882:2;14862:18;;;14855:30;14921:34;14901:18;;;14894:62;-1:-1:-1;;;14972:18:1;;;14965:44;15026:19;;24520:56:0;14641:410:1;41964:250:0;37995:6;;-1:-1:-1;;;;;37995:6:0;21118:10;38142:23;38134:68;;;;-1:-1:-1;;;38134:68:0;;;;;;;:::i;:::-;42031:49:::1;::::0;42013:12:::1;::::0;42031:10:::1;::::0;42054:21:::1;::::0;42013:12;42031:49;42013:12;42031:49;42054:21;42031:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42012:68;;;42113:7;42091:115;;;::::0;-1:-1:-1;;;42091:115:0;;9271:2:1;42091:115:0::1;::::0;::::1;9253:21:1::0;9310:2;9290:18;;;9283:30;9349:34;9329:18;;;9322:62;9420:28;9400:18;;;9393:56;9466:19;;42091:115:0::1;9069:422:1::0;42091:115:0::1;42001:213;41964:250::o:0;28952:157::-;29064:39;29081:4;29087:2;29091:7;29064:39;;;;;;;;;;;;:16;:39::i;23373:177::-;23440:7;23286:12;;23464:5;:21;23456:69;;;;-1:-1:-1;;;23456:69:0;;8461:2:1;23456:69:0;;;8443:21:1;8500:2;8480:18;;;8473:30;8539:34;8519:18;;;8512:62;-1:-1:-1;;;8590:18:1;;;8583:33;8633:19;;23456:69:0;8259:399:1;23456:69:0;-1:-1:-1;23539:5:0;23373:177::o;40478:111::-;37995:6;;-1:-1:-1;;;;;37995:6:0;21118:10;38142:23;38134:68;;;;-1:-1:-1;;;38134:68:0;;;;;;;:::i;:::-;40554:27;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;40478:111:::0;:::o;26195:118::-;26259:7;26282:20;26294:7;26282:11;:20::i;:::-;:25;;26195:118;-1:-1:-1;;26195:118:0:o;25072:211::-;25136:7;-1:-1:-1;;;;;25160:19:0;;25152:75;;;;-1:-1:-1;;;25152:75:0;;10535:2:1;25152:75:0;;;10517:21:1;10574:2;10554:18;;;10547:30;10613:34;10593:18;;;10586:62;-1:-1:-1;;;10664:18:1;;;10657:41;10715:19;;25152:75:0;10333:407:1;25152:75:0;-1:-1:-1;;;;;;25249:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25249:27:0;;25072:211::o;38573:103::-;37995:6;;-1:-1:-1;;;;;37995:6:0;21118:10;38142:23;38134:68;;;;-1:-1:-1;;;38134:68:0;;;;;;;:::i;:::-;38638:30:::1;38665:1;38638:18;:30::i;:::-;38573:103::o:0;40826:96::-;37995:6;;-1:-1:-1;;;;;37995:6:0;21118:10;38142:23;38134:68;;;;-1:-1:-1;;;38134:68:0;;;;;;;:::i;:::-;40890:5:::1;:16:::0;40826:96::o;26527:98::-;26583:13;26612:7;26605:14;;;;;:::i;41456:266::-;41535:12;;-1:-1:-1;;;41535:12:0;;;;41527:42;;;;-1:-1:-1;;;41527:42:0;;16491:2:1;41527:42:0;;;16473:21:1;16530:2;16510:18;;;16503:30;-1:-1:-1;;;16549:18:1;;;16542:47;16606:18;;41527:42:0;16289:341:1;41527:42:0;41616:9;41597:14;41589:5;;:22;;;;:::i;:::-;41588:37;;41580:76;;;;-1:-1:-1;;;41580:76:0;;10947:2:1;41580:76:0;;;10929:21:1;10986:2;10966:18;;;10959:30;11025:28;11005:18;;;10998:56;11071:18;;41580:76:0;10745:350:1;41580:76:0;41669:37;41679:10;41691:14;41669:9;:37::i;28165:274::-;-1:-1:-1;;;;;28256:24:0;;21118:10;28256:24;;28248:63;;;;-1:-1:-1;;;28248:63:0;;12486:2:1;28248:63:0;;;12468:21:1;12525:2;12505:18;;;12498:30;12564:28;12544:18;;;12537:56;12610:18;;28248:63:0;12284:350:1;28248:63:0;21118:10;28320:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28320:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28320:53:0;;;;;;;;;;28385:48;;6762:41:1;;;28320:42:0;;21118:10;28385:48;;6735:18:1;28385:48:0;;;;;;;28165:274;;:::o;29172:311::-;29309:28;29319:4;29325:2;29329:7;29309:9;:28::i;:::-;29360:48;29383:4;29389:2;29393:7;29402:5;29360:22;:48::i;:::-;29344:133;;;;-1:-1:-1;;;29344:133:0;;;;;;;:::i;:::-;29172:311;;;;:::o;40722:96::-;37995:6;;-1:-1:-1;;;;;37995:6:0;21118:10;38142:23;38134:68;;;;-1:-1:-1;;;38134:68:0;;;;;;;:::i;:::-;40787:12:::1;:23:::0;;;::::1;;-1:-1:-1::0;;;40787:23:0::1;-1:-1:-1::0;;;;40787:23:0;;::::1;::::0;;;::::1;::::0;;40722:96::o;26688:394::-;26786:13;26827:16;26835:7;29779:4;29809:12;-1:-1:-1;29799:22:0;29722:105;26827:16;26811:97;;;;-1:-1:-1;;;26811:97:0;;12070:2:1;26811:97:0;;;12052:21:1;12109:2;12089:18;;;12082:30;12148:34;12128:18;;;12121:62;-1:-1:-1;;;12199:18:1;;;12192:45;12254:19;;26811:97:0;11868:411:1;26811:97:0;26917:21;26941:10;:8;:10::i;:::-;26917:34;;26996:1;26978:7;26972:21;:25;:104;;;;;;;;;;;;;;;;;27033:7;27042:18;:7;:16;:18::i;:::-;27016:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26972:104;26958:118;26688:394;-1:-1:-1;;;26688:394:0:o;41731:225::-;37995:6;;-1:-1:-1;;;;;37995:6:0;21118:10;38142:23;38134:68;;;;-1:-1:-1;;;38134:68:0;;;;;;;:::i;:::-;41851:9:::1;;41833:14;41817:13;23263:7:::0;23286:12;;23210:94;41817:13:::1;:30;;;;:::i;:::-;:43;;41809:98;;;::::0;-1:-1:-1;;;41809:98:0;;10124:2:1;41809:98:0::1;::::0;::::1;10106:21:1::0;10163:2;10143:18;;;10136:30;10202:34;10182:18;;;10175:62;-1:-1:-1;;;10253:18:1;;;10246:40;10303:19;;41809:98:0::1;9922:406:1::0;41809:98:0::1;41918:30;41928:3;41933:14;41918:9;:30::i;40930:128::-:0;37995:6;;-1:-1:-1;;;;;37995:6:0;21118:10;38142:23;38134:68;;;;-1:-1:-1;;;38134:68:0;;;;;;;:::i;:::-;41015:20:::1;:35:::0;;-1:-1:-1;;;;;;41015:35:0::1;-1:-1:-1::0;;;;;41015:35:0;;;::::1;::::0;;;::::1;::::0;;40930:128::o;41066:382::-;41257:20;;41301:28;;-1:-1:-1;;;41301:28:0;;-1:-1:-1;;;;;6085:32:1;;;41301:28:0;;;6067:51:1;41191:4:0;;41257:20;;;41293:49;;;;41257:20;;41301:21;;6040:18:1;;41301:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;41293:49:0;;41289:93;;;41366:4;41359:11;;;;;41289:93;-1:-1:-1;;;;;28647:25:0;;;28624:4;28647:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;41401:39;41394:46;41066:382;-1:-1:-1;;;;41066:382:0:o;38831:201::-;37995:6;;-1:-1:-1;;;;;37995:6:0;21118:10;38142:23;38134:68;;;;-1:-1:-1;;;38134:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38920:22:0;::::1;38912:73;;;::::0;-1:-1:-1;;;38912:73:0;;7643:2:1;38912:73:0::1;::::0;::::1;7625:21:1::0;7682:2;7662:18;;;7655:30;7721:34;7701:18;;;7694:62;-1:-1:-1;;;7772:18:1;;;7765:36;7818:19;;38912:73:0::1;7441:402:1::0;38912:73:0::1;38996:28;39015:8;38996:18;:28::i;33325:172::-:0;33422:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;33422:29:0;-1:-1:-1;;;;;33422:29:0;;;;;;;;;33463:28;;33422:24;;33463:28;;;;;;;33325:172;;;:::o;31690:1529::-;31787:35;31825:20;31837:7;31825:11;:20::i;:::-;31896:18;;31787:58;;-1:-1:-1;31854:22:0;;-1:-1:-1;;;;;31880:34:0;21118:10;-1:-1:-1;;;;;31880:34:0;;:81;;;-1:-1:-1;21118:10:0;31925:20;31937:7;31925:11;:20::i;:::-;-1:-1:-1;;;;;31925:36:0;;31880:81;:142;;;-1:-1:-1;31989:18:0;;31972:50;;21118:10;41066:382;:::i;31972:50::-;31854:169;;32048:17;32032:101;;;;-1:-1:-1;;;32032:101:0;;12841:2:1;32032:101:0;;;12823:21:1;12880:2;12860:18;;;12853:30;12919:34;12899:18;;;12892:62;-1:-1:-1;;;12970:18:1;;;12963:48;13028:19;;32032:101:0;12639:414:1;32032:101:0;32180:4;-1:-1:-1;;;;;32158:26:0;:13;:18;;;-1:-1:-1;;;;;32158:26:0;;32142:98;;;;-1:-1:-1;;;32142:98:0;;11302:2:1;32142:98:0;;;11284:21:1;11341:2;11321:18;;;11314:30;11380:34;11360:18;;;11353:62;-1:-1:-1;;;11431:18:1;;;11424:36;11477:19;;32142:98:0;11100:402:1;32142:98:0;-1:-1:-1;;;;;32255:16:0;;32247:66;;;;-1:-1:-1;;;32247:66:0;;8865:2:1;32247:66:0;;;8847:21:1;8904:2;8884:18;;;8877:30;8943:34;8923:18;;;8916:62;-1:-1:-1;;;8994:18:1;;;8987:35;9039:19;;32247:66:0;8663:401:1;32247:66:0;32422:49;32439:1;32443:7;32452:13;:18;;;32422:8;:49::i;:::-;-1:-1:-1;;;;;32480:18:0;;;;;;:12;:18;;;;;:31;;32510:1;;32480:18;:31;;32510:1;;-1:-1:-1;;;;;32480:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;32480:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32518:16:0;;-1:-1:-1;32518:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;32518:16:0;;:29;;-1:-1:-1;;32518:29:0;;:::i;:::-;;;-1:-1:-1;;;;;32518:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32577:43:0;;;;;;;;-1:-1:-1;;;;;32577:43:0;;;;;;32603:15;32577:43;;;;;;;;;-1:-1:-1;32554:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;32554:66:0;-1:-1:-1;;;;;;32554:66:0;;;;;;;;;;;32870:11;32566:7;-1:-1:-1;32870:11:0;:::i;:::-;32933:1;32892:24;;;:11;:24;;;;;:29;32848:33;;-1:-1:-1;;;;;;32892:29:0;32888:236;;32950:20;32958:11;29779:4;29809:12;-1:-1:-1;29799:22:0;29722:105;32950:20;32946:171;;;33010:97;;;;;;;;33037:18;;-1:-1:-1;;;;;33010:97:0;;;;;;33068:28;;;;33010:97;;;;;;;;;;-1:-1:-1;32983:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;32983:124:0;-1:-1:-1;;;;;;32983:124:0;;;;;;;;;;;;32946:171;33156:7;33152:2;-1:-1:-1;;;;;33137:27:0;33146:4;-1:-1:-1;;;;;33137:27:0;;;;;;;;;;;33171:42;31780:1439;;;31690:1529;;;:::o;25535:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;25652:16:0;25660:7;29779:4;29809:12;-1:-1:-1;29799:22:0;29722:105;25652:16;25644:71;;;;-1:-1:-1;;;25644:71:0;;8050:2:1;25644:71:0;;;8032:21:1;8089:2;8069:18;;;8062:30;8128:34;8108:18;;;8101:62;-1:-1:-1;;;8179:18:1;;;8172:40;8229:19;;25644:71:0;7848:406:1;25644:71:0;25724:26;25772:12;25761:7;:23;25757:93;;25816:22;25826:12;25816:7;:22;:::i;:::-;:26;;25841:1;25816:26;:::i;:::-;25795:47;;25757:93;25878:7;25858:212;25895:18;25887:4;:26;25858:212;;25932:31;25966:17;;;:11;:17;;;;;;;;;25932:51;;;;;;;;;-1:-1:-1;;;;;25932:51:0;;;;;-1:-1:-1;;;25932:51:0;;;;;;;;;;;;25996:28;25992:71;;26044:9;25535:606;-1:-1:-1;;;;25535:606:0:o;25992:71::-;-1:-1:-1;25915:6:0;;;;:::i;:::-;;;;25858:212;;;-1:-1:-1;26078:57:0;;-1:-1:-1;;;26078:57:0;;15258:2:1;26078:57:0;;;15240:21:1;15297:2;15277:18;;;15270:30;15336:34;15316:18;;;15309:62;-1:-1:-1;;;15387:18:1;;;15380:45;15442:19;;26078:57:0;15056:411:1;39192:191:0;39285:6;;;-1:-1:-1;;;;;39302:17:0;;;-1:-1:-1;;;;;;39302:17:0;;;;;;;39335:40;;39285:6;;;39302:17;39285:6;;39335:40;;39266:16;;39335:40;39255:128;39192:191;:::o;29833:98::-;29898:27;29908:2;29912:8;29898:27;;;;;;;;;;;;:9;:27::i;35036:690::-;35173:4;-1:-1:-1;;;;;35190:13:0;;3652:19;:23;35186:535;;35229:72;;-1:-1:-1;;;35229:72:0;;-1:-1:-1;;;;;35229:36:0;;;;;:72;;21118:10;;35280:4;;35286:7;;35295:5;;35229:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35229:72:0;;;;;;;;-1:-1:-1;;35229:72:0;;;;;;;;;;;;:::i;:::-;;;35216:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35460:13:0;;35456:215;;35493:61;;-1:-1:-1;;;35493:61:0;;;;;;;:::i;35456:215::-;35639:6;35633:13;35624:6;35620:2;35616:15;35609:38;35216:464;-1:-1:-1;;;;;;35351:55:0;-1:-1:-1;;;35351:55:0;;-1:-1:-1;35344:62:0;;35186:535;-1:-1:-1;35709:4:0;35036:690;;;;;;:::o;40597:117::-;40657:13;40690:16;40683:23;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;30186:1272;30291:20;30314:12;-1:-1:-1;;;;;30341:16:0;;30333:62;;;;-1:-1:-1;;;30333:62:0;;14441:2:1;30333:62:0;;;14423:21:1;14480:2;14460:18;;;14453:30;14519:34;14499:18;;;14492:62;-1:-1:-1;;;14570:18:1;;;14563:31;14611:19;;30333:62:0;14239:397:1;30333:62:0;30532:21;30540:12;29779:4;29809:12;-1:-1:-1;29799:22:0;29722:105;30532:21;30531:22;30523:64;;;;-1:-1:-1;;;30523:64:0;;14083:2:1;30523:64:0;;;14065:21:1;14122:2;14102:18;;;14095:30;14161:31;14141:18;;;14134:59;14210:18;;30523:64:0;13881:353:1;30523:64:0;30614:12;30602:8;:24;;30594:71;;;;-1:-1:-1;;;30594:71:0;;16088:2:1;30594:71:0;;;16070:21:1;16127:2;16107:18;;;16100:30;16166:34;16146:18;;;16139:62;-1:-1:-1;;;16217:18:1;;;16210:32;16259:19;;30594:71:0;15886:398:1;30594:71:0;-1:-1:-1;;;;;30777:16:0;;30744:30;30777:16;;;:12;:16;;;;;;;;;30744:49;;;;;;;;;-1:-1:-1;;;;;30744:49:0;;;;;-1:-1:-1;;;30744:49:0;;;;;;;;;;;30819:119;;;;;;;;30839:19;;30744:49;;30819:119;;;30839:39;;30869:8;;30839:39;:::i;:::-;-1:-1:-1;;;;;30819:119:0;;;;;30922:8;30887:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;30819:119:0;;;;;;-1:-1:-1;;;;;30800:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;30800:138:0;;;;;;;;;;;;30973:43;;;;;;;;;;;30999:15;30973:43;;;;;;;;30945:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;30945:71:0;-1:-1:-1;;;;;;30945:71:0;;;;;;;;;;;;;;;;;;30957:12;;31069:281;31093:8;31089:1;:12;31069:281;;;31122:38;;31147:12;;-1:-1:-1;;;;;31122:38:0;;;31139:1;;31122:38;;31139:1;;31122:38;31187:59;31218:1;31222:2;31226:12;31240:5;31187:22;:59::i;:::-;31169:150;;;;-1:-1:-1;;;31169:150:0;;;;;;;:::i;:::-;31328:14;;;;:::i;:::-;;;;31103:3;;;;;:::i;:::-;;;;31069:281;;;-1:-1:-1;31358:12:0;:27;;;31392:60;29172:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:160::-;715:20;;771:13;;764:21;754:32;;744:60;;800:1;797;790:12;744:60;650:160;;;:::o;815:247::-;874:6;927:2;915:9;906:7;902:23;898:32;895:52;;;943:1;940;933:12;895:52;982:9;969:23;1001:31;1026:5;1001:31;:::i;1067:388::-;1135:6;1143;1196:2;1184:9;1175:7;1171:23;1167:32;1164:52;;;1212:1;1209;1202:12;1164:52;1251:9;1238:23;1270:31;1295:5;1270:31;:::i;:::-;1320:5;-1:-1:-1;1377:2:1;1362:18;;1349:32;1390:33;1349:32;1390:33;:::i;:::-;1442:7;1432:17;;;1067:388;;;;;:::o;1460:456::-;1537:6;1545;1553;1606:2;1594:9;1585:7;1581:23;1577:32;1574:52;;;1622:1;1619;1612:12;1574:52;1661:9;1648:23;1680:31;1705:5;1680:31;:::i;:::-;1730:5;-1:-1:-1;1787:2:1;1772:18;;1759:32;1800:33;1759:32;1800:33;:::i;:::-;1460:456;;1852:7;;-1:-1:-1;;;1906:2:1;1891:18;;;;1878:32;;1460:456::o;1921:794::-;2016:6;2024;2032;2040;2093:3;2081:9;2072:7;2068:23;2064:33;2061:53;;;2110:1;2107;2100:12;2061:53;2149:9;2136:23;2168:31;2193:5;2168:31;:::i;:::-;2218:5;-1:-1:-1;2275:2:1;2260:18;;2247:32;2288:33;2247:32;2288:33;:::i;:::-;2340:7;-1:-1:-1;2394:2:1;2379:18;;2366:32;;-1:-1:-1;2449:2:1;2434:18;;2421:32;2476:18;2465:30;;2462:50;;;2508:1;2505;2498:12;2462:50;2531:22;;2584:4;2576:13;;2572:27;-1:-1:-1;2562:55:1;;2613:1;2610;2603:12;2562:55;2636:73;2701:7;2696:2;2683:16;2678:2;2674;2670:11;2636:73;:::i;:::-;2626:83;;;1921:794;;;;;;;:::o;2720:315::-;2785:6;2793;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:31;2945:5;2920:31;:::i;:::-;2970:5;-1:-1:-1;2994:35:1;3025:2;3010:18;;2994:35;:::i;:::-;2984:45;;2720:315;;;;;:::o;3040:::-;3108:6;3116;3169:2;3157:9;3148:7;3144:23;3140:32;3137:52;;;3185:1;3182;3175:12;3137:52;3224:9;3211:23;3243:31;3268:5;3243:31;:::i;:::-;3293:5;3345:2;3330:18;;;;3317:32;;-1:-1:-1;;;3040:315:1:o;3360:180::-;3416:6;3469:2;3457:9;3448:7;3444:23;3440:32;3437:52;;;3485:1;3482;3475:12;3437:52;3508:26;3524:9;3508:26;:::i;3545:245::-;3603:6;3656:2;3644:9;3635:7;3631:23;3627:32;3624:52;;;3672:1;3669;3662:12;3624:52;3711:9;3698:23;3730:30;3754:5;3730:30;:::i;3795:249::-;3864:6;3917:2;3905:9;3896:7;3892:23;3888:32;3885:52;;;3933:1;3930;3923:12;3885:52;3965:9;3959:16;3984:30;4008:5;3984:30;:::i;4049:280::-;4148:6;4201:2;4189:9;4180:7;4176:23;4172:32;4169:52;;;4217:1;4214;4207:12;4169:52;4249:9;4243:16;4268:31;4293:5;4268:31;:::i;4334:450::-;4403:6;4456:2;4444:9;4435:7;4431:23;4427:32;4424:52;;;4472:1;4469;4462:12;4424:52;4512:9;4499:23;4545:18;4537:6;4534:30;4531:50;;;4577:1;4574;4567:12;4531:50;4600:22;;4653:4;4645:13;;4641:27;-1:-1:-1;4631:55:1;;4682:1;4679;4672:12;4631:55;4705:73;4770:7;4765:2;4752:16;4747:2;4743;4739:11;4705:73;:::i;4789:180::-;4848:6;4901:2;4889:9;4880:7;4876:23;4872:32;4869:52;;;4917:1;4914;4907:12;4869:52;-1:-1:-1;4940:23:1;;4789:180;-1:-1:-1;4789:180:1:o;4974:257::-;5015:3;5053:5;5047:12;5080:6;5075:3;5068:19;5096:63;5152:6;5145:4;5140:3;5136:14;5129:4;5122:5;5118:16;5096:63;:::i;:::-;5213:2;5192:15;-1:-1:-1;;5188:29:1;5179:39;;;;5220:4;5175:50;;4974:257;-1:-1:-1;;4974:257:1:o;5236:470::-;5415:3;5453:6;5447:13;5469:53;5515:6;5510:3;5503:4;5495:6;5491:17;5469:53;:::i;:::-;5585:13;;5544:16;;;;5607:57;5585:13;5544:16;5641:4;5629:17;;5607:57;:::i;:::-;5680:20;;5236:470;-1:-1:-1;;;;5236:470:1:o;6129:488::-;-1:-1:-1;;;;;6398:15:1;;;6380:34;;6450:15;;6445:2;6430:18;;6423:43;6497:2;6482:18;;6475:34;;;6545:3;6540:2;6525:18;;6518:31;;;6323:4;;6566:45;;6591:19;;6583:6;6566:45;:::i;:::-;6558:53;6129:488;-1:-1:-1;;;;;;6129:488:1:o;6814:219::-;6963:2;6952:9;6945:21;6926:4;6983:44;7023:2;7012:9;7008:18;7000:6;6983:44;:::i;11507:356::-;11709:2;11691:21;;;11728:18;;;11721:30;11787:34;11782:2;11767:18;;11760:62;11854:2;11839:18;;11507:356::o;13461:415::-;13663:2;13645:21;;;13702:2;13682:18;;;13675:30;13741:34;13736:2;13721:18;;13714:62;-1:-1:-1;;;13807:2:1;13792:18;;13785:49;13866:3;13851:19;;13461:415::o;16817:253::-;16857:3;-1:-1:-1;;;;;16946:2:1;16943:1;16939:10;16976:2;16973:1;16969:10;17007:3;17003:2;16999:12;16994:3;16991:21;16988:47;;;17015:18;;:::i;17075:128::-;17115:3;17146:1;17142:6;17139:1;17136:13;17133:39;;;17152:18;;:::i;:::-;-1:-1:-1;17188:9:1;;17075:128::o;17208:120::-;17248:1;17274;17264:35;;17279:18;;:::i;:::-;-1:-1:-1;17313:9:1;;17208:120::o;17333:168::-;17373:7;17439:1;17435;17431:6;17427:14;17424:1;17421:21;17416:1;17409:9;17402:17;17398:45;17395:71;;;17446:18;;:::i;:::-;-1:-1:-1;17486:9:1;;17333:168::o;17506:246::-;17546:4;-1:-1:-1;;;;;17659:10:1;;;;17629;;17681:12;;;17678:38;;;17696:18;;:::i;:::-;17733:13;;17506:246;-1:-1:-1;;;17506:246:1:o;17757:125::-;17797:4;17825:1;17822;17819:8;17816:34;;;17830:18;;:::i;:::-;-1:-1:-1;17867:9:1;;17757:125::o;17887:258::-;17959:1;17969:113;17983:6;17980:1;17977:13;17969:113;;;18059:11;;;18053:18;18040:11;;;18033:39;18005:2;17998:10;17969:113;;;18100:6;18097:1;18094:13;18091:48;;;-1:-1:-1;;18135:1:1;18117:16;;18110:27;17887:258::o;18150:136::-;18189:3;18217:5;18207:39;;18226:18;;:::i;:::-;-1:-1:-1;;;18262:18:1;;18150:136::o;18291:380::-;18370:1;18366:12;;;;18413;;;18434:61;;18488:4;18480:6;18476:17;18466:27;;18434:61;18541:2;18533:6;18530:14;18510:18;18507:38;18504:161;;;18587:10;18582:3;18578:20;18575:1;18568:31;18622:4;18619:1;18612:15;18650:4;18647:1;18640:15;18504:161;;18291:380;;;:::o;18676:135::-;18715:3;-1:-1:-1;;18736:17:1;;18733:43;;;18756:18;;:::i;:::-;-1:-1:-1;18803:1:1;18792:13;;18676:135::o;18816:112::-;18848:1;18874;18864:35;;18879:18;;:::i;:::-;-1:-1:-1;18913:9:1;;18816:112::o;18933:127::-;18994:10;18989:3;18985:20;18982:1;18975:31;19025:4;19022:1;19015:15;19049:4;19046:1;19039:15;19065:127;19126:10;19121:3;19117:20;19114:1;19107:31;19157:4;19154:1;19147:15;19181:4;19178:1;19171:15;19197:127;19258:10;19253:3;19249:20;19246:1;19239:31;19289:4;19286:1;19279:15;19313:4;19310:1;19303:15;19329:127;19390:10;19385:3;19381:20;19378:1;19371:31;19421:4;19418:1;19411:15;19445:4;19442:1;19435:15;19461:131;-1:-1:-1;;;;;19536:31:1;;19526:42;;19516:70;;19582:1;19579;19572:12;19597:131;-1:-1:-1;;;;;;19671:32:1;;19661:43;;19651:71;;19718:1;19715;19708:12

Swarm Source

ipfs://f7a256a6a9d10f3e6700651fc4177f6dbc179361d39ff81602eb8a2810ed3bd0
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.