ETH Price: $3,334.40 (-1.77%)
Gas: 40 Gwei

Token

PhantaCubs (PCUBS)
 

Overview

Max Total Supply

1,632 PCUBS

Holders

235

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
clitorus.eth
Balance
5 PCUBS
0x2a7b50f2fbdefd9caff33cb386d87269ef5abfcd
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PhantaCubs

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

// SPDX-License-Identifier: MIT
// 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);
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

// 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;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// 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;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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(), ".json"))
        : "";
  }

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

contract PhantaCubs is ERC721A, Ownable {
    uint256 public NFT_PRICE = 30000000000000000;
    uint256 public MAX_SUPPLY = 3555;
    uint256 public MAX_MINTS = 15;
    uint256 public MAX_MINTS_RESERVED = 5;
    uint256 public freeTokens = 555;

    bool public DROP_ACTIVE = false;

    string public baseURI = "";
    
    constructor() ERC721A("PhantaCubs", "PCUBS", MAX_MINTS, MAX_SUPPLY) {}

    function mint(uint256 numTokens) public payable {
        require(DROP_ACTIVE, "The sale has not started yet");
        require(numTokens > 0 && numTokens <= MAX_MINTS, "You can only mint between 1 and 15 cubs!");
        require(totalSupply() + numTokens <= MAX_SUPPLY, "No cubs left");
        require(msg.value >= NFT_PRICE * numTokens, "Amount of ether sent is not enough");

        _safeMint(msg.sender, numTokens);
    }

    function mintFree(uint256 numTokens) public {
        require(DROP_ACTIVE, "The sale has not started yet");
        require(numTokens > 0 && numTokens <= MAX_MINTS_RESERVED, "You can only free mint between 1 and 5 cubs!");
        require(totalSupply() + numTokens <= MAX_SUPPLY, "No cubs left");
        require(totalSupply() + numTokens <= freeTokens, "There are no free mints left");

        _safeMint(msg.sender, numTokens);
    }

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

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

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

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

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

    function setFreeTokens(uint256 newAmount) public onlyOwner {
        freeTokens = newAmount;
    }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DROP_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipDropState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeTokens","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":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"mintFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setFreeTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052600080556000600755666a94d74f430000600955610de3600a55600f600b556005600c5561022b600d556000600e60006101000a81548160ff02191690831515021790555060405180602001604052806000815250600f908051906020019062000070929190620002b7565b503480156200007e57600080fd5b506040518060400160405280600a81526020017f5068616e746143756273000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f5043554253000000000000000000000000000000000000000000000000000000815250600b54600a546000811162000137576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200012e90620003d7565b60405180910390fd5b600082116200017d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200017490620003b5565b60405180910390fd5b836001908051906020019062000195929190620002b7565b508260029080519060200190620001ae929190620002b7565b508160a08181525050806080818152505050505050620001e3620001d7620001e960201b60201c565b620001f160201b60201c565b6200050d565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002c5906200040a565b90600052602060002090601f016020900481019282620002e9576000855562000335565b82601f106200030457805160ff191683800117855562000335565b8280016001018555821562000335579182015b828111156200033457825182559160200191906001019062000317565b5b50905062000344919062000348565b5090565b5b808211156200036357600081600090555060010162000349565b5090565b600062000376602783620003f9565b915062000383826200046f565b604082019050919050565b60006200039d602e83620003f9565b9150620003aa82620004be565b604082019050919050565b60006020820190508181036000830152620003d08162000367565b9050919050565b60006020820190508181036000830152620003f2816200038e565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200042357607f821691505b602082108114156200043a576200043962000440565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a05161490a6200053e60003960008181612368015281816123910152612a5201526000505061490a6000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063b875e2ce116100a0578063d7224ba01161006f578063d7224ba014610768578063e985e9c514610793578063f2fde38b146107d0578063f7cd09c7146107f9578063fb19ba2d146108245761020f565b8063b875e2ce146106ac578063b88d4fde146106d7578063c87b56dd14610700578063cce132d11461073d5761020f565b806395d89b41116100e757806395d89b41146105fc57806396f8f6dd14610627578063a0712d681461063e578063a22cb4651461065a578063a4146733146106835761020f565b8063715018a61461056857806379c9cb7b1461057f5780638da5cb5b146105a857806391b7f5ed146105d35761020f565b80633ccfd60b1161019b5780636352211e1161016a5780636352211e1461046d578063676dd563146104aa5780636c0360eb146104d55780636fe8f9c51461050057806370a082311461052b5761020f565b80633ccfd60b146103c757806342842e0e146103de5780634f6ccce71461040757806355f804b3146104445761020f565b806318160ddd116101e257806318160ddd146102e257806323b872dd1461030d5780632f745c591461033657806332cb6b0c146103735780633b4c4b251461039e5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b6004803603810190610236919061326c565b61084d565b6040516102489190613853565b60405180910390f35b34801561025d57600080fd5b50610266610997565b604051610273919061386e565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e919061330f565b610a29565b6040516102b091906137ec565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db919061322c565b610aae565b005b3480156102ee57600080fd5b506102f7610bc7565b6040516103049190613bd0565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190613116565b610bd0565b005b34801561034257600080fd5b5061035d6004803603810190610358919061322c565b610be0565b60405161036a9190613bd0565b60405180910390f35b34801561037f57600080fd5b50610388610dde565b6040516103959190613bd0565b60405180910390f35b3480156103aa57600080fd5b506103c560048036038101906103c0919061330f565b610de4565b005b3480156103d357600080fd5b506103dc610e6a565b005b3480156103ea57600080fd5b5061040560048036038101906104009190613116565b610f26565b005b34801561041357600080fd5b5061042e6004803603810190610429919061330f565b610f46565b60405161043b9190613bd0565b60405180910390f35b34801561045057600080fd5b5061046b600480360381019061046691906132c6565b610f99565b005b34801561047957600080fd5b50610494600480360381019061048f919061330f565b61102f565b6040516104a191906137ec565b60405180910390f35b3480156104b657600080fd5b506104bf611045565b6040516104cc9190613bd0565b60405180910390f35b3480156104e157600080fd5b506104ea61104b565b6040516104f7919061386e565b60405180910390f35b34801561050c57600080fd5b506105156110d9565b6040516105229190613bd0565b60405180910390f35b34801561053757600080fd5b50610552600480360381019061054d91906130a9565b6110df565b60405161055f9190613bd0565b60405180910390f35b34801561057457600080fd5b5061057d6111c8565b005b34801561058b57600080fd5b506105a660048036038101906105a1919061330f565b611250565b005b3480156105b457600080fd5b506105bd6112d6565b6040516105ca91906137ec565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f5919061330f565b611300565b005b34801561060857600080fd5b50610611611386565b60405161061e919061386e565b60405180910390f35b34801561063357600080fd5b5061063c611418565b005b6106586004803603810190610653919061330f565b6114c0565b005b34801561066657600080fd5b50610681600480360381019061067c91906131ec565b611614565b005b34801561068f57600080fd5b506106aa60048036038101906106a5919061330f565b611795565b005b3480156106b857600080fd5b506106c16118f0565b6040516106ce9190613bd0565b60405180910390f35b3480156106e357600080fd5b506106fe60048036038101906106f99190613169565b6118f6565b005b34801561070c57600080fd5b506107276004803603810190610722919061330f565b611952565b604051610734919061386e565b60405180910390f35b34801561074957600080fd5b506107526119f9565b60405161075f9190613bd0565b60405180910390f35b34801561077457600080fd5b5061077d6119ff565b60405161078a9190613bd0565b60405180910390f35b34801561079f57600080fd5b506107ba60048036038101906107b591906130d6565b611a05565b6040516107c79190613853565b60405180910390f35b3480156107dc57600080fd5b506107f760048036038101906107f291906130a9565b611a99565b005b34801561080557600080fd5b5061080e611b91565b60405161081b9190613853565b60405180910390f35b34801561083057600080fd5b5061084b6004803603810190610846919061330f565b611ba4565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061098057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610990575061098f82611c2a565b5b9050919050565b6060600180546109a690613f40565b80601f01602080910402602001604051908101604052809291908181526020018280546109d290613f40565b8015610a1f5780601f106109f457610100808354040283529160200191610a1f565b820191906000526020600020905b815481529060010190602001808311610a0257829003601f168201915b5050505050905090565b6000610a3482611c94565b610a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6a90613b70565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ab98261102f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2190613a90565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b49611ca1565b73ffffffffffffffffffffffffffffffffffffffff161480610b785750610b7781610b72611ca1565b611a05565b5b610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae90613970565b60405180910390fd5b610bc2838383611ca9565b505050565b60008054905090565b610bdb838383611d5b565b505050565b6000610beb836110df565b8210610c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2390613890565b60405180910390fd5b6000610c36610bc7565b905060008060005b83811015610d9c576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d3057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d885786841415610d79578195505050505050610dd8565b8380610d8490613fa3565b9450505b508080610d9490613fa3565b915050610c3e565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf90613b30565b60405180910390fd5b92915050565b600a5481565b610dec611ca1565b73ffffffffffffffffffffffffffffffffffffffff16610e0a6112d6565b73ffffffffffffffffffffffffffffffffffffffff1614610e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e57906139f0565b60405180910390fd5b80600a8190555050565b610e72611ca1565b73ffffffffffffffffffffffffffffffffffffffff16610e906112d6565b73ffffffffffffffffffffffffffffffffffffffff1614610ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edd906139f0565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610f2457600080fd5b565b610f41838383604051806020016040528060008152506118f6565b505050565b6000610f50610bc7565b8210610f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f88906138f0565b60405180910390fd5b819050919050565b610fa1611ca1565b73ffffffffffffffffffffffffffffffffffffffff16610fbf6112d6565b73ffffffffffffffffffffffffffffffffffffffff1614611015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100c906139f0565b60405180910390fd5b80600f908051906020019061102b929190612e83565b5050565b600061103a82612314565b600001519050919050565b60095481565b600f805461105890613f40565b80601f016020809104026020016040519081016040528092919081815260200182805461108490613f40565b80156110d15780601f106110a6576101008083540402835291602001916110d1565b820191906000526020600020905b8154815290600101906020018083116110b457829003601f168201915b505050505081565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611150576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611147906139b0565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6111d0611ca1565b73ffffffffffffffffffffffffffffffffffffffff166111ee6112d6565b73ffffffffffffffffffffffffffffffffffffffff1614611244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123b906139f0565b60405180910390fd5b61124e6000612517565b565b611258611ca1565b73ffffffffffffffffffffffffffffffffffffffff166112766112d6565b73ffffffffffffffffffffffffffffffffffffffff16146112cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c3906139f0565b60405180910390fd5b80600b8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611308611ca1565b73ffffffffffffffffffffffffffffffffffffffff166113266112d6565b73ffffffffffffffffffffffffffffffffffffffff161461137c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611373906139f0565b60405180910390fd5b8060098190555050565b60606002805461139590613f40565b80601f01602080910402602001604051908101604052809291908181526020018280546113c190613f40565b801561140e5780601f106113e35761010080835404028352916020019161140e565b820191906000526020600020905b8154815290600101906020018083116113f157829003601f168201915b5050505050905090565b611420611ca1565b73ffffffffffffffffffffffffffffffffffffffff1661143e6112d6565b73ffffffffffffffffffffffffffffffffffffffff1614611494576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148b906139f0565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b600e60009054906101000a900460ff1661150f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150690613a70565b60405180910390fd5b6000811180156115215750600b548111155b611560576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155790613af0565b60405180910390fd5b600a548161156c610bc7565b6115769190613cfb565b11156115b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ae90613bb0565b60405180910390fd5b806009546115c59190613d82565b341015611607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fe90613950565b60405180910390fd5b61161133826125dd565b50565b61161c611ca1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561168a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168190613a30565b60405180910390fd5b8060066000611697611ca1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611744611ca1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117899190613853565b60405180910390a35050565b600e60009054906101000a900460ff166117e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117db90613a70565b60405180910390fd5b6000811180156117f65750600c548111155b611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c90613990565b60405180910390fd5b600a5481611841610bc7565b61184b9190613cfb565b111561188c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188390613bb0565b60405180910390fd5b600d5481611898610bc7565b6118a29190613cfb565b11156118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da90613930565b60405180910390fd5b6118ed33826125dd565b50565b600c5481565b611901848484611d5b565b61190d848484846125fb565b61194c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194390613ab0565b60405180910390fd5b50505050565b606061195d82611c94565b61199c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199390613a10565b60405180910390fd5b60006119a6612792565b905060008151116119c657604051806020016040528060008152506119f1565b806119d084612824565b6040516020016119e19291906137bd565b6040516020818303038152906040525b915050919050565b600b5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611aa1611ca1565b73ffffffffffffffffffffffffffffffffffffffff16611abf6112d6565b73ffffffffffffffffffffffffffffffffffffffff1614611b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0c906139f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c906138b0565b60405180910390fd5b611b8e81612517565b50565b600e60009054906101000a900460ff1681565b611bac611ca1565b73ffffffffffffffffffffffffffffffffffffffff16611bca6112d6565b73ffffffffffffffffffffffffffffffffffffffff1614611c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c17906139f0565b60405180910390fd5b80600d8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611d6682612314565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d8d611ca1565b73ffffffffffffffffffffffffffffffffffffffff161480611de95750611db2611ca1565b73ffffffffffffffffffffffffffffffffffffffff16611dd184610a29565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e055750611e048260000151611dff611ca1565b611a05565b5b905080611e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3e90613a50565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb0906139d0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2090613910565b60405180910390fd5b611f368585856001612985565b611f466000848460000151611ca9565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611fb49190613ddc565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166120589190613cb5565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461215e9190613cfb565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156122a4576121d481611c94565b156122a3576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461230c868686600161298b565b505050505050565b61231c612f09565b61232582611c94565b612364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235b906138d0565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106123c85760017f0000000000000000000000000000000000000000000000000000000000000000846123bb9190613e10565b6123c59190613cfb565b90505b60008390505b8181106124d6576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124c257809350505050612512565b5080806124ce90613f16565b9150506123ce565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250990613b50565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125f7828260405180602001604052806000815250612991565b5050565b600061261c8473ffffffffffffffffffffffffffffffffffffffff16612e70565b15612785578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612645611ca1565b8786866040518563ffffffff1660e01b81526004016126679493929190613807565b602060405180830381600087803b15801561268157600080fd5b505af19250505080156126b257506040513d601f19601f820116820180604052508101906126af9190613299565b60015b612735573d80600081146126e2576040519150601f19603f3d011682016040523d82523d6000602084013e6126e7565b606091505b5060008151141561272d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272490613ab0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061278a565b600190505b949350505050565b6060600f80546127a190613f40565b80601f01602080910402602001604051908101604052809291908181526020018280546127cd90613f40565b801561281a5780601f106127ef5761010080835404028352916020019161281a565b820191906000526020600020905b8154815290600101906020018083116127fd57829003601f168201915b5050505050905090565b6060600082141561286c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612980565b600082905060005b6000821461289e57808061288790613fa3565b915050600a826128979190613d51565b9150612874565b60008167ffffffffffffffff8111156128ba576128b96140d9565b5b6040519080825280601f01601f1916602001820160405280156128ec5781602001600182028036833780820191505090505b5090505b60008514612979576001826129059190613e10565b9150600a856129149190613fec565b60306129209190613cfb565b60f81b818381518110612936576129356140aa565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129729190613d51565b94506128f0565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fe90613b10565b60405180910390fd5b612a1081611c94565b15612a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4790613ad0565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aaa90613b90565b60405180910390fd5b612ac06000858386612985565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612bbd9190613cb5565b6fffffffffffffffffffffffffffffffff168152602001858360200151612be49190613cb5565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612e5357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612df360008884886125fb565b612e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2990613ab0565b60405180910390fd5b8180612e3d90613fa3565b9250508080612e4b90613fa3565b915050612d82565b5080600081905550612e68600087858861298b565b505050505050565b600080823b905060008111915050919050565b828054612e8f90613f40565b90600052602060002090601f016020900481019282612eb15760008555612ef8565b82601f10612eca57805160ff1916838001178555612ef8565b82800160010185558215612ef8579182015b82811115612ef7578251825591602001919060010190612edc565b5b509050612f059190612f43565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612f5c576000816000905550600101612f44565b5090565b6000612f73612f6e84613c10565b613beb565b905082815260208101848484011115612f8f57612f8e61410d565b5b612f9a848285613ed4565b509392505050565b6000612fb5612fb084613c41565b613beb565b905082815260208101848484011115612fd157612fd061410d565b5b612fdc848285613ed4565b509392505050565b600081359050612ff381614878565b92915050565b6000813590506130088161488f565b92915050565b60008135905061301d816148a6565b92915050565b600081519050613032816148a6565b92915050565b600082601f83011261304d5761304c614108565b5b813561305d848260208601612f60565b91505092915050565b600082601f83011261307b5761307a614108565b5b813561308b848260208601612fa2565b91505092915050565b6000813590506130a3816148bd565b92915050565b6000602082840312156130bf576130be614117565b5b60006130cd84828501612fe4565b91505092915050565b600080604083850312156130ed576130ec614117565b5b60006130fb85828601612fe4565b925050602061310c85828601612fe4565b9150509250929050565b60008060006060848603121561312f5761312e614117565b5b600061313d86828701612fe4565b935050602061314e86828701612fe4565b925050604061315f86828701613094565b9150509250925092565b6000806000806080858703121561318357613182614117565b5b600061319187828801612fe4565b94505060206131a287828801612fe4565b93505060406131b387828801613094565b925050606085013567ffffffffffffffff8111156131d4576131d3614112565b5b6131e087828801613038565b91505092959194509250565b6000806040838503121561320357613202614117565b5b600061321185828601612fe4565b925050602061322285828601612ff9565b9150509250929050565b6000806040838503121561324357613242614117565b5b600061325185828601612fe4565b925050602061326285828601613094565b9150509250929050565b60006020828403121561328257613281614117565b5b60006132908482850161300e565b91505092915050565b6000602082840312156132af576132ae614117565b5b60006132bd84828501613023565b91505092915050565b6000602082840312156132dc576132db614117565b5b600082013567ffffffffffffffff8111156132fa576132f9614112565b5b61330684828501613066565b91505092915050565b60006020828403121561332557613324614117565b5b600061333384828501613094565b91505092915050565b61334581613e44565b82525050565b61335481613e56565b82525050565b600061336582613c72565b61336f8185613c88565b935061337f818560208601613ee3565b6133888161411c565b840191505092915050565b600061339e82613c7d565b6133a88185613c99565b93506133b8818560208601613ee3565b6133c18161411c565b840191505092915050565b60006133d782613c7d565b6133e18185613caa565b93506133f1818560208601613ee3565b80840191505092915050565b600061340a602283613c99565b91506134158261412d565b604082019050919050565b600061342d602683613c99565b91506134388261417c565b604082019050919050565b6000613450602a83613c99565b915061345b826141cb565b604082019050919050565b6000613473602383613c99565b915061347e8261421a565b604082019050919050565b6000613496602583613c99565b91506134a182614269565b604082019050919050565b60006134b9601c83613c99565b91506134c4826142b8565b602082019050919050565b60006134dc602283613c99565b91506134e7826142e1565b604082019050919050565b60006134ff603983613c99565b915061350a82614330565b604082019050919050565b6000613522602c83613c99565b915061352d8261437f565b604082019050919050565b6000613545602b83613c99565b9150613550826143ce565b604082019050919050565b6000613568602683613c99565b91506135738261441d565b604082019050919050565b600061358b600583613caa565b91506135968261446c565b600582019050919050565b60006135ae602083613c99565b91506135b982614495565b602082019050919050565b60006135d1602f83613c99565b91506135dc826144be565b604082019050919050565b60006135f4601a83613c99565b91506135ff8261450d565b602082019050919050565b6000613617603283613c99565b915061362282614536565b604082019050919050565b600061363a601c83613c99565b915061364582614585565b602082019050919050565b600061365d602283613c99565b9150613668826145ae565b604082019050919050565b6000613680603383613c99565b915061368b826145fd565b604082019050919050565b60006136a3601d83613c99565b91506136ae8261464c565b602082019050919050565b60006136c6602883613c99565b91506136d182614675565b604082019050919050565b60006136e9602183613c99565b91506136f4826146c4565b604082019050919050565b600061370c602e83613c99565b915061371782614713565b604082019050919050565b600061372f602f83613c99565b915061373a82614762565b604082019050919050565b6000613752602d83613c99565b915061375d826147b1565b604082019050919050565b6000613775602283613c99565b915061378082614800565b604082019050919050565b6000613798600c83613c99565b91506137a38261484f565b602082019050919050565b6137b781613eca565b82525050565b60006137c982856133cc565b91506137d582846133cc565b91506137e08261357e565b91508190509392505050565b6000602082019050613801600083018461333c565b92915050565b600060808201905061381c600083018761333c565b613829602083018661333c565b61383660408301856137ae565b8181036060830152613848818461335a565b905095945050505050565b6000602082019050613868600083018461334b565b92915050565b600060208201905081810360008301526138888184613393565b905092915050565b600060208201905081810360008301526138a9816133fd565b9050919050565b600060208201905081810360008301526138c981613420565b9050919050565b600060208201905081810360008301526138e981613443565b9050919050565b6000602082019050818103600083015261390981613466565b9050919050565b6000602082019050818103600083015261392981613489565b9050919050565b60006020820190508181036000830152613949816134ac565b9050919050565b60006020820190508181036000830152613969816134cf565b9050919050565b60006020820190508181036000830152613989816134f2565b9050919050565b600060208201905081810360008301526139a981613515565b9050919050565b600060208201905081810360008301526139c981613538565b9050919050565b600060208201905081810360008301526139e98161355b565b9050919050565b60006020820190508181036000830152613a09816135a1565b9050919050565b60006020820190508181036000830152613a29816135c4565b9050919050565b60006020820190508181036000830152613a49816135e7565b9050919050565b60006020820190508181036000830152613a698161360a565b9050919050565b60006020820190508181036000830152613a898161362d565b9050919050565b60006020820190508181036000830152613aa981613650565b9050919050565b60006020820190508181036000830152613ac981613673565b9050919050565b60006020820190508181036000830152613ae981613696565b9050919050565b60006020820190508181036000830152613b09816136b9565b9050919050565b60006020820190508181036000830152613b29816136dc565b9050919050565b60006020820190508181036000830152613b49816136ff565b9050919050565b60006020820190508181036000830152613b6981613722565b9050919050565b60006020820190508181036000830152613b8981613745565b9050919050565b60006020820190508181036000830152613ba981613768565b9050919050565b60006020820190508181036000830152613bc98161378b565b9050919050565b6000602082019050613be560008301846137ae565b92915050565b6000613bf5613c06565b9050613c018282613f72565b919050565b6000604051905090565b600067ffffffffffffffff821115613c2b57613c2a6140d9565b5b613c348261411c565b9050602081019050919050565b600067ffffffffffffffff821115613c5c57613c5b6140d9565b5b613c658261411c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613cc082613e8e565b9150613ccb83613e8e565b9250826fffffffffffffffffffffffffffffffff03821115613cf057613cef61401d565b5b828201905092915050565b6000613d0682613eca565b9150613d1183613eca565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d4657613d4561401d565b5b828201905092915050565b6000613d5c82613eca565b9150613d6783613eca565b925082613d7757613d7661404c565b5b828204905092915050565b6000613d8d82613eca565b9150613d9883613eca565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613dd157613dd061401d565b5b828202905092915050565b6000613de782613e8e565b9150613df283613e8e565b925082821015613e0557613e0461401d565b5b828203905092915050565b6000613e1b82613eca565b9150613e2683613eca565b925082821015613e3957613e3861401d565b5b828203905092915050565b6000613e4f82613eaa565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f01578082015181840152602081019050613ee6565b83811115613f10576000848401525b50505050565b6000613f2182613eca565b91506000821415613f3557613f3461401d565b5b600182039050919050565b60006002820490506001821680613f5857607f821691505b60208210811415613f6c57613f6b61407b565b5b50919050565b613f7b8261411c565b810181811067ffffffffffffffff82111715613f9a57613f996140d9565b5b80604052505050565b6000613fae82613eca565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fe157613fe061401d565b5b600182019050919050565b6000613ff782613eca565b915061400283613eca565b9250826140125761401161404c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f546865726520617265206e6f2066726565206d696e7473206c65667400000000600082015250565b7f416d6f756e74206f662065746865722073656e74206973206e6f7420656e6f7560008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f596f752063616e206f6e6c792066726565206d696e74206265747765656e203160008201527f20616e6420352063756273210000000000000000000000000000000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f5468652073616c6520686173206e6f7420737461727465642079657400000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f596f752063616e206f6e6c79206d696e74206265747765656e203120616e642060008201527f3135206375627321000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2063756273206c6566740000000000000000000000000000000000000000600082015250565b61488181613e44565b811461488c57600080fd5b50565b61489881613e56565b81146148a357600080fd5b50565b6148af81613e62565b81146148ba57600080fd5b50565b6148c681613eca565b81146148d157600080fd5b5056fea2646970667358221220f4a6a7441ea11d58907dc6317ae20d54f78c56ce2446533420fa8108df9358a064736f6c63430008070033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c8063715018a611610118578063b875e2ce116100a0578063d7224ba01161006f578063d7224ba014610768578063e985e9c514610793578063f2fde38b146107d0578063f7cd09c7146107f9578063fb19ba2d146108245761020f565b8063b875e2ce146106ac578063b88d4fde146106d7578063c87b56dd14610700578063cce132d11461073d5761020f565b806395d89b41116100e757806395d89b41146105fc57806396f8f6dd14610627578063a0712d681461063e578063a22cb4651461065a578063a4146733146106835761020f565b8063715018a61461056857806379c9cb7b1461057f5780638da5cb5b146105a857806391b7f5ed146105d35761020f565b80633ccfd60b1161019b5780636352211e1161016a5780636352211e1461046d578063676dd563146104aa5780636c0360eb146104d55780636fe8f9c51461050057806370a082311461052b5761020f565b80633ccfd60b146103c757806342842e0e146103de5780634f6ccce71461040757806355f804b3146104445761020f565b806318160ddd116101e257806318160ddd146102e257806323b872dd1461030d5780632f745c591461033657806332cb6b0c146103735780633b4c4b251461039e5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b6004803603810190610236919061326c565b61084d565b6040516102489190613853565b60405180910390f35b34801561025d57600080fd5b50610266610997565b604051610273919061386e565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e919061330f565b610a29565b6040516102b091906137ec565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db919061322c565b610aae565b005b3480156102ee57600080fd5b506102f7610bc7565b6040516103049190613bd0565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190613116565b610bd0565b005b34801561034257600080fd5b5061035d6004803603810190610358919061322c565b610be0565b60405161036a9190613bd0565b60405180910390f35b34801561037f57600080fd5b50610388610dde565b6040516103959190613bd0565b60405180910390f35b3480156103aa57600080fd5b506103c560048036038101906103c0919061330f565b610de4565b005b3480156103d357600080fd5b506103dc610e6a565b005b3480156103ea57600080fd5b5061040560048036038101906104009190613116565b610f26565b005b34801561041357600080fd5b5061042e6004803603810190610429919061330f565b610f46565b60405161043b9190613bd0565b60405180910390f35b34801561045057600080fd5b5061046b600480360381019061046691906132c6565b610f99565b005b34801561047957600080fd5b50610494600480360381019061048f919061330f565b61102f565b6040516104a191906137ec565b60405180910390f35b3480156104b657600080fd5b506104bf611045565b6040516104cc9190613bd0565b60405180910390f35b3480156104e157600080fd5b506104ea61104b565b6040516104f7919061386e565b60405180910390f35b34801561050c57600080fd5b506105156110d9565b6040516105229190613bd0565b60405180910390f35b34801561053757600080fd5b50610552600480360381019061054d91906130a9565b6110df565b60405161055f9190613bd0565b60405180910390f35b34801561057457600080fd5b5061057d6111c8565b005b34801561058b57600080fd5b506105a660048036038101906105a1919061330f565b611250565b005b3480156105b457600080fd5b506105bd6112d6565b6040516105ca91906137ec565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f5919061330f565b611300565b005b34801561060857600080fd5b50610611611386565b60405161061e919061386e565b60405180910390f35b34801561063357600080fd5b5061063c611418565b005b6106586004803603810190610653919061330f565b6114c0565b005b34801561066657600080fd5b50610681600480360381019061067c91906131ec565b611614565b005b34801561068f57600080fd5b506106aa60048036038101906106a5919061330f565b611795565b005b3480156106b857600080fd5b506106c16118f0565b6040516106ce9190613bd0565b60405180910390f35b3480156106e357600080fd5b506106fe60048036038101906106f99190613169565b6118f6565b005b34801561070c57600080fd5b506107276004803603810190610722919061330f565b611952565b604051610734919061386e565b60405180910390f35b34801561074957600080fd5b506107526119f9565b60405161075f9190613bd0565b60405180910390f35b34801561077457600080fd5b5061077d6119ff565b60405161078a9190613bd0565b60405180910390f35b34801561079f57600080fd5b506107ba60048036038101906107b591906130d6565b611a05565b6040516107c79190613853565b60405180910390f35b3480156107dc57600080fd5b506107f760048036038101906107f291906130a9565b611a99565b005b34801561080557600080fd5b5061080e611b91565b60405161081b9190613853565b60405180910390f35b34801561083057600080fd5b5061084b6004803603810190610846919061330f565b611ba4565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061098057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610990575061098f82611c2a565b5b9050919050565b6060600180546109a690613f40565b80601f01602080910402602001604051908101604052809291908181526020018280546109d290613f40565b8015610a1f5780601f106109f457610100808354040283529160200191610a1f565b820191906000526020600020905b815481529060010190602001808311610a0257829003601f168201915b5050505050905090565b6000610a3482611c94565b610a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6a90613b70565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ab98261102f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2190613a90565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b49611ca1565b73ffffffffffffffffffffffffffffffffffffffff161480610b785750610b7781610b72611ca1565b611a05565b5b610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae90613970565b60405180910390fd5b610bc2838383611ca9565b505050565b60008054905090565b610bdb838383611d5b565b505050565b6000610beb836110df565b8210610c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2390613890565b60405180910390fd5b6000610c36610bc7565b905060008060005b83811015610d9c576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d3057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d885786841415610d79578195505050505050610dd8565b8380610d8490613fa3565b9450505b508080610d9490613fa3565b915050610c3e565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf90613b30565b60405180910390fd5b92915050565b600a5481565b610dec611ca1565b73ffffffffffffffffffffffffffffffffffffffff16610e0a6112d6565b73ffffffffffffffffffffffffffffffffffffffff1614610e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e57906139f0565b60405180910390fd5b80600a8190555050565b610e72611ca1565b73ffffffffffffffffffffffffffffffffffffffff16610e906112d6565b73ffffffffffffffffffffffffffffffffffffffff1614610ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edd906139f0565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610f2457600080fd5b565b610f41838383604051806020016040528060008152506118f6565b505050565b6000610f50610bc7565b8210610f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f88906138f0565b60405180910390fd5b819050919050565b610fa1611ca1565b73ffffffffffffffffffffffffffffffffffffffff16610fbf6112d6565b73ffffffffffffffffffffffffffffffffffffffff1614611015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100c906139f0565b60405180910390fd5b80600f908051906020019061102b929190612e83565b5050565b600061103a82612314565b600001519050919050565b60095481565b600f805461105890613f40565b80601f016020809104026020016040519081016040528092919081815260200182805461108490613f40565b80156110d15780601f106110a6576101008083540402835291602001916110d1565b820191906000526020600020905b8154815290600101906020018083116110b457829003601f168201915b505050505081565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611150576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611147906139b0565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6111d0611ca1565b73ffffffffffffffffffffffffffffffffffffffff166111ee6112d6565b73ffffffffffffffffffffffffffffffffffffffff1614611244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123b906139f0565b60405180910390fd5b61124e6000612517565b565b611258611ca1565b73ffffffffffffffffffffffffffffffffffffffff166112766112d6565b73ffffffffffffffffffffffffffffffffffffffff16146112cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c3906139f0565b60405180910390fd5b80600b8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611308611ca1565b73ffffffffffffffffffffffffffffffffffffffff166113266112d6565b73ffffffffffffffffffffffffffffffffffffffff161461137c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611373906139f0565b60405180910390fd5b8060098190555050565b60606002805461139590613f40565b80601f01602080910402602001604051908101604052809291908181526020018280546113c190613f40565b801561140e5780601f106113e35761010080835404028352916020019161140e565b820191906000526020600020905b8154815290600101906020018083116113f157829003601f168201915b5050505050905090565b611420611ca1565b73ffffffffffffffffffffffffffffffffffffffff1661143e6112d6565b73ffffffffffffffffffffffffffffffffffffffff1614611494576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148b906139f0565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b600e60009054906101000a900460ff1661150f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150690613a70565b60405180910390fd5b6000811180156115215750600b548111155b611560576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155790613af0565b60405180910390fd5b600a548161156c610bc7565b6115769190613cfb565b11156115b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ae90613bb0565b60405180910390fd5b806009546115c59190613d82565b341015611607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fe90613950565b60405180910390fd5b61161133826125dd565b50565b61161c611ca1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561168a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168190613a30565b60405180910390fd5b8060066000611697611ca1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611744611ca1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117899190613853565b60405180910390a35050565b600e60009054906101000a900460ff166117e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117db90613a70565b60405180910390fd5b6000811180156117f65750600c548111155b611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c90613990565b60405180910390fd5b600a5481611841610bc7565b61184b9190613cfb565b111561188c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188390613bb0565b60405180910390fd5b600d5481611898610bc7565b6118a29190613cfb565b11156118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da90613930565b60405180910390fd5b6118ed33826125dd565b50565b600c5481565b611901848484611d5b565b61190d848484846125fb565b61194c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194390613ab0565b60405180910390fd5b50505050565b606061195d82611c94565b61199c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199390613a10565b60405180910390fd5b60006119a6612792565b905060008151116119c657604051806020016040528060008152506119f1565b806119d084612824565b6040516020016119e19291906137bd565b6040516020818303038152906040525b915050919050565b600b5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611aa1611ca1565b73ffffffffffffffffffffffffffffffffffffffff16611abf6112d6565b73ffffffffffffffffffffffffffffffffffffffff1614611b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0c906139f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c906138b0565b60405180910390fd5b611b8e81612517565b50565b600e60009054906101000a900460ff1681565b611bac611ca1565b73ffffffffffffffffffffffffffffffffffffffff16611bca6112d6565b73ffffffffffffffffffffffffffffffffffffffff1614611c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c17906139f0565b60405180910390fd5b80600d8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611d6682612314565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d8d611ca1565b73ffffffffffffffffffffffffffffffffffffffff161480611de95750611db2611ca1565b73ffffffffffffffffffffffffffffffffffffffff16611dd184610a29565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e055750611e048260000151611dff611ca1565b611a05565b5b905080611e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3e90613a50565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb0906139d0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2090613910565b60405180910390fd5b611f368585856001612985565b611f466000848460000151611ca9565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611fb49190613ddc565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166120589190613cb5565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461215e9190613cfb565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156122a4576121d481611c94565b156122a3576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461230c868686600161298b565b505050505050565b61231c612f09565b61232582611c94565b612364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235b906138d0565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000f83106123c85760017f000000000000000000000000000000000000000000000000000000000000000f846123bb9190613e10565b6123c59190613cfb565b90505b60008390505b8181106124d6576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124c257809350505050612512565b5080806124ce90613f16565b9150506123ce565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250990613b50565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125f7828260405180602001604052806000815250612991565b5050565b600061261c8473ffffffffffffffffffffffffffffffffffffffff16612e70565b15612785578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612645611ca1565b8786866040518563ffffffff1660e01b81526004016126679493929190613807565b602060405180830381600087803b15801561268157600080fd5b505af19250505080156126b257506040513d601f19601f820116820180604052508101906126af9190613299565b60015b612735573d80600081146126e2576040519150601f19603f3d011682016040523d82523d6000602084013e6126e7565b606091505b5060008151141561272d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272490613ab0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061278a565b600190505b949350505050565b6060600f80546127a190613f40565b80601f01602080910402602001604051908101604052809291908181526020018280546127cd90613f40565b801561281a5780601f106127ef5761010080835404028352916020019161281a565b820191906000526020600020905b8154815290600101906020018083116127fd57829003601f168201915b5050505050905090565b6060600082141561286c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612980565b600082905060005b6000821461289e57808061288790613fa3565b915050600a826128979190613d51565b9150612874565b60008167ffffffffffffffff8111156128ba576128b96140d9565b5b6040519080825280601f01601f1916602001820160405280156128ec5781602001600182028036833780820191505090505b5090505b60008514612979576001826129059190613e10565b9150600a856129149190613fec565b60306129209190613cfb565b60f81b818381518110612936576129356140aa565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129729190613d51565b94506128f0565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fe90613b10565b60405180910390fd5b612a1081611c94565b15612a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4790613ad0565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000f831115612ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aaa90613b90565b60405180910390fd5b612ac06000858386612985565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612bbd9190613cb5565b6fffffffffffffffffffffffffffffffff168152602001858360200151612be49190613cb5565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612e5357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612df360008884886125fb565b612e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2990613ab0565b60405180910390fd5b8180612e3d90613fa3565b9250508080612e4b90613fa3565b915050612d82565b5080600081905550612e68600087858861298b565b505050505050565b600080823b905060008111915050919050565b828054612e8f90613f40565b90600052602060002090601f016020900481019282612eb15760008555612ef8565b82601f10612eca57805160ff1916838001178555612ef8565b82800160010185558215612ef8579182015b82811115612ef7578251825591602001919060010190612edc565b5b509050612f059190612f43565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612f5c576000816000905550600101612f44565b5090565b6000612f73612f6e84613c10565b613beb565b905082815260208101848484011115612f8f57612f8e61410d565b5b612f9a848285613ed4565b509392505050565b6000612fb5612fb084613c41565b613beb565b905082815260208101848484011115612fd157612fd061410d565b5b612fdc848285613ed4565b509392505050565b600081359050612ff381614878565b92915050565b6000813590506130088161488f565b92915050565b60008135905061301d816148a6565b92915050565b600081519050613032816148a6565b92915050565b600082601f83011261304d5761304c614108565b5b813561305d848260208601612f60565b91505092915050565b600082601f83011261307b5761307a614108565b5b813561308b848260208601612fa2565b91505092915050565b6000813590506130a3816148bd565b92915050565b6000602082840312156130bf576130be614117565b5b60006130cd84828501612fe4565b91505092915050565b600080604083850312156130ed576130ec614117565b5b60006130fb85828601612fe4565b925050602061310c85828601612fe4565b9150509250929050565b60008060006060848603121561312f5761312e614117565b5b600061313d86828701612fe4565b935050602061314e86828701612fe4565b925050604061315f86828701613094565b9150509250925092565b6000806000806080858703121561318357613182614117565b5b600061319187828801612fe4565b94505060206131a287828801612fe4565b93505060406131b387828801613094565b925050606085013567ffffffffffffffff8111156131d4576131d3614112565b5b6131e087828801613038565b91505092959194509250565b6000806040838503121561320357613202614117565b5b600061321185828601612fe4565b925050602061322285828601612ff9565b9150509250929050565b6000806040838503121561324357613242614117565b5b600061325185828601612fe4565b925050602061326285828601613094565b9150509250929050565b60006020828403121561328257613281614117565b5b60006132908482850161300e565b91505092915050565b6000602082840312156132af576132ae614117565b5b60006132bd84828501613023565b91505092915050565b6000602082840312156132dc576132db614117565b5b600082013567ffffffffffffffff8111156132fa576132f9614112565b5b61330684828501613066565b91505092915050565b60006020828403121561332557613324614117565b5b600061333384828501613094565b91505092915050565b61334581613e44565b82525050565b61335481613e56565b82525050565b600061336582613c72565b61336f8185613c88565b935061337f818560208601613ee3565b6133888161411c565b840191505092915050565b600061339e82613c7d565b6133a88185613c99565b93506133b8818560208601613ee3565b6133c18161411c565b840191505092915050565b60006133d782613c7d565b6133e18185613caa565b93506133f1818560208601613ee3565b80840191505092915050565b600061340a602283613c99565b91506134158261412d565b604082019050919050565b600061342d602683613c99565b91506134388261417c565b604082019050919050565b6000613450602a83613c99565b915061345b826141cb565b604082019050919050565b6000613473602383613c99565b915061347e8261421a565b604082019050919050565b6000613496602583613c99565b91506134a182614269565b604082019050919050565b60006134b9601c83613c99565b91506134c4826142b8565b602082019050919050565b60006134dc602283613c99565b91506134e7826142e1565b604082019050919050565b60006134ff603983613c99565b915061350a82614330565b604082019050919050565b6000613522602c83613c99565b915061352d8261437f565b604082019050919050565b6000613545602b83613c99565b9150613550826143ce565b604082019050919050565b6000613568602683613c99565b91506135738261441d565b604082019050919050565b600061358b600583613caa565b91506135968261446c565b600582019050919050565b60006135ae602083613c99565b91506135b982614495565b602082019050919050565b60006135d1602f83613c99565b91506135dc826144be565b604082019050919050565b60006135f4601a83613c99565b91506135ff8261450d565b602082019050919050565b6000613617603283613c99565b915061362282614536565b604082019050919050565b600061363a601c83613c99565b915061364582614585565b602082019050919050565b600061365d602283613c99565b9150613668826145ae565b604082019050919050565b6000613680603383613c99565b915061368b826145fd565b604082019050919050565b60006136a3601d83613c99565b91506136ae8261464c565b602082019050919050565b60006136c6602883613c99565b91506136d182614675565b604082019050919050565b60006136e9602183613c99565b91506136f4826146c4565b604082019050919050565b600061370c602e83613c99565b915061371782614713565b604082019050919050565b600061372f602f83613c99565b915061373a82614762565b604082019050919050565b6000613752602d83613c99565b915061375d826147b1565b604082019050919050565b6000613775602283613c99565b915061378082614800565b604082019050919050565b6000613798600c83613c99565b91506137a38261484f565b602082019050919050565b6137b781613eca565b82525050565b60006137c982856133cc565b91506137d582846133cc565b91506137e08261357e565b91508190509392505050565b6000602082019050613801600083018461333c565b92915050565b600060808201905061381c600083018761333c565b613829602083018661333c565b61383660408301856137ae565b8181036060830152613848818461335a565b905095945050505050565b6000602082019050613868600083018461334b565b92915050565b600060208201905081810360008301526138888184613393565b905092915050565b600060208201905081810360008301526138a9816133fd565b9050919050565b600060208201905081810360008301526138c981613420565b9050919050565b600060208201905081810360008301526138e981613443565b9050919050565b6000602082019050818103600083015261390981613466565b9050919050565b6000602082019050818103600083015261392981613489565b9050919050565b60006020820190508181036000830152613949816134ac565b9050919050565b60006020820190508181036000830152613969816134cf565b9050919050565b60006020820190508181036000830152613989816134f2565b9050919050565b600060208201905081810360008301526139a981613515565b9050919050565b600060208201905081810360008301526139c981613538565b9050919050565b600060208201905081810360008301526139e98161355b565b9050919050565b60006020820190508181036000830152613a09816135a1565b9050919050565b60006020820190508181036000830152613a29816135c4565b9050919050565b60006020820190508181036000830152613a49816135e7565b9050919050565b60006020820190508181036000830152613a698161360a565b9050919050565b60006020820190508181036000830152613a898161362d565b9050919050565b60006020820190508181036000830152613aa981613650565b9050919050565b60006020820190508181036000830152613ac981613673565b9050919050565b60006020820190508181036000830152613ae981613696565b9050919050565b60006020820190508181036000830152613b09816136b9565b9050919050565b60006020820190508181036000830152613b29816136dc565b9050919050565b60006020820190508181036000830152613b49816136ff565b9050919050565b60006020820190508181036000830152613b6981613722565b9050919050565b60006020820190508181036000830152613b8981613745565b9050919050565b60006020820190508181036000830152613ba981613768565b9050919050565b60006020820190508181036000830152613bc98161378b565b9050919050565b6000602082019050613be560008301846137ae565b92915050565b6000613bf5613c06565b9050613c018282613f72565b919050565b6000604051905090565b600067ffffffffffffffff821115613c2b57613c2a6140d9565b5b613c348261411c565b9050602081019050919050565b600067ffffffffffffffff821115613c5c57613c5b6140d9565b5b613c658261411c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613cc082613e8e565b9150613ccb83613e8e565b9250826fffffffffffffffffffffffffffffffff03821115613cf057613cef61401d565b5b828201905092915050565b6000613d0682613eca565b9150613d1183613eca565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d4657613d4561401d565b5b828201905092915050565b6000613d5c82613eca565b9150613d6783613eca565b925082613d7757613d7661404c565b5b828204905092915050565b6000613d8d82613eca565b9150613d9883613eca565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613dd157613dd061401d565b5b828202905092915050565b6000613de782613e8e565b9150613df283613e8e565b925082821015613e0557613e0461401d565b5b828203905092915050565b6000613e1b82613eca565b9150613e2683613eca565b925082821015613e3957613e3861401d565b5b828203905092915050565b6000613e4f82613eaa565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f01578082015181840152602081019050613ee6565b83811115613f10576000848401525b50505050565b6000613f2182613eca565b91506000821415613f3557613f3461401d565b5b600182039050919050565b60006002820490506001821680613f5857607f821691505b60208210811415613f6c57613f6b61407b565b5b50919050565b613f7b8261411c565b810181811067ffffffffffffffff82111715613f9a57613f996140d9565b5b80604052505050565b6000613fae82613eca565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fe157613fe061401d565b5b600182019050919050565b6000613ff782613eca565b915061400283613eca565b9250826140125761401161404c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f546865726520617265206e6f2066726565206d696e7473206c65667400000000600082015250565b7f416d6f756e74206f662065746865722073656e74206973206e6f7420656e6f7560008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f596f752063616e206f6e6c792066726565206d696e74206265747765656e203160008201527f20616e6420352063756273210000000000000000000000000000000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f5468652073616c6520686173206e6f7420737461727465642079657400000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f596f752063616e206f6e6c79206d696e74206265747765656e203120616e642060008201527f3135206375627321000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2063756273206c6566740000000000000000000000000000000000000000600082015250565b61488181613e44565b811461488c57600080fd5b50565b61489881613e56565b81146148a357600080fd5b50565b6148af81613e62565b81146148ba57600080fd5b50565b6148c681613eca565b81146148d157600080fd5b5056fea2646970667358221220f4a6a7441ea11d58907dc6317ae20d54f78c56ce2446533420fa8108df9358a064736f6c63430008070033

Deployed Bytecode Sourcemap

39759:2153:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24886:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26612:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28146:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27709:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23447:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28996:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24078:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39857:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41469:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41797:112;;;;;;;;;;;;;:::i;:::-;;29201:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23610:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41160:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26435:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39806:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40056:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39976:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25312:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38878:103;;;;;;;;;;;;;:::i;:::-;;41370:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38227:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41270:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26767:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41065:87;;;;;;;;;;;;;:::i;:::-;;40173:434;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28414:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40615:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39932:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29421:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26928:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39896:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33836:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28751:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39136:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40016:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41573:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24886:370;25013:4;25058:25;25043:40;;;:11;:40;;;;:99;;;;25109:33;25094:48;;;:11;:48;;;;25043:99;:160;;;;25168:35;25153:50;;;:11;:50;;;;25043:160;:207;;;;25214:36;25238:11;25214:23;:36::i;:::-;25043:207;25029:221;;24886:370;;;:::o;26612:94::-;26666:13;26695:5;26688:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26612:94;:::o;28146:204::-;28214:7;28238:16;28246:7;28238;:16::i;:::-;28230:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;28320:15;:24;28336:7;28320:24;;;;;;;;;;;;;;;;;;;;;28313:31;;28146:204;;;:::o;27709:379::-;27778:13;27794:24;27810:7;27794:15;:24::i;:::-;27778:40;;27839:5;27833:11;;:2;:11;;;;27825:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27924:5;27908:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27933:37;27950:5;27957:12;:10;:12::i;:::-;27933:16;:37::i;:::-;27908:62;27892:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;28054:28;28063:2;28067:7;28076:5;28054:8;:28::i;:::-;27771:317;27709:379;;:::o;23447:94::-;23500:7;23523:12;;23516:19;;23447:94;:::o;28996:142::-;29104:28;29114:4;29120:2;29124:7;29104:9;:28::i;:::-;28996:142;;;:::o;24078:744::-;24187:7;24222:16;24232:5;24222:9;:16::i;:::-;24214:5;:24;24206:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;24284:22;24309:13;:11;:13::i;:::-;24284:38;;24329:19;24359:25;24409:9;24404:350;24428:14;24424:1;:18;24404:350;;;24458:31;24492:11;:14;24504:1;24492:14;;;;;;;;;;;24458:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24545:1;24519:28;;:9;:14;;;:28;;;24515:89;;24580:9;:14;;;24560:34;;24515:89;24637:5;24616:26;;:17;:26;;;24612:135;;;24674:5;24659:11;:20;24655:59;;;24701:1;24694:8;;;;;;;;;24655:59;24724:13;;;;;:::i;:::-;;;;24612:135;24449:305;24444:3;;;;;:::i;:::-;;;;24404:350;;;;24760:56;;;;;;;;;;:::i;:::-;;;;;;;;24078:744;;;;;:::o;39857:32::-;;;;:::o;41469:96::-;38458:12;:10;:12::i;:::-;38447:23;;:7;:5;:7::i;:::-;:23;;;38439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41548:9:::1;41535:10;:22;;;;41469:96:::0;:::o;41797:112::-;38458:12;:10;:12::i;:::-;38447:23;;:7;:5;:7::i;:::-;:23;;;38439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41861:10:::1;41853:24;;:47;41878:21;41853:47;;;;;;;;;;;;;;;;;;;;;;;41845:56;;;::::0;::::1;;41797:112::o:0;29201:157::-;29313:39;29330:4;29336:2;29340:7;29313:39;;;;;;;;;;;;:16;:39::i;:::-;29201:157;;;:::o;23610:177::-;23677:7;23709:13;:11;:13::i;:::-;23701:5;:21;23693:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;23776:5;23769:12;;23610:177;;;:::o;41160:102::-;38458:12;:10;:12::i;:::-;38447:23;;:7;:5;:7::i;:::-;:23;;;38439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41244:10:::1;41234:7;:20;;;;;;;;;;;;:::i;:::-;;41160:102:::0;:::o;26435:118::-;26499:7;26522:20;26534:7;26522:11;:20::i;:::-;:25;;;26515:32;;26435:118;;;:::o;39806:44::-;;;;:::o;40056:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39976:31::-;;;;:::o;25312:211::-;25376:7;25417:1;25400:19;;:5;:19;;;;25392:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;25489:12;:19;25502:5;25489:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25481:36;;25474:43;;25312:211;;;:::o;38878:103::-;38458:12;:10;:12::i;:::-;38447:23;;:7;:5;:7::i;:::-;:23;;;38439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38943:30:::1;38970:1;38943:18;:30::i;:::-;38878:103::o:0;41370:91::-;38458:12;:10;:12::i;:::-;38447:23;;:7;:5;:7::i;:::-;:23;;;38439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41447:6:::1;41435:9;:18;;;;41370:91:::0;:::o;38227:87::-;38273:7;38300:6;;;;;;;;;;;38293:13;;38227:87;:::o;41270:92::-;38458:12;:10;:12::i;:::-;38447:23;;:7;:5;:7::i;:::-;:23;;;38439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41346:8:::1;41334:9;:20;;;;41270:92:::0;:::o;26767:98::-;26823:13;26852:7;26845:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26767:98;:::o;41065:87::-;38458:12;:10;:12::i;:::-;38447:23;;:7;:5;:7::i;:::-;:23;;;38439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41133:11:::1;;;;;;;;;;;41132:12;41118:11;;:26;;;;;;;;;;;;;;;;;;41065:87::o:0;40173:434::-;40240:11;;;;;;;;;;;40232:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;40315:1;40303:9;:13;:39;;;;;40333:9;;40320;:22;;40303:39;40295:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;40435:10;;40422:9;40406:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;40398:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;40506:9;40494;;:21;;;;:::i;:::-;40481:9;:34;;40473:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;40567:32;40577:10;40589:9;40567;:32::i;:::-;40173:434;:::o;28414:274::-;28517:12;:10;:12::i;:::-;28505:24;;:8;:24;;;;28497:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;28614:8;28569:18;:32;28588:12;:10;:12::i;:::-;28569:32;;;;;;;;;;;;;;;:42;28602:8;28569:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;28663:8;28634:48;;28649:12;:10;:12::i;:::-;28634:48;;;28673:8;28634:48;;;;;;:::i;:::-;;;;;;;;28414:274;;:::o;40615:442::-;40678:11;;;;;;;;;;;40670:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;40753:1;40741:9;:13;:48;;;;;40771:18;;40758:9;:31;;40741:48;40733:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;40886:10;;40873:9;40857:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;40849:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;40961:10;;40948:9;40932:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;40924:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;41017:32;41027:10;41039:9;41017;:32::i;:::-;40615:442;:::o;39932:37::-;;;;:::o;29421:311::-;29558:28;29568:4;29574:2;29578:7;29558:9;:28::i;:::-;29609:48;29632:4;29638:2;29642:7;29651:5;29609:22;:48::i;:::-;29593:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;29421:311;;;;:::o;26928:403::-;27026:13;27067:16;27075:7;27067;:16::i;:::-;27051:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;27157:21;27181:10;:8;:10::i;:::-;27157:34;;27236:1;27218:7;27212:21;:25;:113;;;;;;;;;;;;;;;;;27273:7;27282:18;:7;:16;:18::i;:::-;27256:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27212:113;27198:127;;;26928:403;;;:::o;39896:29::-;;;;:::o;33836:43::-;;;;:::o;28751:186::-;28873:4;28896:18;:25;28915:5;28896:25;;;;;;;;;;;;;;;:35;28922:8;28896:35;;;;;;;;;;;;;;;;;;;;;;;;;28889:42;;28751:186;;;;:::o;39136:238::-;38458:12;:10;:12::i;:::-;38447:23;;:7;:5;:7::i;:::-;:23;;;38439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39259:1:::1;39239:22;;:8;:22;;;;39217:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;39338:28;39357:8;39338:18;:28::i;:::-;39136:238:::0;:::o;40016:31::-;;;;;;;;;;;;;:::o;41573:100::-;38458:12;:10;:12::i;:::-;38447:23;;:7;:5;:7::i;:::-;:23;;;38439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41656:9:::1;41643:10;:22;;;;41573:100:::0;:::o;8458:207::-;8588:4;8632:25;8617:40;;;:11;:40;;;;8610:47;;8458:207;;;:::o;29971:105::-;30028:4;30058:12;;30048:7;:22;30041:29;;29971:105;;;:::o;17857:98::-;17910:7;17937:10;17930:17;;17857:98;:::o;33658:172::-;33782:2;33755:15;:24;33771:7;33755:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33816:7;33812:2;33796:28;;33805:5;33796:28;;;;;;;;;;;;33658:172;;;:::o;32023:1529::-;32120:35;32158:20;32170:7;32158:11;:20::i;:::-;32120:58;;32187:22;32229:13;:18;;;32213:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;32282:12;:10;:12::i;:::-;32258:36;;:20;32270:7;32258:11;:20::i;:::-;:36;;;32213:81;:142;;;;32305:50;32322:13;:18;;;32342:12;:10;:12::i;:::-;32305:16;:50::i;:::-;32213:142;32187:169;;32381:17;32365:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;32513:4;32491:26;;:13;:18;;;:26;;;32475:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;32602:1;32588:16;;:2;:16;;;;32580:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;32655:43;32677:4;32683:2;32687:7;32696:1;32655:21;:43::i;:::-;32755:49;32772:1;32776:7;32785:13;:18;;;32755:8;:49::i;:::-;32843:1;32813:12;:18;32826:4;32813:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32879:1;32851:12;:16;32864:2;32851:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32910:43;;;;;;;;32925:2;32910:43;;;;;;32936:15;32910:43;;;;;32887:11;:20;32899:7;32887:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33181:19;33213:1;33203:7;:11;;;;:::i;:::-;33181:33;;33266:1;33225:43;;:11;:24;33237:11;33225:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;33221:236;;;33283:20;33291:11;33283:7;:20::i;:::-;33279:171;;;33343:97;;;;;;;;33370:13;:18;;;33343:97;;;;;;33401:13;:28;;;33343:97;;;;;33316:11;:24;33328:11;33316:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33279:171;33221:236;33489:7;33485:2;33470:27;;33479:4;33470:27;;;;;;;;;;;;33504:42;33525:4;33531:2;33535:7;33544:1;33504:20;:42::i;:::-;32113:1439;;;32023:1529;;;:::o;25775:606::-;25851:21;;:::i;:::-;25892:16;25900:7;25892;:16::i;:::-;25884:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;25964:26;26012:12;26001:7;:23;25997:93;;26081:1;26066:12;26056:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;26035:47;;25997:93;26103:12;26118:7;26103:22;;26098:212;26135:18;26127:4;:26;26098:212;;26172:31;26206:11;:17;26218:4;26206:17;;;;;;;;;;;26172:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26262:1;26236:28;;:9;:14;;;:28;;;26232:71;;26284:9;26277:16;;;;;;;26232:71;26163:147;26155:6;;;;;:::i;:::-;;;;26098:212;;;;26318:57;;;;;;;;;;:::i;:::-;;;;;;;;25775:606;;;;:::o;39534:191::-;39608:16;39627:6;;;;;;;;;;;39608:25;;39653:8;39644:6;;:17;;;;;;;;;;;;;;;;;;39708:8;39677:40;;39698:8;39677:40;;;;;;;;;;;;39597:128;39534:191;:::o;30082:98::-;30147:27;30157:2;30161:8;30147:27;;;;;;;;;;;;:9;:27::i;:::-;30082:98;;:::o;35373:690::-;35510:4;35527:15;:2;:13;;;:15::i;:::-;35523:535;;;35582:2;35566:36;;;35603:12;:10;:12::i;:::-;35617:4;35623:7;35632:5;35566:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35553:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35814:1;35797:6;:13;:18;35793:215;;;35830:61;;;;;;;;;;:::i;:::-;;;;;;;;35793:215;35976:6;35970:13;35961:6;35957:2;35953:15;35946:38;35553:464;35698:45;;;35688:55;;;:6;:55;;;;35681:62;;;;;35523:535;36046:4;36039:11;;35373:690;;;;;;;:::o;41681:108::-;41741:13;41774:7;41767:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41681:108;:::o;18380:723::-;18436:13;18666:1;18657:5;:10;18653:53;;;18684:10;;;;;;;;;;;;;;;;;;;;;18653:53;18716:12;18731:5;18716:20;;18747:14;18772:78;18787:1;18779:4;:9;18772:78;;18805:8;;;;;:::i;:::-;;;;18836:2;18828:10;;;;;:::i;:::-;;;18772:78;;;18860:19;18892:6;18882:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18860:39;;18910:154;18926:1;18917:5;:10;18910:154;;18954:1;18944:11;;;;;:::i;:::-;;;19021:2;19013:5;:10;;;;:::i;:::-;19000:2;:24;;;;:::i;:::-;18987:39;;18970:6;18977;18970:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;19050:2;19041:11;;;;;:::i;:::-;;;18910:154;;;19088:6;19074:21;;;;;18380:723;;;;:::o;36525:141::-;;;;;:::o;37052:140::-;;;;;:::o;30519:1272::-;30624:20;30647:12;;30624:35;;30688:1;30674:16;;:2;:16;;;;30666:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;30865:21;30873:12;30865:7;:21::i;:::-;30864:22;30856:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30947:12;30935:8;:24;;30927:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;31007:61;31037:1;31041:2;31045:12;31059:8;31007:21;:61::i;:::-;31077:30;31110:12;:16;31123:2;31110:16;;;;;;;;;;;;;;;31077:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31152:119;;;;;;;;31202:8;31172:11;:19;;;:39;;;;:::i;:::-;31152:119;;;;;;31255:8;31220:11;:24;;;:44;;;;:::i;:::-;31152:119;;;;;31133:12;:16;31146:2;31133:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31306:43;;;;;;;;31321:2;31306:43;;;;;;31332:15;31306:43;;;;;31278:11;:25;31290:12;31278:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31358:20;31381:12;31358:35;;31407:9;31402:281;31426:8;31422:1;:12;31402:281;;;31480:12;31476:2;31455:38;;31472:1;31455:38;;;;;;;;;;;;31520:59;31551:1;31555:2;31559:12;31573:5;31520:22;:59::i;:::-;31502:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;31661:14;;;;;:::i;:::-;;;;31436:3;;;;;:::i;:::-;;;;31402:281;;;;31706:12;31691;:27;;;;31725:60;31754:1;31758:2;31762:12;31776:8;31725:20;:60::i;:::-;30617:1174;;;30519:1272;;;:::o;9436:387::-;9496:4;9704:12;9771:7;9759:20;9751:28;;9814:1;9807:4;:8;9800:15;;;9436:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:::-;9030:3;9051:67;9115:2;9110:3;9051:67;:::i;:::-;9044:74;;9127:93;9216:3;9127:93;:::i;:::-;9245:2;9240:3;9236:12;9229:19;;8888:366;;;:::o;9260:::-;9402:3;9423:67;9487:2;9482:3;9423:67;:::i;:::-;9416:74;;9499:93;9588:3;9499:93;:::i;:::-;9617:2;9612:3;9608:12;9601:19;;9260:366;;;:::o;9632:::-;9774:3;9795:67;9859:2;9854:3;9795:67;:::i;:::-;9788:74;;9871:93;9960:3;9871:93;:::i;:::-;9989:2;9984:3;9980:12;9973:19;;9632:366;;;:::o;10004:::-;10146:3;10167:67;10231:2;10226:3;10167:67;:::i;:::-;10160:74;;10243:93;10332:3;10243:93;:::i;:::-;10361:2;10356:3;10352:12;10345:19;;10004:366;;;:::o;10376:::-;10518:3;10539:67;10603:2;10598:3;10539:67;:::i;:::-;10532:74;;10615:93;10704:3;10615:93;:::i;:::-;10733:2;10728:3;10724:12;10717:19;;10376:366;;;:::o;10748:::-;10890:3;10911:67;10975:2;10970:3;10911:67;:::i;:::-;10904:74;;10987:93;11076:3;10987:93;:::i;:::-;11105:2;11100:3;11096:12;11089:19;;10748:366;;;:::o;11120:::-;11262:3;11283:67;11347:2;11342:3;11283:67;:::i;:::-;11276:74;;11359:93;11448:3;11359:93;:::i;:::-;11477:2;11472:3;11468:12;11461:19;;11120:366;;;:::o;11492:::-;11634:3;11655:67;11719:2;11714:3;11655:67;:::i;:::-;11648:74;;11731:93;11820:3;11731:93;:::i;:::-;11849:2;11844:3;11840:12;11833:19;;11492:366;;;:::o;11864:::-;12006:3;12027:67;12091:2;12086:3;12027:67;:::i;:::-;12020:74;;12103:93;12192:3;12103:93;:::i;:::-;12221:2;12216:3;12212:12;12205:19;;11864:366;;;:::o;12236:::-;12378:3;12399:67;12463:2;12458:3;12399:67;:::i;:::-;12392:74;;12475:93;12564:3;12475:93;:::i;:::-;12593:2;12588:3;12584:12;12577:19;;12236:366;;;:::o;12608:400::-;12768:3;12789:84;12871:1;12866:3;12789:84;:::i;:::-;12782:91;;12882:93;12971:3;12882:93;:::i;:::-;13000:1;12995:3;12991:11;12984:18;;12608:400;;;:::o;13014:366::-;13156:3;13177:67;13241:2;13236:3;13177:67;:::i;:::-;13170:74;;13253:93;13342:3;13253:93;:::i;:::-;13371:2;13366:3;13362:12;13355:19;;13014:366;;;:::o;13386:::-;13528:3;13549:67;13613:2;13608:3;13549:67;:::i;:::-;13542:74;;13625:93;13714:3;13625:93;:::i;:::-;13743:2;13738:3;13734:12;13727:19;;13386:366;;;:::o;13758:::-;13900:3;13921:67;13985:2;13980:3;13921:67;:::i;:::-;13914:74;;13997:93;14086:3;13997:93;:::i;:::-;14115:2;14110:3;14106:12;14099:19;;13758:366;;;:::o;14130:::-;14272:3;14293:67;14357:2;14352:3;14293:67;:::i;:::-;14286:74;;14369:93;14458:3;14369:93;:::i;:::-;14487:2;14482:3;14478:12;14471:19;;14130:366;;;:::o;14502:::-;14644:3;14665:67;14729:2;14724:3;14665:67;:::i;:::-;14658:74;;14741:93;14830:3;14741:93;:::i;:::-;14859:2;14854:3;14850:12;14843:19;;14502:366;;;:::o;14874:::-;15016:3;15037:67;15101:2;15096:3;15037:67;:::i;:::-;15030:74;;15113:93;15202:3;15113:93;:::i;:::-;15231:2;15226:3;15222:12;15215:19;;14874:366;;;:::o;15246:::-;15388:3;15409:67;15473:2;15468:3;15409:67;:::i;:::-;15402:74;;15485:93;15574:3;15485:93;:::i;:::-;15603:2;15598:3;15594:12;15587:19;;15246:366;;;:::o;15618:::-;15760:3;15781:67;15845:2;15840:3;15781:67;:::i;:::-;15774:74;;15857:93;15946:3;15857:93;:::i;:::-;15975:2;15970:3;15966:12;15959:19;;15618:366;;;:::o;15990:::-;16132:3;16153:67;16217:2;16212:3;16153:67;:::i;:::-;16146:74;;16229:93;16318:3;16229:93;:::i;:::-;16347:2;16342:3;16338:12;16331:19;;15990:366;;;:::o;16362:::-;16504:3;16525:67;16589:2;16584:3;16525:67;:::i;:::-;16518:74;;16601:93;16690:3;16601:93;:::i;:::-;16719:2;16714:3;16710:12;16703:19;;16362:366;;;:::o;16734:::-;16876:3;16897:67;16961:2;16956:3;16897:67;:::i;:::-;16890:74;;16973:93;17062:3;16973:93;:::i;:::-;17091:2;17086:3;17082:12;17075:19;;16734:366;;;:::o;17106:::-;17248:3;17269:67;17333:2;17328:3;17269:67;:::i;:::-;17262:74;;17345:93;17434:3;17345:93;:::i;:::-;17463:2;17458:3;17454:12;17447:19;;17106:366;;;:::o;17478:::-;17620:3;17641:67;17705:2;17700:3;17641:67;:::i;:::-;17634:74;;17717:93;17806:3;17717:93;:::i;:::-;17835:2;17830:3;17826:12;17819:19;;17478:366;;;:::o;17850:::-;17992:3;18013:67;18077:2;18072:3;18013:67;:::i;:::-;18006:74;;18089:93;18178:3;18089:93;:::i;:::-;18207:2;18202:3;18198:12;18191:19;;17850:366;;;:::o;18222:::-;18364:3;18385:67;18449:2;18444:3;18385:67;:::i;:::-;18378:74;;18461:93;18550:3;18461:93;:::i;:::-;18579:2;18574:3;18570:12;18563:19;;18222:366;;;:::o;18594:118::-;18681:24;18699:5;18681:24;:::i;:::-;18676:3;18669:37;18594:118;;:::o;18718:701::-;18999:3;19021:95;19112:3;19103:6;19021:95;:::i;:::-;19014:102;;19133:95;19224:3;19215:6;19133:95;:::i;:::-;19126:102;;19245:148;19389:3;19245:148;:::i;:::-;19238:155;;19410:3;19403:10;;18718:701;;;;;:::o;19425:222::-;19518:4;19556:2;19545:9;19541:18;19533:26;;19569:71;19637:1;19626:9;19622:17;19613:6;19569:71;:::i;:::-;19425:222;;;;:::o;19653:640::-;19848:4;19886:3;19875:9;19871:19;19863:27;;19900:71;19968:1;19957:9;19953:17;19944:6;19900:71;:::i;:::-;19981:72;20049:2;20038:9;20034:18;20025:6;19981:72;:::i;:::-;20063;20131:2;20120:9;20116:18;20107:6;20063:72;:::i;:::-;20182:9;20176:4;20172:20;20167:2;20156:9;20152:18;20145:48;20210:76;20281:4;20272:6;20210:76;:::i;:::-;20202:84;;19653:640;;;;;;;:::o;20299:210::-;20386:4;20424:2;20413:9;20409:18;20401:26;;20437:65;20499:1;20488:9;20484:17;20475:6;20437:65;:::i;:::-;20299:210;;;;:::o;20515:313::-;20628:4;20666:2;20655:9;20651:18;20643:26;;20715:9;20709:4;20705:20;20701:1;20690:9;20686:17;20679:47;20743:78;20816:4;20807:6;20743:78;:::i;:::-;20735:86;;20515:313;;;;:::o;20834:419::-;21000:4;21038:2;21027:9;21023:18;21015:26;;21087:9;21081:4;21077:20;21073:1;21062:9;21058:17;21051:47;21115:131;21241:4;21115:131;:::i;:::-;21107:139;;20834:419;;;:::o;21259:::-;21425:4;21463:2;21452:9;21448:18;21440:26;;21512:9;21506:4;21502:20;21498:1;21487:9;21483:17;21476:47;21540:131;21666:4;21540:131;:::i;:::-;21532:139;;21259:419;;;:::o;21684:::-;21850:4;21888:2;21877:9;21873:18;21865:26;;21937:9;21931:4;21927:20;21923:1;21912:9;21908:17;21901:47;21965:131;22091:4;21965:131;:::i;:::-;21957:139;;21684:419;;;:::o;22109:::-;22275:4;22313:2;22302:9;22298:18;22290:26;;22362:9;22356:4;22352:20;22348:1;22337:9;22333:17;22326:47;22390:131;22516:4;22390:131;:::i;:::-;22382:139;;22109:419;;;:::o;22534:::-;22700:4;22738:2;22727:9;22723:18;22715:26;;22787:9;22781:4;22777:20;22773:1;22762:9;22758:17;22751:47;22815:131;22941:4;22815:131;:::i;:::-;22807:139;;22534:419;;;:::o;22959:::-;23125:4;23163:2;23152:9;23148:18;23140:26;;23212:9;23206:4;23202:20;23198:1;23187:9;23183:17;23176:47;23240:131;23366:4;23240:131;:::i;:::-;23232:139;;22959:419;;;:::o;23384:::-;23550:4;23588:2;23577:9;23573:18;23565:26;;23637:9;23631:4;23627:20;23623:1;23612:9;23608:17;23601:47;23665:131;23791:4;23665:131;:::i;:::-;23657:139;;23384:419;;;:::o;23809:::-;23975:4;24013:2;24002:9;23998:18;23990:26;;24062:9;24056:4;24052:20;24048:1;24037:9;24033:17;24026:47;24090:131;24216:4;24090:131;:::i;:::-;24082:139;;23809:419;;;:::o;24234:::-;24400:4;24438:2;24427:9;24423:18;24415:26;;24487:9;24481:4;24477:20;24473:1;24462:9;24458:17;24451:47;24515:131;24641:4;24515:131;:::i;:::-;24507:139;;24234:419;;;:::o;24659:::-;24825:4;24863:2;24852:9;24848:18;24840:26;;24912:9;24906:4;24902:20;24898:1;24887:9;24883:17;24876:47;24940:131;25066:4;24940:131;:::i;:::-;24932:139;;24659:419;;;:::o;25084:::-;25250:4;25288:2;25277:9;25273:18;25265:26;;25337:9;25331:4;25327:20;25323:1;25312:9;25308:17;25301:47;25365:131;25491:4;25365:131;:::i;:::-;25357:139;;25084:419;;;:::o;25509:::-;25675:4;25713:2;25702:9;25698:18;25690:26;;25762:9;25756:4;25752:20;25748:1;25737:9;25733:17;25726:47;25790:131;25916:4;25790:131;:::i;:::-;25782:139;;25509:419;;;:::o;25934:::-;26100:4;26138:2;26127:9;26123:18;26115:26;;26187:9;26181:4;26177:20;26173:1;26162:9;26158:17;26151:47;26215:131;26341:4;26215:131;:::i;:::-;26207:139;;25934:419;;;:::o;26359:::-;26525:4;26563:2;26552:9;26548:18;26540:26;;26612:9;26606:4;26602:20;26598:1;26587:9;26583:17;26576:47;26640:131;26766:4;26640:131;:::i;:::-;26632:139;;26359:419;;;:::o;26784:::-;26950:4;26988:2;26977:9;26973:18;26965:26;;27037:9;27031:4;27027:20;27023:1;27012:9;27008:17;27001:47;27065:131;27191:4;27065:131;:::i;:::-;27057:139;;26784:419;;;:::o;27209:::-;27375:4;27413:2;27402:9;27398:18;27390:26;;27462:9;27456:4;27452:20;27448:1;27437:9;27433:17;27426:47;27490:131;27616:4;27490:131;:::i;:::-;27482:139;;27209:419;;;:::o;27634:::-;27800:4;27838:2;27827:9;27823:18;27815:26;;27887:9;27881:4;27877:20;27873:1;27862:9;27858:17;27851:47;27915:131;28041:4;27915:131;:::i;:::-;27907:139;;27634:419;;;:::o;28059:::-;28225:4;28263:2;28252:9;28248:18;28240:26;;28312:9;28306:4;28302:20;28298:1;28287:9;28283:17;28276:47;28340:131;28466:4;28340:131;:::i;:::-;28332:139;;28059:419;;;:::o;28484:::-;28650:4;28688:2;28677:9;28673:18;28665:26;;28737:9;28731:4;28727:20;28723:1;28712:9;28708:17;28701:47;28765:131;28891:4;28765:131;:::i;:::-;28757:139;;28484:419;;;:::o;28909:::-;29075:4;29113:2;29102:9;29098:18;29090:26;;29162:9;29156:4;29152:20;29148:1;29137:9;29133:17;29126:47;29190:131;29316:4;29190:131;:::i;:::-;29182:139;;28909:419;;;:::o;29334:::-;29500:4;29538:2;29527:9;29523:18;29515:26;;29587:9;29581:4;29577:20;29573:1;29562:9;29558:17;29551:47;29615:131;29741:4;29615:131;:::i;:::-;29607:139;;29334:419;;;:::o;29759:::-;29925:4;29963:2;29952:9;29948:18;29940:26;;30012:9;30006:4;30002:20;29998:1;29987:9;29983:17;29976:47;30040:131;30166:4;30040:131;:::i;:::-;30032:139;;29759:419;;;:::o;30184:::-;30350:4;30388:2;30377:9;30373:18;30365:26;;30437:9;30431:4;30427:20;30423:1;30412:9;30408:17;30401:47;30465:131;30591:4;30465:131;:::i;:::-;30457:139;;30184:419;;;:::o;30609:::-;30775:4;30813:2;30802:9;30798:18;30790:26;;30862:9;30856:4;30852:20;30848:1;30837:9;30833:17;30826:47;30890:131;31016:4;30890:131;:::i;:::-;30882:139;;30609:419;;;:::o;31034:::-;31200:4;31238:2;31227:9;31223:18;31215:26;;31287:9;31281:4;31277:20;31273:1;31262:9;31258:17;31251:47;31315:131;31441:4;31315:131;:::i;:::-;31307:139;;31034:419;;;:::o;31459:::-;31625:4;31663:2;31652:9;31648:18;31640:26;;31712:9;31706:4;31702:20;31698:1;31687:9;31683:17;31676:47;31740:131;31866:4;31740:131;:::i;:::-;31732:139;;31459:419;;;:::o;31884:222::-;31977:4;32015:2;32004:9;32000:18;31992:26;;32028:71;32096:1;32085:9;32081:17;32072:6;32028:71;:::i;:::-;31884:222;;;;:::o;32112:129::-;32146:6;32173:20;;:::i;:::-;32163:30;;32202:33;32230:4;32222:6;32202:33;:::i;:::-;32112:129;;;:::o;32247:75::-;32280:6;32313:2;32307:9;32297:19;;32247:75;:::o;32328:307::-;32389:4;32479:18;32471:6;32468:30;32465:56;;;32501:18;;:::i;:::-;32465:56;32539:29;32561:6;32539:29;:::i;:::-;32531:37;;32623:4;32617;32613:15;32605:23;;32328:307;;;:::o;32641:308::-;32703:4;32793:18;32785:6;32782:30;32779:56;;;32815:18;;:::i;:::-;32779:56;32853:29;32875:6;32853:29;:::i;:::-;32845:37;;32937:4;32931;32927:15;32919:23;;32641:308;;;:::o;32955:98::-;33006:6;33040:5;33034:12;33024:22;;32955:98;;;:::o;33059:99::-;33111:6;33145:5;33139:12;33129:22;;33059:99;;;:::o;33164:168::-;33247:11;33281:6;33276:3;33269:19;33321:4;33316:3;33312:14;33297:29;;33164:168;;;;:::o;33338:169::-;33422:11;33456:6;33451:3;33444:19;33496:4;33491:3;33487:14;33472:29;;33338:169;;;;:::o;33513:148::-;33615:11;33652:3;33637:18;;33513:148;;;;:::o;33667:273::-;33707:3;33726:20;33744:1;33726:20;:::i;:::-;33721:25;;33760:20;33778:1;33760:20;:::i;:::-;33755:25;;33882:1;33846:34;33842:42;33839:1;33836:49;33833:75;;;33888:18;;:::i;:::-;33833:75;33932:1;33929;33925:9;33918:16;;33667:273;;;;:::o;33946:305::-;33986:3;34005:20;34023:1;34005:20;:::i;:::-;34000:25;;34039:20;34057:1;34039:20;:::i;:::-;34034:25;;34193:1;34125:66;34121:74;34118:1;34115:81;34112:107;;;34199:18;;:::i;:::-;34112:107;34243:1;34240;34236:9;34229:16;;33946:305;;;;:::o;34257:185::-;34297:1;34314:20;34332:1;34314:20;:::i;:::-;34309:25;;34348:20;34366:1;34348:20;:::i;:::-;34343:25;;34387:1;34377:35;;34392:18;;:::i;:::-;34377:35;34434:1;34431;34427:9;34422:14;;34257:185;;;;:::o;34448:348::-;34488:7;34511:20;34529:1;34511:20;:::i;:::-;34506:25;;34545:20;34563:1;34545:20;:::i;:::-;34540:25;;34733:1;34665:66;34661:74;34658:1;34655:81;34650:1;34643:9;34636:17;34632:105;34629:131;;;34740:18;;:::i;:::-;34629:131;34788:1;34785;34781:9;34770:20;;34448:348;;;;:::o;34802:191::-;34842:4;34862:20;34880:1;34862:20;:::i;:::-;34857:25;;34896:20;34914:1;34896:20;:::i;:::-;34891:25;;34935:1;34932;34929:8;34926:34;;;34940:18;;:::i;:::-;34926:34;34985:1;34982;34978:9;34970:17;;34802:191;;;;:::o;34999:::-;35039:4;35059:20;35077:1;35059:20;:::i;:::-;35054:25;;35093:20;35111:1;35093:20;:::i;:::-;35088:25;;35132:1;35129;35126:8;35123:34;;;35137:18;;:::i;:::-;35123:34;35182:1;35179;35175:9;35167:17;;34999:191;;;;:::o;35196:96::-;35233:7;35262:24;35280:5;35262:24;:::i;:::-;35251:35;;35196:96;;;:::o;35298:90::-;35332:7;35375:5;35368:13;35361:21;35350:32;;35298:90;;;:::o;35394:149::-;35430:7;35470:66;35463:5;35459:78;35448:89;;35394:149;;;:::o;35549:118::-;35586:7;35626:34;35619:5;35615:46;35604:57;;35549:118;;;:::o;35673:126::-;35710:7;35750:42;35743:5;35739:54;35728:65;;35673:126;;;:::o;35805:77::-;35842:7;35871:5;35860:16;;35805:77;;;:::o;35888:154::-;35972:6;35967:3;35962;35949:30;36034:1;36025:6;36020:3;36016:16;36009:27;35888:154;;;:::o;36048:307::-;36116:1;36126:113;36140:6;36137:1;36134:13;36126:113;;;36225:1;36220:3;36216:11;36210:18;36206:1;36201:3;36197:11;36190:39;36162:2;36159:1;36155:10;36150:15;;36126:113;;;36257:6;36254:1;36251:13;36248:101;;;36337:1;36328:6;36323:3;36319:16;36312:27;36248:101;36097:258;36048:307;;;:::o;36361:171::-;36400:3;36423:24;36441:5;36423:24;:::i;:::-;36414:33;;36469:4;36462:5;36459:15;36456:41;;;36477:18;;:::i;:::-;36456:41;36524:1;36517:5;36513:13;36506:20;;36361:171;;;:::o;36538:320::-;36582:6;36619:1;36613:4;36609:12;36599:22;;36666:1;36660:4;36656:12;36687:18;36677:81;;36743:4;36735:6;36731:17;36721:27;;36677:81;36805:2;36797:6;36794:14;36774:18;36771:38;36768:84;;;36824:18;;:::i;:::-;36768:84;36589:269;36538:320;;;:::o;36864:281::-;36947:27;36969:4;36947:27;:::i;:::-;36939:6;36935:40;37077:6;37065:10;37062:22;37041:18;37029:10;37026:34;37023:62;37020:88;;;37088:18;;:::i;:::-;37020:88;37128:10;37124:2;37117:22;36907:238;36864:281;;:::o;37151:233::-;37190:3;37213:24;37231:5;37213:24;:::i;:::-;37204:33;;37259:66;37252:5;37249:77;37246:103;;;37329:18;;:::i;:::-;37246:103;37376:1;37369:5;37365:13;37358:20;;37151:233;;;:::o;37390:176::-;37422:1;37439:20;37457:1;37439:20;:::i;:::-;37434:25;;37473:20;37491:1;37473:20;:::i;:::-;37468:25;;37512:1;37502:35;;37517:18;;:::i;:::-;37502:35;37558:1;37555;37551:9;37546:14;;37390:176;;;;:::o;37572:180::-;37620:77;37617:1;37610:88;37717:4;37714:1;37707:15;37741:4;37738:1;37731:15;37758:180;37806:77;37803:1;37796:88;37903:4;37900:1;37893:15;37927:4;37924:1;37917:15;37944:180;37992:77;37989:1;37982:88;38089:4;38086:1;38079:15;38113:4;38110:1;38103:15;38130:180;38178:77;38175:1;38168:88;38275:4;38272:1;38265:15;38299:4;38296:1;38289:15;38316:180;38364:77;38361:1;38354:88;38461:4;38458:1;38451:15;38485:4;38482:1;38475:15;38502:117;38611:1;38608;38601:12;38625:117;38734:1;38731;38724:12;38748:117;38857:1;38854;38847:12;38871:117;38980:1;38977;38970:12;38994:102;39035:6;39086:2;39082:7;39077:2;39070:5;39066:14;39062:28;39052:38;;38994:102;;;:::o;39102:221::-;39242:34;39238:1;39230:6;39226:14;39219:58;39311:4;39306:2;39298:6;39294:15;39287:29;39102:221;:::o;39329:225::-;39469:34;39465:1;39457:6;39453:14;39446:58;39538:8;39533:2;39525:6;39521:15;39514:33;39329:225;:::o;39560:229::-;39700:34;39696:1;39688:6;39684:14;39677:58;39769:12;39764:2;39756:6;39752:15;39745:37;39560:229;:::o;39795:222::-;39935:34;39931:1;39923:6;39919:14;39912:58;40004:5;39999:2;39991:6;39987:15;39980:30;39795:222;:::o;40023:224::-;40163:34;40159:1;40151:6;40147:14;40140:58;40232:7;40227:2;40219:6;40215:15;40208:32;40023:224;:::o;40253:178::-;40393:30;40389:1;40381:6;40377:14;40370:54;40253:178;:::o;40437:221::-;40577:34;40573:1;40565:6;40561:14;40554:58;40646:4;40641:2;40633:6;40629:15;40622:29;40437:221;:::o;40664:244::-;40804:34;40800:1;40792:6;40788:14;40781:58;40873:27;40868:2;40860:6;40856:15;40849:52;40664:244;:::o;40914:231::-;41054:34;41050:1;41042:6;41038:14;41031:58;41123:14;41118:2;41110:6;41106:15;41099:39;40914:231;:::o;41151:230::-;41291:34;41287:1;41279:6;41275:14;41268:58;41360:13;41355:2;41347:6;41343:15;41336:38;41151:230;:::o;41387:225::-;41527:34;41523:1;41515:6;41511:14;41504:58;41596:8;41591:2;41583:6;41579:15;41572:33;41387:225;:::o;41618:155::-;41758:7;41754:1;41746:6;41742:14;41735:31;41618:155;:::o;41779:182::-;41919:34;41915:1;41907:6;41903:14;41896:58;41779:182;:::o;41967:234::-;42107:34;42103:1;42095:6;42091:14;42084:58;42176:17;42171:2;42163:6;42159:15;42152:42;41967:234;:::o;42207:176::-;42347:28;42343:1;42335:6;42331:14;42324:52;42207:176;:::o;42389:237::-;42529:34;42525:1;42517:6;42513:14;42506:58;42598:20;42593:2;42585:6;42581:15;42574:45;42389:237;:::o;42632:178::-;42772:30;42768:1;42760:6;42756:14;42749:54;42632:178;:::o;42816:221::-;42956:34;42952:1;42944:6;42940:14;42933:58;43025:4;43020:2;43012:6;43008:15;43001:29;42816:221;:::o;43043:238::-;43183:34;43179:1;43171:6;43167:14;43160:58;43252:21;43247:2;43239:6;43235:15;43228:46;43043:238;:::o;43287:179::-;43427:31;43423:1;43415:6;43411:14;43404:55;43287:179;:::o;43472:227::-;43612:34;43608:1;43600:6;43596:14;43589:58;43681:10;43676:2;43668:6;43664:15;43657:35;43472:227;:::o;43705:220::-;43845:34;43841:1;43833:6;43829:14;43822:58;43914:3;43909:2;43901:6;43897:15;43890:28;43705:220;:::o;43931:233::-;44071:34;44067:1;44059:6;44055:14;44048:58;44140:16;44135:2;44127:6;44123:15;44116:41;43931:233;:::o;44170:234::-;44310:34;44306:1;44298:6;44294:14;44287:58;44379:17;44374:2;44366:6;44362:15;44355:42;44170:234;:::o;44410:232::-;44550:34;44546:1;44538:6;44534:14;44527:58;44619:15;44614:2;44606:6;44602:15;44595:40;44410:232;:::o;44648:221::-;44788:34;44784:1;44776:6;44772:14;44765:58;44857:4;44852:2;44844:6;44840:15;44833:29;44648:221;:::o;44875:162::-;45015:14;45011:1;45003:6;44999:14;44992:38;44875:162;:::o;45043:122::-;45116:24;45134:5;45116:24;:::i;:::-;45109:5;45106:35;45096:63;;45155:1;45152;45145:12;45096:63;45043:122;:::o;45171:116::-;45241:21;45256:5;45241:21;:::i;:::-;45234:5;45231:32;45221:60;;45277:1;45274;45267:12;45221:60;45171:116;:::o;45293:120::-;45365:23;45382:5;45365:23;:::i;:::-;45358:5;45355:34;45345:62;;45403:1;45400;45393:12;45345:62;45293:120;:::o;45419:122::-;45492:24;45510:5;45492:24;:::i;:::-;45485:5;45482:35;45472:63;;45531:1;45528;45521:12;45472:63;45419:122;:::o

Swarm Source

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