ETH Price: $3,162.11 (-4.13%)
Gas: 4 Gwei

Token

Pudgy Pungine Yacht Club (PPYC)
 

Overview

Max Total Supply

10,000 PPYC

Holders

807

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 PPYC
0x618Cf13c76c1FFC2168fC47c98453dCc6134F5c8
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
PPYC

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-27
*/

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @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);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;









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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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: PPYC.sol



pragma solidity ^0.8.0;




contract PPYC is ERC721A, Ownable, ReentrancyGuard {

    mapping (address => uint256) public WalletMint;
    bool public MintStartEnabled  = false;
    uint public MintPrice = 0.001 ether; 
    string public baseURI;  
    uint public freeMint = 0;
    uint public maxMintPerTx = 20;  
    uint public maxSupply = 10000;

    constructor() ERC721A("Pudgy Pungine Yacht Club", "PPYC",69,10000)
    {
        baseURI = "ipfs://QmSFRNxTzbAedYqafpMTGUGCzWCiWk3NXaQB2EHih9kbf6/";
        MintStartEnabled = true;
    }

    function mint(uint256 qty) external payable
    {
        require(MintStartEnabled , "Iceberg Info:  Minting Public Pause");
        require(qty <= maxMintPerTx, "Iceberg Info:  Limit Per Transaction");
        require(totalSupply() + qty <= maxSupply,"Iceberg Info:  Soldout");
        _safemint(qty);
    }

    function _safemint(uint256 qty) internal
    {
        if(WalletMint[msg.sender] < freeMint) 
        {
            if(qty < freeMint) qty = freeMint;
           require(msg.value >= (qty - freeMint) * MintPrice,"Iceberg Info:  Fund not enough");
            WalletMint[msg.sender] += qty;
           _safeMint(msg.sender, qty);
        }
        else
        {
           require(msg.value >= qty * MintPrice,"IceBerg Info:  Fund not enough");
            WalletMint[msg.sender] += qty;
           _safeMint(msg.sender, qty);
        }
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

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

    function airdropNFT(address to ,uint256 qty) external onlyOwner
    {
        _safeMint(to, qty);
    }

    function OwnerBatchMint(uint256 qty) external onlyOwner
    {
        _safeMint(msg.sender, qty);
    }

    function setPublicMinting() external onlyOwner {
        MintStartEnabled  = !MintStartEnabled ;
    }
    
    function setBaseURI(string calldata baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function setPrice(uint256 price_) external onlyOwner {
        MintPrice = price_;
    }

    function setmaxMintPerTx(uint256 maxMintPerTx_) external onlyOwner {
        maxMintPerTx = maxMintPerTx_;
    }

    function setMaxFreeMint(uint256 qty_) external onlyOwner {
        freeMint = qty_;
    }

    function setmaxMint(uint256 maxMint_) external onlyOwner {
        maxSupply = maxMint_;
    }

    function withdraw() public onlyOwner {
        payable(msg.sender).transfer(payable(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":"MintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MintStartEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"OwnerBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"WalletMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"airdropNFT","outputs":[],"stateMutability":"nonpayable","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":"freeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty_","type":"uint256"}],"name":"setMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint_","type":"uint256"}],"name":"setmaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintPerTx_","type":"uint256"}],"name":"setmaxMintPerTx","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"}]

60c06040526000805560006007556000600b60006101000a81548160ff02191690831515021790555066038d7ea4c68000600c556000600e556014600f556127106010553480156200005057600080fd5b506040518060400160405280601881526020017f50756467792050756e67696e6520596163687420436c756200000000000000008152506040518060400160405280600481526020017f505059430000000000000000000000000000000000000000000000000000000081525060456127106000811162000108576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000ff906200034f565b60405180910390fd5b600082116200014e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200014590620003e7565b60405180910390fd5b83600190816200015f919062000683565b50826002908162000171919062000683565b508160a08181525050806080818152505050505050620001a66200019a620001fa60201b60201c565b6200020260201b60201c565b60016009819055506040518060600160405280603681526020016200501560369139600d9081620001d8919062000683565b506001600b60006101000a81548160ff0219169083151502179055506200076a565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600082825260208201905092915050565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b600062000337602e83620002c8565b91506200034482620002d9565b604082019050919050565b600060208201905081810360008301526200036a8162000328565b9050919050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b6000620003cf602783620002c8565b9150620003dc8262000371565b604082019050919050565b600060208201905081810360008301526200040281620003c0565b9050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200048b57607f821691505b602082108103620004a157620004a062000443565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200050b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004cc565b620005178683620004cc565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005646200055e62000558846200052f565b62000539565b6200052f565b9050919050565b6000819050919050565b620005808362000543565b620005986200058f826200056b565b848454620004d9565b825550505050565b600090565b620005af620005a0565b620005bc81848462000575565b505050565b5b81811015620005e457620005d8600082620005a5565b600181019050620005c2565b5050565b601f8211156200063357620005fd81620004a7565b6200060884620004bc565b8101602085101562000618578190505b620006306200062785620004bc565b830182620005c1565b50505b505050565b600082821c905092915050565b6000620006586000198460080262000638565b1980831691505092915050565b600062000673838362000645565b9150826002028217905092915050565b6200068e8262000409565b67ffffffffffffffff811115620006aa57620006a962000414565b5b620006b6825462000472565b620006c3828285620005e8565b600060209050601f831160018114620006fb5760008415620006e6578287015190505b620006f2858262000665565b86555062000762565b601f1984166200070b86620004a7565b60005b8281101562000735578489015182556001820191506020850194506020810190506200070e565b8683101562000755578489015162000751601f89168262000645565b8355505b6001600288020188555050505b505050505050565b60805160a05161487a6200079b60003960008181611f2901528181611f52015261289a01526000505061487a6000f3fe6080604052600436106102255760003560e01c806379f34a1011610123578063bc46081b116100ab578063de7fcb1d1161006f578063de7fcb1d146107e2578063e645f7081461080d578063e985e9c51461084a578063f2fde38b14610887578063fdbf9ef2146108b057610225565b8063bc46081b146106e7578063c87b56dd14610712578063d5abeb011461074f578063d7224ba01461077a578063dc33e681146107a557610225565b806395d89b41116100f257806395d89b4114610637578063a0712d6814610662578063a22cb4651461067e578063ac915c06146106a7578063b88d4fde146106be57610225565b806379f34a10146105915780638171609b146105ba5780638da5cb5b146105e357806391b7f5ed1461060e57610225565b80633ccfd60b116101b15780636352211e116101755780636352211e146104ac5780636c0360eb146104e957806370a0823114610514578063715018a614610551578063742a4c9b1461056857610225565b80633ccfd60b146103db57806342842e0e146103f25780634f6ccce71461041b57806355f804b3146104585780635b70ea9f1461048157610225565b806318160ddd116101f857806318160ddd146102f857806323b872dd146103235780632f745c591461034c5780632fc2e29c1461038957806337e36f79146103b257610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612d81565b6108db565b60405161025e9190612dc9565b60405180910390f35b34801561027357600080fd5b5061027c610a25565b6040516102899190612e74565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612ecc565b610ab7565b6040516102c69190612f3a565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612f81565b610b3c565b005b34801561030457600080fd5b5061030d610c54565b60405161031a9190612fd0565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190612feb565b610c5d565b005b34801561035857600080fd5b50610373600480360381019061036e9190612f81565b610c6d565b6040516103809190612fd0565b60405180910390f35b34801561039557600080fd5b506103b060048036038101906103ab9190612ecc565b610e69565b005b3480156103be57600080fd5b506103d960048036038101906103d49190612f81565b610e7b565b005b3480156103e757600080fd5b506103f0610e91565b005b3480156103fe57600080fd5b5061041960048036038101906104149190612feb565b610ef9565b005b34801561042757600080fd5b50610442600480360381019061043d9190612ecc565b610f19565b60405161044f9190612fd0565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a91906130a3565b610f6c565b005b34801561048d57600080fd5b50610496610f8a565b6040516104a39190612fd0565b60405180910390f35b3480156104b857600080fd5b506104d360048036038101906104ce9190612ecc565b610f90565b6040516104e09190612f3a565b60405180910390f35b3480156104f557600080fd5b506104fe610fa6565b60405161050b9190612e74565b60405180910390f35b34801561052057600080fd5b5061053b600480360381019061053691906130f0565b611034565b6040516105489190612fd0565b60405180910390f35b34801561055d57600080fd5b5061056661111c565b005b34801561057457600080fd5b5061058f600480360381019061058a9190612ecc565b611130565b005b34801561059d57600080fd5b506105b860048036038101906105b39190612ecc565b611142565b005b3480156105c657600080fd5b506105e160048036038101906105dc9190612ecc565b611154565b005b3480156105ef57600080fd5b506105f8611169565b6040516106059190612f3a565b60405180910390f35b34801561061a57600080fd5b5061063560048036038101906106309190612ecc565b611193565b005b34801561064357600080fd5b5061064c6111a5565b6040516106599190612e74565b60405180910390f35b61067c60048036038101906106779190612ecc565b611237565b005b34801561068a57600080fd5b506106a560048036038101906106a09190613149565b61132e565b005b3480156106b357600080fd5b506106bc6114ae565b005b3480156106ca57600080fd5b506106e560048036038101906106e091906132b9565b6114e2565b005b3480156106f357600080fd5b506106fc61153e565b6040516107099190612dc9565b60405180910390f35b34801561071e57600080fd5b5061073960048036038101906107349190612ecc565b611551565b6040516107469190612e74565b60405180910390f35b34801561075b57600080fd5b506107646115f8565b6040516107719190612fd0565b60405180910390f35b34801561078657600080fd5b5061078f6115fe565b60405161079c9190612fd0565b60405180910390f35b3480156107b157600080fd5b506107cc60048036038101906107c791906130f0565b611604565b6040516107d99190612fd0565b60405180910390f35b3480156107ee57600080fd5b506107f7611616565b6040516108049190612fd0565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f91906130f0565b61161c565b6040516108419190612fd0565b60405180910390f35b34801561085657600080fd5b50610871600480360381019061086c919061333c565b611634565b60405161087e9190612dc9565b60405180910390f35b34801561089357600080fd5b506108ae60048036038101906108a991906130f0565b6116c8565b005b3480156108bc57600080fd5b506108c561174b565b6040516108d29190612fd0565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a1e5750610a1d82611751565b5b9050919050565b606060018054610a34906133ab565b80601f0160208091040260200160405190810160405280929190818152602001828054610a60906133ab565b8015610aad5780601f10610a8257610100808354040283529160200191610aad565b820191906000526020600020905b815481529060010190602001808311610a9057829003601f168201915b5050505050905090565b6000610ac2826117bb565b610b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af89061344e565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b4782610f90565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae906134e0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd66117c8565b73ffffffffffffffffffffffffffffffffffffffff161480610c055750610c0481610bff6117c8565b611634565b5b610c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3b90613572565b60405180910390fd5b610c4f8383836117d0565b505050565b60008054905090565b610c68838383611882565b505050565b6000610c7883611034565b8210610cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb090613604565b60405180910390fd5b6000610cc3610c54565b905060008060005b83811015610e27576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610dbd57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e1357868403610e04578195505050505050610e63565b8380610e0f90613653565b9450505b508080610e1f90613653565b915050610ccb565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5a9061370d565b60405180910390fd5b92915050565b610e71611e39565b8060108190555050565b610e83611e39565b610e8d8282611eb7565b5050565b610e99611e39565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015610ef6573d6000803e3d6000fd5b50565b610f14838383604051806020016040528060008152506114e2565b505050565b6000610f23610c54565b8210610f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5b9061379f565b60405180910390fd5b819050919050565b610f74611e39565b8181600d9182610f85929190613976565b505050565b600e5481565b6000610f9b82611ed5565b600001519050919050565b600d8054610fb3906133ab565b80601f0160208091040260200160405190810160405280929190818152602001828054610fdf906133ab565b801561102c5780601f106110015761010080835404028352916020019161102c565b820191906000526020600020905b81548152906001019060200180831161100f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109b90613ab8565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611124611e39565b61112e60006120d8565b565b611138611e39565b80600e8190555050565b61114a611e39565b80600f8190555050565b61115c611e39565b6111663382611eb7565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61119b611e39565b80600c8190555050565b6060600280546111b4906133ab565b80601f01602080910402602001604051908101604052809291908181526020018280546111e0906133ab565b801561122d5780601f106112025761010080835404028352916020019161122d565b820191906000526020600020905b81548152906001019060200180831161121057829003601f168201915b5050505050905090565b600b60009054906101000a900460ff16611286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127d90613b4a565b60405180910390fd5b600f548111156112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c290613bdc565b60405180910390fd5b601054816112d7610c54565b6112e19190613bfc565b1115611322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131990613c7c565b60405180910390fd5b61132b8161219e565b50565b6113366117c8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139a90613ce8565b60405180910390fd5b80600660006113b06117c8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661145d6117c8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114a29190612dc9565b60405180910390a35050565b6114b6611e39565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6114ed848484611882565b6114f98484848461236d565b611538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152f90613d7a565b60405180910390fd5b50505050565b600b60009054906101000a900460ff1681565b606061155c826117bb565b61159b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159290613e0c565b60405180910390fd5b60006115a56124f4565b905060008151116115c557604051806020016040528060008152506115f0565b806115cf84612586565b6040516020016115e0929190613e68565b6040516020818303038152906040525b915050919050565b60105481565b60075481565b600061160f826126e6565b9050919050565b600f5481565b600a6020528060005260406000206000915090505481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116d0611e39565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361173f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173690613efe565b60405180910390fd5b611748816120d8565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061188d82611ed5565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166118b46117c8565b73ffffffffffffffffffffffffffffffffffffffff16148061191057506118d96117c8565b73ffffffffffffffffffffffffffffffffffffffff166118f884610ab7565b73ffffffffffffffffffffffffffffffffffffffff16145b8061192c575061192b82600001516119266117c8565b611634565b5b90508061196e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196590613f90565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146119e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d790614022565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611a4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a46906140b4565b60405180910390fd5b611a5c85858560016127ce565b611a6c60008484600001516117d0565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611ada91906140f0565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611b7e9190614134565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611c849190613bfc565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611dc957611cf9816117bb565b15611dc8576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e3186868660016127d4565b505050505050565b611e416117c8565b73ffffffffffffffffffffffffffffffffffffffff16611e5f611169565b73ffffffffffffffffffffffffffffffffffffffff1614611eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eac906141c4565b60405180910390fd5b565b611ed18282604051806020016040528060008152506127da565b5050565b611edd612cdb565b611ee6826117bb565b611f25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1c90614256565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310611f895760017f000000000000000000000000000000000000000000000000000000000000000084611f7c9190614276565b611f869190613bfc565b90505b60008390505b818110612097576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612083578093505050506120d3565b50808061208f906142aa565b915050611f8f565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ca90614345565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600e54600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156122b957600e548110156121f757600e5490505b600c54600e54826122089190614276565b6122129190614365565b341015612254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224b906143f3565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122a39190613bfc565b925050819055506122b43382611eb7565b61236a565b600c54816122c79190614365565b341015612309576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123009061445f565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123589190613bfc565b925050819055506123693382611eb7565b5b50565b600061238e8473ffffffffffffffffffffffffffffffffffffffff16612cb8565b156124e7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123b76117c8565b8786866040518563ffffffff1660e01b81526004016123d994939291906144d4565b6020604051808303816000875af192505050801561241557506040513d601f19601f820116820180604052508101906124129190614535565b60015b612497573d8060008114612445576040519150601f19603f3d011682016040523d82523d6000602084013e61244a565b606091505b50600081510361248f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248690613d7a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124ec565b600190505b949350505050565b6060600d8054612503906133ab565b80601f016020809104026020016040519081016040528092919081815260200182805461252f906133ab565b801561257c5780601f106125515761010080835404028352916020019161257c565b820191906000526020600020905b81548152906001019060200180831161255f57829003601f168201915b5050505050905090565b6060600082036125cd576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126e1565b600082905060005b600082146125ff5780806125e890613653565b915050600a826125f89190614591565b91506125d5565b60008167ffffffffffffffff81111561261b5761261a61318e565b5b6040519080825280601f01601f19166020018201604052801561264d5781602001600182028036833780820191505090505b5090505b600085146126da576001826126669190614276565b9150600a8561267591906145c2565b60306126819190613bfc565b60f81b818381518110612697576126966145f3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126d39190614591565b9450612651565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274d90614694565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361284f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284690614726565b60405180910390fd5b612858816117bb565b15612898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288f90614792565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156128fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f290614824565b60405180910390fd5b61290860008583866127ce565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612a059190614134565b6fffffffffffffffffffffffffffffffff168152602001858360200151612a2c9190614134565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612c9b57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c3b600088848861236d565b612c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7190613d7a565b60405180910390fd5b8180612c8590613653565b9250508080612c9390613653565b915050612bca565b5080600081905550612cb060008785886127d4565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d5e81612d29565b8114612d6957600080fd5b50565b600081359050612d7b81612d55565b92915050565b600060208284031215612d9757612d96612d1f565b5b6000612da584828501612d6c565b91505092915050565b60008115159050919050565b612dc381612dae565b82525050565b6000602082019050612dde6000830184612dba565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e1e578082015181840152602081019050612e03565b60008484015250505050565b6000601f19601f8301169050919050565b6000612e4682612de4565b612e508185612def565b9350612e60818560208601612e00565b612e6981612e2a565b840191505092915050565b60006020820190508181036000830152612e8e8184612e3b565b905092915050565b6000819050919050565b612ea981612e96565b8114612eb457600080fd5b50565b600081359050612ec681612ea0565b92915050565b600060208284031215612ee257612ee1612d1f565b5b6000612ef084828501612eb7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f2482612ef9565b9050919050565b612f3481612f19565b82525050565b6000602082019050612f4f6000830184612f2b565b92915050565b612f5e81612f19565b8114612f6957600080fd5b50565b600081359050612f7b81612f55565b92915050565b60008060408385031215612f9857612f97612d1f565b5b6000612fa685828601612f6c565b9250506020612fb785828601612eb7565b9150509250929050565b612fca81612e96565b82525050565b6000602082019050612fe56000830184612fc1565b92915050565b60008060006060848603121561300457613003612d1f565b5b600061301286828701612f6c565b935050602061302386828701612f6c565b925050604061303486828701612eb7565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126130635761306261303e565b5b8235905067ffffffffffffffff8111156130805761307f613043565b5b60208301915083600182028301111561309c5761309b613048565b5b9250929050565b600080602083850312156130ba576130b9612d1f565b5b600083013567ffffffffffffffff8111156130d8576130d7612d24565b5b6130e48582860161304d565b92509250509250929050565b60006020828403121561310657613105612d1f565b5b600061311484828501612f6c565b91505092915050565b61312681612dae565b811461313157600080fd5b50565b6000813590506131438161311d565b92915050565b600080604083850312156131605761315f612d1f565b5b600061316e85828601612f6c565b925050602061317f85828601613134565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6131c682612e2a565b810181811067ffffffffffffffff821117156131e5576131e461318e565b5b80604052505050565b60006131f8612d15565b905061320482826131bd565b919050565b600067ffffffffffffffff8211156132245761322361318e565b5b61322d82612e2a565b9050602081019050919050565b82818337600083830152505050565b600061325c61325784613209565b6131ee565b90508281526020810184848401111561327857613277613189565b5b61328384828561323a565b509392505050565b600082601f8301126132a05761329f61303e565b5b81356132b0848260208601613249565b91505092915050565b600080600080608085870312156132d3576132d2612d1f565b5b60006132e187828801612f6c565b94505060206132f287828801612f6c565b935050604061330387828801612eb7565b925050606085013567ffffffffffffffff81111561332457613323612d24565b5b6133308782880161328b565b91505092959194509250565b6000806040838503121561335357613352612d1f565b5b600061336185828601612f6c565b925050602061337285828601612f6c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806133c357607f821691505b6020821081036133d6576133d561337c565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613438602d83612def565b9150613443826133dc565b604082019050919050565b600060208201905081810360008301526134678161342b565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006134ca602283612def565b91506134d58261346e565b604082019050919050565b600060208201905081810360008301526134f9816134bd565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b600061355c603983612def565b915061356782613500565b604082019050919050565b6000602082019050818103600083015261358b8161354f565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006135ee602283612def565b91506135f982613592565b604082019050919050565b6000602082019050818103600083015261361d816135e1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061365e82612e96565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036136905761368f613624565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b60006136f7602e83612def565b91506137028261369b565b604082019050919050565b60006020820190508181036000830152613726816136ea565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613789602383612def565b91506137948261372d565b604082019050919050565b600060208201905081810360008301526137b88161377c565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261382c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826137ef565b61383686836137ef565b95508019841693508086168417925050509392505050565b6000819050919050565b600061387361386e61386984612e96565b61384e565b612e96565b9050919050565b6000819050919050565b61388d83613858565b6138a16138998261387a565b8484546137fc565b825550505050565b600090565b6138b66138a9565b6138c1818484613884565b505050565b5b818110156138e5576138da6000826138ae565b6001810190506138c7565b5050565b601f82111561392a576138fb816137ca565b613904846137df565b81016020851015613913578190505b61392761391f856137df565b8301826138c6565b50505b505050565b600082821c905092915050565b600061394d6000198460080261392f565b1980831691505092915050565b6000613966838361393c565b9150826002028217905092915050565b61398083836137bf565b67ffffffffffffffff8111156139995761399861318e565b5b6139a382546133ab565b6139ae8282856138e9565b6000601f8311600181146139dd57600084156139cb578287013590505b6139d5858261395a565b865550613a3d565b601f1984166139eb866137ca565b60005b82811015613a13578489013582556001820191506020850194506020810190506139ee565b86831015613a305784890135613a2c601f89168261393c565b8355505b6001600288020188555050505b50505050505050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613aa2602b83612def565b9150613aad82613a46565b604082019050919050565b60006020820190508181036000830152613ad181613a95565b9050919050565b7f4963656265726720496e666f3a20204d696e74696e67205075626c696320506160008201527f7573650000000000000000000000000000000000000000000000000000000000602082015250565b6000613b34602383612def565b9150613b3f82613ad8565b604082019050919050565b60006020820190508181036000830152613b6381613b27565b9050919050565b7f4963656265726720496e666f3a20204c696d697420506572205472616e73616360008201527f74696f6e00000000000000000000000000000000000000000000000000000000602082015250565b6000613bc6602483612def565b9150613bd182613b6a565b604082019050919050565b60006020820190508181036000830152613bf581613bb9565b9050919050565b6000613c0782612e96565b9150613c1283612e96565b9250828201905080821115613c2a57613c29613624565b5b92915050565b7f4963656265726720496e666f3a2020536f6c646f757400000000000000000000600082015250565b6000613c66601683612def565b9150613c7182613c30565b602082019050919050565b60006020820190508181036000830152613c9581613c59565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613cd2601a83612def565b9150613cdd82613c9c565b602082019050919050565b60006020820190508181036000830152613d0181613cc5565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000613d64603383612def565b9150613d6f82613d08565b604082019050919050565b60006020820190508181036000830152613d9381613d57565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613df6602f83612def565b9150613e0182613d9a565b604082019050919050565b60006020820190508181036000830152613e2581613de9565b9050919050565b600081905092915050565b6000613e4282612de4565b613e4c8185613e2c565b9350613e5c818560208601612e00565b80840191505092915050565b6000613e748285613e37565b9150613e808284613e37565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613ee8602683612def565b9150613ef382613e8c565b604082019050919050565b60006020820190508181036000830152613f1781613edb565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613f7a603283612def565b9150613f8582613f1e565b604082019050919050565b60006020820190508181036000830152613fa981613f6d565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b600061400c602683612def565b915061401782613fb0565b604082019050919050565b6000602082019050818103600083015261403b81613fff565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061409e602583612def565b91506140a982614042565b604082019050919050565b600060208201905081810360008301526140cd81614091565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b60006140fb826140d4565b9150614106836140d4565b925082820390506fffffffffffffffffffffffffffffffff81111561412e5761412d613624565b5b92915050565b600061413f826140d4565b915061414a836140d4565b925082820190506fffffffffffffffffffffffffffffffff81111561417257614171613624565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141ae602083612def565b91506141b982614178565b602082019050919050565b600060208201905081810360008301526141dd816141a1565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000614240602a83612def565b915061424b826141e4565b604082019050919050565b6000602082019050818103600083015261426f81614233565b9050919050565b600061428182612e96565b915061428c83612e96565b92508282039050818111156142a4576142a3613624565b5b92915050565b60006142b582612e96565b9150600082036142c8576142c7613624565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b600061432f602f83612def565b915061433a826142d3565b604082019050919050565b6000602082019050818103600083015261435e81614322565b9050919050565b600061437082612e96565b915061437b83612e96565b925082820261438981612e96565b915082820484148315176143a05761439f613624565b5b5092915050565b7f4963656265726720496e666f3a202046756e64206e6f7420656e6f7567680000600082015250565b60006143dd601e83612def565b91506143e8826143a7565b602082019050919050565b6000602082019050818103600083015261440c816143d0565b9050919050565b7f4963654265726720496e666f3a202046756e64206e6f7420656e6f7567680000600082015250565b6000614449601e83612def565b915061445482614413565b602082019050919050565b600060208201905081810360008301526144788161443c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006144a68261447f565b6144b0818561448a565b93506144c0818560208601612e00565b6144c981612e2a565b840191505092915050565b60006080820190506144e96000830187612f2b565b6144f66020830186612f2b565b6145036040830185612fc1565b8181036060830152614515818461449b565b905095945050505050565b60008151905061452f81612d55565b92915050565b60006020828403121561454b5761454a612d1f565b5b600061455984828501614520565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061459c82612e96565b91506145a783612e96565b9250826145b7576145b6614562565b5b828204905092915050565b60006145cd82612e96565b91506145d883612e96565b9250826145e8576145e7614562565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b600061467e603183612def565b915061468982614622565b604082019050919050565b600060208201905081810360008301526146ad81614671565b9050919050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614710602183612def565b915061471b826146b4565b604082019050919050565b6000602082019050818103600083015261473f81614703565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b600061477c601d83612def565b915061478782614746565b602082019050919050565b600060208201905081810360008301526147ab8161476f565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b600061480e602283612def565b9150614819826147b2565b604082019050919050565b6000602082019050818103600083015261483d81614801565b905091905056fea2646970667358221220efdca2197badea293f0f62765df671c6c9cd6a81c5e81e5af4eff05ae832979964736f6c63430008110033697066733a2f2f516d5346524e78547a6241656459716166704d54475547437a574369576b334e586151423245486968396b6266362f

Deployed Bytecode

0x6080604052600436106102255760003560e01c806379f34a1011610123578063bc46081b116100ab578063de7fcb1d1161006f578063de7fcb1d146107e2578063e645f7081461080d578063e985e9c51461084a578063f2fde38b14610887578063fdbf9ef2146108b057610225565b8063bc46081b146106e7578063c87b56dd14610712578063d5abeb011461074f578063d7224ba01461077a578063dc33e681146107a557610225565b806395d89b41116100f257806395d89b4114610637578063a0712d6814610662578063a22cb4651461067e578063ac915c06146106a7578063b88d4fde146106be57610225565b806379f34a10146105915780638171609b146105ba5780638da5cb5b146105e357806391b7f5ed1461060e57610225565b80633ccfd60b116101b15780636352211e116101755780636352211e146104ac5780636c0360eb146104e957806370a0823114610514578063715018a614610551578063742a4c9b1461056857610225565b80633ccfd60b146103db57806342842e0e146103f25780634f6ccce71461041b57806355f804b3146104585780635b70ea9f1461048157610225565b806318160ddd116101f857806318160ddd146102f857806323b872dd146103235780632f745c591461034c5780632fc2e29c1461038957806337e36f79146103b257610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612d81565b6108db565b60405161025e9190612dc9565b60405180910390f35b34801561027357600080fd5b5061027c610a25565b6040516102899190612e74565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612ecc565b610ab7565b6040516102c69190612f3a565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612f81565b610b3c565b005b34801561030457600080fd5b5061030d610c54565b60405161031a9190612fd0565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190612feb565b610c5d565b005b34801561035857600080fd5b50610373600480360381019061036e9190612f81565b610c6d565b6040516103809190612fd0565b60405180910390f35b34801561039557600080fd5b506103b060048036038101906103ab9190612ecc565b610e69565b005b3480156103be57600080fd5b506103d960048036038101906103d49190612f81565b610e7b565b005b3480156103e757600080fd5b506103f0610e91565b005b3480156103fe57600080fd5b5061041960048036038101906104149190612feb565b610ef9565b005b34801561042757600080fd5b50610442600480360381019061043d9190612ecc565b610f19565b60405161044f9190612fd0565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a91906130a3565b610f6c565b005b34801561048d57600080fd5b50610496610f8a565b6040516104a39190612fd0565b60405180910390f35b3480156104b857600080fd5b506104d360048036038101906104ce9190612ecc565b610f90565b6040516104e09190612f3a565b60405180910390f35b3480156104f557600080fd5b506104fe610fa6565b60405161050b9190612e74565b60405180910390f35b34801561052057600080fd5b5061053b600480360381019061053691906130f0565b611034565b6040516105489190612fd0565b60405180910390f35b34801561055d57600080fd5b5061056661111c565b005b34801561057457600080fd5b5061058f600480360381019061058a9190612ecc565b611130565b005b34801561059d57600080fd5b506105b860048036038101906105b39190612ecc565b611142565b005b3480156105c657600080fd5b506105e160048036038101906105dc9190612ecc565b611154565b005b3480156105ef57600080fd5b506105f8611169565b6040516106059190612f3a565b60405180910390f35b34801561061a57600080fd5b5061063560048036038101906106309190612ecc565b611193565b005b34801561064357600080fd5b5061064c6111a5565b6040516106599190612e74565b60405180910390f35b61067c60048036038101906106779190612ecc565b611237565b005b34801561068a57600080fd5b506106a560048036038101906106a09190613149565b61132e565b005b3480156106b357600080fd5b506106bc6114ae565b005b3480156106ca57600080fd5b506106e560048036038101906106e091906132b9565b6114e2565b005b3480156106f357600080fd5b506106fc61153e565b6040516107099190612dc9565b60405180910390f35b34801561071e57600080fd5b5061073960048036038101906107349190612ecc565b611551565b6040516107469190612e74565b60405180910390f35b34801561075b57600080fd5b506107646115f8565b6040516107719190612fd0565b60405180910390f35b34801561078657600080fd5b5061078f6115fe565b60405161079c9190612fd0565b60405180910390f35b3480156107b157600080fd5b506107cc60048036038101906107c791906130f0565b611604565b6040516107d99190612fd0565b60405180910390f35b3480156107ee57600080fd5b506107f7611616565b6040516108049190612fd0565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f91906130f0565b61161c565b6040516108419190612fd0565b60405180910390f35b34801561085657600080fd5b50610871600480360381019061086c919061333c565b611634565b60405161087e9190612dc9565b60405180910390f35b34801561089357600080fd5b506108ae60048036038101906108a991906130f0565b6116c8565b005b3480156108bc57600080fd5b506108c561174b565b6040516108d29190612fd0565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a1e5750610a1d82611751565b5b9050919050565b606060018054610a34906133ab565b80601f0160208091040260200160405190810160405280929190818152602001828054610a60906133ab565b8015610aad5780601f10610a8257610100808354040283529160200191610aad565b820191906000526020600020905b815481529060010190602001808311610a9057829003601f168201915b5050505050905090565b6000610ac2826117bb565b610b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af89061344e565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b4782610f90565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae906134e0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd66117c8565b73ffffffffffffffffffffffffffffffffffffffff161480610c055750610c0481610bff6117c8565b611634565b5b610c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3b90613572565b60405180910390fd5b610c4f8383836117d0565b505050565b60008054905090565b610c68838383611882565b505050565b6000610c7883611034565b8210610cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb090613604565b60405180910390fd5b6000610cc3610c54565b905060008060005b83811015610e27576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610dbd57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e1357868403610e04578195505050505050610e63565b8380610e0f90613653565b9450505b508080610e1f90613653565b915050610ccb565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5a9061370d565b60405180910390fd5b92915050565b610e71611e39565b8060108190555050565b610e83611e39565b610e8d8282611eb7565b5050565b610e99611e39565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015610ef6573d6000803e3d6000fd5b50565b610f14838383604051806020016040528060008152506114e2565b505050565b6000610f23610c54565b8210610f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5b9061379f565b60405180910390fd5b819050919050565b610f74611e39565b8181600d9182610f85929190613976565b505050565b600e5481565b6000610f9b82611ed5565b600001519050919050565b600d8054610fb3906133ab565b80601f0160208091040260200160405190810160405280929190818152602001828054610fdf906133ab565b801561102c5780601f106110015761010080835404028352916020019161102c565b820191906000526020600020905b81548152906001019060200180831161100f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109b90613ab8565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611124611e39565b61112e60006120d8565b565b611138611e39565b80600e8190555050565b61114a611e39565b80600f8190555050565b61115c611e39565b6111663382611eb7565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61119b611e39565b80600c8190555050565b6060600280546111b4906133ab565b80601f01602080910402602001604051908101604052809291908181526020018280546111e0906133ab565b801561122d5780601f106112025761010080835404028352916020019161122d565b820191906000526020600020905b81548152906001019060200180831161121057829003601f168201915b5050505050905090565b600b60009054906101000a900460ff16611286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127d90613b4a565b60405180910390fd5b600f548111156112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c290613bdc565b60405180910390fd5b601054816112d7610c54565b6112e19190613bfc565b1115611322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131990613c7c565b60405180910390fd5b61132b8161219e565b50565b6113366117c8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139a90613ce8565b60405180910390fd5b80600660006113b06117c8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661145d6117c8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114a29190612dc9565b60405180910390a35050565b6114b6611e39565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6114ed848484611882565b6114f98484848461236d565b611538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152f90613d7a565b60405180910390fd5b50505050565b600b60009054906101000a900460ff1681565b606061155c826117bb565b61159b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159290613e0c565b60405180910390fd5b60006115a56124f4565b905060008151116115c557604051806020016040528060008152506115f0565b806115cf84612586565b6040516020016115e0929190613e68565b6040516020818303038152906040525b915050919050565b60105481565b60075481565b600061160f826126e6565b9050919050565b600f5481565b600a6020528060005260406000206000915090505481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116d0611e39565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361173f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173690613efe565b60405180910390fd5b611748816120d8565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061188d82611ed5565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166118b46117c8565b73ffffffffffffffffffffffffffffffffffffffff16148061191057506118d96117c8565b73ffffffffffffffffffffffffffffffffffffffff166118f884610ab7565b73ffffffffffffffffffffffffffffffffffffffff16145b8061192c575061192b82600001516119266117c8565b611634565b5b90508061196e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196590613f90565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146119e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d790614022565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611a4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a46906140b4565b60405180910390fd5b611a5c85858560016127ce565b611a6c60008484600001516117d0565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611ada91906140f0565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611b7e9190614134565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611c849190613bfc565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611dc957611cf9816117bb565b15611dc8576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e3186868660016127d4565b505050505050565b611e416117c8565b73ffffffffffffffffffffffffffffffffffffffff16611e5f611169565b73ffffffffffffffffffffffffffffffffffffffff1614611eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eac906141c4565b60405180910390fd5b565b611ed18282604051806020016040528060008152506127da565b5050565b611edd612cdb565b611ee6826117bb565b611f25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1c90614256565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000458310611f895760017f000000000000000000000000000000000000000000000000000000000000004584611f7c9190614276565b611f869190613bfc565b90505b60008390505b818110612097576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612083578093505050506120d3565b50808061208f906142aa565b915050611f8f565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ca90614345565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600e54600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156122b957600e548110156121f757600e5490505b600c54600e54826122089190614276565b6122129190614365565b341015612254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224b906143f3565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122a39190613bfc565b925050819055506122b43382611eb7565b61236a565b600c54816122c79190614365565b341015612309576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123009061445f565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123589190613bfc565b925050819055506123693382611eb7565b5b50565b600061238e8473ffffffffffffffffffffffffffffffffffffffff16612cb8565b156124e7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123b76117c8565b8786866040518563ffffffff1660e01b81526004016123d994939291906144d4565b6020604051808303816000875af192505050801561241557506040513d601f19601f820116820180604052508101906124129190614535565b60015b612497573d8060008114612445576040519150601f19603f3d011682016040523d82523d6000602084013e61244a565b606091505b50600081510361248f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248690613d7a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124ec565b600190505b949350505050565b6060600d8054612503906133ab565b80601f016020809104026020016040519081016040528092919081815260200182805461252f906133ab565b801561257c5780601f106125515761010080835404028352916020019161257c565b820191906000526020600020905b81548152906001019060200180831161255f57829003601f168201915b5050505050905090565b6060600082036125cd576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126e1565b600082905060005b600082146125ff5780806125e890613653565b915050600a826125f89190614591565b91506125d5565b60008167ffffffffffffffff81111561261b5761261a61318e565b5b6040519080825280601f01601f19166020018201604052801561264d5781602001600182028036833780820191505090505b5090505b600085146126da576001826126669190614276565b9150600a8561267591906145c2565b60306126819190613bfc565b60f81b818381518110612697576126966145f3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126d39190614591565b9450612651565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274d90614694565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361284f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284690614726565b60405180910390fd5b612858816117bb565b15612898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288f90614792565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000458311156128fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f290614824565b60405180910390fd5b61290860008583866127ce565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612a059190614134565b6fffffffffffffffffffffffffffffffff168152602001858360200151612a2c9190614134565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612c9b57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c3b600088848861236d565b612c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7190613d7a565b60405180910390fd5b8180612c8590613653565b9250508080612c9390613653565b915050612bca565b5080600081905550612cb060008785886127d4565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d5e81612d29565b8114612d6957600080fd5b50565b600081359050612d7b81612d55565b92915050565b600060208284031215612d9757612d96612d1f565b5b6000612da584828501612d6c565b91505092915050565b60008115159050919050565b612dc381612dae565b82525050565b6000602082019050612dde6000830184612dba565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e1e578082015181840152602081019050612e03565b60008484015250505050565b6000601f19601f8301169050919050565b6000612e4682612de4565b612e508185612def565b9350612e60818560208601612e00565b612e6981612e2a565b840191505092915050565b60006020820190508181036000830152612e8e8184612e3b565b905092915050565b6000819050919050565b612ea981612e96565b8114612eb457600080fd5b50565b600081359050612ec681612ea0565b92915050565b600060208284031215612ee257612ee1612d1f565b5b6000612ef084828501612eb7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f2482612ef9565b9050919050565b612f3481612f19565b82525050565b6000602082019050612f4f6000830184612f2b565b92915050565b612f5e81612f19565b8114612f6957600080fd5b50565b600081359050612f7b81612f55565b92915050565b60008060408385031215612f9857612f97612d1f565b5b6000612fa685828601612f6c565b9250506020612fb785828601612eb7565b9150509250929050565b612fca81612e96565b82525050565b6000602082019050612fe56000830184612fc1565b92915050565b60008060006060848603121561300457613003612d1f565b5b600061301286828701612f6c565b935050602061302386828701612f6c565b925050604061303486828701612eb7565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126130635761306261303e565b5b8235905067ffffffffffffffff8111156130805761307f613043565b5b60208301915083600182028301111561309c5761309b613048565b5b9250929050565b600080602083850312156130ba576130b9612d1f565b5b600083013567ffffffffffffffff8111156130d8576130d7612d24565b5b6130e48582860161304d565b92509250509250929050565b60006020828403121561310657613105612d1f565b5b600061311484828501612f6c565b91505092915050565b61312681612dae565b811461313157600080fd5b50565b6000813590506131438161311d565b92915050565b600080604083850312156131605761315f612d1f565b5b600061316e85828601612f6c565b925050602061317f85828601613134565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6131c682612e2a565b810181811067ffffffffffffffff821117156131e5576131e461318e565b5b80604052505050565b60006131f8612d15565b905061320482826131bd565b919050565b600067ffffffffffffffff8211156132245761322361318e565b5b61322d82612e2a565b9050602081019050919050565b82818337600083830152505050565b600061325c61325784613209565b6131ee565b90508281526020810184848401111561327857613277613189565b5b61328384828561323a565b509392505050565b600082601f8301126132a05761329f61303e565b5b81356132b0848260208601613249565b91505092915050565b600080600080608085870312156132d3576132d2612d1f565b5b60006132e187828801612f6c565b94505060206132f287828801612f6c565b935050604061330387828801612eb7565b925050606085013567ffffffffffffffff81111561332457613323612d24565b5b6133308782880161328b565b91505092959194509250565b6000806040838503121561335357613352612d1f565b5b600061336185828601612f6c565b925050602061337285828601612f6c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806133c357607f821691505b6020821081036133d6576133d561337c565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613438602d83612def565b9150613443826133dc565b604082019050919050565b600060208201905081810360008301526134678161342b565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006134ca602283612def565b91506134d58261346e565b604082019050919050565b600060208201905081810360008301526134f9816134bd565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b600061355c603983612def565b915061356782613500565b604082019050919050565b6000602082019050818103600083015261358b8161354f565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006135ee602283612def565b91506135f982613592565b604082019050919050565b6000602082019050818103600083015261361d816135e1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061365e82612e96565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036136905761368f613624565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b60006136f7602e83612def565b91506137028261369b565b604082019050919050565b60006020820190508181036000830152613726816136ea565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b6000613789602383612def565b91506137948261372d565b604082019050919050565b600060208201905081810360008301526137b88161377c565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261382c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826137ef565b61383686836137ef565b95508019841693508086168417925050509392505050565b6000819050919050565b600061387361386e61386984612e96565b61384e565b612e96565b9050919050565b6000819050919050565b61388d83613858565b6138a16138998261387a565b8484546137fc565b825550505050565b600090565b6138b66138a9565b6138c1818484613884565b505050565b5b818110156138e5576138da6000826138ae565b6001810190506138c7565b5050565b601f82111561392a576138fb816137ca565b613904846137df565b81016020851015613913578190505b61392761391f856137df565b8301826138c6565b50505b505050565b600082821c905092915050565b600061394d6000198460080261392f565b1980831691505092915050565b6000613966838361393c565b9150826002028217905092915050565b61398083836137bf565b67ffffffffffffffff8111156139995761399861318e565b5b6139a382546133ab565b6139ae8282856138e9565b6000601f8311600181146139dd57600084156139cb578287013590505b6139d5858261395a565b865550613a3d565b601f1984166139eb866137ca565b60005b82811015613a13578489013582556001820191506020850194506020810190506139ee565b86831015613a305784890135613a2c601f89168261393c565b8355505b6001600288020188555050505b50505050505050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613aa2602b83612def565b9150613aad82613a46565b604082019050919050565b60006020820190508181036000830152613ad181613a95565b9050919050565b7f4963656265726720496e666f3a20204d696e74696e67205075626c696320506160008201527f7573650000000000000000000000000000000000000000000000000000000000602082015250565b6000613b34602383612def565b9150613b3f82613ad8565b604082019050919050565b60006020820190508181036000830152613b6381613b27565b9050919050565b7f4963656265726720496e666f3a20204c696d697420506572205472616e73616360008201527f74696f6e00000000000000000000000000000000000000000000000000000000602082015250565b6000613bc6602483612def565b9150613bd182613b6a565b604082019050919050565b60006020820190508181036000830152613bf581613bb9565b9050919050565b6000613c0782612e96565b9150613c1283612e96565b9250828201905080821115613c2a57613c29613624565b5b92915050565b7f4963656265726720496e666f3a2020536f6c646f757400000000000000000000600082015250565b6000613c66601683612def565b9150613c7182613c30565b602082019050919050565b60006020820190508181036000830152613c9581613c59565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613cd2601a83612def565b9150613cdd82613c9c565b602082019050919050565b60006020820190508181036000830152613d0181613cc5565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000613d64603383612def565b9150613d6f82613d08565b604082019050919050565b60006020820190508181036000830152613d9381613d57565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613df6602f83612def565b9150613e0182613d9a565b604082019050919050565b60006020820190508181036000830152613e2581613de9565b9050919050565b600081905092915050565b6000613e4282612de4565b613e4c8185613e2c565b9350613e5c818560208601612e00565b80840191505092915050565b6000613e748285613e37565b9150613e808284613e37565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613ee8602683612def565b9150613ef382613e8c565b604082019050919050565b60006020820190508181036000830152613f1781613edb565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613f7a603283612def565b9150613f8582613f1e565b604082019050919050565b60006020820190508181036000830152613fa981613f6d565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b600061400c602683612def565b915061401782613fb0565b604082019050919050565b6000602082019050818103600083015261403b81613fff565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061409e602583612def565b91506140a982614042565b604082019050919050565b600060208201905081810360008301526140cd81614091565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b60006140fb826140d4565b9150614106836140d4565b925082820390506fffffffffffffffffffffffffffffffff81111561412e5761412d613624565b5b92915050565b600061413f826140d4565b915061414a836140d4565b925082820190506fffffffffffffffffffffffffffffffff81111561417257614171613624565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141ae602083612def565b91506141b982614178565b602082019050919050565b600060208201905081810360008301526141dd816141a1565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000614240602a83612def565b915061424b826141e4565b604082019050919050565b6000602082019050818103600083015261426f81614233565b9050919050565b600061428182612e96565b915061428c83612e96565b92508282039050818111156142a4576142a3613624565b5b92915050565b60006142b582612e96565b9150600082036142c8576142c7613624565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b600061432f602f83612def565b915061433a826142d3565b604082019050919050565b6000602082019050818103600083015261435e81614322565b9050919050565b600061437082612e96565b915061437b83612e96565b925082820261438981612e96565b915082820484148315176143a05761439f613624565b5b5092915050565b7f4963656265726720496e666f3a202046756e64206e6f7420656e6f7567680000600082015250565b60006143dd601e83612def565b91506143e8826143a7565b602082019050919050565b6000602082019050818103600083015261440c816143d0565b9050919050565b7f4963654265726720496e666f3a202046756e64206e6f7420656e6f7567680000600082015250565b6000614449601e83612def565b915061445482614413565b602082019050919050565b600060208201905081810360008301526144788161443c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006144a68261447f565b6144b0818561448a565b93506144c0818560208601612e00565b6144c981612e2a565b840191505092915050565b60006080820190506144e96000830187612f2b565b6144f66020830186612f2b565b6145036040830185612fc1565b8181036060830152614515818461449b565b905095945050505050565b60008151905061452f81612d55565b92915050565b60006020828403121561454b5761454a612d1f565b5b600061455984828501614520565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061459c82612e96565b91506145a783612e96565b9250826145b7576145b6614562565b5b828204905092915050565b60006145cd82612e96565b91506145d883612e96565b9250826145e8576145e7614562565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b600061467e603183612def565b915061468982614622565b604082019050919050565b600060208201905081810360008301526146ad81614671565b9050919050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614710602183612def565b915061471b826146b4565b604082019050919050565b6000602082019050818103600083015261473f81614703565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b600061477c601d83612def565b915061478782614746565b602082019050919050565b600060208201905081810360008301526147ab8161476f565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b600061480e602283612def565b9150614819826147b2565b604082019050919050565b6000602082019050818103600083015261483d81614801565b905091905056fea2646970667358221220efdca2197badea293f0f62765df671c6c9cd6a81c5e81e5af4eff05ae832979964736f6c63430008110033

Deployed Bytecode Sourcemap

43274:2658:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28214:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29940:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31465:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31028:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26775:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32315:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27406:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45707:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44934:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45811:116;;;;;;;;;;;;;:::i;:::-;;32520:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26938:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45278:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43504:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29763:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43474:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28640:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42399:103;;;;;;;;;;;;;:::i;:::-;;45608:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45486:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45048:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41751:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45388:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30095:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43810:314;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31733:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45162:104;;;;;;;;;;;;;:::i;:::-;;32740:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43387:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30256:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43573:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37155:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44697:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43535:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43334:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32070:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42657:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43431:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28214:370;28341:4;28386:25;28371:40;;;:11;:40;;;;:99;;;;28437:33;28422:48;;;:11;:48;;;;28371:99;:160;;;;28496:35;28481:50;;;:11;:50;;;;28371:160;:207;;;;28542:36;28566:11;28542:23;:36::i;:::-;28371:207;28357:221;;28214:370;;;:::o;29940:94::-;29994:13;30023:5;30016:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29940:94;:::o;31465:204::-;31533:7;31557:16;31565:7;31557;:16::i;:::-;31549:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;31639:15;:24;31655:7;31639:24;;;;;;;;;;;;;;;;;;;;;31632:31;;31465:204;;;:::o;31028:379::-;31097:13;31113:24;31129:7;31113:15;:24::i;:::-;31097:40;;31158:5;31152:11;;:2;:11;;;31144:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;31243:5;31227:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;31252:37;31269:5;31276:12;:10;:12::i;:::-;31252:16;:37::i;:::-;31227:62;31211:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;31373:28;31382:2;31386:7;31395:5;31373:8;:28::i;:::-;31090:317;31028:379;;:::o;26775:94::-;26828:7;26851:12;;26844:19;;26775:94;:::o;32315:142::-;32423:28;32433:4;32439:2;32443:7;32423:9;:28::i;:::-;32315:142;;;:::o;27406:744::-;27515:7;27550:16;27560:5;27550:9;:16::i;:::-;27542:5;:24;27534:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;27612:22;27637:13;:11;:13::i;:::-;27612:38;;27657:19;27687:25;27737:9;27732:350;27756:14;27752:1;:18;27732:350;;;27786:31;27820:11;:14;27832:1;27820:14;;;;;;;;;;;27786:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27873:1;27847:28;;:9;:14;;;:28;;;27843:89;;27908:9;:14;;;27888:34;;27843:89;27965:5;27944:26;;:17;:26;;;27940:135;;28002:5;27987:11;:20;27983:59;;28029:1;28022:8;;;;;;;;;27983:59;28052:13;;;;;:::i;:::-;;;;27940:135;27777:305;27772:3;;;;;:::i;:::-;;;;27732:350;;;;28088:56;;;;;;;;;;:::i;:::-;;;;;;;;27406:744;;;;;:::o;45707:96::-;41637:13;:11;:13::i;:::-;45787:8:::1;45775:9;:20;;;;45707:96:::0;:::o;44934:106::-;41637:13;:11;:13::i;:::-;45014:18:::1;45024:2;45028:3;45014:9;:18::i;:::-;44934:106:::0;;:::o;45811:116::-;41637:13;:11;:13::i;:::-;45867:10:::1;45859:28;;:60;45904:4;45888:30;;;45859:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;45811:116::o:0;32520:157::-;32632:39;32649:4;32655:2;32659:7;32632:39;;;;;;;;;;;;:16;:39::i;:::-;32520:157;;;:::o;26938:177::-;27005:7;27037:13;:11;:13::i;:::-;27029:5;:21;27021:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;27104:5;27097:12;;26938:177;;;:::o;45278:102::-;41637:13;:11;:13::i;:::-;45364:8:::1;;45354:7;:18;;;;;;;:::i;:::-;;45278:102:::0;;:::o;43504:24::-;;;;:::o;29763:118::-;29827:7;29850:20;29862:7;29850:11;:20::i;:::-;:25;;;29843:32;;29763:118;;;:::o;43474:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28640:211::-;28704:7;28745:1;28728:19;;:5;:19;;;28720:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;28817:12;:19;28830:5;28817:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28809:36;;28802:43;;28640:211;;;:::o;42399:103::-;41637:13;:11;:13::i;:::-;42464:30:::1;42491:1;42464:18;:30::i;:::-;42399:103::o:0;45608:91::-;41637:13;:11;:13::i;:::-;45687:4:::1;45676:8;:15;;;;45608:91:::0;:::o;45486:114::-;41637:13;:11;:13::i;:::-;45579::::1;45564:12;:28;;;;45486:114:::0;:::o;45048:106::-;41637:13;:11;:13::i;:::-;45120:26:::1;45130:10;45142:3;45120:9;:26::i;:::-;45048:106:::0;:::o;41751:87::-;41797:7;41824:6;;;;;;;;;;;41817:13;;41751:87;:::o;45388:90::-;41637:13;:11;:13::i;:::-;45464:6:::1;45452:9;:18;;;;45388:90:::0;:::o;30095:98::-;30151:13;30180:7;30173:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30095:98;:::o;43810:314::-;43878:16;;;;;;;;;;;43870:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;43961:12;;43954:3;:19;;43946:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44056:9;;44049:3;44033:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;44025:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;44102:14;44112:3;44102:9;:14::i;:::-;43810:314;:::o;31733:274::-;31836:12;:10;:12::i;:::-;31824:24;;:8;:24;;;31816:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;31933:8;31888:18;:32;31907:12;:10;:12::i;:::-;31888:32;;;;;;;;;;;;;;;:42;31921:8;31888:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31982:8;31953:48;;31968:12;:10;:12::i;:::-;31953:48;;;31992:8;31953:48;;;;;;:::i;:::-;;;;;;;;31733:274;;:::o;45162:104::-;41637:13;:11;:13::i;:::-;45241:16:::1;;;;;;;;;;;45240:17;45220:16;;:37;;;;;;;;;;;;;;;;;;45162:104::o:0;32740:311::-;32877:28;32887:4;32893:2;32897:7;32877:9;:28::i;:::-;32928:48;32951:4;32957:2;32961:7;32970:5;32928:22;:48::i;:::-;32912:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;32740:311;;;;:::o;43387:37::-;;;;;;;;;;;;;:::o;30256:394::-;30354:13;30395:16;30403:7;30395;:16::i;:::-;30379:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;30485:21;30509:10;:8;:10::i;:::-;30485:34;;30564:1;30546:7;30540:21;:25;:104;;;;;;;;;;;;;;;;;30601:7;30610:18;:7;:16;:18::i;:::-;30584:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30540:104;30526:118;;;30256:394;;;:::o;43573:29::-;;;;:::o;37155:43::-;;;;:::o;44697:113::-;44755:7;44782:20;44796:5;44782:13;:20::i;:::-;44775:27;;44697:113;;;:::o;43535:29::-;;;;:::o;43334:46::-;;;;;;;;;;;;;;;;;:::o;32070:186::-;32192:4;32215:18;:25;32234:5;32215:25;;;;;;;;;;;;;;;:35;32241:8;32215:35;;;;;;;;;;;;;;;;;;;;;;;;;32208:42;;32070:186;;;;:::o;42657:201::-;41637:13;:11;:13::i;:::-;42766:1:::1;42746:22;;:8;:22;;::::0;42738:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;42822:28;42841:8;42822:18;:28::i;:::-;42657:201:::0;:::o;43431:35::-;;;;:::o;13886:157::-;13971:4;14010:25;13995:40;;;:11;:40;;;;13988:47;;13886:157;;;:::o;33290:105::-;33347:4;33377:12;;33367:7;:22;33360:29;;33290:105;;;:::o;24255:98::-;24308:7;24335:10;24328:17;;24255:98;:::o;36977:172::-;37101:2;37074:15;:24;37090:7;37074:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;37135:7;37131:2;37115:28;;37124:5;37115:28;;;;;;;;;;;;36977:172;;;:::o;35342:1529::-;35439:35;35477:20;35489:7;35477:11;:20::i;:::-;35439:58;;35506:22;35548:13;:18;;;35532:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;35601:12;:10;:12::i;:::-;35577:36;;:20;35589:7;35577:11;:20::i;:::-;:36;;;35532:81;:142;;;;35624:50;35641:13;:18;;;35661:12;:10;:12::i;:::-;35624:16;:50::i;:::-;35532:142;35506:169;;35700:17;35684:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;35832:4;35810:26;;:13;:18;;;:26;;;35794:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;35921:1;35907:16;;:2;:16;;;35899:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;35974:43;35996:4;36002:2;36006:7;36015:1;35974:21;:43::i;:::-;36074:49;36091:1;36095:7;36104:13;:18;;;36074:8;:49::i;:::-;36162:1;36132:12;:18;36145:4;36132:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36198:1;36170:12;:16;36183:2;36170:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36229:43;;;;;;;;36244:2;36229:43;;;;;;36255:15;36229:43;;;;;36206:11;:20;36218:7;36206:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36500:19;36532:1;36522:7;:11;;;;:::i;:::-;36500:33;;36585:1;36544:43;;:11;:24;36556:11;36544:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;36540:236;;36602:20;36610:11;36602:7;:20::i;:::-;36598:171;;;36662:97;;;;;;;;36689:13;:18;;;36662:97;;;;;;36720:13;:28;;;36662:97;;;;;36635:11;:24;36647:11;36635:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36598:171;36540:236;36808:7;36804:2;36789:27;;36798:4;36789:27;;;;;;;;;;;;36823:42;36844:4;36850:2;36854:7;36863:1;36823:20;:42::i;:::-;35432:1439;;;35342:1529;;;:::o;41916:132::-;41991:12;:10;:12::i;:::-;41980:23;;:7;:5;:7::i;:::-;:23;;;41972:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41916:132::o;33401:98::-;33466:27;33476:2;33480:8;33466:27;;;;;;;;;;;;:9;:27::i;:::-;33401:98;;:::o;29103:606::-;29179:21;;:::i;:::-;29220:16;29228:7;29220;:16::i;:::-;29212:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;29292:26;29340:12;29329:7;:23;29325:93;;29409:1;29394:12;29384:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;29363:47;;29325:93;29431:12;29446:7;29431:22;;29426:212;29463:18;29455:4;:26;29426:212;;29500:31;29534:11;:17;29546:4;29534:17;;;;;;;;;;;29500:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29590:1;29564:28;;:9;:14;;;:28;;;29560:71;;29612:9;29605:16;;;;;;;29560:71;29491:147;29483:6;;;;;:::i;:::-;;;;29426:212;;;;29646:57;;;;;;;;;;:::i;:::-;;;;;;;;29103:606;;;;:::o;43018:191::-;43092:16;43111:6;;;;;;;;;;;43092:25;;43137:8;43128:6;;:17;;;;;;;;;;;;;;;;;;43192:8;43161:40;;43182:8;43161:40;;;;;;;;;;;;43081:128;43018:191;:::o;44132:557::-;44217:8;;44192:10;:22;44203:10;44192:22;;;;;;;;;;;;;;;;:33;44189:493;;;44261:8;;44255:3;:14;44252:33;;;44277:8;;44271:14;;44252:33;44339:9;;44327:8;;44321:3;:14;;;;:::i;:::-;44320:28;;;;:::i;:::-;44307:9;:41;;44299:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;44423:3;44397:10;:22;44408:10;44397:22;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;44440:26;44450:10;44462:3;44440:9;:26::i;:::-;44189:493;;;44543:9;;44537:3;:15;;;;:::i;:::-;44524:9;:28;;44516:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;44627:3;44601:10;:22;44612:10;44601:22;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;44644:26;44654:10;44666:3;44644:9;:26::i;:::-;44189:493;44132:557;:::o;38692:690::-;38829:4;38846:15;:2;:13;;;:15::i;:::-;38842:535;;;38901:2;38885:36;;;38922:12;:10;:12::i;:::-;38936:4;38942:7;38951:5;38885:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38872:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39133:1;39116:6;:13;:18;39112:215;;39149:61;;;;;;;;;;:::i;:::-;;;;;;;;39112:215;39295:6;39289:13;39280:6;39276:2;39272:15;39265:38;38872:464;39017:45;;;39007:55;;;:6;:55;;;;39000:62;;;;;38842:535;39365:4;39358:11;;38692:690;;;;;;;:::o;44818:108::-;44878:13;44911:7;44904:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44818:108;:::o;430:723::-;486:13;716:1;707:5;:10;703:53;;734:10;;;;;;;;;;;;;;;;;;;;;703:53;766:12;781:5;766:20;;797:14;822:78;837:1;829:4;:9;822:78;;855:8;;;;;:::i;:::-;;;;886:2;878:10;;;;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:39;;960:154;976:1;967:5;:10;960:154;;1004:1;994:11;;;;;:::i;:::-;;;1071:2;1063:5;:10;;;;:::i;:::-;1050:2;:24;;;;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1100:2;1091:11;;;;;:::i;:::-;;;960:154;;;1138:6;1124:21;;;;;430:723;;;;:::o;28857:240::-;28918:7;28967:1;28950:19;;:5;:19;;;28934:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;29058:12;:19;29071:5;29058:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;29050:41;;29043:48;;28857:240;;;:::o;39844:141::-;;;;;:::o;40371:140::-;;;;;:::o;33838:1272::-;33943:20;33966:12;;33943:35;;34007:1;33993:16;;:2;:16;;;33985:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;34184:21;34192:12;34184:7;:21::i;:::-;34183:22;34175:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;34266:12;34254:8;:24;;34246:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;34326:61;34356:1;34360:2;34364:12;34378:8;34326:21;:61::i;:::-;34396:30;34429:12;:16;34442:2;34429:16;;;;;;;;;;;;;;;34396:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34471:119;;;;;;;;34521:8;34491:11;:19;;;:39;;;;:::i;:::-;34471:119;;;;;;34574:8;34539:11;:24;;;:44;;;;:::i;:::-;34471:119;;;;;34452:12;:16;34465:2;34452:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34625:43;;;;;;;;34640:2;34625:43;;;;;;34651:15;34625:43;;;;;34597:11;:25;34609:12;34597:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34677:20;34700:12;34677:35;;34726:9;34721:281;34745:8;34741:1;:12;34721:281;;;34799:12;34795:2;34774:38;;34791:1;34774:38;;;;;;;;;;;;34839:59;34870:1;34874:2;34878:12;34892:5;34839:22;:59::i;:::-;34821:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;34980:14;;;;;:::i;:::-;;;;34755:3;;;;;:::i;:::-;;;;34721:281;;;;35025:12;35010;:27;;;;35044:60;35073:1;35077:2;35081:12;35095:8;35044:20;:60::i;:::-;33936:1174;;;33838:1272;;;:::o;3730:326::-;3790:4;4047:1;4025:7;:19;;;:23;4018:30;;3730:326;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:117;6222:1;6219;6212:12;6250:553;6308:8;6318:6;6368:3;6361:4;6353:6;6349:17;6345:27;6335:122;;6376:79;;:::i;:::-;6335:122;6489:6;6476:20;6466:30;;6519:18;6511:6;6508:30;6505:117;;;6541:79;;:::i;:::-;6505:117;6655:4;6647:6;6643:17;6631:29;;6709:3;6701:4;6693:6;6689:17;6679:8;6675:32;6672:41;6669:128;;;6716:79;;:::i;:::-;6669:128;6250:553;;;;;:::o;6809:529::-;6880:6;6888;6937:2;6925:9;6916:7;6912:23;6908:32;6905:119;;;6943:79;;:::i;:::-;6905:119;7091:1;7080:9;7076:17;7063:31;7121:18;7113:6;7110:30;7107:117;;;7143:79;;:::i;:::-;7107:117;7256:65;7313:7;7304:6;7293:9;7289:22;7256:65;:::i;:::-;7238:83;;;;7034:297;6809:529;;;;;:::o;7344:329::-;7403:6;7452:2;7440:9;7431:7;7427:23;7423:32;7420:119;;;7458:79;;:::i;:::-;7420:119;7578:1;7603:53;7648:7;7639:6;7628:9;7624:22;7603:53;:::i;:::-;7593:63;;7549:117;7344:329;;;;:::o;7679:116::-;7749:21;7764:5;7749:21;:::i;:::-;7742:5;7739:32;7729:60;;7785:1;7782;7775:12;7729:60;7679:116;:::o;7801:133::-;7844:5;7882:6;7869:20;7860:29;;7898:30;7922:5;7898:30;:::i;:::-;7801:133;;;;:::o;7940:468::-;8005:6;8013;8062:2;8050:9;8041:7;8037:23;8033:32;8030:119;;;8068:79;;:::i;:::-;8030:119;8188:1;8213:53;8258:7;8249:6;8238:9;8234:22;8213:53;:::i;:::-;8203:63;;8159:117;8315:2;8341:50;8383:7;8374:6;8363:9;8359:22;8341:50;:::i;:::-;8331:60;;8286:115;7940:468;;;;;:::o;8414:117::-;8523:1;8520;8513:12;8537:180;8585:77;8582:1;8575:88;8682:4;8679:1;8672:15;8706:4;8703:1;8696:15;8723:281;8806:27;8828:4;8806:27;:::i;:::-;8798:6;8794:40;8936:6;8924:10;8921:22;8900:18;8888:10;8885:34;8882:62;8879:88;;;8947:18;;:::i;:::-;8879:88;8987:10;8983:2;8976:22;8766:238;8723:281;;:::o;9010:129::-;9044:6;9071:20;;:::i;:::-;9061:30;;9100:33;9128:4;9120:6;9100:33;:::i;:::-;9010:129;;;:::o;9145:307::-;9206:4;9296:18;9288:6;9285:30;9282:56;;;9318:18;;:::i;:::-;9282:56;9356:29;9378:6;9356:29;:::i;:::-;9348:37;;9440:4;9434;9430:15;9422:23;;9145:307;;;:::o;9458:146::-;9555:6;9550:3;9545;9532:30;9596:1;9587:6;9582:3;9578:16;9571:27;9458:146;;;:::o;9610:423::-;9687:5;9712:65;9728:48;9769:6;9728:48;:::i;:::-;9712:65;:::i;:::-;9703:74;;9800:6;9793:5;9786:21;9838:4;9831:5;9827:16;9876:3;9867:6;9862:3;9858:16;9855:25;9852:112;;;9883:79;;:::i;:::-;9852:112;9973:54;10020:6;10015:3;10010;9973:54;:::i;:::-;9693:340;9610:423;;;;;:::o;10052:338::-;10107:5;10156:3;10149:4;10141:6;10137:17;10133:27;10123:122;;10164:79;;:::i;:::-;10123:122;10281:6;10268:20;10306:78;10380:3;10372:6;10365:4;10357:6;10353:17;10306:78;:::i;:::-;10297:87;;10113:277;10052:338;;;;:::o;10396:943::-;10491:6;10499;10507;10515;10564:3;10552:9;10543:7;10539:23;10535:33;10532:120;;;10571:79;;:::i;:::-;10532:120;10691:1;10716:53;10761:7;10752:6;10741:9;10737:22;10716:53;:::i;:::-;10706:63;;10662:117;10818:2;10844:53;10889:7;10880:6;10869:9;10865:22;10844:53;:::i;:::-;10834:63;;10789:118;10946:2;10972:53;11017:7;11008:6;10997:9;10993:22;10972:53;:::i;:::-;10962:63;;10917:118;11102:2;11091:9;11087:18;11074:32;11133:18;11125:6;11122:30;11119:117;;;11155:79;;:::i;:::-;11119:117;11260:62;11314:7;11305:6;11294:9;11290:22;11260:62;:::i;:::-;11250:72;;11045:287;10396:943;;;;;;;:::o;11345:474::-;11413:6;11421;11470:2;11458:9;11449:7;11445:23;11441:32;11438:119;;;11476:79;;:::i;:::-;11438:119;11596:1;11621:53;11666:7;11657:6;11646:9;11642:22;11621:53;:::i;:::-;11611:63;;11567:117;11723:2;11749:53;11794:7;11785:6;11774:9;11770:22;11749:53;:::i;:::-;11739:63;;11694:118;11345:474;;;;;:::o;11825:180::-;11873:77;11870:1;11863:88;11970:4;11967:1;11960:15;11994:4;11991:1;11984:15;12011:320;12055:6;12092:1;12086:4;12082:12;12072:22;;12139:1;12133:4;12129:12;12160:18;12150:81;;12216:4;12208:6;12204:17;12194:27;;12150:81;12278:2;12270:6;12267:14;12247:18;12244:38;12241:84;;12297:18;;:::i;:::-;12241:84;12062:269;12011:320;;;:::o;12337:232::-;12477:34;12473:1;12465:6;12461:14;12454:58;12546:15;12541:2;12533:6;12529:15;12522:40;12337:232;:::o;12575:366::-;12717:3;12738:67;12802:2;12797:3;12738:67;:::i;:::-;12731:74;;12814:93;12903:3;12814:93;:::i;:::-;12932:2;12927:3;12923:12;12916:19;;12575:366;;;:::o;12947:419::-;13113:4;13151:2;13140:9;13136:18;13128:26;;13200:9;13194:4;13190:20;13186:1;13175:9;13171:17;13164:47;13228:131;13354:4;13228:131;:::i;:::-;13220:139;;12947:419;;;:::o;13372:221::-;13512:34;13508:1;13500:6;13496:14;13489:58;13581:4;13576:2;13568:6;13564:15;13557:29;13372:221;:::o;13599:366::-;13741:3;13762:67;13826:2;13821:3;13762:67;:::i;:::-;13755:74;;13838:93;13927:3;13838:93;:::i;:::-;13956:2;13951:3;13947:12;13940:19;;13599:366;;;:::o;13971:419::-;14137:4;14175:2;14164:9;14160:18;14152:26;;14224:9;14218:4;14214:20;14210:1;14199:9;14195:17;14188:47;14252:131;14378:4;14252:131;:::i;:::-;14244:139;;13971:419;;;:::o;14396:244::-;14536:34;14532:1;14524:6;14520:14;14513:58;14605:27;14600:2;14592:6;14588:15;14581:52;14396:244;:::o;14646:366::-;14788:3;14809:67;14873:2;14868:3;14809:67;:::i;:::-;14802:74;;14885:93;14974:3;14885:93;:::i;:::-;15003:2;14998:3;14994:12;14987:19;;14646:366;;;:::o;15018:419::-;15184:4;15222:2;15211:9;15207:18;15199:26;;15271:9;15265:4;15261:20;15257:1;15246:9;15242:17;15235:47;15299:131;15425:4;15299:131;:::i;:::-;15291:139;;15018:419;;;:::o;15443:221::-;15583:34;15579:1;15571:6;15567:14;15560:58;15652:4;15647:2;15639:6;15635:15;15628:29;15443:221;:::o;15670:366::-;15812:3;15833:67;15897:2;15892:3;15833:67;:::i;:::-;15826:74;;15909:93;15998:3;15909:93;:::i;:::-;16027:2;16022:3;16018:12;16011:19;;15670:366;;;:::o;16042:419::-;16208:4;16246:2;16235:9;16231:18;16223:26;;16295:9;16289:4;16285:20;16281:1;16270:9;16266:17;16259:47;16323:131;16449:4;16323:131;:::i;:::-;16315:139;;16042:419;;;:::o;16467:180::-;16515:77;16512:1;16505:88;16612:4;16609:1;16602:15;16636:4;16633:1;16626:15;16653:233;16692:3;16715:24;16733:5;16715:24;:::i;:::-;16706:33;;16761:66;16754:5;16751:77;16748:103;;16831:18;;:::i;:::-;16748:103;16878:1;16871:5;16867:13;16860:20;;16653:233;;;:::o;16892:::-;17032:34;17028:1;17020:6;17016:14;17009:58;17101:16;17096:2;17088:6;17084:15;17077:41;16892:233;:::o;17131:366::-;17273:3;17294:67;17358:2;17353:3;17294:67;:::i;:::-;17287:74;;17370:93;17459:3;17370:93;:::i;:::-;17488:2;17483:3;17479:12;17472:19;;17131:366;;;:::o;17503:419::-;17669:4;17707:2;17696:9;17692:18;17684:26;;17756:9;17750:4;17746:20;17742:1;17731:9;17727:17;17720:47;17784:131;17910:4;17784:131;:::i;:::-;17776:139;;17503:419;;;:::o;17928:222::-;18068:34;18064:1;18056:6;18052:14;18045:58;18137:5;18132:2;18124:6;18120:15;18113:30;17928:222;:::o;18156:366::-;18298:3;18319:67;18383:2;18378:3;18319:67;:::i;:::-;18312:74;;18395:93;18484:3;18395:93;:::i;:::-;18513:2;18508:3;18504:12;18497:19;;18156:366;;;:::o;18528:419::-;18694:4;18732:2;18721:9;18717:18;18709:26;;18781:9;18775:4;18771:20;18767:1;18756:9;18752:17;18745:47;18809:131;18935:4;18809:131;:::i;:::-;18801:139;;18528:419;;;:::o;18953:97::-;19012:6;19040:3;19030:13;;18953:97;;;;:::o;19056:141::-;19105:4;19128:3;19120:11;;19151:3;19148:1;19141:14;19185:4;19182:1;19172:18;19164:26;;19056:141;;;:::o;19203:93::-;19240:6;19287:2;19282;19275:5;19271:14;19267:23;19257:33;;19203:93;;;:::o;19302:107::-;19346:8;19396:5;19390:4;19386:16;19365:37;;19302:107;;;;:::o;19415:393::-;19484:6;19534:1;19522:10;19518:18;19557:97;19587:66;19576:9;19557:97;:::i;:::-;19675:39;19705:8;19694:9;19675:39;:::i;:::-;19663:51;;19747:4;19743:9;19736:5;19732:21;19723:30;;19796:4;19786:8;19782:19;19775:5;19772:30;19762:40;;19491:317;;19415:393;;;;;:::o;19814:60::-;19842:3;19863:5;19856:12;;19814:60;;;:::o;19880:142::-;19930:9;19963:53;19981:34;19990:24;20008:5;19990:24;:::i;:::-;19981:34;:::i;:::-;19963:53;:::i;:::-;19950:66;;19880:142;;;:::o;20028:75::-;20071:3;20092:5;20085:12;;20028:75;;;:::o;20109:269::-;20219:39;20250:7;20219:39;:::i;:::-;20280:91;20329:41;20353:16;20329:41;:::i;:::-;20321:6;20314:4;20308:11;20280:91;:::i;:::-;20274:4;20267:105;20185:193;20109:269;;;:::o;20384:73::-;20429:3;20384:73;:::o;20463:189::-;20540:32;;:::i;:::-;20581:65;20639:6;20631;20625:4;20581:65;:::i;:::-;20516:136;20463:189;;:::o;20658:186::-;20718:120;20735:3;20728:5;20725:14;20718:120;;;20789:39;20826:1;20819:5;20789:39;:::i;:::-;20762:1;20755:5;20751:13;20742:22;;20718:120;;;20658:186;;:::o;20850:543::-;20951:2;20946:3;20943:11;20940:446;;;20985:38;21017:5;20985:38;:::i;:::-;21069:29;21087:10;21069:29;:::i;:::-;21059:8;21055:44;21252:2;21240:10;21237:18;21234:49;;;21273:8;21258:23;;21234:49;21296:80;21352:22;21370:3;21352:22;:::i;:::-;21342:8;21338:37;21325:11;21296:80;:::i;:::-;20955:431;;20940:446;20850:543;;;:::o;21399:117::-;21453:8;21503:5;21497:4;21493:16;21472:37;;21399:117;;;;:::o;21522:169::-;21566:6;21599:51;21647:1;21643:6;21635:5;21632:1;21628:13;21599:51;:::i;:::-;21595:56;21680:4;21674;21670:15;21660:25;;21573:118;21522:169;;;;:::o;21696:295::-;21772:4;21918:29;21943:3;21937:4;21918:29;:::i;:::-;21910:37;;21980:3;21977:1;21973:11;21967:4;21964:21;21956:29;;21696:295;;;;:::o;21996:1403::-;22120:44;22160:3;22155;22120:44;:::i;:::-;22229:18;22221:6;22218:30;22215:56;;;22251:18;;:::i;:::-;22215:56;22295:38;22327:4;22321:11;22295:38;:::i;:::-;22380:67;22440:6;22432;22426:4;22380:67;:::i;:::-;22474:1;22503:2;22495:6;22492:14;22520:1;22515:632;;;;23191:1;23208:6;23205:84;;;23264:9;23259:3;23255:19;23242:33;23233:42;;23205:84;23315:67;23375:6;23368:5;23315:67;:::i;:::-;23309:4;23302:81;23164:229;22485:908;;22515:632;22567:4;22563:9;22555:6;22551:22;22601:37;22633:4;22601:37;:::i;:::-;22660:1;22674:215;22688:7;22685:1;22682:14;22674:215;;;22774:9;22769:3;22765:19;22752:33;22744:6;22737:49;22825:1;22817:6;22813:14;22803:24;;22872:2;22861:9;22857:18;22844:31;;22711:4;22708:1;22704:12;22699:17;;22674:215;;;22917:6;22908:7;22905:19;22902:186;;;22982:9;22977:3;22973:19;22960:33;23025:48;23067:4;23059:6;23055:17;23044:9;23025:48;:::i;:::-;23017:6;23010:64;22925:163;22902:186;23134:1;23130;23122:6;23118:14;23114:22;23108:4;23101:36;22522:625;;;22485:908;;22095:1304;;;21996:1403;;;:::o;23405:230::-;23545:34;23541:1;23533:6;23529:14;23522:58;23614:13;23609:2;23601:6;23597:15;23590:38;23405:230;:::o;23641:366::-;23783:3;23804:67;23868:2;23863:3;23804:67;:::i;:::-;23797:74;;23880:93;23969:3;23880:93;:::i;:::-;23998:2;23993:3;23989:12;23982:19;;23641:366;;;:::o;24013:419::-;24179:4;24217:2;24206:9;24202:18;24194:26;;24266:9;24260:4;24256:20;24252:1;24241:9;24237:17;24230:47;24294:131;24420:4;24294:131;:::i;:::-;24286:139;;24013:419;;;:::o;24438:222::-;24578:34;24574:1;24566:6;24562:14;24555:58;24647:5;24642:2;24634:6;24630:15;24623:30;24438:222;:::o;24666:366::-;24808:3;24829:67;24893:2;24888:3;24829:67;:::i;:::-;24822:74;;24905:93;24994:3;24905:93;:::i;:::-;25023:2;25018:3;25014:12;25007:19;;24666:366;;;:::o;25038:419::-;25204:4;25242:2;25231:9;25227:18;25219:26;;25291:9;25285:4;25281:20;25277:1;25266:9;25262:17;25255:47;25319:131;25445:4;25319:131;:::i;:::-;25311:139;;25038:419;;;:::o;25463:223::-;25603:34;25599:1;25591:6;25587:14;25580:58;25672:6;25667:2;25659:6;25655:15;25648:31;25463:223;:::o;25692:366::-;25834:3;25855:67;25919:2;25914:3;25855:67;:::i;:::-;25848:74;;25931:93;26020:3;25931:93;:::i;:::-;26049:2;26044:3;26040:12;26033:19;;25692:366;;;:::o;26064:419::-;26230:4;26268:2;26257:9;26253:18;26245:26;;26317:9;26311:4;26307:20;26303:1;26292:9;26288:17;26281:47;26345:131;26471:4;26345:131;:::i;:::-;26337:139;;26064:419;;;:::o;26489:191::-;26529:3;26548:20;26566:1;26548:20;:::i;:::-;26543:25;;26582:20;26600:1;26582:20;:::i;:::-;26577:25;;26625:1;26622;26618:9;26611:16;;26646:3;26643:1;26640:10;26637:36;;;26653:18;;:::i;:::-;26637:36;26489:191;;;;:::o;26686:172::-;26826:24;26822:1;26814:6;26810:14;26803:48;26686:172;:::o;26864:366::-;27006:3;27027:67;27091:2;27086:3;27027:67;:::i;:::-;27020:74;;27103:93;27192:3;27103:93;:::i;:::-;27221:2;27216:3;27212:12;27205:19;;26864:366;;;:::o;27236:419::-;27402:4;27440:2;27429:9;27425:18;27417:26;;27489:9;27483:4;27479:20;27475:1;27464:9;27460:17;27453:47;27517:131;27643:4;27517:131;:::i;:::-;27509:139;;27236:419;;;:::o;27661:176::-;27801:28;27797:1;27789:6;27785:14;27778:52;27661:176;:::o;27843:366::-;27985:3;28006:67;28070:2;28065:3;28006:67;:::i;:::-;27999:74;;28082:93;28171:3;28082:93;:::i;:::-;28200:2;28195:3;28191:12;28184:19;;27843:366;;;:::o;28215:419::-;28381:4;28419:2;28408:9;28404:18;28396:26;;28468:9;28462:4;28458:20;28454:1;28443:9;28439:17;28432:47;28496:131;28622:4;28496:131;:::i;:::-;28488:139;;28215:419;;;:::o;28640:238::-;28780:34;28776:1;28768:6;28764:14;28757:58;28849:21;28844:2;28836:6;28832:15;28825:46;28640:238;:::o;28884:366::-;29026:3;29047:67;29111:2;29106:3;29047:67;:::i;:::-;29040:74;;29123:93;29212:3;29123:93;:::i;:::-;29241:2;29236:3;29232:12;29225:19;;28884:366;;;:::o;29256:419::-;29422:4;29460:2;29449:9;29445:18;29437:26;;29509:9;29503:4;29499:20;29495:1;29484:9;29480:17;29473:47;29537:131;29663:4;29537:131;:::i;:::-;29529:139;;29256:419;;;:::o;29681:234::-;29821:34;29817:1;29809:6;29805:14;29798:58;29890:17;29885:2;29877:6;29873:15;29866:42;29681:234;:::o;29921:366::-;30063:3;30084:67;30148:2;30143:3;30084:67;:::i;:::-;30077:74;;30160:93;30249:3;30160:93;:::i;:::-;30278:2;30273:3;30269:12;30262:19;;29921:366;;;:::o;30293:419::-;30459:4;30497:2;30486:9;30482:18;30474:26;;30546:9;30540:4;30536:20;30532:1;30521:9;30517:17;30510:47;30574:131;30700:4;30574:131;:::i;:::-;30566:139;;30293:419;;;:::o;30718:148::-;30820:11;30857:3;30842:18;;30718:148;;;;:::o;30872:390::-;30978:3;31006:39;31039:5;31006:39;:::i;:::-;31061:89;31143:6;31138:3;31061:89;:::i;:::-;31054:96;;31159:65;31217:6;31212:3;31205:4;31198:5;31194:16;31159:65;:::i;:::-;31249:6;31244:3;31240:16;31233:23;;30982:280;30872:390;;;;:::o;31268:435::-;31448:3;31470:95;31561:3;31552:6;31470:95;:::i;:::-;31463:102;;31582:95;31673:3;31664:6;31582:95;:::i;:::-;31575:102;;31694:3;31687:10;;31268:435;;;;;:::o;31709:225::-;31849:34;31845:1;31837:6;31833:14;31826:58;31918:8;31913:2;31905:6;31901:15;31894:33;31709:225;:::o;31940:366::-;32082:3;32103:67;32167:2;32162:3;32103:67;:::i;:::-;32096:74;;32179:93;32268:3;32179:93;:::i;:::-;32297:2;32292:3;32288:12;32281:19;;31940:366;;;:::o;32312:419::-;32478:4;32516:2;32505:9;32501:18;32493:26;;32565:9;32559:4;32555:20;32551:1;32540:9;32536:17;32529:47;32593:131;32719:4;32593:131;:::i;:::-;32585:139;;32312:419;;;:::o;32737:237::-;32877:34;32873:1;32865:6;32861:14;32854:58;32946:20;32941:2;32933:6;32929:15;32922:45;32737:237;:::o;32980:366::-;33122:3;33143:67;33207:2;33202:3;33143:67;:::i;:::-;33136:74;;33219:93;33308:3;33219:93;:::i;:::-;33337:2;33332:3;33328:12;33321:19;;32980:366;;;:::o;33352:419::-;33518:4;33556:2;33545:9;33541:18;33533:26;;33605:9;33599:4;33595:20;33591:1;33580:9;33576:17;33569:47;33633:131;33759:4;33633:131;:::i;:::-;33625:139;;33352:419;;;:::o;33777:225::-;33917:34;33913:1;33905:6;33901:14;33894:58;33986:8;33981:2;33973:6;33969:15;33962:33;33777:225;:::o;34008:366::-;34150:3;34171:67;34235:2;34230:3;34171:67;:::i;:::-;34164:74;;34247:93;34336:3;34247:93;:::i;:::-;34365:2;34360:3;34356:12;34349:19;;34008:366;;;:::o;34380:419::-;34546:4;34584:2;34573:9;34569:18;34561:26;;34633:9;34627:4;34623:20;34619:1;34608:9;34604:17;34597:47;34661:131;34787:4;34661:131;:::i;:::-;34653:139;;34380:419;;;:::o;34805:224::-;34945:34;34941:1;34933:6;34929:14;34922:58;35014:7;35009:2;35001:6;34997:15;34990:32;34805:224;:::o;35035:366::-;35177:3;35198:67;35262:2;35257:3;35198:67;:::i;:::-;35191:74;;35274:93;35363:3;35274:93;:::i;:::-;35392:2;35387:3;35383:12;35376:19;;35035:366;;;:::o;35407:419::-;35573:4;35611:2;35600:9;35596:18;35588:26;;35660:9;35654:4;35650:20;35646:1;35635:9;35631:17;35624:47;35688:131;35814:4;35688:131;:::i;:::-;35680:139;;35407:419;;;:::o;35832:118::-;35869:7;35909:34;35902:5;35898:46;35887:57;;35832:118;;;:::o;35956:227::-;35996:4;36016:20;36034:1;36016:20;:::i;:::-;36011:25;;36050:20;36068:1;36050:20;:::i;:::-;36045:25;;36094:1;36091;36087:9;36079:17;;36118:34;36112:4;36109:44;36106:70;;;36156:18;;:::i;:::-;36106:70;35956:227;;;;:::o;36189:224::-;36229:3;36248:20;36266:1;36248:20;:::i;:::-;36243:25;;36282:20;36300:1;36282:20;:::i;:::-;36277:25;;36325:1;36322;36318:9;36311:16;;36348:34;36343:3;36340:43;36337:69;;;36386:18;;:::i;:::-;36337:69;36189:224;;;;:::o;36419:182::-;36559:34;36555:1;36547:6;36543:14;36536:58;36419:182;:::o;36607:366::-;36749:3;36770:67;36834:2;36829:3;36770:67;:::i;:::-;36763:74;;36846:93;36935:3;36846:93;:::i;:::-;36964:2;36959:3;36955:12;36948:19;;36607:366;;;:::o;36979:419::-;37145:4;37183:2;37172:9;37168:18;37160:26;;37232:9;37226:4;37222:20;37218:1;37207:9;37203:17;37196:47;37260:131;37386:4;37260:131;:::i;:::-;37252:139;;36979:419;;;:::o;37404:229::-;37544:34;37540:1;37532:6;37528:14;37521:58;37613:12;37608:2;37600:6;37596:15;37589:37;37404:229;:::o;37639:366::-;37781:3;37802:67;37866:2;37861:3;37802:67;:::i;:::-;37795:74;;37878:93;37967:3;37878:93;:::i;:::-;37996:2;37991:3;37987:12;37980:19;;37639:366;;;:::o;38011:419::-;38177:4;38215:2;38204:9;38200:18;38192:26;;38264:9;38258:4;38254:20;38250:1;38239:9;38235:17;38228:47;38292:131;38418:4;38292:131;:::i;:::-;38284:139;;38011:419;;;:::o;38436:194::-;38476:4;38496:20;38514:1;38496:20;:::i;:::-;38491:25;;38530:20;38548:1;38530:20;:::i;:::-;38525:25;;38574:1;38571;38567:9;38559:17;;38598:1;38592:4;38589:11;38586:37;;;38603:18;;:::i;:::-;38586:37;38436:194;;;;:::o;38636:171::-;38675:3;38698:24;38716:5;38698:24;:::i;:::-;38689:33;;38744:4;38737:5;38734:15;38731:41;;38752:18;;:::i;:::-;38731:41;38799:1;38792:5;38788:13;38781:20;;38636:171;;;:::o;38813:234::-;38953:34;38949:1;38941:6;38937:14;38930:58;39022:17;39017:2;39009:6;39005:15;38998:42;38813:234;:::o;39053:366::-;39195:3;39216:67;39280:2;39275:3;39216:67;:::i;:::-;39209:74;;39292:93;39381:3;39292:93;:::i;:::-;39410:2;39405:3;39401:12;39394:19;;39053:366;;;:::o;39425:419::-;39591:4;39629:2;39618:9;39614:18;39606:26;;39678:9;39672:4;39668:20;39664:1;39653:9;39649:17;39642:47;39706:131;39832:4;39706:131;:::i;:::-;39698:139;;39425:419;;;:::o;39850:410::-;39890:7;39913:20;39931:1;39913:20;:::i;:::-;39908:25;;39947:20;39965:1;39947:20;:::i;:::-;39942:25;;40002:1;39999;39995:9;40024:30;40042:11;40024:30;:::i;:::-;40013:41;;40203:1;40194:7;40190:15;40187:1;40184:22;40164:1;40157:9;40137:83;40114:139;;40233:18;;:::i;:::-;40114:139;39898:362;39850:410;;;;:::o;40266:180::-;40406:32;40402:1;40394:6;40390:14;40383:56;40266:180;:::o;40452:366::-;40594:3;40615:67;40679:2;40674:3;40615:67;:::i;:::-;40608:74;;40691:93;40780:3;40691:93;:::i;:::-;40809:2;40804:3;40800:12;40793:19;;40452:366;;;:::o;40824:419::-;40990:4;41028:2;41017:9;41013:18;41005:26;;41077:9;41071:4;41067:20;41063:1;41052:9;41048:17;41041:47;41105:131;41231:4;41105:131;:::i;:::-;41097:139;;40824:419;;;:::o;41249:180::-;41389:32;41385:1;41377:6;41373:14;41366:56;41249:180;:::o;41435:366::-;41577:3;41598:67;41662:2;41657:3;41598:67;:::i;:::-;41591:74;;41674:93;41763:3;41674:93;:::i;:::-;41792:2;41787:3;41783:12;41776:19;;41435:366;;;:::o;41807:419::-;41973:4;42011:2;42000:9;41996:18;41988:26;;42060:9;42054:4;42050:20;42046:1;42035:9;42031:17;42024:47;42088:131;42214:4;42088:131;:::i;:::-;42080:139;;41807:419;;;:::o;42232:98::-;42283:6;42317:5;42311:12;42301:22;;42232:98;;;:::o;42336:168::-;42419:11;42453:6;42448:3;42441:19;42493:4;42488:3;42484:14;42469:29;;42336:168;;;;:::o;42510:373::-;42596:3;42624:38;42656:5;42624:38;:::i;:::-;42678:70;42741:6;42736:3;42678:70;:::i;:::-;42671:77;;42757:65;42815:6;42810:3;42803:4;42796:5;42792:16;42757:65;:::i;:::-;42847:29;42869:6;42847:29;:::i;:::-;42842:3;42838:39;42831:46;;42600:283;42510:373;;;;:::o;42889:640::-;43084:4;43122:3;43111:9;43107:19;43099:27;;43136:71;43204:1;43193:9;43189:17;43180:6;43136:71;:::i;:::-;43217:72;43285:2;43274:9;43270:18;43261:6;43217:72;:::i;:::-;43299;43367:2;43356:9;43352:18;43343:6;43299:72;:::i;:::-;43418:9;43412:4;43408:20;43403:2;43392:9;43388:18;43381:48;43446:76;43517:4;43508:6;43446:76;:::i;:::-;43438:84;;42889:640;;;;;;;:::o;43535:141::-;43591:5;43622:6;43616:13;43607:22;;43638:32;43664:5;43638:32;:::i;:::-;43535:141;;;;:::o;43682:349::-;43751:6;43800:2;43788:9;43779:7;43775:23;43771:32;43768:119;;;43806:79;;:::i;:::-;43768:119;43926:1;43951:63;44006:7;43997:6;43986:9;43982:22;43951:63;:::i;:::-;43941:73;;43897:127;43682:349;;;;:::o;44037:180::-;44085:77;44082:1;44075:88;44182:4;44179:1;44172:15;44206:4;44203:1;44196:15;44223:185;44263:1;44280:20;44298:1;44280:20;:::i;:::-;44275:25;;44314:20;44332:1;44314:20;:::i;:::-;44309:25;;44353:1;44343:35;;44358:18;;:::i;:::-;44343:35;44400:1;44397;44393:9;44388:14;;44223:185;;;;:::o;44414:176::-;44446:1;44463:20;44481:1;44463:20;:::i;:::-;44458:25;;44497:20;44515:1;44497:20;:::i;:::-;44492:25;;44536:1;44526:35;;44541:18;;:::i;:::-;44526:35;44582:1;44579;44575:9;44570:14;;44414:176;;;;:::o;44596:180::-;44644:77;44641:1;44634:88;44741:4;44738:1;44731:15;44765:4;44762:1;44755:15;44782:236;44922:34;44918:1;44910:6;44906:14;44899:58;44991:19;44986:2;44978:6;44974:15;44967:44;44782:236;:::o;45024:366::-;45166:3;45187:67;45251:2;45246:3;45187:67;:::i;:::-;45180:74;;45263:93;45352:3;45263:93;:::i;:::-;45381:2;45376:3;45372:12;45365:19;;45024:366;;;:::o;45396:419::-;45562:4;45600:2;45589:9;45585:18;45577:26;;45649:9;45643:4;45639:20;45635:1;45624:9;45620:17;45613:47;45677:131;45803:4;45677:131;:::i;:::-;45669:139;;45396:419;;;:::o;45821:220::-;45961:34;45957:1;45949:6;45945:14;45938:58;46030:3;46025:2;46017:6;46013:15;46006:28;45821:220;:::o;46047:366::-;46189:3;46210:67;46274:2;46269:3;46210:67;:::i;:::-;46203:74;;46286:93;46375:3;46286:93;:::i;:::-;46404:2;46399:3;46395:12;46388:19;;46047:366;;;:::o;46419:419::-;46585:4;46623:2;46612:9;46608:18;46600:26;;46672:9;46666:4;46662:20;46658:1;46647:9;46643:17;46636:47;46700:131;46826:4;46700:131;:::i;:::-;46692:139;;46419:419;;;:::o;46844:179::-;46984:31;46980:1;46972:6;46968:14;46961:55;46844:179;:::o;47029:366::-;47171:3;47192:67;47256:2;47251:3;47192:67;:::i;:::-;47185:74;;47268:93;47357:3;47268:93;:::i;:::-;47386:2;47381:3;47377:12;47370:19;;47029:366;;;:::o;47401:419::-;47567:4;47605:2;47594:9;47590:18;47582:26;;47654:9;47648:4;47644:20;47640:1;47629:9;47625:17;47618:47;47682:131;47808:4;47682:131;:::i;:::-;47674:139;;47401:419;;;:::o;47826:221::-;47966:34;47962:1;47954:6;47950:14;47943:58;48035:4;48030:2;48022:6;48018:15;48011:29;47826:221;:::o;48053:366::-;48195:3;48216:67;48280:2;48275:3;48216:67;:::i;:::-;48209:74;;48292:93;48381:3;48292:93;:::i;:::-;48410:2;48405:3;48401:12;48394:19;;48053:366;;;:::o;48425:419::-;48591:4;48629:2;48618:9;48614:18;48606:26;;48678:9;48672:4;48668:20;48664:1;48653:9;48649:17;48642:47;48706:131;48832:4;48706:131;:::i;:::-;48698:139;;48425:419;;;:::o

Swarm Source

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