ETH Price: $3,258.27 (+4.63%)
 

Overview

Max Total Supply

299 WW3

Holders

40

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 WW3
0x5332abb9258fd5626746aceaca8ea89b72cfb791
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:
WW3Application

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

// File: contracts/ERC721A.sol


// 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 collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(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 baseURI;
  }

  /**
   * @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: contracts/contract_template_721a.sol



pragma solidity ^0.8.0;





contract WW3Application is ERC721A, Ownable {
    uint256 public NFT_PRICE = 0.01 ether;
    uint256 public MAX_SUPPLY = 2222;
    uint256 public MAX_MINTS = 10;
    string public projName = "WW3 Application";
    string public projSym = "WW3";

    bool public DROP_ACTIVE = false;

    string public baseURI = "https://ipfs.io/ipfs/QmYuMWzu6ZPRcz6F75YZ9T3Lf8ZC4sfHNFkMTZXphpJ5E9";
    mapping(address => uint) addressToReservedMints;
    
    constructor() ERC721A(projName, projSym, MAX_MINTS, MAX_SUPPLY) {}

    function mint(uint256 numTokens) public payable {
        require(DROP_ACTIVE, "Sale not started");
        require(
            numTokens > 0 && numTokens <= MAX_MINTS,
            "Must mint between 1 and 10 tokens"
        );
        require(totalSupply() + numTokens <= MAX_SUPPLY, "Sold Out");
        require(
            msg.value >= NFT_PRICE * numTokens,
            "Amount of ether sent is not enough"
        );

        _safeMint(msg.sender, numTokens);
    }

    function flipDropState() public onlyOwner {
        DROP_ACTIVE = !DROP_ACTIVE;
    }

    function setBaseURI(string memory newBaseURI) public onlyOwner {
        baseURI = newBaseURI;
    }

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

    function setMaxMints(uint256 newMax) public onlyOwner {
        MAX_MINTS = newMax;
    }

    function setSupply(uint256 newSupply) public onlyOwner {
        MAX_SUPPLY = newSupply;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
    
    function reservedMintedBy() external view returns (uint256) {
        return addressToReservedMints[msg.sender];
    }

    function withdraw() public onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DROP_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipDropState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","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":"projName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projSym","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedMintedBy","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setSupply","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"}]

60c0604052600080556000600755662386f26fc100006009556108ae600a55600a600b556040518060400160405280600f81526020017f575733204170706c69636174696f6e0000000000000000000000000000000000815250600c9080519060200190620000709291906200040c565b506040518060400160405280600381526020017f5757330000000000000000000000000000000000000000000000000000000000815250600d9080519060200190620000be9291906200040c565b506000600e60006101000a81548160ff021916908315150217905550604051806080016040528060438152602001620049d760439139600f90805190602001906200010b9291906200040c565b503480156200011957600080fd5b50600c805462000129906200055f565b80601f016020809104026020016040519081016040528092919081815260200182805462000157906200055f565b8015620001a85780601f106200017c57610100808354040283529160200191620001a8565b820191906000526020600020905b8154815290600101906020018083116200018a57829003601f168201915b5050505050600d8054620001bc906200055f565b80601f0160208091040260200160405190810160405280929190818152602001828054620001ea906200055f565b80156200023b5780601f106200020f576101008083540402835291602001916200023b565b820191906000526020600020905b8154815290600101906020018083116200021d57829003601f168201915b5050505050600b54600a54600081116200028c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000283906200052c565b60405180910390fd5b60008211620002d2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c9906200050a565b60405180910390fd5b8360019080519060200190620002ea9291906200040c565b508260029080519060200190620003039291906200040c565b508160a08181525050806080818152505050505050620003386200032c6200033e60201b60201c565b6200034660201b60201c565b62000662565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200041a906200055f565b90600052602060002090601f0160209004810192826200043e57600085556200048a565b82601f106200045957805160ff19168380011785556200048a565b828001600101855582156200048a579182015b82811115620004895782518255916020019190600101906200046c565b5b5090506200049991906200049d565b5090565b5b80821115620004b85760008160009055506001016200049e565b5090565b6000620004cb6027836200054e565b9150620004d882620005c4565b604082019050919050565b6000620004f2602e836200054e565b9150620004ff8262000613565b604082019050919050565b600060208201905081810360008301526200052581620004bc565b9050919050565b600060208201905081810360008301526200054781620004e3565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200057857607f821691505b602082108114156200058f576200058e62000595565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a05161434b6200068c60003960008181612264015261228d01526000505061434b6000f3fe6080604052600436106102045760003560e01c8063715018a611610118578063b88d4fde116100a0578063da241d061161006f578063da241d0614610734578063e03c69e81461075f578063e985e9c51461078a578063f2fde38b146107c7578063f7cd09c7146107f057610204565b8063b88d4fde14610678578063c87b56dd146106a1578063cce132d1146106de578063d7224ba01461070957610204565b806395d89b41116100e757806395d89b41146105c657806396f8f6dd146105f1578063a0712d6814610608578063a22cb46514610624578063a7b8cd4d1461064d57610204565b8063715018a61461053257806379c9cb7b146105495780638da5cb5b1461057257806391b7f5ed1461059d57610204565b80633b4c4b251161019b57806355f804b31161016a57806355f804b3146104395780636352211e14610462578063676dd5631461049f5780636c0360eb146104ca57806370a08231146104f557610204565b80633b4c4b25146103935780633ccfd60b146103bc57806342842e0e146103d35780634f6ccce7146103fc57610204565b806318160ddd116101d757806318160ddd146102d757806323b872dd146103025780632f745c591461032b57806332cb6b0c1461036857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612fb4565b61081b565b60405161023d91906134af565b60405180910390f35b34801561025257600080fd5b5061025b610965565b60405161026891906134ca565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190613057565b6109f7565b6040516102a59190613448565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612f74565b610a7c565b005b3480156102e357600080fd5b506102ec610b95565b6040516102f991906137cc565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190612e5e565b610b9e565b005b34801561033757600080fd5b50610352600480360381019061034d9190612f74565b610bae565b60405161035f91906137cc565b60405180910390f35b34801561037457600080fd5b5061037d610dac565b60405161038a91906137cc565b60405180910390f35b34801561039f57600080fd5b506103ba60048036038101906103b59190613057565b610db2565b005b3480156103c857600080fd5b506103d1610e38565b005b3480156103df57600080fd5b506103fa60048036038101906103f59190612e5e565b610ef4565b005b34801561040857600080fd5b50610423600480360381019061041e9190613057565b610f14565b60405161043091906137cc565b60405180910390f35b34801561044557600080fd5b50610460600480360381019061045b919061300e565b610f67565b005b34801561046e57600080fd5b5061048960048036038101906104849190613057565b610ffd565b6040516104969190613448565b60405180910390f35b3480156104ab57600080fd5b506104b4611013565b6040516104c191906137cc565b60405180910390f35b3480156104d657600080fd5b506104df611019565b6040516104ec91906134ca565b60405180910390f35b34801561050157600080fd5b5061051c60048036038101906105179190612df1565b6110a7565b60405161052991906137cc565b60405180910390f35b34801561053e57600080fd5b50610547611190565b005b34801561055557600080fd5b50610570600480360381019061056b9190613057565b611218565b005b34801561057e57600080fd5b5061058761129e565b6040516105949190613448565b60405180910390f35b3480156105a957600080fd5b506105c460048036038101906105bf9190613057565b6112c8565b005b3480156105d257600080fd5b506105db61134e565b6040516105e891906134ca565b60405180910390f35b3480156105fd57600080fd5b506106066113e0565b005b610622600480360381019061061d9190613057565b611488565b005b34801561063057600080fd5b5061064b60048036038101906106469190612f34565b6115dc565b005b34801561065957600080fd5b5061066261175d565b60405161066f91906137cc565b60405180910390f35b34801561068457600080fd5b5061069f600480360381019061069a9190612eb1565b6117a4565b005b3480156106ad57600080fd5b506106c860048036038101906106c39190613057565b611800565b6040516106d591906134ca565b60405180910390f35b3480156106ea57600080fd5b506106f361185f565b60405161070091906137cc565b60405180910390f35b34801561071557600080fd5b5061071e611865565b60405161072b91906137cc565b60405180910390f35b34801561074057600080fd5b5061074961186b565b60405161075691906134ca565b60405180910390f35b34801561076b57600080fd5b506107746118f9565b60405161078191906134ca565b60405180910390f35b34801561079657600080fd5b506107b160048036038101906107ac9190612e1e565b611987565b6040516107be91906134af565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e99190612df1565b611a1b565b005b3480156107fc57600080fd5b50610805611b13565b60405161081291906134af565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095e575061095d82611b26565b5b9050919050565b60606001805461097490613b00565b80601f01602080910402602001604051908101604052809291908181526020018280546109a090613b00565b80156109ed5780601f106109c2576101008083540402835291602001916109ed565b820191906000526020600020905b8154815290600101906020018083116109d057829003601f168201915b5050505050905090565b6000610a0282611b90565b610a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a38906137ac565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8782610ffd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aef906136ec565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b17611b9d565b73ffffffffffffffffffffffffffffffffffffffff161480610b465750610b4581610b40611b9d565b611987565b5b610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c906135ec565b60405180910390fd5b610b90838383611ba5565b505050565b60008054905090565b610ba9838383611c57565b505050565b6000610bb9836110a7565b8210610bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf1906134ec565b60405180910390fd5b6000610c04610b95565b905060008060005b83811015610d6a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610cfe57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d565786841415610d47578195505050505050610da6565b8380610d5290613b63565b9450505b508080610d6290613b63565b915050610c0c565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d9061376c565b60405180910390fd5b92915050565b600a5481565b610dba611b9d565b73ffffffffffffffffffffffffffffffffffffffff16610dd861129e565b73ffffffffffffffffffffffffffffffffffffffff1614610e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e259061364c565b60405180910390fd5b80600a8190555050565b610e40611b9d565b73ffffffffffffffffffffffffffffffffffffffff16610e5e61129e565b73ffffffffffffffffffffffffffffffffffffffff1614610eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eab9061364c565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610ef257600080fd5b565b610f0f838383604051806020016040528060008152506117a4565b505050565b6000610f1e610b95565b8210610f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f569061356c565b60405180910390fd5b819050919050565b610f6f611b9d565b73ffffffffffffffffffffffffffffffffffffffff16610f8d61129e565b73ffffffffffffffffffffffffffffffffffffffff1614610fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fda9061364c565b60405180910390fd5b80600f9080519060200190610ff9929190612bcb565b5050565b600061100882612210565b600001519050919050565b60095481565b600f805461102690613b00565b80601f016020809104026020016040519081016040528092919081815260200182805461105290613b00565b801561109f5780601f106110745761010080835404028352916020019161109f565b820191906000526020600020905b81548152906001019060200180831161108257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110f9061360c565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611198611b9d565b73ffffffffffffffffffffffffffffffffffffffff166111b661129e565b73ffffffffffffffffffffffffffffffffffffffff161461120c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112039061364c565b60405180910390fd5b6112166000612413565b565b611220611b9d565b73ffffffffffffffffffffffffffffffffffffffff1661123e61129e565b73ffffffffffffffffffffffffffffffffffffffff1614611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b9061364c565b60405180910390fd5b80600b8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112d0611b9d565b73ffffffffffffffffffffffffffffffffffffffff166112ee61129e565b73ffffffffffffffffffffffffffffffffffffffff1614611344576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133b9061364c565b60405180910390fd5b8060098190555050565b60606002805461135d90613b00565b80601f016020809104026020016040519081016040528092919081815260200182805461138990613b00565b80156113d65780601f106113ab576101008083540402835291602001916113d6565b820191906000526020600020905b8154815290600101906020018083116113b957829003601f168201915b5050505050905090565b6113e8611b9d565b73ffffffffffffffffffffffffffffffffffffffff1661140661129e565b73ffffffffffffffffffffffffffffffffffffffff161461145c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114539061364c565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b600e60009054906101000a900460ff166114d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ce906135cc565b60405180910390fd5b6000811180156114e95750600b548111155b611528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151f906136cc565b60405180910390fd5b600a5481611534610b95565b61153e91906138ec565b111561157f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115769061350c565b60405180910390fd5b8060095461158d9190613942565b3410156115cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c6906135ac565b60405180910390fd5b6115d933826124d9565b50565b6115e4611b9d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611652576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116499061368c565b60405180910390fd5b806006600061165f611b9d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661170c611b9d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161175191906134af565b60405180910390a35050565b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b6117af848484611c57565b6117bb848484846124f7565b6117fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f19061370c565b60405180910390fd5b50505050565b606061180b82611b90565b61184a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118419061366c565b60405180910390fd5b600061185461268e565b905080915050919050565b600b5481565b60075481565b600d805461187890613b00565b80601f01602080910402602001604051908101604052809291908181526020018280546118a490613b00565b80156118f15780601f106118c6576101008083540402835291602001916118f1565b820191906000526020600020905b8154815290600101906020018083116118d457829003601f168201915b505050505081565b600c805461190690613b00565b80601f016020809104026020016040519081016040528092919081815260200182805461193290613b00565b801561197f5780601f106119545761010080835404028352916020019161197f565b820191906000526020600020905b81548152906001019060200180831161196257829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a23611b9d565b73ffffffffffffffffffffffffffffffffffffffff16611a4161129e565b73ffffffffffffffffffffffffffffffffffffffff1614611a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8e9061364c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afe9061352c565b60405180910390fd5b611b1081612413565b50565b600e60009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611c6282612210565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611c89611b9d565b73ffffffffffffffffffffffffffffffffffffffff161480611ce55750611cae611b9d565b73ffffffffffffffffffffffffffffffffffffffff16611ccd846109f7565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d015750611d008260000151611cfb611b9d565b611987565b5b905080611d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3a906136ac565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dac9061362c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1c9061358c565b60405180910390fd5b611e328585856001612720565b611e426000848460000151611ba5565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611eb0919061399c565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611f5491906138a6565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461205a91906138ec565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156121a0576120d081611b90565b1561219f576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122088686866001612726565b505050505050565b612218612c51565b61222182611b90565b612260576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122579061354c565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106122c45760017f0000000000000000000000000000000000000000000000000000000000000000846122b791906139d0565b6122c191906138ec565b90505b60008390505b8181106123d2576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123be5780935050505061240e565b5080806123ca90613ad6565b9150506122ca565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124059061378c565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124f382826040518060200160405280600081525061272c565b5050565b60006125188473ffffffffffffffffffffffffffffffffffffffff16612ba8565b15612681578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612541611b9d565b8786866040518563ffffffff1660e01b81526004016125639493929190613463565b602060405180830381600087803b15801561257d57600080fd5b505af19250505080156125ae57506040513d601f19601f820116820180604052508101906125ab9190612fe1565b60015b612631573d80600081146125de576040519150601f19603f3d011682016040523d82523d6000602084013e6125e3565b606091505b50600081511415612629576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126209061370c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612686565b600190505b949350505050565b6060600f805461269d90613b00565b80601f01602080910402602001604051908101604052809291908181526020018280546126c990613b00565b80156127165780601f106126eb57610100808354040283529160200191612716565b820191906000526020600020905b8154815290600101906020018083116126f957829003601f168201915b5050505050905090565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156127a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127999061374c565b60405180910390fd5b6127ab81611b90565b156127eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e29061372c565b60405180910390fd5b6127f86000858386612720565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516128f591906138a6565b6fffffffffffffffffffffffffffffffff16815260200185836020015161291c91906138a6565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612b8b57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b2b60008884886124f7565b612b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b619061370c565b60405180910390fd5b8180612b7590613b63565b9250508080612b8390613b63565b915050612aba565b5080600081905550612ba06000878588612726565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612bd790613b00565b90600052602060002090601f016020900481019282612bf95760008555612c40565b82601f10612c1257805160ff1916838001178555612c40565b82800160010185558215612c40579182015b82811115612c3f578251825591602001919060010190612c24565b5b509050612c4d9190612c8b565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ca4576000816000905550600101612c8c565b5090565b6000612cbb612cb68461380c565b6137e7565b905082815260208101848484011115612cd757612cd6613c3e565b5b612ce2848285613a94565b509392505050565b6000612cfd612cf88461383d565b6137e7565b905082815260208101848484011115612d1957612d18613c3e565b5b612d24848285613a94565b509392505050565b600081359050612d3b816142b9565b92915050565b600081359050612d50816142d0565b92915050565b600081359050612d65816142e7565b92915050565b600081519050612d7a816142e7565b92915050565b600082601f830112612d9557612d94613c39565b5b8135612da5848260208601612ca8565b91505092915050565b600082601f830112612dc357612dc2613c39565b5b8135612dd3848260208601612cea565b91505092915050565b600081359050612deb816142fe565b92915050565b600060208284031215612e0757612e06613c48565b5b6000612e1584828501612d2c565b91505092915050565b60008060408385031215612e3557612e34613c48565b5b6000612e4385828601612d2c565b9250506020612e5485828601612d2c565b9150509250929050565b600080600060608486031215612e7757612e76613c48565b5b6000612e8586828701612d2c565b9350506020612e9686828701612d2c565b9250506040612ea786828701612ddc565b9150509250925092565b60008060008060808587031215612ecb57612eca613c48565b5b6000612ed987828801612d2c565b9450506020612eea87828801612d2c565b9350506040612efb87828801612ddc565b925050606085013567ffffffffffffffff811115612f1c57612f1b613c43565b5b612f2887828801612d80565b91505092959194509250565b60008060408385031215612f4b57612f4a613c48565b5b6000612f5985828601612d2c565b9250506020612f6a85828601612d41565b9150509250929050565b60008060408385031215612f8b57612f8a613c48565b5b6000612f9985828601612d2c565b9250506020612faa85828601612ddc565b9150509250929050565b600060208284031215612fca57612fc9613c48565b5b6000612fd884828501612d56565b91505092915050565b600060208284031215612ff757612ff6613c48565b5b600061300584828501612d6b565b91505092915050565b60006020828403121561302457613023613c48565b5b600082013567ffffffffffffffff81111561304257613041613c43565b5b61304e84828501612dae565b91505092915050565b60006020828403121561306d5761306c613c48565b5b600061307b84828501612ddc565b91505092915050565b61308d81613a04565b82525050565b61309c81613a16565b82525050565b60006130ad8261386e565b6130b78185613884565b93506130c7818560208601613aa3565b6130d081613c4d565b840191505092915050565b60006130e682613879565b6130f08185613895565b9350613100818560208601613aa3565b61310981613c4d565b840191505092915050565b6000613121602283613895565b915061312c82613c5e565b604082019050919050565b6000613144600883613895565b915061314f82613cad565b602082019050919050565b6000613167602683613895565b915061317282613cd6565b604082019050919050565b600061318a602a83613895565b915061319582613d25565b604082019050919050565b60006131ad602383613895565b91506131b882613d74565b604082019050919050565b60006131d0602583613895565b91506131db82613dc3565b604082019050919050565b60006131f3602283613895565b91506131fe82613e12565b604082019050919050565b6000613216601083613895565b915061322182613e61565b602082019050919050565b6000613239603983613895565b915061324482613e8a565b604082019050919050565b600061325c602b83613895565b915061326782613ed9565b604082019050919050565b600061327f602683613895565b915061328a82613f28565b604082019050919050565b60006132a2602083613895565b91506132ad82613f77565b602082019050919050565b60006132c5602f83613895565b91506132d082613fa0565b604082019050919050565b60006132e8601a83613895565b91506132f382613fef565b602082019050919050565b600061330b603283613895565b915061331682614018565b604082019050919050565b600061332e602183613895565b915061333982614067565b604082019050919050565b6000613351602283613895565b915061335c826140b6565b604082019050919050565b6000613374603383613895565b915061337f82614105565b604082019050919050565b6000613397601d83613895565b91506133a282614154565b602082019050919050565b60006133ba602183613895565b91506133c58261417d565b604082019050919050565b60006133dd602e83613895565b91506133e8826141cc565b604082019050919050565b6000613400602f83613895565b915061340b8261421b565b604082019050919050565b6000613423602d83613895565b915061342e8261426a565b604082019050919050565b61344281613a8a565b82525050565b600060208201905061345d6000830184613084565b92915050565b60006080820190506134786000830187613084565b6134856020830186613084565b6134926040830185613439565b81810360608301526134a481846130a2565b905095945050505050565b60006020820190506134c46000830184613093565b92915050565b600060208201905081810360008301526134e481846130db565b905092915050565b6000602082019050818103600083015261350581613114565b9050919050565b6000602082019050818103600083015261352581613137565b9050919050565b600060208201905081810360008301526135458161315a565b9050919050565b600060208201905081810360008301526135658161317d565b9050919050565b60006020820190508181036000830152613585816131a0565b9050919050565b600060208201905081810360008301526135a5816131c3565b9050919050565b600060208201905081810360008301526135c5816131e6565b9050919050565b600060208201905081810360008301526135e581613209565b9050919050565b600060208201905081810360008301526136058161322c565b9050919050565b600060208201905081810360008301526136258161324f565b9050919050565b6000602082019050818103600083015261364581613272565b9050919050565b6000602082019050818103600083015261366581613295565b9050919050565b60006020820190508181036000830152613685816132b8565b9050919050565b600060208201905081810360008301526136a5816132db565b9050919050565b600060208201905081810360008301526136c5816132fe565b9050919050565b600060208201905081810360008301526136e581613321565b9050919050565b6000602082019050818103600083015261370581613344565b9050919050565b6000602082019050818103600083015261372581613367565b9050919050565b600060208201905081810360008301526137458161338a565b9050919050565b60006020820190508181036000830152613765816133ad565b9050919050565b60006020820190508181036000830152613785816133d0565b9050919050565b600060208201905081810360008301526137a5816133f3565b9050919050565b600060208201905081810360008301526137c581613416565b9050919050565b60006020820190506137e16000830184613439565b92915050565b60006137f1613802565b90506137fd8282613b32565b919050565b6000604051905090565b600067ffffffffffffffff82111561382757613826613c0a565b5b61383082613c4d565b9050602081019050919050565b600067ffffffffffffffff82111561385857613857613c0a565b5b61386182613c4d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006138b182613a4e565b91506138bc83613a4e565b9250826fffffffffffffffffffffffffffffffff038211156138e1576138e0613bac565b5b828201905092915050565b60006138f782613a8a565b915061390283613a8a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561393757613936613bac565b5b828201905092915050565b600061394d82613a8a565b915061395883613a8a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561399157613990613bac565b5b828202905092915050565b60006139a782613a4e565b91506139b283613a4e565b9250828210156139c5576139c4613bac565b5b828203905092915050565b60006139db82613a8a565b91506139e683613a8a565b9250828210156139f9576139f8613bac565b5b828203905092915050565b6000613a0f82613a6a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ac1578082015181840152602081019050613aa6565b83811115613ad0576000848401525b50505050565b6000613ae182613a8a565b91506000821415613af557613af4613bac565b5b600182039050919050565b60006002820490506001821680613b1857607f821691505b60208210811415613b2c57613b2b613bdb565b5b50919050565b613b3b82613c4d565b810181811067ffffffffffffffff82111715613b5a57613b59613c0a565b5b80604052505050565b6000613b6e82613a8a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ba157613ba0613bac565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f416d6f756e74206f662065746865722073656e74206973206e6f7420656e6f7560008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206e6f74207374617274656400000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4d757374206d696e74206265747765656e203120616e6420313020746f6b656e60008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6142c281613a04565b81146142cd57600080fd5b50565b6142d981613a16565b81146142e457600080fd5b50565b6142f081613a22565b81146142fb57600080fd5b50565b61430781613a8a565b811461431257600080fd5b5056fea2646970667358221220aefb38252aeda1389a4667e4f3a6a1d653666bbf0c3ff14a66bf0ba7cad5e08464736f6c6343000807003368747470733a2f2f697066732e696f2f697066732f516d59754d577a75365a5052637a36463735595a3954334c66385a43347366484e466b4d545a587068704a354539

Deployed Bytecode

0x6080604052600436106102045760003560e01c8063715018a611610118578063b88d4fde116100a0578063da241d061161006f578063da241d0614610734578063e03c69e81461075f578063e985e9c51461078a578063f2fde38b146107c7578063f7cd09c7146107f057610204565b8063b88d4fde14610678578063c87b56dd146106a1578063cce132d1146106de578063d7224ba01461070957610204565b806395d89b41116100e757806395d89b41146105c657806396f8f6dd146105f1578063a0712d6814610608578063a22cb46514610624578063a7b8cd4d1461064d57610204565b8063715018a61461053257806379c9cb7b146105495780638da5cb5b1461057257806391b7f5ed1461059d57610204565b80633b4c4b251161019b57806355f804b31161016a57806355f804b3146104395780636352211e14610462578063676dd5631461049f5780636c0360eb146104ca57806370a08231146104f557610204565b80633b4c4b25146103935780633ccfd60b146103bc57806342842e0e146103d35780634f6ccce7146103fc57610204565b806318160ddd116101d757806318160ddd146102d757806323b872dd146103025780632f745c591461032b57806332cb6b0c1461036857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612fb4565b61081b565b60405161023d91906134af565b60405180910390f35b34801561025257600080fd5b5061025b610965565b60405161026891906134ca565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190613057565b6109f7565b6040516102a59190613448565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612f74565b610a7c565b005b3480156102e357600080fd5b506102ec610b95565b6040516102f991906137cc565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190612e5e565b610b9e565b005b34801561033757600080fd5b50610352600480360381019061034d9190612f74565b610bae565b60405161035f91906137cc565b60405180910390f35b34801561037457600080fd5b5061037d610dac565b60405161038a91906137cc565b60405180910390f35b34801561039f57600080fd5b506103ba60048036038101906103b59190613057565b610db2565b005b3480156103c857600080fd5b506103d1610e38565b005b3480156103df57600080fd5b506103fa60048036038101906103f59190612e5e565b610ef4565b005b34801561040857600080fd5b50610423600480360381019061041e9190613057565b610f14565b60405161043091906137cc565b60405180910390f35b34801561044557600080fd5b50610460600480360381019061045b919061300e565b610f67565b005b34801561046e57600080fd5b5061048960048036038101906104849190613057565b610ffd565b6040516104969190613448565b60405180910390f35b3480156104ab57600080fd5b506104b4611013565b6040516104c191906137cc565b60405180910390f35b3480156104d657600080fd5b506104df611019565b6040516104ec91906134ca565b60405180910390f35b34801561050157600080fd5b5061051c60048036038101906105179190612df1565b6110a7565b60405161052991906137cc565b60405180910390f35b34801561053e57600080fd5b50610547611190565b005b34801561055557600080fd5b50610570600480360381019061056b9190613057565b611218565b005b34801561057e57600080fd5b5061058761129e565b6040516105949190613448565b60405180910390f35b3480156105a957600080fd5b506105c460048036038101906105bf9190613057565b6112c8565b005b3480156105d257600080fd5b506105db61134e565b6040516105e891906134ca565b60405180910390f35b3480156105fd57600080fd5b506106066113e0565b005b610622600480360381019061061d9190613057565b611488565b005b34801561063057600080fd5b5061064b60048036038101906106469190612f34565b6115dc565b005b34801561065957600080fd5b5061066261175d565b60405161066f91906137cc565b60405180910390f35b34801561068457600080fd5b5061069f600480360381019061069a9190612eb1565b6117a4565b005b3480156106ad57600080fd5b506106c860048036038101906106c39190613057565b611800565b6040516106d591906134ca565b60405180910390f35b3480156106ea57600080fd5b506106f361185f565b60405161070091906137cc565b60405180910390f35b34801561071557600080fd5b5061071e611865565b60405161072b91906137cc565b60405180910390f35b34801561074057600080fd5b5061074961186b565b60405161075691906134ca565b60405180910390f35b34801561076b57600080fd5b506107746118f9565b60405161078191906134ca565b60405180910390f35b34801561079657600080fd5b506107b160048036038101906107ac9190612e1e565b611987565b6040516107be91906134af565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e99190612df1565b611a1b565b005b3480156107fc57600080fd5b50610805611b13565b60405161081291906134af565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095e575061095d82611b26565b5b9050919050565b60606001805461097490613b00565b80601f01602080910402602001604051908101604052809291908181526020018280546109a090613b00565b80156109ed5780601f106109c2576101008083540402835291602001916109ed565b820191906000526020600020905b8154815290600101906020018083116109d057829003601f168201915b5050505050905090565b6000610a0282611b90565b610a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a38906137ac565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8782610ffd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aef906136ec565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b17611b9d565b73ffffffffffffffffffffffffffffffffffffffff161480610b465750610b4581610b40611b9d565b611987565b5b610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c906135ec565b60405180910390fd5b610b90838383611ba5565b505050565b60008054905090565b610ba9838383611c57565b505050565b6000610bb9836110a7565b8210610bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf1906134ec565b60405180910390fd5b6000610c04610b95565b905060008060005b83811015610d6a576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610cfe57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d565786841415610d47578195505050505050610da6565b8380610d5290613b63565b9450505b508080610d6290613b63565b915050610c0c565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d9061376c565b60405180910390fd5b92915050565b600a5481565b610dba611b9d565b73ffffffffffffffffffffffffffffffffffffffff16610dd861129e565b73ffffffffffffffffffffffffffffffffffffffff1614610e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e259061364c565b60405180910390fd5b80600a8190555050565b610e40611b9d565b73ffffffffffffffffffffffffffffffffffffffff16610e5e61129e565b73ffffffffffffffffffffffffffffffffffffffff1614610eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eab9061364c565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610ef257600080fd5b565b610f0f838383604051806020016040528060008152506117a4565b505050565b6000610f1e610b95565b8210610f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f569061356c565b60405180910390fd5b819050919050565b610f6f611b9d565b73ffffffffffffffffffffffffffffffffffffffff16610f8d61129e565b73ffffffffffffffffffffffffffffffffffffffff1614610fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fda9061364c565b60405180910390fd5b80600f9080519060200190610ff9929190612bcb565b5050565b600061100882612210565b600001519050919050565b60095481565b600f805461102690613b00565b80601f016020809104026020016040519081016040528092919081815260200182805461105290613b00565b801561109f5780601f106110745761010080835404028352916020019161109f565b820191906000526020600020905b81548152906001019060200180831161108257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110f9061360c565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611198611b9d565b73ffffffffffffffffffffffffffffffffffffffff166111b661129e565b73ffffffffffffffffffffffffffffffffffffffff161461120c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112039061364c565b60405180910390fd5b6112166000612413565b565b611220611b9d565b73ffffffffffffffffffffffffffffffffffffffff1661123e61129e565b73ffffffffffffffffffffffffffffffffffffffff1614611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b9061364c565b60405180910390fd5b80600b8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112d0611b9d565b73ffffffffffffffffffffffffffffffffffffffff166112ee61129e565b73ffffffffffffffffffffffffffffffffffffffff1614611344576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133b9061364c565b60405180910390fd5b8060098190555050565b60606002805461135d90613b00565b80601f016020809104026020016040519081016040528092919081815260200182805461138990613b00565b80156113d65780601f106113ab576101008083540402835291602001916113d6565b820191906000526020600020905b8154815290600101906020018083116113b957829003601f168201915b5050505050905090565b6113e8611b9d565b73ffffffffffffffffffffffffffffffffffffffff1661140661129e565b73ffffffffffffffffffffffffffffffffffffffff161461145c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114539061364c565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b600e60009054906101000a900460ff166114d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ce906135cc565b60405180910390fd5b6000811180156114e95750600b548111155b611528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151f906136cc565b60405180910390fd5b600a5481611534610b95565b61153e91906138ec565b111561157f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115769061350c565b60405180910390fd5b8060095461158d9190613942565b3410156115cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c6906135ac565b60405180910390fd5b6115d933826124d9565b50565b6115e4611b9d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611652576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116499061368c565b60405180910390fd5b806006600061165f611b9d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661170c611b9d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161175191906134af565b60405180910390a35050565b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b6117af848484611c57565b6117bb848484846124f7565b6117fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f19061370c565b60405180910390fd5b50505050565b606061180b82611b90565b61184a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118419061366c565b60405180910390fd5b600061185461268e565b905080915050919050565b600b5481565b60075481565b600d805461187890613b00565b80601f01602080910402602001604051908101604052809291908181526020018280546118a490613b00565b80156118f15780601f106118c6576101008083540402835291602001916118f1565b820191906000526020600020905b8154815290600101906020018083116118d457829003601f168201915b505050505081565b600c805461190690613b00565b80601f016020809104026020016040519081016040528092919081815260200182805461193290613b00565b801561197f5780601f106119545761010080835404028352916020019161197f565b820191906000526020600020905b81548152906001019060200180831161196257829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a23611b9d565b73ffffffffffffffffffffffffffffffffffffffff16611a4161129e565b73ffffffffffffffffffffffffffffffffffffffff1614611a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8e9061364c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afe9061352c565b60405180910390fd5b611b1081612413565b50565b600e60009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611c6282612210565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611c89611b9d565b73ffffffffffffffffffffffffffffffffffffffff161480611ce55750611cae611b9d565b73ffffffffffffffffffffffffffffffffffffffff16611ccd846109f7565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d015750611d008260000151611cfb611b9d565b611987565b5b905080611d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3a906136ac565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dac9061362c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1c9061358c565b60405180910390fd5b611e328585856001612720565b611e426000848460000151611ba5565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611eb0919061399c565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611f5491906138a6565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461205a91906138ec565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156121a0576120d081611b90565b1561219f576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122088686866001612726565b505050505050565b612218612c51565b61222182611b90565b612260576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122579061354c565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a83106122c45760017f000000000000000000000000000000000000000000000000000000000000000a846122b791906139d0565b6122c191906138ec565b90505b60008390505b8181106123d2576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123be5780935050505061240e565b5080806123ca90613ad6565b9150506122ca565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124059061378c565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124f382826040518060200160405280600081525061272c565b5050565b60006125188473ffffffffffffffffffffffffffffffffffffffff16612ba8565b15612681578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612541611b9d565b8786866040518563ffffffff1660e01b81526004016125639493929190613463565b602060405180830381600087803b15801561257d57600080fd5b505af19250505080156125ae57506040513d601f19601f820116820180604052508101906125ab9190612fe1565b60015b612631573d80600081146125de576040519150601f19603f3d011682016040523d82523d6000602084013e6125e3565b606091505b50600081511415612629576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126209061370c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612686565b600190505b949350505050565b6060600f805461269d90613b00565b80601f01602080910402602001604051908101604052809291908181526020018280546126c990613b00565b80156127165780601f106126eb57610100808354040283529160200191612716565b820191906000526020600020905b8154815290600101906020018083116126f957829003601f168201915b5050505050905090565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156127a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127999061374c565b60405180910390fd5b6127ab81611b90565b156127eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e29061372c565b60405180910390fd5b6127f86000858386612720565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516128f591906138a6565b6fffffffffffffffffffffffffffffffff16815260200185836020015161291c91906138a6565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612b8b57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b2b60008884886124f7565b612b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b619061370c565b60405180910390fd5b8180612b7590613b63565b9250508080612b8390613b63565b915050612aba565b5080600081905550612ba06000878588612726565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612bd790613b00565b90600052602060002090601f016020900481019282612bf95760008555612c40565b82601f10612c1257805160ff1916838001178555612c40565b82800160010185558215612c40579182015b82811115612c3f578251825591602001919060010190612c24565b5b509050612c4d9190612c8b565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ca4576000816000905550600101612c8c565b5090565b6000612cbb612cb68461380c565b6137e7565b905082815260208101848484011115612cd757612cd6613c3e565b5b612ce2848285613a94565b509392505050565b6000612cfd612cf88461383d565b6137e7565b905082815260208101848484011115612d1957612d18613c3e565b5b612d24848285613a94565b509392505050565b600081359050612d3b816142b9565b92915050565b600081359050612d50816142d0565b92915050565b600081359050612d65816142e7565b92915050565b600081519050612d7a816142e7565b92915050565b600082601f830112612d9557612d94613c39565b5b8135612da5848260208601612ca8565b91505092915050565b600082601f830112612dc357612dc2613c39565b5b8135612dd3848260208601612cea565b91505092915050565b600081359050612deb816142fe565b92915050565b600060208284031215612e0757612e06613c48565b5b6000612e1584828501612d2c565b91505092915050565b60008060408385031215612e3557612e34613c48565b5b6000612e4385828601612d2c565b9250506020612e5485828601612d2c565b9150509250929050565b600080600060608486031215612e7757612e76613c48565b5b6000612e8586828701612d2c565b9350506020612e9686828701612d2c565b9250506040612ea786828701612ddc565b9150509250925092565b60008060008060808587031215612ecb57612eca613c48565b5b6000612ed987828801612d2c565b9450506020612eea87828801612d2c565b9350506040612efb87828801612ddc565b925050606085013567ffffffffffffffff811115612f1c57612f1b613c43565b5b612f2887828801612d80565b91505092959194509250565b60008060408385031215612f4b57612f4a613c48565b5b6000612f5985828601612d2c565b9250506020612f6a85828601612d41565b9150509250929050565b60008060408385031215612f8b57612f8a613c48565b5b6000612f9985828601612d2c565b9250506020612faa85828601612ddc565b9150509250929050565b600060208284031215612fca57612fc9613c48565b5b6000612fd884828501612d56565b91505092915050565b600060208284031215612ff757612ff6613c48565b5b600061300584828501612d6b565b91505092915050565b60006020828403121561302457613023613c48565b5b600082013567ffffffffffffffff81111561304257613041613c43565b5b61304e84828501612dae565b91505092915050565b60006020828403121561306d5761306c613c48565b5b600061307b84828501612ddc565b91505092915050565b61308d81613a04565b82525050565b61309c81613a16565b82525050565b60006130ad8261386e565b6130b78185613884565b93506130c7818560208601613aa3565b6130d081613c4d565b840191505092915050565b60006130e682613879565b6130f08185613895565b9350613100818560208601613aa3565b61310981613c4d565b840191505092915050565b6000613121602283613895565b915061312c82613c5e565b604082019050919050565b6000613144600883613895565b915061314f82613cad565b602082019050919050565b6000613167602683613895565b915061317282613cd6565b604082019050919050565b600061318a602a83613895565b915061319582613d25565b604082019050919050565b60006131ad602383613895565b91506131b882613d74565b604082019050919050565b60006131d0602583613895565b91506131db82613dc3565b604082019050919050565b60006131f3602283613895565b91506131fe82613e12565b604082019050919050565b6000613216601083613895565b915061322182613e61565b602082019050919050565b6000613239603983613895565b915061324482613e8a565b604082019050919050565b600061325c602b83613895565b915061326782613ed9565b604082019050919050565b600061327f602683613895565b915061328a82613f28565b604082019050919050565b60006132a2602083613895565b91506132ad82613f77565b602082019050919050565b60006132c5602f83613895565b91506132d082613fa0565b604082019050919050565b60006132e8601a83613895565b91506132f382613fef565b602082019050919050565b600061330b603283613895565b915061331682614018565b604082019050919050565b600061332e602183613895565b915061333982614067565b604082019050919050565b6000613351602283613895565b915061335c826140b6565b604082019050919050565b6000613374603383613895565b915061337f82614105565b604082019050919050565b6000613397601d83613895565b91506133a282614154565b602082019050919050565b60006133ba602183613895565b91506133c58261417d565b604082019050919050565b60006133dd602e83613895565b91506133e8826141cc565b604082019050919050565b6000613400602f83613895565b915061340b8261421b565b604082019050919050565b6000613423602d83613895565b915061342e8261426a565b604082019050919050565b61344281613a8a565b82525050565b600060208201905061345d6000830184613084565b92915050565b60006080820190506134786000830187613084565b6134856020830186613084565b6134926040830185613439565b81810360608301526134a481846130a2565b905095945050505050565b60006020820190506134c46000830184613093565b92915050565b600060208201905081810360008301526134e481846130db565b905092915050565b6000602082019050818103600083015261350581613114565b9050919050565b6000602082019050818103600083015261352581613137565b9050919050565b600060208201905081810360008301526135458161315a565b9050919050565b600060208201905081810360008301526135658161317d565b9050919050565b60006020820190508181036000830152613585816131a0565b9050919050565b600060208201905081810360008301526135a5816131c3565b9050919050565b600060208201905081810360008301526135c5816131e6565b9050919050565b600060208201905081810360008301526135e581613209565b9050919050565b600060208201905081810360008301526136058161322c565b9050919050565b600060208201905081810360008301526136258161324f565b9050919050565b6000602082019050818103600083015261364581613272565b9050919050565b6000602082019050818103600083015261366581613295565b9050919050565b60006020820190508181036000830152613685816132b8565b9050919050565b600060208201905081810360008301526136a5816132db565b9050919050565b600060208201905081810360008301526136c5816132fe565b9050919050565b600060208201905081810360008301526136e581613321565b9050919050565b6000602082019050818103600083015261370581613344565b9050919050565b6000602082019050818103600083015261372581613367565b9050919050565b600060208201905081810360008301526137458161338a565b9050919050565b60006020820190508181036000830152613765816133ad565b9050919050565b60006020820190508181036000830152613785816133d0565b9050919050565b600060208201905081810360008301526137a5816133f3565b9050919050565b600060208201905081810360008301526137c581613416565b9050919050565b60006020820190506137e16000830184613439565b92915050565b60006137f1613802565b90506137fd8282613b32565b919050565b6000604051905090565b600067ffffffffffffffff82111561382757613826613c0a565b5b61383082613c4d565b9050602081019050919050565b600067ffffffffffffffff82111561385857613857613c0a565b5b61386182613c4d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006138b182613a4e565b91506138bc83613a4e565b9250826fffffffffffffffffffffffffffffffff038211156138e1576138e0613bac565b5b828201905092915050565b60006138f782613a8a565b915061390283613a8a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561393757613936613bac565b5b828201905092915050565b600061394d82613a8a565b915061395883613a8a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561399157613990613bac565b5b828202905092915050565b60006139a782613a4e565b91506139b283613a4e565b9250828210156139c5576139c4613bac565b5b828203905092915050565b60006139db82613a8a565b91506139e683613a8a565b9250828210156139f9576139f8613bac565b5b828203905092915050565b6000613a0f82613a6a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ac1578082015181840152602081019050613aa6565b83811115613ad0576000848401525b50505050565b6000613ae182613a8a565b91506000821415613af557613af4613bac565b5b600182039050919050565b60006002820490506001821680613b1857607f821691505b60208210811415613b2c57613b2b613bdb565b5b50919050565b613b3b82613c4d565b810181811067ffffffffffffffff82111715613b5a57613b59613c0a565b5b80604052505050565b6000613b6e82613a8a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ba157613ba0613bac565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f416d6f756e74206f662065746865722073656e74206973206e6f7420656e6f7560008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206e6f74207374617274656400000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4d757374206d696e74206265747765656e203120616e6420313020746f6b656e60008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6142c281613a04565b81146142cd57600080fd5b50565b6142d981613a16565b81146142e457600080fd5b50565b6142f081613a22565b81146142fb57600080fd5b50565b61430781613a8a565b811461431257600080fd5b5056fea2646970667358221220aefb38252aeda1389a4667e4f3a6a1d653666bbf0c3ff14a66bf0ba7cad5e08464736f6c63430008070033

Deployed Bytecode Sourcemap

42368:1895:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27636:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29362:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30783:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30346:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26200:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31633:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26828:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42463:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43796:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44148:112;;;;;;;;;;;;;:::i;:::-;;31838:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26363:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43487:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29185:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42419:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42665:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28062:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41463:103;;;;;;;;;;;;;:::i;:::-;;43697:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40812:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43597:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29517:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43392:87;;;;;;;;;;;;;:::i;:::-;;42899:485;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31051:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44020:120;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32058:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29678:290;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42502:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36391:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42587:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42538:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31388:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41721:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42625:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27636:370;27763:4;27808:25;27793:40;;;:11;:40;;;;:99;;;;27859:33;27844:48;;;:11;:48;;;;27793:99;:160;;;;27918:35;27903:50;;;:11;:50;;;;27793:160;:207;;;;27964:36;27988:11;27964:23;:36::i;:::-;27793:207;27779:221;;27636:370;;;:::o;29362:94::-;29416:13;29445:5;29438:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29362:94;:::o;30783:204::-;30851:7;30875:16;30883:7;30875;:16::i;:::-;30867:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;30957:15;:24;30973:7;30957:24;;;;;;;;;;;;;;;;;;;;;30950:31;;30783:204;;;:::o;30346:379::-;30415:13;30431:24;30447:7;30431:15;:24::i;:::-;30415:40;;30476:5;30470:11;;:2;:11;;;;30462:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30561:5;30545:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;30570:37;30587:5;30594:12;:10;:12::i;:::-;30570:16;:37::i;:::-;30545:62;30529:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;30691:28;30700:2;30704:7;30713:5;30691:8;:28::i;:::-;30408:317;30346:379;;:::o;26200:94::-;26253:7;26276:12;;26269:19;;26200:94;:::o;31633:142::-;31741:28;31751:4;31757:2;31761:7;31741:9;:28::i;:::-;31633:142;;;:::o;26828:744::-;26937:7;26972:16;26982:5;26972:9;:16::i;:::-;26964:5;:24;26956:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;27034:22;27059:13;:11;:13::i;:::-;27034:38;;27079:19;27109:25;27159:9;27154:350;27178:14;27174:1;:18;27154:350;;;27208:31;27242:11;:14;27254:1;27242:14;;;;;;;;;;;27208:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27295:1;27269:28;;:9;:14;;;:28;;;27265:89;;27330:9;:14;;;27310:34;;27265:89;27387:5;27366:26;;:17;:26;;;27362:135;;;27424:5;27409:11;:20;27405:59;;;27451:1;27444:8;;;;;;;;;27405:59;27474:13;;;;;:::i;:::-;;;;27362:135;27199:305;27194:3;;;;;:::i;:::-;;;;27154:350;;;;27510:56;;;;;;;;;;:::i;:::-;;;;;;;;26828:744;;;;;:::o;42463:32::-;;;;:::o;43796:96::-;41043:12;:10;:12::i;:::-;41032:23;;:7;:5;:7::i;:::-;:23;;;41024:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43875:9:::1;43862:10;:22;;;;43796:96:::0;:::o;44148:112::-;41043:12;:10;:12::i;:::-;41032:23;;:7;:5;:7::i;:::-;:23;;;41024:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44212:10:::1;44204:24;;:47;44229:21;44204:47;;;;;;;;;;;;;;;;;;;;;;;44196:56;;;::::0;::::1;;44148:112::o:0;31838:157::-;31950:39;31967:4;31973:2;31977:7;31950:39;;;;;;;;;;;;:16;:39::i;:::-;31838:157;;;:::o;26363:177::-;26430:7;26462:13;:11;:13::i;:::-;26454:5;:21;26446:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;26529:5;26522:12;;26363:177;;;:::o;43487:102::-;41043:12;:10;:12::i;:::-;41032:23;;:7;:5;:7::i;:::-;:23;;;41024:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43571:10:::1;43561:7;:20;;;;;;;;;;;;:::i;:::-;;43487:102:::0;:::o;29185:118::-;29249:7;29272:20;29284:7;29272:11;:20::i;:::-;:25;;;29265:32;;29185:118;;;:::o;42419:37::-;;;;:::o;42665:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28062:211::-;28126:7;28167:1;28150:19;;:5;:19;;;;28142:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;28239:12;:19;28252:5;28239:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28231:36;;28224:43;;28062:211;;;:::o;41463:103::-;41043:12;:10;:12::i;:::-;41032:23;;:7;:5;:7::i;:::-;:23;;;41024:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41528:30:::1;41555:1;41528:18;:30::i;:::-;41463:103::o:0;43697:91::-;41043:12;:10;:12::i;:::-;41032:23;;:7;:5;:7::i;:::-;:23;;;41024:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43774:6:::1;43762:9;:18;;;;43697:91:::0;:::o;40812:87::-;40858:7;40885:6;;;;;;;;;;;40878:13;;40812:87;:::o;43597:92::-;41043:12;:10;:12::i;:::-;41032:23;;:7;:5;:7::i;:::-;:23;;;41024:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43673:8:::1;43661:9;:20;;;;43597:92:::0;:::o;29517:98::-;29573:13;29602:7;29595:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29517:98;:::o;43392:87::-;41043:12;:10;:12::i;:::-;41032:23;;:7;:5;:7::i;:::-;:23;;;41024:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43460:11:::1;;;;;;;;;;;43459:12;43445:11;;:26;;;;;;;;;;;;;;;;;;43392:87::o:0;42899:485::-;42966:11;;;;;;;;;;;42958:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;43043:1;43031:9;:13;:39;;;;;43061:9;;43048;:22;;43031:39;43009:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;43179:10;;43166:9;43150:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;43142:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;43260:9;43248;;:21;;;;:::i;:::-;43235:9;:34;;43213:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;43344:32;43354:10;43366:9;43344;:32::i;:::-;42899:485;:::o;31051:274::-;31154:12;:10;:12::i;:::-;31142:24;;:8;:24;;;;31134:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;31251:8;31206:18;:32;31225:12;:10;:12::i;:::-;31206:32;;;;;;;;;;;;;;;:42;31239:8;31206:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31300:8;31271:48;;31286:12;:10;:12::i;:::-;31271:48;;;31310:8;31271:48;;;;;;:::i;:::-;;;;;;;;31051:274;;:::o;44020:120::-;44071:7;44098:22;:34;44121:10;44098:34;;;;;;;;;;;;;;;;44091:41;;44020:120;:::o;32058:311::-;32195:28;32205:4;32211:2;32215:7;32195:9;:28::i;:::-;32246:48;32269:4;32275:2;32279:7;32288:5;32246:22;:48::i;:::-;32230:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;32058:311;;;;:::o;29678:290::-;29776:13;29817:16;29825:7;29817;:16::i;:::-;29801:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;29907:21;29931:10;:8;:10::i;:::-;29907:34;;29955:7;29948:14;;;29678:290;;;:::o;42502:29::-;;;;:::o;36391:43::-;;;;:::o;42587:29::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42538:42::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31388:186::-;31510:4;31533:18;:25;31552:5;31533:25;;;;;;;;;;;;;;;:35;31559:8;31533:35;;;;;;;;;;;;;;;;;;;;;;;;;31526:42;;31388:186;;;;:::o;41721:201::-;41043:12;:10;:12::i;:::-;41032:23;;:7;:5;:7::i;:::-;:23;;;41024:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41830:1:::1;41810:22;;:8;:22;;;;41802:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;41886:28;41905:8;41886:18;:28::i;:::-;41721:201:::0;:::o;42625:31::-;;;;;;;;;;;;;:::o;13440:157::-;13525:4;13564:25;13549:40;;;:11;:40;;;;13542:47;;13440:157;;;:::o;32608:105::-;32665:4;32695:12;;32685:7;:22;32678:29;;32608:105;;;:::o;23797:98::-;23850:7;23877:10;23870:17;;23797:98;:::o;36213:172::-;36337:2;36310:15;:24;36326:7;36310:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36371:7;36367:2;36351:28;;36360:5;36351:28;;;;;;;;;;;;36213:172;;;:::o;34578:1529::-;34675:35;34713:20;34725:7;34713:11;:20::i;:::-;34675:58;;34742:22;34784:13;:18;;;34768:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;34837:12;:10;:12::i;:::-;34813:36;;:20;34825:7;34813:11;:20::i;:::-;:36;;;34768:81;:142;;;;34860:50;34877:13;:18;;;34897:12;:10;:12::i;:::-;34860:16;:50::i;:::-;34768:142;34742:169;;34936:17;34920:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;35068:4;35046:26;;:13;:18;;;:26;;;35030:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;35157:1;35143:16;;:2;:16;;;;35135:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;35210:43;35232:4;35238:2;35242:7;35251:1;35210:21;:43::i;:::-;35310:49;35327:1;35331:7;35340:13;:18;;;35310:8;:49::i;:::-;35398:1;35368:12;:18;35381:4;35368:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35434:1;35406:12;:16;35419:2;35406:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35465:43;;;;;;;;35480:2;35465:43;;;;;;35491:15;35465:43;;;;;35442:11;:20;35454:7;35442:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35736:19;35768:1;35758:7;:11;;;;:::i;:::-;35736:33;;35821:1;35780:43;;:11;:24;35792:11;35780:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;35776:236;;;35838:20;35846:11;35838:7;:20::i;:::-;35834:171;;;35898:97;;;;;;;;35925:13;:18;;;35898:97;;;;;;35956:13;:28;;;35898:97;;;;;35871:11;:24;35883:11;35871:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35834:171;35776:236;36044:7;36040:2;36025:27;;36034:4;36025:27;;;;;;;;;;;;36059:42;36080:4;36086:2;36090:7;36099:1;36059:20;:42::i;:::-;34668:1439;;;34578:1529;;;:::o;28525:606::-;28601:21;;:::i;:::-;28642:16;28650:7;28642;:16::i;:::-;28634:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;28714:26;28762:12;28751:7;:23;28747:93;;28831:1;28816:12;28806:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;28785:47;;28747:93;28853:12;28868:7;28853:22;;28848:212;28885:18;28877:4;:26;28848:212;;28922:31;28956:11;:17;28968:4;28956:17;;;;;;;;;;;28922:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29012:1;28986:28;;:9;:14;;;:28;;;28982:71;;29034:9;29027:16;;;;;;;28982:71;28913:147;28905:6;;;;;:::i;:::-;;;;28848:212;;;;29068:57;;;;;;;;;;:::i;:::-;;;;;;;;28525:606;;;;:::o;42082:191::-;42156:16;42175:6;;;;;;;;;;;42156:25;;42201:8;42192:6;;:17;;;;;;;;;;;;;;;;;;42256:8;42225:40;;42246:8;42225:40;;;;;;;;;;;;42145:128;42082:191;:::o;32719:98::-;32784:27;32794:2;32798:8;32784:27;;;;;;;;;;;;:9;:27::i;:::-;32719:98;;:::o;37924:690::-;38061:4;38078:15;:2;:13;;;:15::i;:::-;38074:535;;;38133:2;38117:36;;;38154:12;:10;:12::i;:::-;38168:4;38174:7;38183:5;38117:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38104:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38365:1;38348:6;:13;:18;38344:215;;;38381:61;;;;;;;;;;:::i;:::-;;;;;;;;38344:215;38527:6;38521:13;38512:6;38508:2;38504:15;38497:38;38104:464;38249:45;;;38239:55;;;:6;:55;;;;38232:62;;;;;38074:535;38597:4;38590:11;;37924:690;;;;;;;:::o;43900:108::-;43960:13;43993:7;43986:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43900:108;:::o;39076:141::-;;;;;:::o;39603:140::-;;;;;:::o;33072:1274::-;33177:20;33200:12;;33177:35;;33241:1;33227:16;;:2;:16;;;;33219:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33418:21;33426:12;33418:7;:21::i;:::-;33417:22;33409:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33562:61;33592:1;33596:2;33600:12;33614:8;33562:21;:61::i;:::-;33632:30;33665:12;:16;33678:2;33665:16;;;;;;;;;;;;;;;33632:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33707:119;;;;;;;;33757:8;33727:11;:19;;;:39;;;;:::i;:::-;33707:119;;;;;;33810:8;33775:11;:24;;;:44;;;;:::i;:::-;33707:119;;;;;33688:12;:16;33701:2;33688:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33861:43;;;;;;;;33876:2;33861:43;;;;;;33887:15;33861:43;;;;;33833:11;:25;33845:12;33833:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33913:20;33936:12;33913:35;;33962:9;33957:281;33981:8;33977:1;:12;33957:281;;;34035:12;34031:2;34010:38;;34027:1;34010:38;;;;;;;;;;;;34075:59;34106:1;34110:2;34114:12;34128:5;34075:22;:59::i;:::-;34057:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;34216:14;;;;;:::i;:::-;;;;33991:3;;;;;:::i;:::-;;;;33957:281;;;;34261:12;34246;:27;;;;34280:60;34309:1;34313:2;34317:12;34331:8;34280:20;:60::i;:::-;33170:1176;;;33072:1274;;;:::o;3357:326::-;3417:4;3674:1;3652:7;:19;;;:23;3645:30;;3357:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:366::-;8275:3;8296:67;8360:2;8355:3;8296:67;:::i;:::-;8289:74;;8372:93;8461:3;8372:93;:::i;:::-;8490:2;8485:3;8481:12;8474:19;;8133:366;;;:::o;8505:365::-;8647:3;8668:66;8732:1;8727:3;8668:66;:::i;:::-;8661:73;;8743:93;8832:3;8743:93;:::i;:::-;8861:2;8856:3;8852:12;8845:19;;8505:365;;;:::o;8876:366::-;9018:3;9039:67;9103:2;9098:3;9039:67;:::i;:::-;9032:74;;9115:93;9204:3;9115:93;:::i;:::-;9233:2;9228:3;9224:12;9217:19;;8876:366;;;:::o;9248:::-;9390:3;9411:67;9475:2;9470:3;9411:67;:::i;:::-;9404:74;;9487:93;9576:3;9487:93;:::i;:::-;9605:2;9600:3;9596:12;9589:19;;9248:366;;;:::o;9620:::-;9762:3;9783:67;9847:2;9842:3;9783:67;:::i;:::-;9776:74;;9859:93;9948:3;9859:93;:::i;:::-;9977:2;9972:3;9968:12;9961:19;;9620:366;;;:::o;9992:::-;10134:3;10155:67;10219:2;10214:3;10155:67;:::i;:::-;10148:74;;10231:93;10320:3;10231:93;:::i;:::-;10349:2;10344:3;10340:12;10333:19;;9992:366;;;:::o;10364:::-;10506:3;10527:67;10591:2;10586:3;10527:67;:::i;:::-;10520:74;;10603:93;10692:3;10603:93;:::i;:::-;10721:2;10716:3;10712:12;10705:19;;10364:366;;;:::o;10736:::-;10878:3;10899:67;10963:2;10958:3;10899:67;:::i;:::-;10892:74;;10975:93;11064:3;10975:93;:::i;:::-;11093:2;11088:3;11084:12;11077:19;;10736:366;;;:::o;11108:::-;11250:3;11271:67;11335:2;11330:3;11271:67;:::i;:::-;11264:74;;11347:93;11436:3;11347:93;:::i;:::-;11465:2;11460:3;11456:12;11449:19;;11108:366;;;:::o;11480:::-;11622:3;11643:67;11707:2;11702:3;11643:67;:::i;:::-;11636:74;;11719:93;11808:3;11719:93;:::i;:::-;11837:2;11832:3;11828:12;11821:19;;11480:366;;;:::o;11852:::-;11994:3;12015:67;12079:2;12074:3;12015:67;:::i;:::-;12008:74;;12091:93;12180:3;12091:93;:::i;:::-;12209:2;12204:3;12200:12;12193:19;;11852:366;;;:::o;12224:::-;12366:3;12387:67;12451:2;12446:3;12387:67;:::i;:::-;12380:74;;12463:93;12552:3;12463:93;:::i;:::-;12581:2;12576:3;12572:12;12565:19;;12224:366;;;:::o;12596:::-;12738:3;12759:67;12823:2;12818:3;12759:67;:::i;:::-;12752:74;;12835:93;12924:3;12835:93;:::i;:::-;12953:2;12948:3;12944:12;12937:19;;12596:366;;;:::o;12968:::-;13110:3;13131:67;13195:2;13190:3;13131:67;:::i;:::-;13124:74;;13207:93;13296:3;13207:93;:::i;:::-;13325:2;13320:3;13316:12;13309:19;;12968:366;;;:::o;13340:::-;13482:3;13503:67;13567:2;13562:3;13503:67;:::i;:::-;13496:74;;13579:93;13668:3;13579:93;:::i;:::-;13697:2;13692:3;13688:12;13681:19;;13340:366;;;:::o;13712:::-;13854:3;13875:67;13939:2;13934:3;13875:67;:::i;:::-;13868:74;;13951:93;14040:3;13951:93;:::i;:::-;14069:2;14064:3;14060:12;14053:19;;13712:366;;;:::o;14084:::-;14226:3;14247:67;14311:2;14306:3;14247:67;:::i;:::-;14240:74;;14323:93;14412:3;14323:93;:::i;:::-;14441:2;14436:3;14432:12;14425:19;;14084:366;;;:::o;14456:::-;14598:3;14619:67;14683:2;14678:3;14619:67;:::i;:::-;14612:74;;14695:93;14784:3;14695:93;:::i;:::-;14813:2;14808:3;14804:12;14797:19;;14456:366;;;:::o;14828:::-;14970:3;14991:67;15055:2;15050:3;14991:67;:::i;:::-;14984:74;;15067:93;15156:3;15067:93;:::i;:::-;15185:2;15180:3;15176:12;15169:19;;14828:366;;;:::o;15200:::-;15342:3;15363:67;15427:2;15422:3;15363:67;:::i;:::-;15356:74;;15439:93;15528:3;15439:93;:::i;:::-;15557:2;15552:3;15548:12;15541:19;;15200:366;;;:::o;15572:::-;15714:3;15735:67;15799:2;15794:3;15735:67;:::i;:::-;15728:74;;15811:93;15900:3;15811:93;:::i;:::-;15929:2;15924:3;15920:12;15913:19;;15572:366;;;:::o;15944:::-;16086:3;16107:67;16171:2;16166:3;16107:67;:::i;:::-;16100:74;;16183:93;16272:3;16183:93;:::i;:::-;16301:2;16296:3;16292:12;16285:19;;15944:366;;;:::o;16316:::-;16458:3;16479:67;16543:2;16538:3;16479:67;:::i;:::-;16472:74;;16555:93;16644:3;16555:93;:::i;:::-;16673:2;16668:3;16664:12;16657:19;;16316:366;;;:::o;16688:118::-;16775:24;16793:5;16775:24;:::i;:::-;16770:3;16763:37;16688:118;;:::o;16812:222::-;16905:4;16943:2;16932:9;16928:18;16920:26;;16956:71;17024:1;17013:9;17009:17;17000:6;16956:71;:::i;:::-;16812:222;;;;:::o;17040:640::-;17235:4;17273:3;17262:9;17258:19;17250:27;;17287:71;17355:1;17344:9;17340:17;17331:6;17287:71;:::i;:::-;17368:72;17436:2;17425:9;17421:18;17412:6;17368:72;:::i;:::-;17450;17518:2;17507:9;17503:18;17494:6;17450:72;:::i;:::-;17569:9;17563:4;17559:20;17554:2;17543:9;17539:18;17532:48;17597:76;17668:4;17659:6;17597:76;:::i;:::-;17589:84;;17040:640;;;;;;;:::o;17686:210::-;17773:4;17811:2;17800:9;17796:18;17788:26;;17824:65;17886:1;17875:9;17871:17;17862:6;17824:65;:::i;:::-;17686:210;;;;:::o;17902:313::-;18015:4;18053:2;18042:9;18038:18;18030:26;;18102:9;18096:4;18092:20;18088:1;18077:9;18073:17;18066:47;18130:78;18203:4;18194:6;18130:78;:::i;:::-;18122:86;;17902:313;;;;:::o;18221:419::-;18387:4;18425:2;18414:9;18410:18;18402:26;;18474:9;18468:4;18464:20;18460:1;18449:9;18445:17;18438:47;18502:131;18628:4;18502:131;:::i;:::-;18494:139;;18221:419;;;:::o;18646:::-;18812:4;18850:2;18839:9;18835:18;18827:26;;18899:9;18893:4;18889:20;18885:1;18874:9;18870:17;18863:47;18927:131;19053:4;18927:131;:::i;:::-;18919:139;;18646:419;;;:::o;19071:::-;19237:4;19275:2;19264:9;19260:18;19252:26;;19324:9;19318:4;19314:20;19310:1;19299:9;19295:17;19288:47;19352:131;19478:4;19352:131;:::i;:::-;19344:139;;19071:419;;;:::o;19496:::-;19662:4;19700:2;19689:9;19685:18;19677:26;;19749:9;19743:4;19739:20;19735:1;19724:9;19720:17;19713:47;19777:131;19903:4;19777:131;:::i;:::-;19769:139;;19496:419;;;:::o;19921:::-;20087:4;20125:2;20114:9;20110:18;20102:26;;20174:9;20168:4;20164:20;20160:1;20149:9;20145:17;20138:47;20202:131;20328:4;20202:131;:::i;:::-;20194:139;;19921:419;;;:::o;20346:::-;20512:4;20550:2;20539:9;20535:18;20527:26;;20599:9;20593:4;20589:20;20585:1;20574:9;20570:17;20563:47;20627:131;20753:4;20627:131;:::i;:::-;20619:139;;20346:419;;;:::o;20771:::-;20937:4;20975:2;20964:9;20960:18;20952:26;;21024:9;21018:4;21014:20;21010:1;20999:9;20995:17;20988:47;21052:131;21178:4;21052:131;:::i;:::-;21044:139;;20771:419;;;:::o;21196:::-;21362:4;21400:2;21389:9;21385:18;21377:26;;21449:9;21443:4;21439:20;21435:1;21424:9;21420:17;21413:47;21477:131;21603:4;21477:131;:::i;:::-;21469:139;;21196:419;;;:::o;21621:::-;21787:4;21825:2;21814:9;21810:18;21802:26;;21874:9;21868:4;21864:20;21860:1;21849:9;21845:17;21838:47;21902:131;22028:4;21902:131;:::i;:::-;21894:139;;21621:419;;;:::o;22046:::-;22212:4;22250:2;22239:9;22235:18;22227:26;;22299:9;22293:4;22289:20;22285:1;22274:9;22270:17;22263:47;22327:131;22453:4;22327:131;:::i;:::-;22319:139;;22046:419;;;:::o;22471:::-;22637:4;22675:2;22664:9;22660:18;22652:26;;22724:9;22718:4;22714:20;22710:1;22699:9;22695:17;22688:47;22752:131;22878:4;22752:131;:::i;:::-;22744:139;;22471:419;;;:::o;22896:::-;23062:4;23100:2;23089:9;23085:18;23077:26;;23149:9;23143:4;23139:20;23135:1;23124:9;23120:17;23113:47;23177:131;23303:4;23177:131;:::i;:::-;23169:139;;22896:419;;;:::o;23321:::-;23487:4;23525:2;23514:9;23510:18;23502:26;;23574:9;23568:4;23564:20;23560:1;23549:9;23545:17;23538:47;23602:131;23728:4;23602:131;:::i;:::-;23594:139;;23321:419;;;:::o;23746:::-;23912:4;23950:2;23939:9;23935:18;23927:26;;23999:9;23993:4;23989:20;23985:1;23974:9;23970:17;23963:47;24027:131;24153:4;24027:131;:::i;:::-;24019:139;;23746:419;;;:::o;24171:::-;24337:4;24375:2;24364:9;24360:18;24352:26;;24424:9;24418:4;24414:20;24410:1;24399:9;24395:17;24388:47;24452:131;24578:4;24452:131;:::i;:::-;24444:139;;24171:419;;;:::o;24596:::-;24762:4;24800:2;24789:9;24785:18;24777:26;;24849:9;24843:4;24839:20;24835:1;24824:9;24820:17;24813:47;24877:131;25003:4;24877:131;:::i;:::-;24869:139;;24596:419;;;:::o;25021:::-;25187:4;25225:2;25214:9;25210:18;25202:26;;25274:9;25268:4;25264:20;25260:1;25249:9;25245:17;25238:47;25302:131;25428:4;25302:131;:::i;:::-;25294:139;;25021:419;;;:::o;25446:::-;25612:4;25650:2;25639:9;25635:18;25627:26;;25699:9;25693:4;25689:20;25685:1;25674:9;25670:17;25663:47;25727:131;25853:4;25727:131;:::i;:::-;25719:139;;25446:419;;;:::o;25871:::-;26037:4;26075:2;26064:9;26060:18;26052:26;;26124:9;26118:4;26114:20;26110:1;26099:9;26095:17;26088:47;26152:131;26278:4;26152:131;:::i;:::-;26144:139;;25871:419;;;:::o;26296:::-;26462:4;26500:2;26489:9;26485:18;26477:26;;26549:9;26543:4;26539:20;26535:1;26524:9;26520:17;26513:47;26577:131;26703:4;26577:131;:::i;:::-;26569:139;;26296:419;;;:::o;26721:::-;26887:4;26925:2;26914:9;26910:18;26902:26;;26974:9;26968:4;26964:20;26960:1;26949:9;26945:17;26938:47;27002:131;27128:4;27002:131;:::i;:::-;26994:139;;26721:419;;;:::o;27146:::-;27312:4;27350:2;27339:9;27335:18;27327:26;;27399:9;27393:4;27389:20;27385:1;27374:9;27370:17;27363:47;27427:131;27553:4;27427:131;:::i;:::-;27419:139;;27146:419;;;:::o;27571:::-;27737:4;27775:2;27764:9;27760:18;27752:26;;27824:9;27818:4;27814:20;27810:1;27799:9;27795:17;27788:47;27852:131;27978:4;27852:131;:::i;:::-;27844:139;;27571:419;;;:::o;27996:222::-;28089:4;28127:2;28116:9;28112:18;28104:26;;28140:71;28208:1;28197:9;28193:17;28184:6;28140:71;:::i;:::-;27996:222;;;;:::o;28224:129::-;28258:6;28285:20;;:::i;:::-;28275:30;;28314:33;28342:4;28334:6;28314:33;:::i;:::-;28224:129;;;:::o;28359:75::-;28392:6;28425:2;28419:9;28409:19;;28359:75;:::o;28440:307::-;28501:4;28591:18;28583:6;28580:30;28577:56;;;28613:18;;:::i;:::-;28577:56;28651:29;28673:6;28651:29;:::i;:::-;28643:37;;28735:4;28729;28725:15;28717:23;;28440:307;;;:::o;28753:308::-;28815:4;28905:18;28897:6;28894:30;28891:56;;;28927:18;;:::i;:::-;28891:56;28965:29;28987:6;28965:29;:::i;:::-;28957:37;;29049:4;29043;29039:15;29031:23;;28753:308;;;:::o;29067:98::-;29118:6;29152:5;29146:12;29136:22;;29067:98;;;:::o;29171:99::-;29223:6;29257:5;29251:12;29241:22;;29171:99;;;:::o;29276:168::-;29359:11;29393:6;29388:3;29381:19;29433:4;29428:3;29424:14;29409:29;;29276:168;;;;:::o;29450:169::-;29534:11;29568:6;29563:3;29556:19;29608:4;29603:3;29599:14;29584:29;;29450:169;;;;:::o;29625:273::-;29665:3;29684:20;29702:1;29684:20;:::i;:::-;29679:25;;29718:20;29736:1;29718:20;:::i;:::-;29713:25;;29840:1;29804:34;29800:42;29797:1;29794:49;29791:75;;;29846:18;;:::i;:::-;29791:75;29890:1;29887;29883:9;29876:16;;29625:273;;;;:::o;29904:305::-;29944:3;29963:20;29981:1;29963:20;:::i;:::-;29958:25;;29997:20;30015:1;29997:20;:::i;:::-;29992:25;;30151:1;30083:66;30079:74;30076:1;30073:81;30070:107;;;30157:18;;:::i;:::-;30070:107;30201:1;30198;30194:9;30187:16;;29904:305;;;;:::o;30215:348::-;30255:7;30278:20;30296:1;30278:20;:::i;:::-;30273:25;;30312:20;30330:1;30312:20;:::i;:::-;30307:25;;30500:1;30432:66;30428:74;30425:1;30422:81;30417:1;30410:9;30403:17;30399:105;30396:131;;;30507:18;;:::i;:::-;30396:131;30555:1;30552;30548:9;30537:20;;30215:348;;;;:::o;30569:191::-;30609:4;30629:20;30647:1;30629:20;:::i;:::-;30624:25;;30663:20;30681:1;30663:20;:::i;:::-;30658:25;;30702:1;30699;30696:8;30693:34;;;30707:18;;:::i;:::-;30693:34;30752:1;30749;30745:9;30737:17;;30569:191;;;;:::o;30766:::-;30806:4;30826:20;30844:1;30826:20;:::i;:::-;30821:25;;30860:20;30878:1;30860:20;:::i;:::-;30855:25;;30899:1;30896;30893:8;30890:34;;;30904:18;;:::i;:::-;30890:34;30949:1;30946;30942:9;30934:17;;30766:191;;;;:::o;30963:96::-;31000:7;31029:24;31047:5;31029:24;:::i;:::-;31018:35;;30963:96;;;:::o;31065:90::-;31099:7;31142:5;31135:13;31128:21;31117:32;;31065:90;;;:::o;31161:149::-;31197:7;31237:66;31230:5;31226:78;31215:89;;31161:149;;;:::o;31316:118::-;31353:7;31393:34;31386:5;31382:46;31371:57;;31316:118;;;:::o;31440:126::-;31477:7;31517:42;31510:5;31506:54;31495:65;;31440:126;;;:::o;31572:77::-;31609:7;31638:5;31627:16;;31572:77;;;:::o;31655:154::-;31739:6;31734:3;31729;31716:30;31801:1;31792:6;31787:3;31783:16;31776:27;31655:154;;;:::o;31815:307::-;31883:1;31893:113;31907:6;31904:1;31901:13;31893:113;;;31992:1;31987:3;31983:11;31977:18;31973:1;31968:3;31964:11;31957:39;31929:2;31926:1;31922:10;31917:15;;31893:113;;;32024:6;32021:1;32018:13;32015:101;;;32104:1;32095:6;32090:3;32086:16;32079:27;32015:101;31864:258;31815:307;;;:::o;32128:171::-;32167:3;32190:24;32208:5;32190:24;:::i;:::-;32181:33;;32236:4;32229:5;32226:15;32223:41;;;32244:18;;:::i;:::-;32223:41;32291:1;32284:5;32280:13;32273:20;;32128:171;;;:::o;32305:320::-;32349:6;32386:1;32380:4;32376:12;32366:22;;32433:1;32427:4;32423:12;32454:18;32444:81;;32510:4;32502:6;32498:17;32488:27;;32444:81;32572:2;32564:6;32561:14;32541:18;32538:38;32535:84;;;32591:18;;:::i;:::-;32535:84;32356:269;32305:320;;;:::o;32631:281::-;32714:27;32736:4;32714:27;:::i;:::-;32706:6;32702:40;32844:6;32832:10;32829:22;32808:18;32796:10;32793:34;32790:62;32787:88;;;32855:18;;:::i;:::-;32787:88;32895:10;32891:2;32884:22;32674:238;32631:281;;:::o;32918:233::-;32957:3;32980:24;32998:5;32980:24;:::i;:::-;32971:33;;33026:66;33019:5;33016:77;33013:103;;;33096:18;;:::i;:::-;33013:103;33143:1;33136:5;33132:13;33125:20;;32918:233;;;:::o;33157:180::-;33205:77;33202:1;33195:88;33302:4;33299:1;33292:15;33326:4;33323:1;33316:15;33343:180;33391:77;33388:1;33381:88;33488:4;33485:1;33478:15;33512:4;33509:1;33502:15;33529:180;33577:77;33574:1;33567:88;33674:4;33671:1;33664:15;33698:4;33695:1;33688:15;33715:117;33824:1;33821;33814:12;33838:117;33947:1;33944;33937:12;33961:117;34070:1;34067;34060:12;34084:117;34193:1;34190;34183:12;34207:102;34248:6;34299:2;34295:7;34290:2;34283:5;34279:14;34275:28;34265:38;;34207:102;;;:::o;34315:221::-;34455:34;34451:1;34443:6;34439:14;34432:58;34524:4;34519:2;34511:6;34507:15;34500:29;34315:221;:::o;34542:158::-;34682:10;34678:1;34670:6;34666:14;34659:34;34542:158;:::o;34706:225::-;34846:34;34842:1;34834:6;34830:14;34823:58;34915:8;34910:2;34902:6;34898:15;34891:33;34706:225;:::o;34937:229::-;35077:34;35073:1;35065:6;35061:14;35054:58;35146:12;35141:2;35133:6;35129:15;35122:37;34937:229;:::o;35172:222::-;35312:34;35308:1;35300:6;35296:14;35289:58;35381:5;35376:2;35368:6;35364:15;35357:30;35172:222;:::o;35400:224::-;35540:34;35536:1;35528:6;35524:14;35517:58;35609:7;35604:2;35596:6;35592:15;35585:32;35400:224;:::o;35630:221::-;35770:34;35766:1;35758:6;35754:14;35747:58;35839:4;35834:2;35826:6;35822:15;35815:29;35630:221;:::o;35857:166::-;35997:18;35993:1;35985:6;35981:14;35974:42;35857:166;:::o;36029:244::-;36169:34;36165:1;36157:6;36153:14;36146:58;36238:27;36233:2;36225:6;36221:15;36214:52;36029:244;:::o;36279:230::-;36419:34;36415:1;36407:6;36403:14;36396:58;36488:13;36483:2;36475:6;36471:15;36464:38;36279:230;:::o;36515:225::-;36655:34;36651:1;36643:6;36639:14;36632:58;36724:8;36719:2;36711:6;36707:15;36700:33;36515:225;:::o;36746:182::-;36886:34;36882:1;36874:6;36870:14;36863:58;36746:182;:::o;36934:234::-;37074:34;37070:1;37062:6;37058:14;37051:58;37143:17;37138:2;37130:6;37126:15;37119:42;36934:234;:::o;37174:176::-;37314:28;37310:1;37302:6;37298:14;37291:52;37174:176;:::o;37356:237::-;37496:34;37492:1;37484:6;37480:14;37473:58;37565:20;37560:2;37552:6;37548:15;37541:45;37356:237;:::o;37599:220::-;37739:34;37735:1;37727:6;37723:14;37716:58;37808:3;37803:2;37795:6;37791:15;37784:28;37599:220;:::o;37825:221::-;37965:34;37961:1;37953:6;37949:14;37942:58;38034:4;38029:2;38021:6;38017:15;38010:29;37825:221;:::o;38052:238::-;38192:34;38188:1;38180:6;38176:14;38169:58;38261:21;38256:2;38248:6;38244:15;38237:46;38052:238;:::o;38296:179::-;38436:31;38432:1;38424:6;38420:14;38413:55;38296:179;:::o;38481:220::-;38621:34;38617:1;38609:6;38605:14;38598:58;38690:3;38685:2;38677:6;38673:15;38666:28;38481:220;:::o;38707:233::-;38847:34;38843:1;38835:6;38831:14;38824:58;38916:16;38911:2;38903:6;38899:15;38892:41;38707:233;:::o;38946:234::-;39086:34;39082:1;39074:6;39070:14;39063:58;39155:17;39150:2;39142:6;39138:15;39131:42;38946:234;:::o;39186:232::-;39326:34;39322:1;39314:6;39310:14;39303:58;39395:15;39390:2;39382:6;39378:15;39371:40;39186:232;:::o;39424:122::-;39497:24;39515:5;39497:24;:::i;:::-;39490:5;39487:35;39477:63;;39536:1;39533;39526:12;39477:63;39424:122;:::o;39552:116::-;39622:21;39637:5;39622:21;:::i;:::-;39615:5;39612:32;39602:60;;39658:1;39655;39648:12;39602:60;39552:116;:::o;39674:120::-;39746:23;39763:5;39746:23;:::i;:::-;39739:5;39736:34;39726:62;;39784:1;39781;39774:12;39726:62;39674:120;:::o;39800:122::-;39873:24;39891:5;39873:24;:::i;:::-;39866:5;39863:35;39853:63;;39912:1;39909;39902:12;39853:63;39800:122;:::o

Swarm Source

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