Generating Sitemap Files for Jekyll | Generated by AI

Home 2025.10

A sitemap.xml is an XML file that tells search engines like Google and Bing about the pages on your website. It helps crawlers discover and index your site’s structure more efficiently. For a Jekyll blog, this means search engines can find all your posts, pages, and translations (like your index-zh.html, index-fr.html, etc.) even if they’re not linked everywhere.

What a Sitemap Does

How to Generate for Jekyll

You have a couple of approaches:

  1. In your Jekyll project’s Gemfile, add:

    gem 'jekyll-sitemap'
    
  2. In your _config.yml, add:

    plugins:
      - jekyll-sitemap
    

    (If you’re on GitHub Pages, jekyll-sitemap is already whitelisted, so it works directly.)

  3. When you build (jekyll build or via make if you have it set up), Jekyll will automatically generate a sitemap.xml in your _site/ folder.

2. Manually create a sitemap template

If you prefer more control:

  1. Create a file at the project root: /sitemap.xml.
  2. Add this Liquid template:

    ---
    layout: nil
    ---
    <?xml version="1.0" encoding="UTF-8"?>
    <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2023-07-30-captions-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2023-08-03-understand-nn-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2024-12-24-android-lag-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-01-09-potential-flaws-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-01-16-active-learning-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-01-16-always-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-01-16-chinese-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-01-16-competitive-programming-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-01-16-computer-organization-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-01-16-electronic-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-01-16-japanese-quotes-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-01-16-java-interview-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-01-16-law-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-01-16-leadership-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-01-16-linear-algebra-points-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-01-16-maozedong-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-01-16-microcomputer-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-01-16-moral-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-01-16-nihongo2-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-01-16-nlp-tasks-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-01-24-frontend-interview-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-01-24-ios-interview-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-01-24-ml-conv-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-01-24-ml-points-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-01-31-constitution-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-01-31-legal-diff-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-01-31-mind-machine-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-01-31-network-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-01-31-predictions-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-04-as-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-04-basic-electronics-conv-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-04-computer-networks-conv-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-04-computer-organization-conv-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-04-deepseek-conv-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-04-java-questions-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-04-linear-algebra-conv-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-04-microcomputer-conv-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-07-universities-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-08-numpy-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-08-torch-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-10-bytecode-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-10-computer-organization-exam-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-10-computer-organization-exam1-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-10-x64-assembly-conv</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-11-brew-upgrade-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-16-image-compression-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-16-linear-algebra-image-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-16-shell-commands-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-20-curl-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-20-node-openssl-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-20-powershell-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-22-android-rom-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-22-openwrt-wireless-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-24-analyze-dependencies-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-24-analyze-packages-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-24-analyze-poms-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-24-java-packages-conv-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-24-java-packages-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-24-outlook-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-24-vscode-java-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-24-vscode-java-issue-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-24-vscode-ls-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-24-vscode-settings-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-24-vscode-wrap-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-25-analyze-spring-boot-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-25-proxy-check-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-25-ps-options-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-25-visualize-dependencies-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-25-windows-terminal-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-26-checkstyle-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-26-curl-downloads-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-26-dbeaver-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-26-eclipse-jdk-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-26-eclipse-startup-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-26-flyway-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-26-insomnia-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-26-jar-war-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-26-java-features-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-26-jdbc-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-26-jmeter-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-26-junit-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-26-jvm-bit-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-26-liquibase-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-26-maven-plugins-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-26-mistral-agents-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-26-mistral-embedding-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-26-mistral-function-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-26-mockito-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-26-mysql-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-26-postgresql-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-26-python-requests-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-26-servlet-maven-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-26-shortcut-punch-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-26-spring-compatibility-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-26-spring-data-jpa-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-26-spring-http-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-26-spring-mvc-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-26-spring-plugin-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-26-surfire-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-26-visualvm-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-advanced-data-structures-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-advanced-git-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-bean-definition-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-biology-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-bit-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-chemistry-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-computer-organization-note-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-console-safari-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-deepsearch-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-deepseek-r1-conv-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-deepseek-v3-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-docker-daemon-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-eclipse-ide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-fsevents-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-gradle-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-graph-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-headphone-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-java-multithreading-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-java-nio-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-java-runtimes-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-java-xml-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-kafka-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-linear-algebra-note-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-log4j-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-lombok-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-management-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-miscellaneous-ai-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-netty-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-penetration-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-physics-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-searching-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-sorting-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-spring-aop-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-spring-bean-exception-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-spring-data-jdbc-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-spring-data-redis-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-spring-internal-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-spring-ioc-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-spring-schedule-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-string-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-system-info-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-thread-synchronization-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-vscode-wrap-extensions-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-27-windows-networking-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-28-classin-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-28-http-codes-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-28-http-headers-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-28-http-upload-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-28-https-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-28-insomnia-features-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-28-japanese-sentences-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-28-microsoft-teams-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-28-mysql-workbench-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-28-npm-auth-tokens-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-28-npm-config-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-28-npm-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-28-npm-registry-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-28-payslip-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-28-postman-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-28-servicenow-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-28-software-center-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-28-squirrel-sql-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-28-teams-messages-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-28-test-npm-registry-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-28-upload-audio-files-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-28-use-jmeter-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-28-using-vscode-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-28-xai-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-28-zoom-analysis-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-02-28-zoom-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-01-cache-systems-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-01-cloudflare-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-01-dns-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-01-insomnia-ssl-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-01-kafka-fast-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-01-kuberenetes-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-01-latency-numbers-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-01-memory-storage-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-01-redis-fast-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-01-use-kuberenetes-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-01-websites-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-02-router-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-02-two-routers-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-03-aarch64-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-03-jdbc-url-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-03-openshift-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-03-spring-boot-cli-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-03-spring-properties-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-afnetworking-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-android-support-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-application-context-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-azure-pipeline-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-babel-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-build-helper-maven-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-butter-knife-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-cocopods-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-enhance-vue-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-epoll-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-es6-promise-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-eventbus-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-exec-maven-plugin-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-fastjson-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-fmdb-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-font-awesome-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-fxforms-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-github-markdown-css-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-google-analytics-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-google-cloud-java-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-h2-test-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-hls-js-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-http-session-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-httpmine-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-image-loader-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-iversion-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-jacoco-maven-plugin-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-java-concurrency-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-java-jwt-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-javax-json-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-jenkinsfile-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-jndi-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-joda-time-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-jquery-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-jsbadgeview-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-json-processing-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-kafka-packages-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-leancloud-im-ios-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-leancloud-ios-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-leancloud-realtime-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-markdown-js-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-maven-dependency-plugin-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-maven-release-plugin-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-mbprogress-hud-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-mingw64-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-mingw64-paths-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-moment-js-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-node-debug-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-oracle-squirrel-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-php-excel-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-php-ffmpeg-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-php-pili-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-php-qiniu-sdk-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-php-qrcode-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-php-rabbitmq-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-php-redis-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-popmenu-ios-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-publish-android-app-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-publish-chrome-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-publish-ios-iapp-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-reactor-core-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-reflection-java-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-retrieve-key-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-self-study-exam-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-serializable-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-spring-boot-packages-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-spring-data-rest-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-spring-runner-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-swagger-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-vuejs-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-webpack-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-04-wechat-js-sdk-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-05-apache-poi-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-05-cryptography-java-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-05-diverge-git-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-05-eclipse-project-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-05-filter-config-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-05-functional-java-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-05-installation-source-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-05-instantiation-exception-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-05-missing-jar-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-05-oral-report-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-05-soap-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-05-stream-java-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-05-xml-config-beans-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-05-xml-sax-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-06-argparse4j-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-06-auto-prefixer-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-06-benchmark-java-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-06-bootstrap-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-06-browser-sync-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-06-chokidar-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-06-concurrently-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-06-hamcrest-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-06-java-opensource-projects-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-06-javax-ws-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-06-jetty-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-06-jline-reader-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-06-joptsimple-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-06-nio-charset-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-06-postcss-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-06-python-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-06-python-oop-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-06-regex-java-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-06-rocksdb-java-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-06-sasl-authentication-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-06-sass-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-06-scala-collection-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-06-security-auth-java-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-06-security-java-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-06-shelljs-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-06-ssl-java-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-06-yammer-metrics-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-07-computer-networks-note-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-07-keytool-import-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-08-coffee-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-10-angular-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-10-deadlock-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-10-gcp-cost-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-10-hongkong-servers-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-10-liberty-tools-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-10-liberty-tools-params-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-10-spring-boot-multithreads-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-10-spring-boot-properties-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-10-verbose-output-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-10-webpack-issue-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-13-configure-launch-json-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-13-debug-spring-boot-vscode-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-13-llm-agent-trace-pipeline-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-13-sql-transaction-rollback-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-14-actions-cron-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-14-ai-platforms-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-14-change-request-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-14-clean-log-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-14-coding-prompts-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-14-copilot-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-14-cyber-security-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-14-deep-thinking-models-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-14-deep-thinking-models-jina-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-14-development-prompts-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-14-language-prompts-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-14-ledger-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-14-mirai-e-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-14-nytimes-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-14-pineapple-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-14-read-logs-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-14-spring-boot-source-code-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-14-sql-select-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-14-swift-transactions-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-14-symphony-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-14-tools-security-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-14-tsubomi-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-14-yuki-no-hana-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-15-dependabot-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-15-git-fetch-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-15-github-action-trigger-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-15-install-deb-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-15-jbake-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-15-linux-system-info-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-15-movies-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-15-movies-lan-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-15-nginx-forbidden-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-15-outline-client-ubuntu-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-15-python-module-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-15-python-module-issue-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-15-remap-keys-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-15-series-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-15-tech-movies-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-15-the-pirate-bay-educational-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-15-ubuntu-desktop-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-15-ubuntu-vlc-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-16-arduino-emitter-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-16-arduino-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-16-arduino-kirchhoff-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-16-arduino-mesh-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-16-arduino-mosfet-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-16-breakingbad-s01e01-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-16-cp-rsync-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-16-firetv-mkv-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-16-ftp-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-16-icmp-c-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-16-infuse-issue-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-16-mac-console-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-16-monitor-media-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-16-networking-system-calls-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-16-nfs-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-16-outdoor-spots-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-16-qbittorrent-sha1-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-16-seeding-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-16-sftp-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-16-sha1-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-16-smb-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-16-tcp-packet-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-16-udp-packet-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-16-usbc-hdmi-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-16-vlc-mobile-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-16-vlc-nginx-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-17-exec-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-18-ascii-hex-utf8-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-18-mathjax-issue-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-19-jenkins-rbac-role-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-20-dbeaver-not-loading-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-20-financial-projects-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-20-nuclear-hoax-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-20-sin-pijama-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-20-summertime-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-20-traceroute-options-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-20-traceroute-output-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-20-traceroute-proxy-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-20-vscode-python-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-21-cline-issue-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-21-content-length-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-21-docker-image-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-21-docker-kubernetes-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-21-docker-malware-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-21-docker-works-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-21-english-words-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-21-focus-pattern-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-21-gemini-code-assist-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-21-guangzhou-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-21-hongkong-macao-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-21-idea-liberty-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-21-japanese-movies-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-21-vscode-ai-plugin-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-21-vscode-cline-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-21-vscode-copilot-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-21-vscode-copilot-key-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-21-vscode-deepseek-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-21-vscode-extension-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-21-vscode-vsix-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-21-work-communication-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-21-work-environments-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-22-ai-chatbots-analysis-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-22-breaking-bad-words-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-22-china-report-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-22-cline-thinking-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-22-computer-networks-introduction-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-22-computer-networks-outline-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-22-computer-organization-outline-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-22-cuda-basic-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-22-data-link-layer-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-22-decade-1990-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-22-decade-2000s-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-22-digestion-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-22-hetzner-issue-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-22-ireland-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-22-kuwait-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-22-law-introduction-outline-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-22-linear-algebra-outline-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-22-metal-example-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-22-miles-mathis-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-22-myopia-reversal-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-22-network-architecture-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-22-network-layer-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-22-outdoor-weather-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-22-physical-layer-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-22-python-methods-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-22-sapiens-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-22-self-study-exam-courses-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-22-singapore-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-22-united-kingdom-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-22-weather-conditions-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-22-weight-loss-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-22-wifi-adoption-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-22-years-changes-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-23-advanced-algorithms-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-23-application-layer-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-23-australian-visa-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-23-china-it-infrastructure-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-23-chinese-tech-companies-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-23-cuda-drive-api-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-23-data-representation-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-23-dl-ml-gpt-progress-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-23-eu-travel-visa-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-23-europe-travel-cost-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-23-generative-adversarial-networks-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-23-instruction-system-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-23-japan-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-23-network-management-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-23-notable-chinese-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-23-quantitative-trading-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-23-radio-waves-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-23-shannon-capacity-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-23-singapore-visa-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-23-sleepy-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-23-transport-layer-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-23-usa-travel-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-23-world-travel-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-24-ant-vs-maven-diffs-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-24-computer-history-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-24-cpu-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-24-database-acid-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-24-dbs-bank-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-24-hsbc-bank-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-24-input-output-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-24-linear-algebra-introduction-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-24-memory-hierarchy-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-24-philippines-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-24-philippines-visa-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-24-project-management-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-24-software-failure-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-24-spring-traceid-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-24-standard-chartered-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-24-tea-history-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-25-bank-books-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-25-bank-ledger-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-25-bank-software-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-25-bank-software-solutions-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-25-finacle-api-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-25-getting-promoted-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-25-javacc-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-25-lead-staff-engineer-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-25-llm-tokens-explained-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-25-oracle-account-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-25-oracle-dbeaver-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-25-oracle-jdbc-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-25-oracle-mysql-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-25-oracle-tables-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-25-principal-engineer-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-25-software-manager-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-25-temenos-transact-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-25-transaction-table-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-26-clean-zip-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-26-gradle-proxy-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-26-unzip-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-26-vscode-errors-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-27-angular-errors-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-27-backend-books-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-27-brew-water-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-27-computer-science-books-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-27-create-deadlocks-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-27-daniel-friedman-books-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-27-database-blocking-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-27-database-deadlock-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-27-java-exceptions-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-27-java-garbage-collection-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-27-java-lambda-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-27-java-memory-model-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-27-java-type-system-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-27-macao-card-fee-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-27-spring-boot-exceptions-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-27-web-exploration-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-27-windows-file-delete-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-27-yinwang-introduction-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-28-completable-future-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-28-git-stash-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-28-idea-remote-debug-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-28-jenkins-cicd-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-28-markdown-to-slides-1-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-28-matrix-operations-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-28-systems-of-equations-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-28-vscode-remote-debugging-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-alibaba-java-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-amd-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-avoid-regrets-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-business-collapse-2000-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-business-collapse-china-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-business-collapse-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-business-collapse-tech-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-cnn-vit-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-completable-future-case-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-cpu-instructions-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-depression-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-determinant-matrix-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-determinants-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-earthquake-pool-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-eigenvalues-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-functional-programming-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-google-java-style-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-gram-schmidt-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-inner-product-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-java-executor-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-java-history-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-java-style-guides-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-java-success-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-law-chapters-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-linear-algebra-applications-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-linear-transformation-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-linear-transformation-gemini-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-luckin-coffee-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-markdown-mathjax-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-markdown-popular-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-marked-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-microsoft-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-mindfulness-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-multi-thread-case-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-multimodal-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-nokia-failure-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-nvidia-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-oracle-code-conventions-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-pascal-fade-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-quadratic-form-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-scheme-language-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-shoma-morita-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-spring-actuator-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-spring-boot-conventions-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-stress-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-unity-3d-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-vector-spaces-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-xml-data-type-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-xml-schema-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-yc-wisdom-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-29-zen-buddhism-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-activation-functions-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-ai-latest-progress-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-ai-tech-progress-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-bach-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-best-programmers-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-bitter-lesson-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-charlie-munger-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-chatgpt-stands-out-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-chemists-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-cnn-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-competitive-programmers-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-composers-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-computer-networks-figures-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-computer-networks-quiz-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-computer-organization-quiz-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-deep-learning-quiz-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-drucker-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-du-yuesheng-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-economists-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-entrepreneurs-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-go-lang-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-gpu-fp-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-high-school-math-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-ilya-sutskever-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-investment-trends-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-law-chapters-2-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-learning-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-linear-algebra-plus-note-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-linear-algebra-quiz-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-mathematicians-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-milton-friedman-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-model-context-protocol-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-movie-directors-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-ocaml-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-ocaml-industries-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-painters-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-pianists-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-popular-language-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-r-kent-dybvig-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-reinforcement-learning-example-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-rust-lang-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-starbucks-success-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-view-delft-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-30-y-combinator-success-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-31-cities-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-31-cities-programmers-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-31-indonesia-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-31-philippines-cost-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-31-pil-pygui-screenshot-comp-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-31-south-asia-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-03-31-thailand-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-a-star-search-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-alphafold-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-alphago-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-angular-project-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-angular-routing-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-bitcoin-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-coco-cola-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-cps-transformer-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-create-vscode-extension-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-encoder-decoder-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-erythritol-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-european-food-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-fabrice-bellard-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-figma-wasm-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-fpga-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-frontend-framework-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-git-svn-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-graalvm-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-greater-success-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-heart-disease-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-hive-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-late-boomer-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-linear-transformation-kernal-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-long-short-term-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-monte-carlo-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-netty-shadowsocks-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-openai-sora-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-personal-projects-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-query-engine-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-read-source-code-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-recurrent-neural-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-solana-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-spring-boot-spring-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-spring-evolution-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-spring-laravel-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-spring-play-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-subspace-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-sugar-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-sugar-fat-salt-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-virtual-threads-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-webassembly-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-webgl-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-01-why-netty-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-02-amc-math-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-02-balanced-diet-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-02-british-empire-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-02-carbohydrates-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-02-cron-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-02-debug-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-02-diagonalizable-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-02-gram-schmidt-chatgpt-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-02-guns-germs-steel-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-02-international-mathematical-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-02-kafka-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-02-linear-algebra-tutorial-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-02-macau-history-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-02-portuguese-empire-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-02-qing-dynasty-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-02-redis-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-02-regular-expressions-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-02-romanian-mathematics-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-02-salt-history-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-02-shipping-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-02-steel-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-02-weight-loss-short-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-02-workflow-trigger-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-02-writers-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-03-road-trip-names-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-03-road-trip-svgs-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-03-road-trip-things-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-03-shantou-road-trip-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-03-shanwei-shantou-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-04-chaoshan-region-trade-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-04-chaozhou-history-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-04-china-mobile-networks-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-04-deepseek-r1-rl-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-04-git-credential-diagnose-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-04-git-credential-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-04-git-credential-manager-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-04-human-feedback-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-04-kitefoiling-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-04-max-maeder-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-04-modern-sea-freight-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-04-overboard-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-04-ports-selection-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-04-python-zipfile-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-04-red-sea-bay-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-04-sailing-accidents-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-04-sea-trade-time-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-04-seafood-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-04-shantou-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-04-shantou-port-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-04-shanwei-history-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-04-south-china-kitefoil-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-04-surfing-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-04-tech-figures-sailing-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-04-top-ports-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-04-transformer-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-05-bridges-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-05-china-infrastructure-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-05-golden-gate-bridge-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-05-queshi-bridge-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-06-buffett-invest-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-06-buffett-speech-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-06-export-gpg-secret-keys-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-06-ltcm-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-06-public-wifi-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-06-python-regex-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-06-trump-ukraine-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-07-db2-sqlcode-551-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-07-deepseek-sparse-attention-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-07-ios-dart-vm-debug-crash-fix-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-07-tarfile-usage-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-08-claude-code-updates-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-08-philippines-cities-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-08-philippines-singapore-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-08-rich-countries-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-08-rich-countries-ppp-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-09-book-steve-jobs-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-09-chinese-visa-on-arrival-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-09-filter-resources-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-09-input-tensors-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-09-math-majors-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-09-singapore-master-degree-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-09-uk-master-degree-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-09-usa-master-degree-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-09-x-unfollow-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-09-xml-regex-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-10-docker-overlay2-removal-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-10-friends-plot-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-10-platform-hosting-code-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-10-squashing-git-commits-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-10-taiwan-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-10-usa-debt-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-11-polyester-fiber-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-11-safari-localhost-auth-fix-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-11-short-video-apps-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-12-buddhist-values-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-12-christians-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-12-hindu-values-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-12-hydrogen-peroxide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-12-islamic-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-12-mango-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-12-religions-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-12-religions-truth-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-14-csv-compare-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-14-csv-sort-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-14-electronic-technology-outline-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-14-fujian-travel-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-14-guangxi-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-14-hunan-travel-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-14-jiangxi-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-14-microcomputer-outline-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-14-microcomputers-fundamentals-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-14-vegetable-juice-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-15-assembly-programming-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-15-io-interface-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-15-jackson-default-typing-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-15-librechat-openrouter-fix-1-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-15-memory-systems-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-16-elon-musk-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-16-link-hash-tree-map-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-16-technical-opinions-diversity-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-17-basic-electronics-note-conv-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-17-computer-networks-note-conv-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-17-computer-organization-note-conv-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-17-dhgate-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-17-electronic-technology-quiz-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-17-linear-algebra-plus-conv-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-17-linear-algebra-quiz-conv-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-17-microcomputer-dive-conv-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-17-microcomputer-note-conv-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-17-microcomputer-quiz-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-18-adam-smith-ideas-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-18-ag-grid-angular-dark-theme-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-18-algorithmic-trading-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-18-companies-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-18-free-market-supporters-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-18-hayek-ideas-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-18-kill-port-process-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-18-microcomputer-courses-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-18-mises-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-18-quantitative-trading-points-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-18-quantitative-trading-resources-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-18-time-restricted-eating-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-19-buses-expansion-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-20-india-cities-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-20-joe-course-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-20-labs-sessions-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-20-linear-regession-trading-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-20-lstm-trading-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-20-pepper-sauce-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-20-powders-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-20-python-int-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-20-reading-excel-pandas-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-20-us-stock-holidays-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-20-water-flosser-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-21-africa-cities-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-21-analog-electronics-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-21-benq-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-21-dengmingyang-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-21-digital-electronics-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-21-electronics-figures-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-21-electronics-notes-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-21-europe-cities-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-21-future-retail-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-21-future-work-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-21-gennady-korotkevich-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-21-hos-lyric-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-21-instant-drink-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-21-jim-keller-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-21-middle-east-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-21-palmer-luckey-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-21-peter-thiel-fellowship-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-21-petr-mitrichev-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-21-radewoosh-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-21-rng58-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-21-semiconductor-figures-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-21-siemens-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-21-software-figures-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-21-south-america-cities-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-21-tony-fadell-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-21-usa-cities-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-21-y-combinator-startups-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-21-yc-founders-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-21-young-engineers-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-21-young-software-engineers-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-21-young-tech-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-22-ai-competitive-programming-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-22-ai-education-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-22-amplifier-configurations-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-22-bjt-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-22-computer-history-museum-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-22-electronics-history-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-22-european-figures-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-22-greatest-scientists-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-22-high-school-electronics-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-22-indian-talent-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-22-microcomputer-history-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-22-mit-innovators-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-22-neurips-award-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-22-nissan-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-22-scott-young-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-22-sven-dedin-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-22-tuyouyou-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-23-java-ee-cmt-scheduler-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-24-bipolar-transistors-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-24-clean-remote-prune-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-24-double-row-script-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-24-font-awesome-issue-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-24-isaac-newton-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-24-kid-bath-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-24-maxwell-equations-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-24-npm-log-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-24-prominent-mathematicians-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-24-x-api-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-25-bps-space-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-25-claude-shannon-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-25-newton-lessons-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-25-peng-zhihui-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-26-blue-led-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-26-gallium-nitrogen-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-26-june-huh-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-26-kurzweil-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-26-nakamura-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-26-nobel-prize-chemistry-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-26-nobel-prize-physics-electronics-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-26-nobel-prize-physics-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-26-npd-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-26-prestigious-awards-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-26-turing-award-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-26-youtube-electricity-videos-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-27-archipelagos-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-27-capacitors-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-27-davao-city-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-27-diving-destinations-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-27-git-hooks-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-27-inductors-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-27-luzon-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-27-microcomputer-youtube-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-27-mindanao-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-27-philippines-beaches-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-27-philippines-it-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-27-philippines-malls-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-27-philippines-spots-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-27-philippines-uniqueness-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-27-philippines-universities-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-27-transistors-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-27-visayas-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-28-boolean-algebra-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-28-digital-logic-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-28-fix-cocoapod-ruby-mismatch-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-28-number-systems-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-28-sequential-circuits-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-28-ttl-cmos-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-29-ai-researchers-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-29-ai-researchers-self-taught-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-29-alibaba-history-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-29-changes-next-20-years-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-29-electronics-institutions-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-29-georgi-gerganov-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-29-great-students-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-29-instruct-vs-code-models-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-29-making-money-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-29-singapore-attractions-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-29-singapore-companies-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-29-singapore-education-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-29-singapore-history-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-29-singapore-shopping-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-29-singapore-uniqueness-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-29-steve-jobs-1992-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-29-steve-jobs-1995-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-30-cambricon-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-30-dayton-miller-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-30-germany-nuclear-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-30-hector-munera-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-30-herbert-dingle-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-30-himalayan-pink-salt-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-30-jane-goodall-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-30-light-speed-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-30-nikola-tesla-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-30-peter-duseberg-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-30-qed-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-30-relativity-theory-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-30-richard-feynman-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-30-stefan-lanka-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-04-30-virus-mania-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-01-ben-eater-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-01-house-mortgage-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-01-icho-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-01-international-olympiad-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-01-international-olympiad-lessons-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-01-ipho-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-01-lisa-sauermann-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-01-perelman-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-01-peter-scholze-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-01-reid-barton-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-01-semiconductors-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-01-stanislav-fort-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-01-transistor-current-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-01-transistor-works-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-01-yitang-zhang-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-01-youtube-channels-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-02-alphabet-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-02-buffer-inverter-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-02-countries-education-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-02-countries-universities-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-02-github-copilot-agent-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-02-google-ads-revenue-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-02-greg-brockman-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-02-harbour-space-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-02-invert-signal-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-02-ios-frameworks-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-02-ipho-winner-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-02-jakub-pachocki-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-02-lobachevsky-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-02-master-program-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-02-murphy-law-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-02-nizhny-novgorod-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-02-piotr-sankowski-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-02-russia-cities-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-02-russia-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-02-tomasz-czajka-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-02-transistor-switch-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-02-xcode-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-03-ajay-bhatt-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-03-alessandro-volta-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-03-andrew-grove-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-03-benjamin-franklin-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-03-dov-frohman-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-03-edward-roberts-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-03-federico-faggin-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-03-gary-kildall-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-03-github-oauth-device-code-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-03-gordon-moore-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-03-ground-symbol-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-03-jack-kilby-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-03-jerry-sanders-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-03-kirchhoff-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-03-late-blooming-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-03-london-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-03-max-planck-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-03-meditations-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-03-microcomputer-videos-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-03-mosfet-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-03-national-inventors-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-03-notebooklm-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-03-ohm-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-03-qian-mu-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-03-robert-noyce-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-03-royal-society-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-03-stanley-mazor-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-03-steve-wozniak-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-03-stoicism-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-03-ted-hoff-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-03-transistor-led-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-03-transistor-questions-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-03-uk-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-03-von-neumann-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-03-william-shockley-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-04-boston-tea-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-04-cambridge-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-04-chen-gao-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-04-darwin-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-04-dc-power-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-04-erdal-arikan-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-04-fedor-romashov-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-04-galilei-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-04-gustokashin-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-04-henry-cavendish-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-04-ics-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-04-james-maxwell-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-04-kangyang-zhou-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-04-kids-game-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-04-maspy-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-04-michael-faraday-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-04-mosfet-history-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-04-neal-wu-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-04-peel-brew-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-04-riku-kawasaki-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-04-thomas-young-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-04-vermeer-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-04-yuan-cao-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-04-zhiwei-yun-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-05-cauchy-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-05-ecole-polytechnique-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-05-france-math-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-05-laplace-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-05-vacuum-tube-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-07-chinese-words-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-07-euler-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-07-fourier-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-07-gauss-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-07-greatest-stem-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-07-home-appliances-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-07-hristo-venev-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-07-jae-hyun-park-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-07-lagrange-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-07-living-independently-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-07-riemann-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-07-rumen-hristov-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-07-search-history-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-07-singapore-medical-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-07-zixiang-zhou-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-08-ainta-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-08-andrew-he-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-08-benjamin-qi-advices-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-08-bruce-merry-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-08-codeforces-2108F-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-08-darius-buhai-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-08-john-dethridge-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-08-kevin-sun-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-08-lingyu-jiang-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-08-mikhail-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-08-przemyslaw-debiak-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-08-rain-jiang-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-08-samek-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-08-tiancheng-lou-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-08-yuhao-du-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-08-ziqiang-zhong-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-10-ai-learning-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-10-armenia-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-10-brt-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-10-hyper-connected-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-10-laundry-pods-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-10-learn-30s-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-10-namibia-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-10-pakistan-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-10-polar-form-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-10-turkey-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-11-native-app-tradeoffs-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-12-alcohol-intake-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-12-dot-sourcing-powershell-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-12-lost-connections-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-12-paul-graham-challenges-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-12-xmatters-incident-automation-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-13-digital-electronics-conv-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-13-python-cryptography-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-13-snacks-calories-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-13-sugar-calories-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-15-grok-fast-coding-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-15-jackson-default-typing-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-15-reading-writing-csv-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-15-value-house-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-16-digital-media-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-16-inner-game-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-16-knowledge-wealth-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-16-leapmotor-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-16-mobile-phone-chip-market-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-16-money-things-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-16-nba-players-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-16-neta-failure-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-16-technology-adoption-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-17-income-tax-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-17-mobile-signals-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-18-chemical-compounds-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-18-citric-acid-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-18-nginx-config-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-18-sodium-bicarbonate-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-19-java-profiling-liberty-yk-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-20-bell-labs-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-20-idea-certificate-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-20-mohamed-atalla-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-21-china-intro-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-21-china-rivers-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-21-github-actions-concurrency-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-21-india-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-21-india-languages-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-21-india-rivers-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-21-kazakhstan-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-21-liberty-maven-plugin-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-21-markdown-to-slides-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-21-mekong-river-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-21-squirrel-script-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-21-usa-intro-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-21-windows-batch-files-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-22-ambrose-fleming-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-22-hidden-champions-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-22-powershell-commands-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-22-view-jar-source-intellij-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-23-dawon-kahng-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-23-filament-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-23-lee-de-forest-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-23-zhang-yujie-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-24-air-fryer-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-24-automated-purchasing-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-24-cpic-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-24-electric-ovens-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-24-maillard-reaction-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-24-marinate-wings-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-24-paul-graham-essays-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-24-product-recommendations-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-24-selenium-example-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-24-selenium-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-24-steve-jobs-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-24-teksystems-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-24-time-constant-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-24-vegetables-storing-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-24-yujun-product-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-25-agricultural-bank-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-25-air-fryer-cooking-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-25-boosting-jacoco-coverage-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-25-competitive-programming-career-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-25-cooking-tips-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-25-dbs-tech-india-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-25-double-slit-galton-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-25-engineer-salaries-india-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-25-exponential-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-25-macbook-powerbank-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-25-paul-dirac-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-25-quantum-computing-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-25-quantum-mechanics-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-25-singapore-hongkong-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-25-singapore-property-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-25-tech-hubs-india-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-26-ai-commercial-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-26-air-fryer-bitter-melon-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-26-air-fryer-electric-oven-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-26-air-fryer-potato-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-26-cisco-anyconnect-stop-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-26-cooking-ingredients-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-26-cooking-math-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-26-ctmfw-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-26-life-2025-1995-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-26-life-2025-2015-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-26-npm-error-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-26-quine-mccluskey-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-27-flip-flops-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-27-git-gc-optimization-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-27-housing-market-shift-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-28-advanced-git-rebase-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-28-air-fryer-crispy-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-28-git-branch-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-28-git-difftool-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-28-git-mergetool-best-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-28-git-mergetool-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-28-powershell-cmd-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-28-powershell-get-nettcp-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-28-powershell-python-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-28-projects-algorithm-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-28-projects-binary-search-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-28-psutil-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-28-remote-logging-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-28-source-control-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-28-tortoisegit-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-28-windows-cuda-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-28-zbook-gpu-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-29-hugo-latex-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-29-injective-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-29-jekyll-hugo-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-29-jekyll-katex-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-29-liberty-http-timeouts-keepalive-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-29-linear-proof-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-29-linear-questions-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-29-matrix-formatting-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-29-powershell-run-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-29-putty-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-29-winscp-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-30-flip-flop-problem-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-31-future-military-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-31-gnome-terminal-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-31-midea-q7-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-31-nvidia-dkms-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-31-python-glob-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-31-snap-apt-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-31-snap-update-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-31-tinygrad-ml-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-31-top-websites-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-05-31-ubuntu-macos-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-01-air-conditioner-cost-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-01-audio-speakers-pc-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-01-balancing-ai-books-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-01-basic-need-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-01-beef-offal-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-01-chinese-labor-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-01-dishwasher-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-01-framework-computer-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-01-impact-llms-google-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-01-information-platform-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-01-jeff-dean-minnesota-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-01-jk-flip-flop-history-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-01-lemon-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-01-lg-monitor-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-01-link-speed-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-01-linux-commands-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-01-linux-tool-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-01-marination-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-01-native-pork-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-01-product-choices-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-01-refresh-rate-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-01-sauce-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-01-skills-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-01-ubuntu-suspend-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-01-wifi-drops-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-01-xiaomi-chip-eletronics-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-01-youtube-shortcut-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-02-apache-module-taobao-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-02-attention-kqv-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-02-cold-drinks-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-02-construction-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-02-dario-talent-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-02-digital-life-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-02-gguf-ud-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-02-heinz-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-02-human-body-systems-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-02-llama-cpp-loading-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-02-model-serve-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-02-nvidia-driver-version-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-02-paris-safety-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-03-appimage-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-03-apt-permission-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-03-arm64-x8664-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-03-attention-scores-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-03-autoregressive-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-03-checkstyle-javadoc-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-03-computer-architecture-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-03-cursor-vscode-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-03-google-one-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-03-instruct-vs-coder-llms-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-03-maven-checkstyle-scan-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-03-softmax-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-03-spotless-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-04-checkstyle-xml-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-04-china-migration-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-04-cosine-similarity-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-04-deepseek-sparse-attention-overview-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-04-operational-amplifiers-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-04-vscode-copilot-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-05-copilot-chat-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-05-dl-study-map-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-05-mit-curriculum-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-05-pyperclip-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-05-vscode-copilot-extension-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-06-telegram-bots-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-07-basketball-stats-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-07-giannis-sga-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-07-haliburton-sga-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-07-iostat-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-07-lscpu-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-07-nba-finals-2025-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-07-new-taiwan-dollar-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-07-outline-vpn-remove-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-07-thunder-pacers-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-07-uptime-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-07-usa-tv-90s-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-08-cudnn-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-08-leo-breiman-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-08-maximize-pc-use-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-08-most-cited-papers-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-08-pyaudio-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-08-pycrypto-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-08-python-disutils-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-08-ram-charan-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-08-security-checks-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-08-telegram-live-location-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-08-video-secure-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-09-egg-tart-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-09-linux-love-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-09-mission-driven-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-09-mozilla-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-09-qbittorrent-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-09-reader-view-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-09-sauce-burnt-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-09-useful-prompts-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-10-aspectj-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-10-circular-dependencies-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-10-cooking-mushrooms-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-10-enoki-shiitake-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-10-luka-doncic-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-10-soybean-milk-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-11-aspectj-circular-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-11-copilot-context-window-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-11-copilot-models-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-11-future-tech-10x-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-11-google-cloud-vm-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-11-logging-debugging-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-11-pointcut-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-11-spring-aop-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-11-string-comparison-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-12-cffi-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-12-hardware-info-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-12-supabase-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-12-top-python-downloads-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-13-maven-dep-issue-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-13-multi-layered-software-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-14-arduino-issue-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-14-arduino-linux-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-14-arduino-uno-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-14-bootloader-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-14-capture-log-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-14-checkstyle-indentation-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-14-checkstyle-location-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-14-deepseek-token-pricing-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-14-file-permissions-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-14-github-cli-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-14-hitachi-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-14-iran-israel-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-14-llm-code-tools-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-14-maven-proxy-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-14-pip-install-continue-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-14-pip-packages-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-14-python-java-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-14-python-video-edit-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-14-slf4j-log4j-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-14-ssh-key-github-actions-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-14-suno-prompts-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-14-top-maven-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-14-vscode-supress-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-15-dissolution-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-15-git-hook-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-15-parallel-spring-angular-testing-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-16-bluetooth-keyboard-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-16-iphone-compatibility-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-16-time-format-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-16-tire-size-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-17-decision-tree-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-17-dtsp-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-17-pg-networth-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-17-rice-noodles-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-17-spring-devtools-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-17-terminal-title-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-17-xiangyu-zhang-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-18-db2-stored-procedures-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-18-git-pre-add-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-18-olive-oil-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-18-short-quotes-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-18-stable-diffusion-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-18-tcmalloc-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-18-xelatex-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-19-librechat-openrouter-fix-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-20-geckodriver-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-20-java-vpn-proxy-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-20-viva-la-vida-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-21-cloudflare-bypass-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-21-firefox-apt-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-21-full-path-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-21-mozillal-bookmark-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-22-dijkstra-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-22-global-music-exploration-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-22-gpu-memory-management-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-22-hydrogen-peroxide-solution-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-22-jk-flip-flop-ben-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-22-jon-jandai-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-22-niklaus-wirth-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-22-richard-feynman-ai-2025-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-22-richard-feynman-ai-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-22-top-chinese-songs-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-22-top-english-songs-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-22-top-japanese-songs-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-22-top-spanish-songs-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-22-youtube-caption-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-23-check-sleuth-setup-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-23-configure-imports-intellij-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-23-curry-allen-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-23-mcdonald-drive-thru-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-23-meituans-retreat-struggles-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-23-nodejs-openssl-legacy-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-23-python-clipboard-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-23-trace-ids-help-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-23-trace-spring-sleuth-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-23-typing-extensions-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-24-configure-logback-pattern-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-24-convert-webp-to-jpg-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-24-docker-overlayfs-error-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-24-generate-random-strings-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-24-logback-color-issues-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-24-micrometers-explained-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-25-company-valuation-comparison-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-25-top-companies-evolve-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-26-factorial-scheme-code-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-26-fortrans-legacy-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-26-hydrogen-peroxide-smell-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-26-pythons-creator-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-26-shallow-clone-pulls-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-26-top-maven-packages-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-26-top-python-packages-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-26-x-vs-gnome-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-27-free-java-profilers-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-27-gpg-encryption-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-27-install-yourkit-profiler-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-27-ios-dual-sim-traffic-control-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-27-java-development-tools-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-27-java-profiler-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-27-jdk-tools-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-27-jdk-version-error-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-27-jshell-quick-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-27-jshell-vs-python-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-27-openjdk-installed-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-27-sankaras-revolutionary-legacy-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-27-sonarqube-java-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-27-startup-success-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-27-visualvm-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-27-yourkit-liberty-setup-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-28-ai-in-competitive-programming-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-28-ais-limited-breakthroughs-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-28-check-apt-proxy-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-28-check-pico-detection-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-28-cloud-platform-rankings-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-28-computer-vision-limits-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-28-developer-survey-2024-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-28-experience-boosts-productivity-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-28-fix-go-error-macos-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-28-flip-flop-basics-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-28-flip-flop-simulator-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-28-fqdns-explained-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-28-gils-thread-limitation-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-28-install-go-via-apt-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-28-itmos-icpc-dominance-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-28-java-performance-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-28-java-proxy-alternatives-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-28-language-ranking-boards-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-28-micropython-for-hardware-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-28-optimize-gtagjs-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-28-pico-on-ubuntu-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-28-pico-usb-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-28-privacy-focused-analytics-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-28-pythons-ai-edge-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-28-raspberry-pi-pico-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-28-raspberry-pi-vs-arduino-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-28-sound-based-detection-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-28-speed-up-jekyll-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-28-top-database-rankings-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-28-top-python-packages-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-28-warsaws-icpc-triumphs-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-28-washing-machine-monitor-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-28-world-bank-reform-loans-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-ai-coding-assistant-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-chinas-unemployment-crisis-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-chinese-exam-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-clash-mixed-content-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-clash-user-agent-logging-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-context-protocol-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-create-postgresql-database-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-cuda-compilation-error-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-cuda-memory-error-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-fix-java-classpath-error-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-fix-youtube-dl-error-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-flash-pico-firmware-1-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-flash-pico-firmware-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-focused-mastery-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-gemini-cli-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-grant-postgresql-access-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-hey-judes-advice-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-hosting-multiple-pages-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-improve-audio-quality-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-jackson-polymorphic-deserialization-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-javas-founders-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-jk-flip-flop-build-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-meituans-global-reach-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-meituans-leadership-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-micropython-on-pico-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-missing-postgresql-headers-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-monitor-subprocess-timeout-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-persistent-http-sessions-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-pico-in-bootsel-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-pico-led-button-setup-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-pico-w-go-setup-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-postgresql-installation-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-project-sites-limits-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-python-313-issue-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-raspberry-pi-5-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-raspberry-pi-pico-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-run-java-directly-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-university-chinese-syllabus-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-video-creation-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-29-vscode-for-pico-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-anthropic-top-talent-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-chez-gc-pauses-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-cucumber-bdd-framework-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-enable-soft-wrap-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-gc-pauses-impact-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-gemini-key-figures-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-git-clean-explained-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-go-no-regret-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-install-rust-macos-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-java-vs-rust-code-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-linux-x86_64-ide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-openai-top-talent-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-python-rust-leaders-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-quicksort-rust-dive-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-rust-compilation-options-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-rust-error-handling-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-rust-firecracker-vm-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-rust-for-startups-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-rust-ide-options-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-rust-in-big-tech-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-rust-one-liner-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-rust-solana-success-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-rustrover-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-rusts-choice-greptimedb-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-rusts-disadvantages-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-rusts-memory-breakthroughs-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-rusts-rise-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-rusts-speed-secrets-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-rusts-top-projects-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-rusts-transformative-adoption-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-rusts-win-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-wealthy-emotions-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-zig-quicksort-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-zigs-better-c-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-zigs-rise-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-zigs-specialties-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-06-30-zigs-strong-choice-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-01-6502-pioneer-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-01-api-list-beyond-weather-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-01-apple-hardware-geniuses-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-01-apple-silicon-leader-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-01-art-of-electronics-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-01-ben-eater-digital-expert-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-01-bob-pease-intro-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-01-electronic-legends-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-01-electronic-tech-quiz-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-01-electronics-tech-companies-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-01-express-proxy-logging-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-01-future-career-path-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-01-gordon-bell-pioneer-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-01-h100-power-uses-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-01-install-openjdk21-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-01-jdk24-features-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-01-jim-williams-analog-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-01-m2-battery-safe-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-01-m2-charger-compatibility-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-01-nvidia-gpu-evolution-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-01-rust-replaces-c-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-01-rust-tools-for-you-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-01-rustsafetyevolution-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-01-stage-changes-without-commit-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-01-wandb-403-fix-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-01-wozniak-electronics-expertise-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-01-yin-wang-peace-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-02-ai-coding-fantasy-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-02-atari-history-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-02-baihuaresortretreat-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-02-bee-sting-severity-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-02-bee-sting-treatment-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-02-berkeley-history-overview-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-02-better-soak-sleep-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-02-choose-right-language-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-02-commodore-legacy-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-02-communication-medium-dynamics-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-02-computing-pioneer-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-02-counting-rows-in-resultset-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-02-daniel-lemire-software-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-02-engineering-vs-product-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-02-javasql-package-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-02-json-parsing-speed-comparison-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-02-language-impacts-project-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-02-llm-confirms-cfa-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-02-mit-history-overview-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-02-n8n-ai-automation-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-02-o3-model-limits-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-02-product-vs-service-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-02-prolog-declarative-logic-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-02-rust-ecosystem-contributors-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-02-rust-edition2024-fix-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-02-rust-not-built-on-c-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-02-simple-path-to-wealth-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-02-simple-path-to-wealth-summary-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-02-stanford-university-history-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-02-statement-prepared-callable-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-02-terman-silicon-valley-founder-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-02-top-rust-crates-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-02-xnu-kperf-profiling-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-02-yaml-and-file-errors-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-03-ai-latency-metrics-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-03-checkstyle-rules-explained-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-03-jmc-jfr-tools-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-03-palantir-spotless-config-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-03-peterson-ideas-philosophy-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-03-spotless-checkstyle-comparison-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-03-uber-algorithm-pm-types-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-04-ashbyhq-recruiting-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-04-bee-sting-reaction-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-04-consolidate-algorithm-solutions-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-04-diesel-petrol-comparison-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-04-fasting-benefits-types-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-04-javapackagenamenorstartnumber-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-04-jetbrains-annotations-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-04-junit5-test-setup-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-04-kill-processes-python-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-04-maven-multi-module-setup-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-04-maven-shade-plugin-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-04-social-meta-tags-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-04-sop-explained-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-04-sutskevers-clear-impactful-style-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-04-uva-maven-structure-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-05-deprecated-unsafe-warning-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-05-disciplined-expectations-psychology-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-05-intellij-refactoring-templates-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-05-intellij-structural-replace-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-05-ios-delta-update-size-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-05-ios-delta-updates-explained-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-05-lark-vs-teams-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-05-living-alone-benefits-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-05-living-with-parents-disadvantages-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-05-outlook-user-trends-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-05-parallel-test-config-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-05-pil-imagegrab-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-05-pom-upgrade-summary-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-05-ptsd-symptoms-treatment-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-05-teams-user-growth-2024-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-05-zoom-workplace-growth-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-06-2025-llm-comparison-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-06-36-hour-fast-benefits-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-06-ai-era-knowledge-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-06-altman-fasting-routine-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-06-bee-sting-creams-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-06-book-ban-reasons-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-06-cross-platform-tools-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-06-cyst-removal-methods-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-06-electronic-quiz-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-06-github-actions-ci-cd-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-06-java-input-redirection-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-06-jdk-11-to-24-benefits-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-06-ketogenic-diet-benefits-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-06-kvls-energy-conservation-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-06-learning-mindset-contrast-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-06-maven-exec-java-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-06-maven-exec-vs-antrun-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-06-meta-smart-glasses-overview-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-06-meta-spatial-sdk-intro-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-06-node-voltages-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-06-pangu-lab-tragedy-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-06-pysonar2-semantic-indexer-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-06-quest-vs-android-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-06-rednote-surge-subsides-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-06-rust-maven-integration-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-06-safari-vs-firefox-2025-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-06-slow-cook-dishes-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-06-spotless-multi-module-maven-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-06-sugar-health-risks-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-06-word2vec-gensim-script-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-07-deepseek-128k-models-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-07-deepseek-v32-upgrade-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-07-macos-database-tools-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-07-mistral-models-context-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-07-mistral-nemo-features-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-08-amr-sabry-research-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-08-anger-brain-damage-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-08-art-evolution-viral-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-08-church-lambda-calculus-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-08-constable-computer-science-legacy-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-08-danvy-computer-scientist-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-08-diode-for-rectification-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-08-felleisen-computer-science-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-08-frege-logic-foundations-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-08-futamura-partial-evaluation-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-08-futamura-projections-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-08-greg-morrisett-leader-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-08-harper-type-theory-contributions-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-08-hoare-computing-legacy-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-08-job-hopping-vs-long-term-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-08-john-mccarthy-ai-pioneer-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-08-john-reynolds-computer-scientist-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-08-kleene-recursion-theory-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-08-luca-cardellis-impact-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-08-metamath-minimalist-proofs-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-08-milner-computer-science-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-08-neil-jones-computer-scientist-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-08-older-founders-succeed-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-08-peirce-math-pioneer-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-08-pfenning-computer-scientist-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-08-robert-harper-computer-scientist-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-08-scheme-guru-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-08-schonfinkel-combinatory-logic-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-08-tobias-nipkow-logic-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-08-wadler-theory-practice-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-09-adapt-or-decline-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-09-avaloq-api-errors-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-09-avaloq-banking-suite-intro-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-09-avaloq-oracle-partnership-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-09-avaloq-trading-api-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-09-configurable-font-methods-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-09-count-files-in-directory-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-09-dark-resume-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-09-enterprise-database-2025-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-09-fix-tlmgr-user-mode-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-09-font-missing-japanese-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-09-greptimedb-competitors-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-09-greptimedb-vs-tidb-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-09-install-fontawesome5-ubuntu-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-09-international-banks-in-china-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-09-jfif-jpeg-explained-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-09-latex-apostrophe-fix-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-09-latex-url-font-fix-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-09-nomura-global-expansion-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-09-nomura-history-overview-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-09-nomura-shanghai-improving-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-09-oracle-competitors-overview-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-09-oracle-java-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-09-oracle-vs-mysql-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-09-paragraphstyle-redesign-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-09-playwright-chrome-executable-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-09-resolving-paygo-message-blocking-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-09-tdengine-vs-greptimedb-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-09-tidb-adoption-challenge-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-09-tidb-challenges-alternatives-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-09-tidb-market-share-2025-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-09-tidb-niche-challenges-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-09-ubuntu-mouse-power-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-10-ai-spending-growth-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-10-automated-log-collection-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-10-automation-tools-comparison-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-10-constant-correction-destroys-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-10-font-apostrophe-solutions-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-11-guangzhou-xiamen-roadtrip-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-11-hainan-ev-trip-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-11-jdk-upgrade-considerations-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-12-alco-electronics-history-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-12-car-maintenance-essentials-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-12-car-safety-thunderstorms-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-12-command-palette-shortcuts-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-12-ev-power-setup-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-12-fix-docker-overlayfs-macos-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-12-hong-kong-salaries-20th-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-12-hsbc-160-years-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-12-iphone-hotspot-screen-off-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-12-juicing-wampee-safely-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-12-neta-v400-power-limit-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-12-pydantic-data-validation-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-12-remove-custom-copilot-model-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-13-ai-communication-value-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-13-copilot-api-proxy-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-13-ga-vs-cfwa-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-13-intellij-exclude-files-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-13-network-course-videos-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-13-notable-angel-investors-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-13-soften-essay-tone-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-14-ai-finance-sql-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-14-ios-hotspot-screen-impact-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-14-multi-region-design-advice-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-14-multi-region-dev-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-14-nl-to-sql-focus-areas-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-14-optimize-translation-workflow-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-14-real-time-collaboration-tech-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-15-war-ear-packaging-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-16-git-line-endings-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-17-flutter-verbose-debugging-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-17-github-copilot-modes-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-17-heic-conversion-fix-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-18-copilot-vscode-intellij-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-18-jsessionid-web-sessions-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-18-understanding-others-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-18-zbook-brightness-fix-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-19-teams-message-forwarding-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-19-teams-updates-2023-2025-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-20-control-m-workflow-dependencies-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-20-denmark-banking-sector-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-20-nykredit-danish-financial-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-21-jvm-options-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-21-password-changes-backend-tools-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-22-ai-code-editors-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-22-browser-language-detection-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-22-code-selection-shortcuts-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-22-life-as-journey-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-22-server-side-execution-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-22-tool-use-in-ai-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-22-tool-use-ioc-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-23-ai-first-architecture-evaluation-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-23-python-db2-connection-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-24-ai-vs-code-flexibility-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-24-building-genuine-relationships-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-24-code-splitting-benefits-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-24-how-call-this-rs-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-24-iphone-vs-genie-speakers-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-24-japanese-learning-hours-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-24-linkedin-reactions-differ-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-24-matrix-vs-array-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-24-region-specific-bean-loading-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-24-reuse-tmux-sessions-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-24-smart-switch-benefits-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-24-tamil-phrase-explained-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-24-tamil-phrases-meanings-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-25-cucumber-bdd-java-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-25-ibm-db2-sequences-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-26-ai-gpu-clouds-2025-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-26-ai-ml-java-spring-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-26-claude-cli-update-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-26-claude-code-login-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-26-gcp-multi-gpu-training-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-26-gpu-cloud-ai-2025-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-26-gymnasium-replacement-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-26-hong-kong-banks-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-26-init-py-explanation-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-26-macos-error-fix-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-26-nvidia-a800-specs-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-26-top-3-gpu-clouds-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-26-use-claude-openrouter-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-26-using-claude-programming-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-26-xvfb-explained-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-27-01.ai-yi-fall-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-27-ai-agent-tool-evaluation-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-27-change-open-webui-port-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-27-distributed-task-frameworks-2025-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-27-evaluating-space-ideas-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-27-heterogeneous-distributed-training-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-27-jekyll-ml-pytorch-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-27-mcp-500-error-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-27-network-services-macos-linux-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-27-nginx-homebrew-config-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-27-ollama-adoption-challenges-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-27-open-graph-meta-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-27-pytest-for-api-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-27-rust-analyzer-fix-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-27-rust-cargo-setup-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-27-tech-points-clarity-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-27-tool-explanations-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-27-top-go-projects-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-27-upgrade-ollama-homebrew-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-27-wechat-moments-2025-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-27-west-china-perceptions-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-28-iphone-vpn-hotspot-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-29-connect-github-ssh-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-29-fix-pyperclip-install-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-29-pillow-image-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-29-redmi-buds-6-review-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-29-suspend-command-not-found-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-30-battery-charge-fix-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-30-charging-laptop-in-neta-ev-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-30-flutter-clean-hang-macos-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-30-jasmine-core-testing-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-31-chinese-returnees-startups-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-31-copilot-gpt4.1-grok-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-31-fix-private-function-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-31-httpx-socks-error-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-31-kerala-travel-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-31-makefile-cargo-run-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-31-markdown-to-slides-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-31-run-rust-program-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-31-rust-build-error-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-31-rust-edition2024-unstable-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-31-rust-features-example-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-07-31-rust-mut-vs-&mut-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-01-gh-copilot-cli-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-01-gpt5-mini-vs-gpt41-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-01-install-copilot-cli-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-01-python-logging-chatbot-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-02-2013-github-registration-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-02-ai-image-model-rankings-2025-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-02-amp-sourcegraph-tool-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-02-code-chat-release-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-02-early-github-users-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-02-fix-openssl-build-failure-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-02-fix-shiftkey-repo-error-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-02-fn-f5-mac-vscode-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-02-gcloud-update-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-02-git-schedule-trigger-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-02-github-actions-growth-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-02-github-registration-early-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-02-google-imagen-4-vertex-ai-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-02-great-individuals-matter-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-02-java-projects-beyond-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-02-java-projects-showcase-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-02-launch-vscode-extension-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-02-precompile-index-pages-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-02-python-java-bridge-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-02-seedream-3.0-review-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-02-top-30-open-source-2024-2025-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-02-top-c-projects-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-02-top-cpp-projects-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-02-update-cargo-toml-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-03-ai-vs-websites-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-03-baidus-ai-challenges-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-03-black-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-03-censorship-adaptation-lessons-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-03-charging-safety-rain-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-03-deepseek-mistral-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-03-easygoing-mindset-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-03-geoffrey-hintons-2013-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-03-getunstuckfix-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-03-julia-intro-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-03-late-languages-adoption-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-03-llm-text-generation-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-03-manus-vs-customized-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-03-power-vs-innovation-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-03-rusts-growth-trajectory-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-03-tch-rs-introduction-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-03-trans2025-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-04-google-gen-ai-image-config-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-04-image191x1200-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-04-imagen4-safety-filter-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-04-imagen4-vertexai-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-04-interrupt-cloud-infer-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-04-online-offline-selves-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-04-otherimgmodels-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-04-remove-width-height-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-04-top-text-image-ai-models-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-04-transform-image-ai-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-05-appdynamics-mastery-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-05-greptime-db-unified-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-05-open-source-ai-coding-agents-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-05-openrouter-langchain-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-05-python-langchain-patterns-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-05-router-vs-direct-api-cost-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-05-vs-code-ignore-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-06-bitter-lesson-drive-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-06-cuda-libraries-packages-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-06-determinant-expansion-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-06-fix-pil-imaging-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-06-install-py313-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-06-node-option-impacts-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-06-pythonpackagesinstalled-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-06-vllm-serving-llm-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-07-sync-spring-uat-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-08-networkx-matplotlib-graph-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-09-deepseek-sparse-attention-efficiency-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-09-git-verb-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-09-isac-robotics-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-09-jfif-jpg-hdr-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-10-python-coverage-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-12-%22java-agent-jar%22-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-12-disable-sticky-keys-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-12-git-diff-tree-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-13-jekyll-i18n-polyglot-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-14-npm-legacy-peer-deps-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-15-consumers-use-not-work-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-15-debit-vs-credit-historic-split-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-15-hsbc-hk-unionpay-debit-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-15-hsbc-one-digital-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-15-model-relationships-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-15-python-xml-parsing-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-15-same-pin-hkunionpay-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-16-fix-copilot-auth-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-16-fix-mecab-config-path-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-16-fix-python-import-paths-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-16-fixing-mistral-nemo-loops-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-16-japanese-macos-apps-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-16-kalman-filter-simple-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-16-macos-python-window-capture-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-16-mistral-medium-31-cost-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-16-nginx-port-macos-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-16-project-dir-structure-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-16-python-blog-automation-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-16-rebase-root-commit-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-16-ripgrep-vs-ack-diffs-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-16-spoco-seg-annotation-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-16-ultra-mobile-paygo-breakdown-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-16-vscode-search-exclusions-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-17-ai-cost-benchmark-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-17-db2-sql-error-104-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-17-difflib-overview-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-17-eyesight-scales-1v5-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-17-git-cherry-pick-usage-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-17-glove-format-load-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-17-kalman-filters-blogdata-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-17-load-glove-vectors-2ways-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-17-model-token-pricing-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-17-pycharm-rename-files-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-18-ai-model-cost-perf-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-18-cherry-pick-conflicts-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-18-cost-ai-performance-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-18-eth-not-erc20-transfers-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-18-ethereum-mainnet-erc20-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-20-ai-model-marketplace-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-20-ai-models-2025-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-20-api-router-config-opt-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-20-fix-npm-permission-denied-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-20-llm-local-web-options-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-20-mac-sec-eq-win-banks-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-20-macs-win-costs-bigbanks-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-20-nodejs-upgrade-ubuntu-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-20-python-311-pip-install-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-20-python-boom-hotspots-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-21-reassign-cr-owners-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-22-cross-border-payment-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-22-growth-no-overthinking-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-22-hongkong-fps-users-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-22-hsbc-hk-debit-taiwan-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-22-java-realworld-complexity-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-22-jdbc-drivers-2024-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-22-openrouter-token-growth-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-22-rhel-essentials-mastery-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-22-staging-git-patterns-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-23-deepseek-v3-1-pros-cons-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-23-deepseek-v31-hybrid-modes-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-23-fix-python-errors-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-23-force-pure-code-output-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-23-upgrade-openwebui-safely-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-23-whatsapp-tick-marks-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-24-ai-model-cost-perf-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-24-claude-api-pricing-2025-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-24-deepseek-toolcall-fixes-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-24-fix-claude-deepseek-routing-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-24-fix-deepseek-claude-schema-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-24-github-code-search-json-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-24-multimodel-proxy-config-24-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-25-ai-cli-design-principles-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-25-cupy-py313-fix-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-25-disable-claude-cache-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-26-python-workflow-diagrams-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-27-github-copilot-accept-all-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-27-jacoco-liberty-jvm-coverage-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-27-jacoco-python-api-tests-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-27-jacoco-spring-coverage-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-27-nano-banana-guide-2025-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-27-python-version-fix-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-28-angular-darkmode-checklist-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-29-codex-vs-claude-code-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-29-git-fetch-prune-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-29-korean-misclassified-fix-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-29-langdetect-nepali-error-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-30-ai-speed-realworld-utility-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-30-hindi-greetings-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-30-langid-codes-confidence-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-30-lightweight-spacy-alternatives-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-30-scheme-cps-transform-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-30-secure-random-generation-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-30-signal-privacy-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-08-30-was-spring-jdbc-timeout-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-01-barriers-chinese-talent-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-01-cffi-python-c-interface-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-01-dongguan-family-fun-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-01-dongguan-family-fun-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-01-f1-visa-214b-refusal-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-01-gre-guide-chinese-2024-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-01-late-life-migration-regrets-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-01-log4j-configuration-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-01-mistakes-are-inevitable-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-01-phd-journey-lessons-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-01-post-pandemic-us-cs-masters-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-01-progressive-lens-trial-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-01-pygetwindow-quick-start-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-01-social-media-shifts-2020-2025-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-01-tech-philosophies-culture-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-01-texas-am-essential-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-01-trial-frame-slots-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-01-trial-lenses-myopia-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-01-trump-ban-chinese-stem-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-01-us-cs-masters-guide-chinese-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-01-us-cs-masters-risk-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-ai-model-context-2025-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-black-python-formatter-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-diesel-vs-petrol-engines-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-find-kill-jmx-process-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-fix-aac-m4a-gspeech-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-fix-ogg-opus-errors-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-git-rebase-squash-order-1-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-github-free-repo-limits-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-jacoco-coverage-metrics-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-java-request-logger-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-java-servlet-api-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-java8-inputstream-bytearray-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-jdbc-statement-vs-callable-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-jenkins-open-vs-enterprise-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-jira-task-assignment-strategies-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-jmx-remote-port-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-llm-api-validation-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-markdown-lint-clean-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-maven-surefire-testing-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-practical-test-layering-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-python-certifi-ssl-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-python-difflib-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-python-lib-design-openai-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-pywin32-window-control-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-remote-jmx-9001-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-rhel-enterprise-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-sg-query-lang-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-spring-batch-job-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-spring-property-precedence-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-strict-db-design-pays-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-tooluse-vs-functioncalling-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-typescript-local-setup-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-unittest-vs-pytest-diffs-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-was-vs-liberty-diffs-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-win-multilingual-arch-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-windows-taskkill-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-windows-toast-python-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-02-windows-tracert-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-03-ai-model-context-window-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-03-alphabet-h1-2025-revenue-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-03-building-trust-consistency-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-03-china-delivery-hacks-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-03-claude-sonnet-runtime-metrics-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-03-claude4-sonnet-metrics-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-03-claudecode-upgrade-quick-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-03-cmake-windows-usage-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-03-compact-78-key-keyboards-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-03-dbs-h1-2025-revenue-cuts-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-03-discipline-vs-speed-bets-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-03-git-garbage-collection-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-03-hsbc-h1-2025-revenue-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-03-jaccode-output-dir-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-03-jacoco-destfile-analysis-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-03-liberty-jacoco-agent-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-03-llm-training-non-nvidia-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-03-mistral-medium-token-hacks-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-03-model-response-wait-time-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-03-model-stopped-naturally-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-03-nvidia-90-8b-h1-2026-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-03-persistent-http-sessions-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-03-sc-h1-2025-growth-workforce-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-03-single-entry-hongkong-extension-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-03-spring-request-context-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-03-spring-session-jsessionid-detection-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-03-transcript-cleanup-models-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-03-trust-layers-meaning-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-05-core-llm-essentials-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-05-essential-python-packages-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-05-fast-growing-projects-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-05-github-copilot-api-bridge-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-05-installing-tomcat-macos-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-05-liberty-log-rotation-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-05-maven-tomcat-solutions-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-05-muon-matrix-optimizer-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-05-muon-ortho-optimizer-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-05-nano-banana-image-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-05-rtx4070ti-ai-projects-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-05-rtx4070ti-ml-dl-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-05-spring-context-init-failure-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-05-spring-webapp-setup-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-05-tomcat-jetty-comparison-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-05-web-app-deployment-options-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-05-working-directory-importance-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-06-ai-agent-forecast-2028-en</loc>
            <lastmod>2025-09-06T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-06-ai-model-cost-analysis-en</loc>
            <lastmod>2025-09-06T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-06-ai-over-brand-performance-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-06-ai-research-development-en</loc>
            <lastmod>2025-09-06T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-06-clipboard-git-noter-en</loc>
            <lastmod>2025-09-06T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-06-correlating-screenshots-logs-timezones-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-06-emerging-ai-companies-models-en</loc>
            <lastmod>2025-09-06T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-06-international-dialing-codes-en</loc>
            <lastmod>2025-09-06T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-06-java-code-coverage-alts-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-06-javacc-source-class-locations-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-06-jd-ai-ecommerce-tool-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-06-lstm-bugs-fixes-en</loc>
            <lastmod>2025-09-06T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-06-meshy-ai-innovates-en</loc>
            <lastmod>2025-09-06T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-06-model-fixes-improvements-en</loc>
            <lastmod>2025-09-06T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-06-optimal-model-selection-en</loc>
            <lastmod>2025-09-06T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-06-rtx4070ti-machine-learning-guide-en</loc>
            <lastmod>2025-09-06T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-06-tang-jie-ai-scholar-en</loc>
            <lastmod>2025-09-06T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-06-tieyi-peizheng-comparisons-en</loc>
            <lastmod>2025-09-06T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-06-top-chinese-llms-september-2025-en</loc>
            <lastmod>2025-09-06T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-06-zai-leadership-en</loc>
            <lastmod>2025-09-06T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-07-ai-book-summaries-en</loc>
            <lastmod>2025-09-07T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-07-ai-experts-strategy-en</loc>
            <lastmod>2025-09-07T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-07-big-tech-startup-tradeoffs-en</loc>
            <lastmod>2025-09-07T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-07-choosing-intellij-version-en</loc>
            <lastmod>2025-09-07T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-07-fix-blocked-google-fonts-en</loc>
            <lastmod>2025-09-07T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-07-google-fonts-cayman-en</loc>
            <lastmod>2025-09-07T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-07-grok-code-surge-dev-impact-en</loc>
            <lastmod>2025-09-07T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-07-hybrid-java-strategy-en</loc>
            <lastmod>2025-09-07T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-07-installing-openjdk8-macos-en</loc>
            <lastmod>2025-09-07T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-07-java-build-conflicts-en</loc>
            <lastmod>2025-09-07T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-07-jetty-stop-issues-en</loc>
            <lastmod>2025-09-07T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-07-migrate-spring5-javax-servlet-en</loc>
            <lastmod>2025-09-07T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-07-missing-jacoco-data-en</loc>
            <lastmod>2025-09-07T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-07-multi-computer-ai-management-en</loc>
            <lastmod>2025-09-07T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-07-multi-laptop-focus-en</loc>
            <lastmod>2025-09-07T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-07-multilaptop-blogging-workflow-en</loc>
            <lastmod>2025-09-07T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-07-multiple-laptops-coding-en</loc>
            <lastmod>2025-09-07T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-07-neta-magic-carpet-cabin-en</loc>
            <lastmod>2025-09-07T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-07-optimizing-many-models-router-en</loc>
            <lastmod>2025-09-07T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-07-parallel-ai-workspace-en</loc>
            <lastmod>2025-09-07T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-07-python-timezone-pytz-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-07-scott-wu-ai-windsurf-en</loc>
            <lastmod>2025-09-07T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-07-strategic-news-sharing-en</loc>
            <lastmod>2025-09-07T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-07-testing-human-algorithms-en</loc>
            <lastmod>2025-09-07T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-07-understanding-jacoco-excecution-data-en</loc>
            <lastmod>2025-09-07T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-07-workflow-ergonomics-ai-coding-en</loc>
            <lastmod>2025-09-07T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-08-global-ai-regulation-en</loc>
            <lastmod>2025-09-08T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-08-it-coverage-modular-spring-apps-en</loc>
            <lastmod>2025-09-08T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-08-jacoco-multimodule-coverage-en</loc>
            <lastmod>2025-09-08T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-08-jacoco-python-coverage-en</loc>
            <lastmod>2025-09-08T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-08-java-python-coverage-en</loc>
            <lastmod>2025-09-08T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-08-mongodb-docker-recovery-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-08-paramiko-ssh-sftp-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-08-python-datetime-overview-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-08-single-jvm-integration-coverage-en</loc>
            <lastmod>2025-09-08T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-09-challenge-consensus-understanding-en</loc>
            <lastmod>2025-09-09T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-09-fix-opus-transcription-en</loc>
            <lastmod>2025-09-09T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-09-gentle-hair-color-developer-en</loc>
            <lastmod>2025-09-09T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-09-google-cloud-speech-comparison-en</loc>
            <lastmod>2025-09-09T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-09-google-cloud-speech-models-en</loc>
            <lastmod>2025-09-09T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-09-integrate-deepseek-libreedat-en</loc>
            <lastmod>2025-09-09T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-09-java-debug-wire-protocol-en</loc>
            <lastmod>2025-09-09T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-09-jekyll-sitemap-generation-en</loc>
            <lastmod>2025-09-09T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-09-openrouter-chat-ui-en</loc>
            <lastmod>2025-09-09T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-09-practical-foot-soaks-en</loc>
            <lastmod>2025-09-09T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-09-prevent-github-forks-en</loc>
            <lastmod>2025-09-09T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-09-restart-docker-on-env-change-en</loc>
            <lastmod>2025-09-09T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-09-setting-openai-reverse-proxy-en</loc>
            <lastmod>2025-09-09T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-09-windows-ports-processes-en</loc>
            <lastmod>2025-09-09T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-10-ai-impact-programming-languages-en</loc>
            <lastmod>2025-09-10T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-10-api-test-idempotency-en</loc>
            <lastmod>2025-09-10T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-10-automating-vertical-agents-en</loc>
            <lastmod>2025-09-10T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-10-debugging-unittest-hangs-checklist-en</loc>
            <lastmod>2025-09-10T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-10-intellij-download-version-en</loc>
            <lastmod>2025-09-10T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-10-maven-encoding-fix-en</loc>
            <lastmod>2025-09-10T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-10-optimizing-llm-performance-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-10-python-m-flag-en</loc>
            <lastmod>2025-09-10T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-10-python-output-buffering-unittests-en</loc>
            <lastmod>2025-09-10T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-10-reading-critical-edge-en</loc>
            <lastmod>2025-09-10T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-10-skip-angular-maven-build-en</loc>
            <lastmod>2025-09-10T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-10-szymon-sidor-openai-en</loc>
            <lastmod>2025-09-10T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-10-szymon-sidor-research-en</loc>
            <lastmod>2025-09-10T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-11-api-testing-temporary-headers-en</loc>
            <lastmod>2025-09-11T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-11-base-chat-model-differences-en</loc>
            <lastmod>2025-09-11T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-11-characteristic-polynomial-en</loc>
            <lastmod>2025-09-11T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-11-copilot-enterprise-models-en</loc>
            <lastmod>2025-09-11T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-11-d-flip-flop-basics-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-11-exclude-ibm-packages-jacoco-en</loc>
            <lastmod>2025-09-11T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-11-flexible-instant-delivery-en</loc>
            <lastmod>2025-09-11T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-11-github-actions-matrix-builds-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-11-github-copilot-auth-en</loc>
            <lastmod>2025-09-11T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-11-github-copilot-wrapper-en</loc>
            <lastmod>2025-09-11T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-11-hybrid-librechat-config-en</loc>
            <lastmod>2025-09-11T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-11-introduction-python-examples-en</loc>
            <lastmod>2025-09-11T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-11-jacoco-coverage-append-en</loc>
            <lastmod>2025-09-11T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-11-jacoco-coverage-write-en</loc>
            <lastmod>2025-09-11T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-11-jacoco-maven-integration-en</loc>
            <lastmod>2025-09-11T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-11-jacoco-runtime-execution-en</loc>
            <lastmod>2025-09-11T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-11-java-spring-ai-agents-en</loc>
            <lastmod>2025-09-11T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-11-key-parameters-llm-apis-en</loc>
            <lastmod>2025-09-11T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-11-learn-from-mistakes-en</loc>
            <lastmod>2025-09-11T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-11-librechat-forking-implementation-en</loc>
            <lastmod>2025-09-11T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-11-librechat-private-mode-en</loc>
            <lastmod>2025-09-11T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-11-librechat-search-guide-en</loc>
            <lastmod>2025-09-11T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-11-llm-limits-complex-workflows-en</loc>
            <lastmod>2025-09-11T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-11-llm-temperature-basics-en</loc>
            <lastmod>2025-09-11T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-11-maven-lifecycle-jacoco-en</loc>
            <lastmod>2025-09-11T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-11-openai-chat-completions-en</loc>
            <lastmod>2025-09-11T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-11-pytest-fixture-usage-en</loc>
            <lastmod>2025-09-11T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-11-python-copilot-proxy-en</loc>
            <lastmod>2025-09-11T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-11-self-hosted-copilot-alternatives-en</loc>
            <lastmod>2025-09-11T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-11-troubleshooting-librechat-sidebar-en</loc>
            <lastmod>2025-09-11T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-11-verilog-hardware-design-en</loc>
            <lastmod>2025-09-11T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-11-verilog-introduction-en</loc>
            <lastmod>2025-09-11T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-12-air-fryer-hansan-korean-bbq-beef-en</loc>
            <lastmod>2025-09-12T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-12-cross-product-geometric-intuition-en</loc>
            <lastmod>2025-09-12T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-12-ethical-business-practices-en</loc>
            <lastmod>2025-09-12T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-12-huawei-ads4-overview-en</loc>
            <lastmod>2025-09-12T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-12-huawei-lidar-innovation-en</loc>
            <lastmod>2025-09-12T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-12-huawei-tvbox-overview-en</loc>
            <lastmod>2025-09-12T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-12-huawei-xiaomi-smart-home-stability-en</loc>
            <lastmod>2025-09-12T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-12-solving-ax-zero-pivots-en</loc>
            <lastmod>2025-09-12T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-12-sourcegraph-code-search-en</loc>
            <lastmod>2025-09-12T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-13-github-pages-public-repos-en</loc>
            <lastmod>2025-09-13T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-13-latest-ai-models-en</loc>
            <lastmod>2025-09-13T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-13-maven-vs-gradle-en</loc>
            <lastmod>2025-09-13T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-14-common-towel-types-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-14-connecting-shared-interests-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-14-disable-librechat-login-en</loc>
            <lastmod>2025-09-14T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-14-elg-stack-setup-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-14-great-teacher-lessons-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-14-groq-no-token-prediction-en</loc>
            <lastmod>2025-09-14T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-14-groq-pricing-transparency-en</loc>
            <lastmod>2025-09-14T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-14-groq-speed-efficiency-en</loc>
            <lastmod>2025-09-14T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-14-groq-speed-no-neural-nets-en</loc>
            <lastmod>2025-09-14T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-14-huawei-enterprise-software-en</loc>
            <lastmod>2025-09-14T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-14-librechat-ai-engineering-en</loc>
            <lastmod>2025-09-14T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-14-librechat-auth-disable-en</loc>
            <lastmod>2025-09-14T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-14-librechat-control-engineers-en</loc>
            <lastmod>2025-09-14T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-14-librechat-docker-breakdown-en</loc>
            <lastmod>2025-09-14T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-14-power-outage-preparedness-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-14-smart-guangzhou-weather-adaptation-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-14-sonoma-sky-overview-en</loc>
            <lastmod>2025-09-14T00:00:00+08:00</lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-15-cell-signal-power-outages-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-15-centralized-distributed-leadership-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-15-content-maintenance-like-big-tech-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-15-golden-week-arrangements-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-15-meaning-of-accountability-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-15-nvidia-stock-volatility-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-15-post-covid-mobility-shifts-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-15-serpapi-google-results-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-16-413-request-too-large-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-16-better-soup-methods-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-16-biguiyuan-real-estate-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-16-carlos-guestrin-ai-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-16-diagram-tools-beyond-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-16-hr-tech-hiring-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-16-karate-framework-visualization-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-16-karate-workflow-visualization-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-16-kwg-real-estate-overview-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-16-networkx-graph-examples-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-16-networkx-intro-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-16-personal-projects-accelerate-growth-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-16-python-diagram-code-alternatives-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-16-python-packages-diagrams-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-16-tianqi-chen-xgboost-1-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-16-tianqi-chen-xgboost-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-16-truncate-json-objects-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-17-us-skilled-software-engineer-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-17-us-tech-immigration-pathways-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-18-danqi-chen-ai-nlp-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-18-effective-engineering-presentation-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-18-hp-zbook-g10-camera-shutter-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-18-jackson-array-string-mapping-error-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-19-accessing-files-history-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-19-deepwiki-devin-automation-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-19-eastern-europe-complains-improve-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-19-github-actions-private-repos-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-19-intel-stock-nvidia-ai-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-19-intellij-remote-debugging-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-19-jekyll-no-autoclean-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-19-recent-ai-breakthroughs-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-19-recent-ai-september-2025-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-19-remove-github-forks-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-19-vietnam-visa-chinese-citizens-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-20-apple-tv-power-check-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-20-docker-container-removal-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-20-effective-meeting-guidelines-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-20-github-actions-push-auth-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-20-github-pat-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-20-huawei-smart-dock-buttons-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-20-huawei-smart-screen-dock-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-20-huawei-x65-dock-cable-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-20-interactive-git-rebase-root-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-20-jekyll-build-deploy-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-20-pgvector-embeddings-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-20-prevent-css-cache-busting-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-20-publishing-open-notes-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-20-safely-remove-ethernet-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-22-art-imitating-wizards-muggles-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-22-bali-island-gods-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-22-bigtech-2050-dominance-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-22-computer-rl-framework-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-22-deep-reading-decline-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-22-discord-rise-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-22-engaging-readers-authenticity-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-22-grok-4-fast-efficient-multimodal-ai-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-22-huangpu-junxiao-introduction-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-22-image-time-timestamps-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-22-leveraging-skills-career-growth-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-22-liuhecai-china-culture-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-22-multisim-design-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-22-overcoming-sunk-cost-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-22-resnets-deep-networks-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-22-trial-lenses-vision-correction-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-23-cisco-anyconnect-overview-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-23-corporate-rewards-loyalty-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-23-debunking-age-stereotypes-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-23-experiments-reveal-truths-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-23-focus-results-not-credit-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-23-hide-timer-distractions-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-23-post-covid-vanlife-surge-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-23-postmortem-analysis-improvement-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-23-professional-networking-archetypes-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-23-real-estate-psychological-traps-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-23-self-study-progress-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-23-trump-musk-reconcile-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-24-balancing-information-diets-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-24-llms-overkill-structured-data-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-24-managing-wechat-groups-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-24-mandatory-car-insurance-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-24-matrix-inversion-basics-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-24-maximizing-personal-growth-guangdong-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-24-nypl-location-history-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-24-shared-human-experience-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-24-spring-boot-http-filter-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-24-usa-niagara-falls-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-24-work-from-home-optimization-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-25-curiosity-breakthroughs-hobbies-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-25-fast-audio-transcription-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-25-hobbies-best-teachers-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-25-ogg-vs-m4a-comparison-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-25-parking-costs-xian-guangzhou-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-25-xian-parking-fees-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-26-ambition-vs-balance-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-26-api-selenium-comparison-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-26-april-1999-events-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-26-canada-study-work-visa-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-26-famous-indonesia-destinations-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-26-hong-kong-cost-challenges-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-26-monic-polynomials-root-finding-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-26-soak-rice-noodles-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-26-super-typhoon-ragasa-guangzhou-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-26-windows-11-vs-10-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-27-extract-last-ten-minutes-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-27-ogg-opus-troubleshooting-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-27-taobao-photo-privacy-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-27-youmi-kimura-spirited-away-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-28-active-firefox-window-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-28-aws-lambda-pdf-generation-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-28-baseus-car-chargers-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-28-basic-romanian-phrases-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-28-configured-milk-beverage-ingredients-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-28-depth-over-breadth-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-28-firefox-window-detection-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-28-install-docker-ubuntu-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-28-installing-discord-deb-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-28-installing-xdotool-linux-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-28-invest-deeply-friendships-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-28-iphone-camera-protector-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-28-japanese-verb-breakdown-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-28-milk-beverage-ingredients-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-28-nachdi-phiran-analysis-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-28-playwright-e2e-testing-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-28-rare-technical-content-examples-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-28-reminiscences-stock-operator-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-28-reverse-myopia-weaker-glasses-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-28-secret-superstar-devotional-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-28-technical-content-value-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-28-tiktoken-tokenization-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-28-vscode-cursor-fix-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-28-xdotool-automation-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-28-xdotool-x11-debugging-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-28-xylene-properties-uses-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-29-clean-xcode-junk-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-29-flutter-xcode-signing-fix-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-29-git-force-push-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-29-optimizing-llm-caching-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-29-windows-11-october-2024-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-30-claude-code-multi-directory-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-30-muon-optimizer-overview-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-30-muonclip-optimizer-k2-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-30-python-import-extractor-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-30-sprouted-potato-safety-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-30-upgrade-claude-code-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-09-30-warm-climate-potato-storage-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-01-ai-video-frames-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-01-browser-task-compartmentalization-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-01-buy-sell-signals-missing-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-01-chinese-noodles-health-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-01-code-editors-ides-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-01-efficient-project-contexts-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-01-gradual-art-persuasion-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-01-install-claude-github-app-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-01-khozema-shipchandler-profile-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-01-macos-terminal-emulators-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-01-post-endpoint-hanging-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-01-sora-2-video-advancements-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-01-spring-boot-api-testing-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-01-tiger-kline-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-01-tiger-trade-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-01-unix-heritage-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-01-video-analysis-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-alipay-sdk-php-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-automating-data-validation-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-beyond-sustainable-coding-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-build-dependencies-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-ca-certificate-bundles-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-cdchatlistvc-conversation-manager-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-chinas-play-shift-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-classification-error-rates-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-codeigniter-autoloading-overview-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-codeigniter-cache-overview-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-codeigniter-config-overview-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-codeigniter-database-config-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-codeigniter-hooks-overview-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-codeigniter-loader-class-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-codeigniter-migrations-schema-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-codeigniter-profiler-config-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-codeigniter-rest-api-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-codeigniter-routing-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-codeigniter-transliteration-config-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-convection-microwave-sweet-potato-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-custom-chat-cell-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-diffusion-models-generative-ai-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-docker-compose-ubuntu-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-docker-registry-timeout-1-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-docker-registry-timeout-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-dockerize-java-deployment-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-doctype-reference-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-efficient-lora-tuning-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-engineers-practical-content-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-fast-docker-compose-install-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-fmdb-ios-database-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-free-macos-storage-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-front-controller-bootstrap-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-gnome-terminal-fix-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-image-upload-controller-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-install-zed-ubuntu-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-ios-chat-controller-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-ios-code-review-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-ios-simulator-dyld-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-knowledge-value-perception-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-leanchat-appdelegate-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-leanchat-ios-controller-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-leanchatlib-podspec-overview-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-lei-chen-partnership-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-librechat-setup-without-docker-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-librechat-ubuntu-install-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-llm-data-validation-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-lora-code-breakdown-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-lora-efficient-tuning-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-lora-implementation-pytorch-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-memcached-overview-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-modern-web-layouts-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-roasting-long-red-potatoes-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-shadowrocket-config-analysis-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-smiley-helper-config-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-transfer-media-disk-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-user-agent-configuration-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-vue-livestream-intro-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-vue-stream-control-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-vue-streaming-component-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-wechat-integration-code-1-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-02-wechat-integration-code-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-03-ai-tech-stack-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-03-alibaba-replaces-ibm-oracle-emc-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-03-authentic-wechat-connections-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-03-avaloq-banking-wealth-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-03-avaloq-error-codes-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-03-banking-investment-systems-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-03-clash-proxy-successors-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-03-custom-banking-framework-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-03-db2-community-overview-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-03-db2-download-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-03-finacle-banking-introduction-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-03-finacle-wealth-mutual-funds-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-03-fixing-python-gi-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-03-gfw-bypass-latency-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-03-gnome-terminal-python-fix-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-03-ibm-db2-2025-position-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-03-ibm-db2-proprietary-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-03-ibm-red-hat-timeline-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-03-ibmid-profile-fix-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-03-insecurities-fuel-success-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-03-installing-oracle-12c-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-03-leaving-toxic-environments-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-03-leaving-toxicity-growth-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-03-musk-altman-ai-feud-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-03-mutual-funds-explained-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-03-open-sublime-text-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-03-openshift-overview-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-03-outdated-basic-english-certification-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-03-peft-lora-explained-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-03-pivotal-cloud-foundry-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-03-proxy-optimization-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-03-selenium-web-scraping-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-03-subl-command-line-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-03-sublime-text-2025-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-03-understanding-service-meshes-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-03-word-mogul-meanings-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-04-aminer-ai-platform-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-04-calculation-trumps-syntax-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-04-chinas-ai-tigers-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-04-configure-docker-dns-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-04-docker-ghcr-tls-timeout-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-04-docker-memory-librechat-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-04-docker-proxy-config-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-04-docker-proxy-loops-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-04-docker-vs-docker-compose-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-04-druckenmiller-trading-legend-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-04-finding-your-niche-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-04-ghostty-terminal-emulator-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-04-high-school-tracks-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-04-installing-db2-ubuntu-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-04-jie-tang-tsinghua-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-04-jwt-secret-fix-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-04-kibana-log-checking-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-04-kibana-pcf-logs-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-04-laravel-vs-codeigniter-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-04-librechat-localhost-access-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-04-lora-vs-finetuning-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-04-mongodb-comprehensive-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-04-mongodb-flexibility-librechat-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-04-myopia-reversal-trial-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-04-nepal-genz-uprising-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-04-payme-china-barriers-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-04-persistent-visionaries-reward-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-04-playground-ai-shuts-down-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-04-quick-dinners-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-04-south-asian-youth-protests-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-04-tech-vibes-culture-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-04-video-rhythm-sync-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-05-2025-china-news-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-05-atk-bridge-warning-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-05-barmak-uyghur-translator-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-05-chinese-street-food-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-05-civil-service-motivations-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-05-cultural-resistance-hongkong-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-05-exiting-fullscreen-ghostty-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-05-ghostty-config-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-05-ghostty-configuration-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-05-ghostty-terminal-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-05-hierarchies-hinder-science-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-05-hong-kong-politics-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-05-hong-kong-youth-protest-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-05-identifying-experts-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-05-india-language-divide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-05-information-accelerating-spread-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-05-installing-wezterm-ubuntu-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-05-leading-llm-engineers-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-05-llama-4-hype-reality-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-05-lora-fine-tuning-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-05-metas-llama-rise-fall-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-05-real-time-blog-notifications-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-05-ren-suxi-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-05-resilient-reinvention-grit-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-05-smart-nation-overview-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-05-sunrise-sunset-colors-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-05-sunrise-sunset-enhancement-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-05-tinker-fine-tuning-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-05-trial-lens-auxiliary-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-05-urban-marriage-delay-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-05-us-events-2025-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-05-zed-ai-editor-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-06-advanced-os-binary-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-06-ai-gui-future-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-06-audi-bmw-transponder-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-06-bitcoin-introduction-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-06-bitcoin-mining-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-06-cost-effective-markdown-pdf-api-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-06-delta-force-ios-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-06-democratizing-discovery-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-06-eyeglass-prescription-verification-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-06-fangzhouzi-wildflower-hiking-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-06-filter-projects-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-06-finacle-vs-avaloq-1-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-06-finacle-vs-avaloq-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-06-functional-programming-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-06-generative-ai-distinction-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-06-guangzhou-shopping-malls-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-06-guangzhou-street-drinks-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-06-intel-uhd-graphics-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-06-knowledge-sharing-defensiveness-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-06-lightweight-pytorch-cuda-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-06-metamask-vs-phantom-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-06-neta-os-overview-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-06-nvidia-volatile-growth-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-06-online-exploitation-china-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-06-optimize-code-pruning-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-06-pip-executable-scripts-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-06-psycopg2-python-adapter-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-06-reverse-myopia-naturally-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-06-soap-envelope-xml-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-06-western-counterparts-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-07-ai-compiler-logs-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-07-ai-human-benefits-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-07-apple-35w-adapter-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-07-chinas-ai-hubs-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-07-configure-python-requests-proxy-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-07-enable-powertoys-startup-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-07-friedman-ai-programming-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-07-friedman-quiet-influence-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-07-git-cron-sync-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-07-google-cloud-run-1-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-07-google-cloud-run-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-07-numpy-memmap-leaks-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-07-openai-devday-2025-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-07-peoplesoft-history-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-07-popularity-filter-truth-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-07-south-china-primary-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-07-tencent-hunyuan-ai-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-07-understanding-nanogpt-output-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-360-wifi6-t7-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-apple-live-translation-performance-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-bitcoin-access-china-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-browserstack-testing-overview-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-china-telecom-global-express-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-chromium-vs-chrome-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-common-fruits-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-compact-wifi-module-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-dhcp-router-wan-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-dragonboard-410c-overview-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-easy-road-trips-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-esim-global-travel-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-esp32-arduino-iot-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-esp32cam-overview-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-esp8266-overview-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-fotile-insink-dishwasher-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-frequent-renewals-allowed-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-guangdong-admission-scores-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-guangdong-government-services-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-guangdong-second-normal-admission-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-guangji-bridge-chaozhou-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-guangzhou-self-service-endorsement-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-hong-kong-macau-tourism-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-immediate-hk-endorsement-renewal-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-install-chromium-ubuntu-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-joan-security-camera-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-libcurl-config-fix-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-linking-errors-fix-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-monitoring-network-admin-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-monitoring-router-traffic-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-nano-gpt-training-1-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-nano-gpt-training-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-nanogpt-cpu-training-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-nvidia-gpu-status-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-premium-industrial-mlc-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-tech-visa-adventures-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-ubuntu-browser-install-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-ubuntu-proxy-bypass-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-uncensored-llms-explained-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-08-workspace-layout-productivity-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-09-dual-wifi-adapters-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-09-git-database-options-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-09-git-db-versioning-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-09-gnupg-cryptography-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-09-gpg-encryption-signing-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-09-hikvision-aiot-products-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-09-hikvision-meiyijia-stores-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-09-openpgp-key-generation-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-09-ruijie-ew3000gx-router-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-09-top-databases-2025-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-09-top-databases-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-09-wifi-password-generator-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-10-allen-zhang-wechat-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-10-arduino-wifi-scanner-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-10-career-bands-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-10-change-cursor-line-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-10-dfs-competitive-benefits-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-10-dji-mini3-tracking-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-10-encryption-differences-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-10-ghostty-glibc-fix-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-10-ghostty-launch-issues-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-10-mens-longsleeved-tops-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-10-problem-gambling-harms-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/notes/2025-10-10-quick-dry-shirt-guide-en</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/404.html</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/index-ar</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/index-de</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/index-es</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/index-fr</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/index-hant</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/index-hi</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/index-ja</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/index-zh</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/robots.txt</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/sitemap.xml</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/assets/css/style.css</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/node_modules/data-uri-to-buffer/</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/node_modules/fetch-blob/</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/node_modules/formdata-node/</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/node_modules/formdata-polyfill/</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/node_modules/node-domexception/</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/node_modules/node-fetch/</loc>
            <lastmod></lastmod>
          </url>
           
         
           
          <url>
            <loc>https://lzwjava.github.io/node_modules/web-streams-polyfill/</loc>
            <lastmod></lastmod>
          </url>
           
         
         
        <url>
          <loc>https://lzwjava.github.io/trial-lenses-zh</loc>
          <lastmod>2025-10-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/trial-lenses-ja</loc>
          <lastmod>2025-10-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/trial-lenses-hi</loc>
          <lastmod>2025-10-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/trial-lenses-hant</loc>
          <lastmod>2025-10-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/trial-lenses-fr</loc>
          <lastmod>2025-10-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/trial-lenses-es</loc>
          <lastmod>2025-10-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/trial-lenses-en</loc>
          <lastmod>2025-10-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/trial-lenses-de</loc>
          <lastmod>2025-10-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/trial-lenses-ar</loc>
          <lastmod>2025-10-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shawn-interview-zh</loc>
          <lastmod>2025-09-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shawn-interview-ja</loc>
          <lastmod>2025-09-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shawn-interview-hi</loc>
          <lastmod>2025-09-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shawn-interview-hant</loc>
          <lastmod>2025-09-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shawn-interview-fr</loc>
          <lastmod>2025-09-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shawn-interview-es</loc>
          <lastmod>2025-09-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shawn-interview-en</loc>
          <lastmod>2025-09-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shawn-interview-de</loc>
          <lastmod>2025-09-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shawn-interview-ar</loc>
          <lastmod>2025-09-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/kid-phone-use-zh</loc>
          <lastmod>2025-09-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/kid-phone-use-ja</loc>
          <lastmod>2025-09-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/kid-phone-use-hi</loc>
          <lastmod>2025-09-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/kid-phone-use-hant</loc>
          <lastmod>2025-09-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/kid-phone-use-fr</loc>
          <lastmod>2025-09-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/kid-phone-use-es</loc>
          <lastmod>2025-09-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/kid-phone-use-en</loc>
          <lastmod>2025-09-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/kid-phone-use-de</loc>
          <lastmod>2025-09-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/kid-phone-use-ar</loc>
          <lastmod>2025-09-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/posts-zh</loc>
          <lastmod>2025-09-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/posts-ja</loc>
          <lastmod>2025-09-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/posts-hi</loc>
          <lastmod>2025-09-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/posts-hant</loc>
          <lastmod>2025-09-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/posts-fr</loc>
          <lastmod>2025-09-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/posts-es</loc>
          <lastmod>2025-09-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/posts-en</loc>
          <lastmod>2025-09-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/posts-de</loc>
          <lastmod>2025-09-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/posts-ar</loc>
          <lastmod>2025-09-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hf-interview-zh</loc>
          <lastmod>2025-09-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hf-interview-ja</loc>
          <lastmod>2025-09-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hf-interview-hi</loc>
          <lastmod>2025-09-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hf-interview-hant</loc>
          <lastmod>2025-09-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hf-interview-fr</loc>
          <lastmod>2025-09-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hf-interview-es</loc>
          <lastmod>2025-09-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hf-interview-en</loc>
          <lastmod>2025-09-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hf-interview-de</loc>
          <lastmod>2025-09-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hf-interview-ar</loc>
          <lastmod>2025-09-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/be-best-zh</loc>
          <lastmod>2025-08-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/be-best-ja</loc>
          <lastmod>2025-08-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/be-best-hi</loc>
          <lastmod>2025-08-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/be-best-hant</loc>
          <lastmod>2025-08-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/be-best-fr</loc>
          <lastmod>2025-08-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/be-best-es</loc>
          <lastmod>2025-08-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/be-best-en</loc>
          <lastmod>2025-08-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/be-best-de</loc>
          <lastmod>2025-08-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/be-best-ar</loc>
          <lastmod>2025-08-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/angry-zh</loc>
          <lastmod>2025-08-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/angry-ja</loc>
          <lastmod>2025-08-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/angry-hi</loc>
          <lastmod>2025-08-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/angry-hant</loc>
          <lastmod>2025-08-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/angry-fr</loc>
          <lastmod>2025-08-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/angry-es</loc>
          <lastmod>2025-08-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/angry-en</loc>
          <lastmod>2025-08-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/angry-de</loc>
          <lastmod>2025-08-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/angry-ar</loc>
          <lastmod>2025-08-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/recommend-for-engineers-zh</loc>
          <lastmod>2025-08-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/links-zh</loc>
          <lastmod>2025-08-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/recommend-for-engineers-ja</loc>
          <lastmod>2025-08-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/links-ja</loc>
          <lastmod>2025-08-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/recommend-for-engineers-hi</loc>
          <lastmod>2025-08-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/links-hi</loc>
          <lastmod>2025-08-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/recommend-for-engineers-hant</loc>
          <lastmod>2025-08-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/links-hant</loc>
          <lastmod>2025-08-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/recommend-for-engineers-fr</loc>
          <lastmod>2025-08-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/links-fr</loc>
          <lastmod>2025-08-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/recommend-for-engineers-es</loc>
          <lastmod>2025-08-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/links-es</loc>
          <lastmod>2025-08-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/recommend-for-engineers-en</loc>
          <lastmod>2025-08-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/links-en</loc>
          <lastmod>2025-08-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/recommend-for-engineers-de</loc>
          <lastmod>2025-08-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/links-de</loc>
          <lastmod>2025-08-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/recommend-for-engineers-ar</loc>
          <lastmod>2025-08-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/links-ar</loc>
          <lastmod>2025-08-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/growth-reason-zh</loc>
          <lastmod>2025-08-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/growth-reason-ja</loc>
          <lastmod>2025-08-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/growth-reason-hi</loc>
          <lastmod>2025-08-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/growth-reason-hant</loc>
          <lastmod>2025-08-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/growth-reason-fr</loc>
          <lastmod>2025-08-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/growth-reason-es</loc>
          <lastmod>2025-08-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/growth-reason-en</loc>
          <lastmod>2025-08-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/growth-reason-de</loc>
          <lastmod>2025-08-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/growth-reason-ar</loc>
          <lastmod>2025-08-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/llm-zh</loc>
          <lastmod>2025-08-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/llm-ja</loc>
          <lastmod>2025-08-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/llm-hi</loc>
          <lastmod>2025-08-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/llm-hant</loc>
          <lastmod>2025-08-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/llm-fr</loc>
          <lastmod>2025-08-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/llm-es</loc>
          <lastmod>2025-08-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/llm-en</loc>
          <lastmod>2025-08-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/llm-de</loc>
          <lastmod>2025-08-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/llm-ar</loc>
          <lastmod>2025-08-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/beyond-expectations-zh</loc>
          <lastmod>2025-07-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/beyond-expectations-ja</loc>
          <lastmod>2025-07-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/beyond-expectations-hi</loc>
          <lastmod>2025-07-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/beyond-expectations-hant</loc>
          <lastmod>2025-07-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/beyond-expectations-fr</loc>
          <lastmod>2025-07-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/beyond-expectations-es</loc>
          <lastmod>2025-07-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/beyond-expectations-en</loc>
          <lastmod>2025-07-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/beyond-expectations-de</loc>
          <lastmod>2025-07-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/beyond-expectations-ar</loc>
          <lastmod>2025-07-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/work-car-zh</loc>
          <lastmod>2025-07-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/change-habit-zh</loc>
          <lastmod>2025-07-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/work-car-ja</loc>
          <lastmod>2025-07-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/change-habit-ja</loc>
          <lastmod>2025-07-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/work-car-hi</loc>
          <lastmod>2025-07-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/change-habit-hi</loc>
          <lastmod>2025-07-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/work-car-hant</loc>
          <lastmod>2025-07-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/change-habit-hant</loc>
          <lastmod>2025-07-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/work-car-fr</loc>
          <lastmod>2025-07-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/change-habit-fr</loc>
          <lastmod>2025-07-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/work-car-es</loc>
          <lastmod>2025-07-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/change-habit-es</loc>
          <lastmod>2025-07-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/work-car-en</loc>
          <lastmod>2025-07-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/change-habit-en</loc>
          <lastmod>2025-07-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/work-car-de</loc>
          <lastmod>2025-07-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/change-habit-de</loc>
          <lastmod>2025-07-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/work-car-ar</loc>
          <lastmod>2025-07-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/change-habit-ar</loc>
          <lastmod>2025-07-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/engineering-optimized-ai-zh</loc>
          <lastmod>2025-07-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/basic-electronics-zh</loc>
          <lastmod>2025-07-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/engineering-optimized-ai-ja</loc>
          <lastmod>2025-07-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/basic-electronics-ja</loc>
          <lastmod>2025-07-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/engineering-optimized-ai-hi</loc>
          <lastmod>2025-07-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/basic-electronics-hi</loc>
          <lastmod>2025-07-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/engineering-optimized-ai-hant</loc>
          <lastmod>2025-07-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/basic-electronics-hant</loc>
          <lastmod>2025-07-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/engineering-optimized-ai-fr</loc>
          <lastmod>2025-07-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/basic-electronics-fr</loc>
          <lastmod>2025-07-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/engineering-optimized-ai-es</loc>
          <lastmod>2025-07-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/basic-electronics-es</loc>
          <lastmod>2025-07-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/engineering-optimized-ai-en</loc>
          <lastmod>2025-07-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/basic-electronics-en</loc>
          <lastmod>2025-07-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/engineering-optimized-ai-de</loc>
          <lastmod>2025-07-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/basic-electronics-de</loc>
          <lastmod>2025-07-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/engineering-optimized-ai-ar</loc>
          <lastmod>2025-07-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/basic-electronics-ar</loc>
          <lastmod>2025-07-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hsbc-ocbc-zh</loc>
          <lastmod>2025-07-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hsbc-ocbc-ja</loc>
          <lastmod>2025-07-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hsbc-ocbc-hi</loc>
          <lastmod>2025-07-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hsbc-ocbc-hant</loc>
          <lastmod>2025-07-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hsbc-ocbc-fr</loc>
          <lastmod>2025-07-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hsbc-ocbc-es</loc>
          <lastmod>2025-07-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hsbc-ocbc-en</loc>
          <lastmod>2025-07-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hsbc-ocbc-de</loc>
          <lastmod>2025-07-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hsbc-ocbc-ar</loc>
          <lastmod>2025-07-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/why-write-zh</loc>
          <lastmod>2025-07-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/invite-global-zh</loc>
          <lastmod>2025-07-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/why-write-ja</loc>
          <lastmod>2025-07-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/invite-global-ja</loc>
          <lastmod>2025-07-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/why-write-hi</loc>
          <lastmod>2025-07-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/invite-global-hi</loc>
          <lastmod>2025-07-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/why-write-hant</loc>
          <lastmod>2025-07-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/invite-global-hant</loc>
          <lastmod>2025-07-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/why-write-fr</loc>
          <lastmod>2025-07-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/invite-global-fr</loc>
          <lastmod>2025-07-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/why-write-es</loc>
          <lastmod>2025-07-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/invite-global-es</loc>
          <lastmod>2025-07-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/why-write-en</loc>
          <lastmod>2025-07-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/invite-global-en</loc>
          <lastmod>2025-07-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/why-write-de</loc>
          <lastmod>2025-07-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/invite-global-de</loc>
          <lastmod>2025-07-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/why-write-ar</loc>
          <lastmod>2025-07-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/invite-global-ar</loc>
          <lastmod>2025-07-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/whatsapp-web-zh</loc>
          <lastmod>2025-07-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ghibli-images-zh</loc>
          <lastmod>2025-07-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/whatsapp-web-ja</loc>
          <lastmod>2025-07-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ghibli-images-ja</loc>
          <lastmod>2025-07-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/whatsapp-web-hi</loc>
          <lastmod>2025-07-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ghibli-images-hi</loc>
          <lastmod>2025-07-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/whatsapp-web-hant</loc>
          <lastmod>2025-07-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ghibli-images-hant</loc>
          <lastmod>2025-07-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/whatsapp-web-fr</loc>
          <lastmod>2025-07-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ghibli-images-fr</loc>
          <lastmod>2025-07-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/whatsapp-web-es</loc>
          <lastmod>2025-07-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ghibli-images-es</loc>
          <lastmod>2025-07-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/whatsapp-web-en</loc>
          <lastmod>2025-07-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ghibli-images-en</loc>
          <lastmod>2025-07-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/whatsapp-web-de</loc>
          <lastmod>2025-07-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ghibli-images-de</loc>
          <lastmod>2025-07-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/whatsapp-web-ar</loc>
          <lastmod>2025-07-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ghibli-images-ar</loc>
          <lastmod>2025-07-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/scale-team-zh</loc>
          <lastmod>2025-07-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/scale-team-ja</loc>
          <lastmod>2025-07-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/scale-team-hi</loc>
          <lastmod>2025-07-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/scale-team-hant</loc>
          <lastmod>2025-07-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/scale-team-fr</loc>
          <lastmod>2025-07-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/scale-team-es</loc>
          <lastmod>2025-07-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/scale-team-en</loc>
          <lastmod>2025-07-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/scale-team-de</loc>
          <lastmod>2025-07-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/scale-team-ar</loc>
          <lastmod>2025-07-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/others-thoughts-zh</loc>
          <lastmod>2025-07-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-easier-zh</loc>
          <lastmod>2025-07-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/japanese-essay-zh</loc>
          <lastmod>2025-07-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/car-accidents-zh</loc>
          <lastmod>2025-07-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/others-thoughts-ja</loc>
          <lastmod>2025-07-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-easier-ja</loc>
          <lastmod>2025-07-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/japanese-essay-ja</loc>
          <lastmod>2025-07-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/car-accidents-ja</loc>
          <lastmod>2025-07-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/others-thoughts-hi</loc>
          <lastmod>2025-07-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-easier-hi</loc>
          <lastmod>2025-07-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/japanese-essay-hi</loc>
          <lastmod>2025-07-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/car-accidents-hi</loc>
          <lastmod>2025-07-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/others-thoughts-hant</loc>
          <lastmod>2025-07-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-easier-hant</loc>
          <lastmod>2025-07-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/japanese-essay-hant</loc>
          <lastmod>2025-07-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/car-accidents-hant</loc>
          <lastmod>2025-07-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/others-thoughts-fr</loc>
          <lastmod>2025-07-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-easier-fr</loc>
          <lastmod>2025-07-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/japanese-essay-fr</loc>
          <lastmod>2025-07-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/car-accidents-fr</loc>
          <lastmod>2025-07-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/others-thoughts-es</loc>
          <lastmod>2025-07-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-easier-es</loc>
          <lastmod>2025-07-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/japanese-essay-es</loc>
          <lastmod>2025-07-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/car-accidents-es</loc>
          <lastmod>2025-07-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/others-thoughts-en</loc>
          <lastmod>2025-07-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-easier-en</loc>
          <lastmod>2025-07-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/japanese-essay-en</loc>
          <lastmod>2025-07-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/car-accidents-en</loc>
          <lastmod>2025-07-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/others-thoughts-de</loc>
          <lastmod>2025-07-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-easier-de</loc>
          <lastmod>2025-07-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/japanese-essay-de</loc>
          <lastmod>2025-07-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/car-accidents-de</loc>
          <lastmod>2025-07-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/others-thoughts-ar</loc>
          <lastmod>2025-07-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-easier-ar</loc>
          <lastmod>2025-07-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/japanese-essay-ar</loc>
          <lastmod>2025-07-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/car-accidents-ar</loc>
          <lastmod>2025-07-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gd-travel-zh</loc>
          <lastmod>2025-07-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bad-engineer-zh</loc>
          <lastmod>2025-07-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gd-travel-ja</loc>
          <lastmod>2025-07-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bad-engineer-ja</loc>
          <lastmod>2025-07-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gd-travel-hi</loc>
          <lastmod>2025-07-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bad-engineer-hi</loc>
          <lastmod>2025-07-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gd-travel-hant</loc>
          <lastmod>2025-07-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bad-engineer-hant</loc>
          <lastmod>2025-07-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gd-travel-fr</loc>
          <lastmod>2025-07-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bad-engineer-fr</loc>
          <lastmod>2025-07-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gd-travel-es</loc>
          <lastmod>2025-07-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bad-engineer-es</loc>
          <lastmod>2025-07-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gd-travel-en</loc>
          <lastmod>2025-07-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bad-engineer-en</loc>
          <lastmod>2025-07-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gd-travel-de</loc>
          <lastmod>2025-07-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bad-engineer-de</loc>
          <lastmod>2025-07-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gd-travel-ar</loc>
          <lastmod>2025-07-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bad-engineer-ar</loc>
          <lastmod>2025-07-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/kqv-transformers-zh</loc>
          <lastmod>2025-07-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/big-companies-zh</loc>
          <lastmod>2025-07-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/kqv-transformers-ja</loc>
          <lastmod>2025-07-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/big-companies-ja</loc>
          <lastmod>2025-07-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/kqv-transformers-hi</loc>
          <lastmod>2025-07-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/big-companies-hi</loc>
          <lastmod>2025-07-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/kqv-transformers-hant</loc>
          <lastmod>2025-07-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/big-companies-hant</loc>
          <lastmod>2025-07-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/kqv-transformers-fr</loc>
          <lastmod>2025-07-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/big-companies-fr</loc>
          <lastmod>2025-07-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/kqv-transformers-es</loc>
          <lastmod>2025-07-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/big-companies-es</loc>
          <lastmod>2025-07-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/kqv-transformers-en</loc>
          <lastmod>2025-07-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/big-companies-en</loc>
          <lastmod>2025-07-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/kqv-transformers-de</loc>
          <lastmod>2025-07-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/big-companies-de</loc>
          <lastmod>2025-07-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/kqv-transformers-ar</loc>
          <lastmod>2025-07-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/big-companies-ar</loc>
          <lastmod>2025-07-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/safe-zh</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/restart-vscode-zh</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/juice-zh</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/good-things-zh</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bee-sting-zh</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-companion-zh</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/safe-ja</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/restart-vscode-ja</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/juice-ja</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/good-things-ja</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bee-sting-ja</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-companion-ja</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/safe-hi</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/restart-vscode-hi</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/juice-hi</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/good-things-hi</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bee-sting-hi</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-companion-hi</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/safe-hant</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/restart-vscode-hant</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/juice-hant</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/good-things-hant</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bee-sting-hant</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-companion-hant</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/safe-fr</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/restart-vscode-fr</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/juice-fr</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/good-things-fr</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bee-sting-fr</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-companion-fr</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/safe-es</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/restart-vscode-es</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/juice-es</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/good-things-es</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bee-sting-es</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-companion-es</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/safe-en</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/restart-vscode-en</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/juice-en</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/good-things-en</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bee-sting-en</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-companion-en</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/safe-de</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/restart-vscode-de</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/juice-de</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/good-things-de</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bee-sting-de</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-companion-de</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/safe-ar</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/restart-vscode-ar</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/juice-ar</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/good-things-ar</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bee-sting-ar</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-companion-ar</loc>
          <lastmod>2025-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/paragraph-translation-zh</loc>
          <lastmod>2025-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/electronic-lock-zh</loc>
          <lastmod>2025-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/avoid-mosquito-zh</loc>
          <lastmod>2025-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-sql-zh</loc>
          <lastmod>2025-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/paragraph-translation-ja</loc>
          <lastmod>2025-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/electronic-lock-ja</loc>
          <lastmod>2025-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/avoid-mosquito-ja</loc>
          <lastmod>2025-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-sql-ja</loc>
          <lastmod>2025-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/paragraph-translation-hi</loc>
          <lastmod>2025-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/electronic-lock-hi</loc>
          <lastmod>2025-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/avoid-mosquito-hi</loc>
          <lastmod>2025-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-sql-hi</loc>
          <lastmod>2025-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/paragraph-translation-hant</loc>
          <lastmod>2025-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/electronic-lock-hant</loc>
          <lastmod>2025-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/avoid-mosquito-hant</loc>
          <lastmod>2025-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-sql-hant</loc>
          <lastmod>2025-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/paragraph-translation-fr</loc>
          <lastmod>2025-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/electronic-lock-fr</loc>
          <lastmod>2025-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/avoid-mosquito-fr</loc>
          <lastmod>2025-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-sql-fr</loc>
          <lastmod>2025-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/paragraph-translation-es</loc>
          <lastmod>2025-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/electronic-lock-es</loc>
          <lastmod>2025-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/avoid-mosquito-es</loc>
          <lastmod>2025-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-sql-es</loc>
          <lastmod>2025-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/paragraph-translation-en</loc>
          <lastmod>2025-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/electronic-lock-en</loc>
          <lastmod>2025-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/avoid-mosquito-en</loc>
          <lastmod>2025-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-sql-en</loc>
          <lastmod>2025-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/paragraph-translation-de</loc>
          <lastmod>2025-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/electronic-lock-de</loc>
          <lastmod>2025-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/avoid-mosquito-de</loc>
          <lastmod>2025-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-sql-de</loc>
          <lastmod>2025-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/paragraph-translation-ar</loc>
          <lastmod>2025-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/electronic-lock-ar</loc>
          <lastmod>2025-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/avoid-mosquito-ar</loc>
          <lastmod>2025-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-sql-ar</loc>
          <lastmod>2025-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/multi-region-zh</loc>
          <lastmod>2025-07-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lessons-father-zh</loc>
          <lastmod>2025-07-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/multi-region-ja</loc>
          <lastmod>2025-07-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lessons-father-ja</loc>
          <lastmod>2025-07-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/multi-region-hi</loc>
          <lastmod>2025-07-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lessons-father-hi</loc>
          <lastmod>2025-07-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/multi-region-hant</loc>
          <lastmod>2025-07-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lessons-father-hant</loc>
          <lastmod>2025-07-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/multi-region-fr</loc>
          <lastmod>2025-07-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lessons-father-fr</loc>
          <lastmod>2025-07-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/multi-region-es</loc>
          <lastmod>2025-07-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lessons-father-es</loc>
          <lastmod>2025-07-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/multi-region-en</loc>
          <lastmod>2025-07-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lessons-father-en</loc>
          <lastmod>2025-07-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/multi-region-de</loc>
          <lastmod>2025-07-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lessons-father-de</loc>
          <lastmod>2025-07-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/multi-region-ar</loc>
          <lastmod>2025-07-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lessons-father-ar</loc>
          <lastmod>2025-07-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/english-animation-zh</loc>
          <lastmod>2025-07-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/digital-world-zh</loc>
          <lastmod>2025-07-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/english-animation-ja</loc>
          <lastmod>2025-07-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/digital-world-ja</loc>
          <lastmod>2025-07-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/english-animation-hi</loc>
          <lastmod>2025-07-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/digital-world-hi</loc>
          <lastmod>2025-07-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/english-animation-hant</loc>
          <lastmod>2025-07-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/digital-world-hant</loc>
          <lastmod>2025-07-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/english-animation-fr</loc>
          <lastmod>2025-07-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/digital-world-fr</loc>
          <lastmod>2025-07-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/english-animation-es</loc>
          <lastmod>2025-07-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/digital-world-es</loc>
          <lastmod>2025-07-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/english-animation-en</loc>
          <lastmod>2025-07-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/digital-world-en</loc>
          <lastmod>2025-07-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/english-animation-de</loc>
          <lastmod>2025-07-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/digital-world-de</loc>
          <lastmod>2025-07-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/english-animation-ar</loc>
          <lastmod>2025-07-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/digital-world-ar</loc>
          <lastmod>2025-07-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/dishwasher-repair-zh</loc>
          <lastmod>2025-07-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/dishwasher-repair-ja</loc>
          <lastmod>2025-07-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/dishwasher-repair-hi</loc>
          <lastmod>2025-07-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/dishwasher-repair-hant</loc>
          <lastmod>2025-07-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/dishwasher-repair-fr</loc>
          <lastmod>2025-07-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/dishwasher-repair-es</loc>
          <lastmod>2025-07-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/dishwasher-repair-en</loc>
          <lastmod>2025-07-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/dishwasher-repair-de</loc>
          <lastmod>2025-07-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/dishwasher-repair-ar</loc>
          <lastmod>2025-07-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/enoki-mushroom-zh</loc>
          <lastmod>2025-07-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/enoki-mushroom-ja</loc>
          <lastmod>2025-07-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/enoki-mushroom-hi</loc>
          <lastmod>2025-07-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/enoki-mushroom-hant</loc>
          <lastmod>2025-07-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/enoki-mushroom-fr</loc>
          <lastmod>2025-07-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/enoki-mushroom-es</loc>
          <lastmod>2025-07-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/enoki-mushroom-en</loc>
          <lastmod>2025-07-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/enoki-mushroom-de</loc>
          <lastmod>2025-07-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/enoki-mushroom-ar</loc>
          <lastmod>2025-07-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cv-zh</loc>
          <lastmod>2025-06-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cv-ja</loc>
          <lastmod>2025-06-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cv-hi</loc>
          <lastmod>2025-06-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cv-hant</loc>
          <lastmod>2025-06-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cv-fr</loc>
          <lastmod>2025-06-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cv-es</loc>
          <lastmod>2025-06-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cv-en</loc>
          <lastmod>2025-06-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cv-de</loc>
          <lastmod>2025-06-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cv-ar</loc>
          <lastmod>2025-06-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/sleeping-socks-zh</loc>
          <lastmod>2025-06-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/sleeping-socks-ja</loc>
          <lastmod>2025-06-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/sleeping-socks-hi</loc>
          <lastmod>2025-06-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/sleeping-socks-hant</loc>
          <lastmod>2025-06-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/sleeping-socks-fr</loc>
          <lastmod>2025-06-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/sleeping-socks-es</loc>
          <lastmod>2025-06-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/sleeping-socks-en</loc>
          <lastmod>2025-06-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/sleeping-socks-de</loc>
          <lastmod>2025-06-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/sleeping-socks-ar</loc>
          <lastmod>2025-06-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hydrogen-peroxide-foot-zh</loc>
          <lastmod>2025-06-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hydrogen-peroxide-foot-ja</loc>
          <lastmod>2025-06-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hydrogen-peroxide-foot-hi</loc>
          <lastmod>2025-06-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hydrogen-peroxide-foot-hant</loc>
          <lastmod>2025-06-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hydrogen-peroxide-foot-fr</loc>
          <lastmod>2025-06-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hydrogen-peroxide-foot-es</loc>
          <lastmod>2025-06-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hydrogen-peroxide-foot-en</loc>
          <lastmod>2025-06-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hydrogen-peroxide-foot-de</loc>
          <lastmod>2025-06-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hydrogen-peroxide-foot-ar</loc>
          <lastmod>2025-06-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/habit-bot-zh</loc>
          <lastmod>2025-06-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/habit-bot-ja</loc>
          <lastmod>2025-06-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/habit-bot-hi</loc>
          <lastmod>2025-06-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/habit-bot-hant</loc>
          <lastmod>2025-06-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/habit-bot-fr</loc>
          <lastmod>2025-06-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/habit-bot-es</loc>
          <lastmod>2025-06-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/habit-bot-en</loc>
          <lastmod>2025-06-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/habit-bot-de</loc>
          <lastmod>2025-06-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/habit-bot-ar</loc>
          <lastmod>2025-06-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/location-bot-zh</loc>
          <lastmod>2025-06-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/clash-zh</loc>
          <lastmod>2025-06-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/location-bot-ja</loc>
          <lastmod>2025-06-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/clash-ja</loc>
          <lastmod>2025-06-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/location-bot-hi</loc>
          <lastmod>2025-06-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/clash-hi</loc>
          <lastmod>2025-06-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/location-bot-hant</loc>
          <lastmod>2025-06-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/clash-hant</loc>
          <lastmod>2025-06-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/location-bot-fr</loc>
          <lastmod>2025-06-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/clash-fr</loc>
          <lastmod>2025-06-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/location-bot-es</loc>
          <lastmod>2025-06-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/clash-es</loc>
          <lastmod>2025-06-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/location-bot-en</loc>
          <lastmod>2025-06-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/clash-en</loc>
          <lastmod>2025-06-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/location-bot-de</loc>
          <lastmod>2025-06-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/clash-de</loc>
          <lastmod>2025-06-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/location-bot-ar</loc>
          <lastmod>2025-06-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/clash-ar</loc>
          <lastmod>2025-06-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/news-bot-zh</loc>
          <lastmod>2025-06-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/news-bot-ja</loc>
          <lastmod>2025-06-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/news-bot-hi</loc>
          <lastmod>2025-06-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/news-bot-hant</loc>
          <lastmod>2025-06-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/news-bot-fr</loc>
          <lastmod>2025-06-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/news-bot-es</loc>
          <lastmod>2025-06-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/news-bot-en</loc>
          <lastmod>2025-06-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/news-bot-de</loc>
          <lastmod>2025-06-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/news-bot-ar</loc>
          <lastmod>2025-06-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reminders-zh</loc>
          <lastmod>2025-06-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reminders-ja</loc>
          <lastmod>2025-06-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reminders-hi</loc>
          <lastmod>2025-06-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reminders-hant</loc>
          <lastmod>2025-06-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reminders-fr</loc>
          <lastmod>2025-06-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reminders-es</loc>
          <lastmod>2025-06-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reminders-en</loc>
          <lastmod>2025-06-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reminders-de</loc>
          <lastmod>2025-06-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reminders-ar</loc>
          <lastmod>2025-06-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/deepwiki-zh</loc>
          <lastmod>2025-04-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/deepwiki-ja</loc>
          <lastmod>2025-04-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/deepwiki-hi</loc>
          <lastmod>2025-04-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/deepwiki-hant</loc>
          <lastmod>2025-04-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/deepwiki-fr</loc>
          <lastmod>2025-04-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/deepwiki-es</loc>
          <lastmod>2025-04-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/deepwiki-en</loc>
          <lastmod>2025-04-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/deepwiki-de</loc>
          <lastmod>2025-04-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/deepwiki-ar</loc>
          <lastmod>2025-04-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/tire-zh</loc>
          <lastmod>2025-04-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/invest-tiger-actions-zh</loc>
          <lastmod>2025-04-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/tire-ja</loc>
          <lastmod>2025-04-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/invest-tiger-actions-ja</loc>
          <lastmod>2025-04-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/tire-hi</loc>
          <lastmod>2025-04-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/invest-tiger-actions-hi</loc>
          <lastmod>2025-04-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/tire-hant</loc>
          <lastmod>2025-04-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/invest-tiger-actions-hant</loc>
          <lastmod>2025-04-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/tire-fr</loc>
          <lastmod>2025-04-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/invest-tiger-actions-fr</loc>
          <lastmod>2025-04-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/tire-es</loc>
          <lastmod>2025-04-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/invest-tiger-actions-es</loc>
          <lastmod>2025-04-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/tire-en</loc>
          <lastmod>2025-04-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/invest-tiger-actions-en</loc>
          <lastmod>2025-04-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/tire-de</loc>
          <lastmod>2025-04-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/invest-tiger-actions-de</loc>
          <lastmod>2025-04-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/tire-ar</loc>
          <lastmod>2025-04-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/invest-tiger-actions-ar</loc>
          <lastmod>2025-04-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/car-dry-hair-zh</loc>
          <lastmod>2025-04-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/car-dry-hair-ja</loc>
          <lastmod>2025-04-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/car-dry-hair-hi</loc>
          <lastmod>2025-04-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/car-dry-hair-hant</loc>
          <lastmod>2025-04-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/car-dry-hair-fr</loc>
          <lastmod>2025-04-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/car-dry-hair-es</loc>
          <lastmod>2025-04-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/car-dry-hair-en</loc>
          <lastmod>2025-04-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/car-dry-hair-de</loc>
          <lastmod>2025-04-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/car-dry-hair-ar</loc>
          <lastmod>2025-04-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/japanese-tips-zh</loc>
          <lastmod>2025-03-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/blogs-zh</loc>
          <lastmod>2025-03-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/japanese-tips-ja</loc>
          <lastmod>2025-03-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/blogs-ja</loc>
          <lastmod>2025-03-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/japanese-tips-hi</loc>
          <lastmod>2025-03-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/blogs-hi</loc>
          <lastmod>2025-03-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/japanese-tips-hant</loc>
          <lastmod>2025-03-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/blogs-hant</loc>
          <lastmod>2025-03-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/japanese-tips-fr</loc>
          <lastmod>2025-03-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/blogs-fr</loc>
          <lastmod>2025-03-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/japanese-tips-es</loc>
          <lastmod>2025-03-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/blogs-es</loc>
          <lastmod>2025-03-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/japanese-tips-en</loc>
          <lastmod>2025-03-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/blogs-en</loc>
          <lastmod>2025-03-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/japanese-tips-de</loc>
          <lastmod>2025-03-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/blogs-de</loc>
          <lastmod>2025-03-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/japanese-tips-ar</loc>
          <lastmod>2025-03-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/blogs-ar</loc>
          <lastmod>2025-03-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/nytimes-update-zh</loc>
          <lastmod>2025-03-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/nytimes-update-ja</loc>
          <lastmod>2025-03-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/nytimes-update-hi</loc>
          <lastmod>2025-03-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/nytimes-update-hant</loc>
          <lastmod>2025-03-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/nytimes-update-fr</loc>
          <lastmod>2025-03-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/nytimes-update-es</loc>
          <lastmod>2025-03-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/nytimes-update-en</loc>
          <lastmod>2025-03-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/nytimes-update-de</loc>
          <lastmod>2025-03-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/nytimes-update-ar</loc>
          <lastmod>2025-03-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shortcuts-zh</loc>
          <lastmod>2025-02-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shangzanwifi-zh</loc>
          <lastmod>2025-02-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shortcuts-ja</loc>
          <lastmod>2025-02-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shangzanwifi-ja</loc>
          <lastmod>2025-02-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shortcuts-hi</loc>
          <lastmod>2025-02-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shangzanwifi-hi</loc>
          <lastmod>2025-02-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shortcuts-hant</loc>
          <lastmod>2025-02-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shangzanwifi-hant</loc>
          <lastmod>2025-02-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shortcuts-fr</loc>
          <lastmod>2025-02-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shangzanwifi-fr</loc>
          <lastmod>2025-02-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shortcuts-es</loc>
          <lastmod>2025-02-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shangzanwifi-es</loc>
          <lastmod>2025-02-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shortcuts-en</loc>
          <lastmod>2025-02-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shangzanwifi-en</loc>
          <lastmod>2025-02-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shortcuts-de</loc>
          <lastmod>2025-02-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shangzanwifi-de</loc>
          <lastmod>2025-02-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shortcuts-ar</loc>
          <lastmod>2025-02-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shangzanwifi-ar</loc>
          <lastmod>2025-02-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/commute-zh</loc>
          <lastmod>2025-02-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/commute-ja</loc>
          <lastmod>2025-02-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/commute-hi</loc>
          <lastmod>2025-02-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/commute-hant</loc>
          <lastmod>2025-02-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/commute-fr</loc>
          <lastmod>2025-02-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/commute-es</loc>
          <lastmod>2025-02-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/commute-en</loc>
          <lastmod>2025-02-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/commute-de</loc>
          <lastmod>2025-02-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/commute-ar</loc>
          <lastmod>2025-02-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/travel-zh</loc>
          <lastmod>2025-02-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/society-zh</loc>
          <lastmod>2025-02-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/openwrt-invasion-zh</loc>
          <lastmod>2025-02-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/information-export-zh</loc>
          <lastmod>2025-02-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/travel-ja</loc>
          <lastmod>2025-02-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/society-ja</loc>
          <lastmod>2025-02-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/openwrt-invasion-ja</loc>
          <lastmod>2025-02-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/information-export-ja</loc>
          <lastmod>2025-02-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/travel-hi</loc>
          <lastmod>2025-02-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/society-hi</loc>
          <lastmod>2025-02-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/openwrt-invasion-hi</loc>
          <lastmod>2025-02-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/information-export-hi</loc>
          <lastmod>2025-02-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/travel-hant</loc>
          <lastmod>2025-02-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/society-hant</loc>
          <lastmod>2025-02-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/openwrt-invasion-hant</loc>
          <lastmod>2025-02-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/information-export-hant</loc>
          <lastmod>2025-02-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/travel-fr</loc>
          <lastmod>2025-02-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/society-fr</loc>
          <lastmod>2025-02-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/openwrt-invasion-fr</loc>
          <lastmod>2025-02-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/information-export-fr</loc>
          <lastmod>2025-02-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/travel-es</loc>
          <lastmod>2025-02-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/society-es</loc>
          <lastmod>2025-02-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/openwrt-invasion-es</loc>
          <lastmod>2025-02-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/information-export-es</loc>
          <lastmod>2025-02-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/travel-en</loc>
          <lastmod>2025-02-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/society-en</loc>
          <lastmod>2025-02-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/openwrt-invasion-en</loc>
          <lastmod>2025-02-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/information-export-en</loc>
          <lastmod>2025-02-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/travel-de</loc>
          <lastmod>2025-02-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/society-de</loc>
          <lastmod>2025-02-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/openwrt-invasion-de</loc>
          <lastmod>2025-02-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/information-export-de</loc>
          <lastmod>2025-02-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/travel-ar</loc>
          <lastmod>2025-02-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/society-ar</loc>
          <lastmod>2025-02-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/openwrt-invasion-ar</loc>
          <lastmod>2025-02-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/information-export-ar</loc>
          <lastmod>2025-02-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/second-hand-zh</loc>
          <lastmod>2025-02-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/second-hand-ja</loc>
          <lastmod>2025-02-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/second-hand-hi</loc>
          <lastmod>2025-02-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/second-hand-hant</loc>
          <lastmod>2025-02-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/second-hand-fr</loc>
          <lastmod>2025-02-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/second-hand-es</loc>
          <lastmod>2025-02-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/second-hand-en</loc>
          <lastmod>2025-02-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/second-hand-de</loc>
          <lastmod>2025-02-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/second-hand-ar</loc>
          <lastmod>2025-02-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/working-zh</loc>
          <lastmod>2025-02-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/working-ja</loc>
          <lastmod>2025-02-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/working-hi</loc>
          <lastmod>2025-02-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/working-hant</loc>
          <lastmod>2025-02-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/working-fr</loc>
          <lastmod>2025-02-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/working-es</loc>
          <lastmod>2025-02-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/working-en</loc>
          <lastmod>2025-02-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/working-de</loc>
          <lastmod>2025-02-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/working-ar</loc>
          <lastmod>2025-02-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/netplan-zh</loc>
          <lastmod>2025-02-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/linear-algebra-zh</loc>
          <lastmod>2025-02-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/netplan-ja</loc>
          <lastmod>2025-02-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/linear-algebra-ja</loc>
          <lastmod>2025-02-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/netplan-hi</loc>
          <lastmod>2025-02-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/linear-algebra-hi</loc>
          <lastmod>2025-02-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/netplan-hant</loc>
          <lastmod>2025-02-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/linear-algebra-hant</loc>
          <lastmod>2025-02-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/netplan-fr</loc>
          <lastmod>2025-02-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/linear-algebra-fr</loc>
          <lastmod>2025-02-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/netplan-es</loc>
          <lastmod>2025-02-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/linear-algebra-es</loc>
          <lastmod>2025-02-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/netplan-en</loc>
          <lastmod>2025-02-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/linear-algebra-en</loc>
          <lastmod>2025-02-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/netplan-de</loc>
          <lastmod>2025-02-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/linear-algebra-de</loc>
          <lastmod>2025-02-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/netplan-ar</loc>
          <lastmod>2025-02-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/linear-algebra-ar</loc>
          <lastmod>2025-02-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/english-zh</loc>
          <lastmod>2025-02-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/english-ja</loc>
          <lastmod>2025-02-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/english-hi</loc>
          <lastmod>2025-02-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/english-hant</loc>
          <lastmod>2025-02-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/english-fr</loc>
          <lastmod>2025-02-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/english-es</loc>
          <lastmod>2025-02-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/english-en</loc>
          <lastmod>2025-02-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/english-de</loc>
          <lastmod>2025-02-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/english-ar</loc>
          <lastmod>2025-02-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/jina-ai-zh</loc>
          <lastmod>2025-02-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/jina-ai-ja</loc>
          <lastmod>2025-02-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/jina-ai-hi</loc>
          <lastmod>2025-02-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/jina-ai-hant</loc>
          <lastmod>2025-02-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/jina-ai-fr</loc>
          <lastmod>2025-02-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/jina-ai-es</loc>
          <lastmod>2025-02-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/jina-ai-en</loc>
          <lastmod>2025-02-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/jina-ai-de</loc>
          <lastmod>2025-02-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/jina-ai-ar</loc>
          <lastmod>2025-02-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/earning-money-zh</loc>
          <lastmod>2025-02-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cursor-spring-zh</loc>
          <lastmod>2025-02-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/earning-money-ja</loc>
          <lastmod>2025-02-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cursor-spring-ja</loc>
          <lastmod>2025-02-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/earning-money-hi</loc>
          <lastmod>2025-02-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cursor-spring-hi</loc>
          <lastmod>2025-02-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/earning-money-hant</loc>
          <lastmod>2025-02-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cursor-spring-hant</loc>
          <lastmod>2025-02-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/earning-money-fr</loc>
          <lastmod>2025-02-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cursor-spring-fr</loc>
          <lastmod>2025-02-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/earning-money-es</loc>
          <lastmod>2025-02-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cursor-spring-es</loc>
          <lastmod>2025-02-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/earning-money-en</loc>
          <lastmod>2025-02-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cursor-spring-en</loc>
          <lastmod>2025-02-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/earning-money-de</loc>
          <lastmod>2025-02-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cursor-spring-de</loc>
          <lastmod>2025-02-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/earning-money-ar</loc>
          <lastmod>2025-02-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cursor-spring-ar</loc>
          <lastmod>2025-02-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/piratebay-zh</loc>
          <lastmod>2025-02-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/p2p-proxy-zh</loc>
          <lastmod>2025-02-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/git-lfs-zh</loc>
          <lastmod>2025-02-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/driving-tips-zh</loc>
          <lastmod>2025-02-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/piratebay-ja</loc>
          <lastmod>2025-02-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/p2p-proxy-ja</loc>
          <lastmod>2025-02-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/git-lfs-ja</loc>
          <lastmod>2025-02-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/driving-tips-ja</loc>
          <lastmod>2025-02-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/piratebay-hi</loc>
          <lastmod>2025-02-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/p2p-proxy-hi</loc>
          <lastmod>2025-02-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/git-lfs-hi</loc>
          <lastmod>2025-02-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/driving-tips-hi</loc>
          <lastmod>2025-02-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/piratebay-hant</loc>
          <lastmod>2025-02-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/p2p-proxy-hant</loc>
          <lastmod>2025-02-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/git-lfs-hant</loc>
          <lastmod>2025-02-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/driving-tips-hant</loc>
          <lastmod>2025-02-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/piratebay-fr</loc>
          <lastmod>2025-02-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/p2p-proxy-fr</loc>
          <lastmod>2025-02-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/git-lfs-fr</loc>
          <lastmod>2025-02-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/driving-tips-fr</loc>
          <lastmod>2025-02-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/piratebay-es</loc>
          <lastmod>2025-02-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/p2p-proxy-es</loc>
          <lastmod>2025-02-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/git-lfs-es</loc>
          <lastmod>2025-02-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/driving-tips-es</loc>
          <lastmod>2025-02-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/piratebay-en</loc>
          <lastmod>2025-02-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/p2p-proxy-en</loc>
          <lastmod>2025-02-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/git-lfs-en</loc>
          <lastmod>2025-02-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/driving-tips-en</loc>
          <lastmod>2025-02-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/piratebay-de</loc>
          <lastmod>2025-02-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/p2p-proxy-de</loc>
          <lastmod>2025-02-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/git-lfs-de</loc>
          <lastmod>2025-02-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/driving-tips-de</loc>
          <lastmod>2025-02-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/piratebay-ar</loc>
          <lastmod>2025-02-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/p2p-proxy-ar</loc>
          <lastmod>2025-02-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/git-lfs-ar</loc>
          <lastmod>2025-02-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/driving-tips-ar</loc>
          <lastmod>2025-02-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/verbose-zh</loc>
          <lastmod>2025-02-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/verbose-ja</loc>
          <lastmod>2025-02-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/verbose-hi</loc>
          <lastmod>2025-02-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/verbose-hant</loc>
          <lastmod>2025-02-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/verbose-fr</loc>
          <lastmod>2025-02-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/verbose-es</loc>
          <lastmod>2025-02-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/verbose-en</loc>
          <lastmod>2025-02-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/verbose-de</loc>
          <lastmod>2025-02-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/verbose-ar</loc>
          <lastmod>2025-02-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/network-zh</loc>
          <lastmod>2025-02-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gift-zh</loc>
          <lastmod>2025-02-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/network-ja</loc>
          <lastmod>2025-02-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gift-ja</loc>
          <lastmod>2025-02-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/network-hi</loc>
          <lastmod>2025-02-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gift-hi</loc>
          <lastmod>2025-02-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/network-hant</loc>
          <lastmod>2025-02-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gift-hant</loc>
          <lastmod>2025-02-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/network-fr</loc>
          <lastmod>2025-02-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gift-fr</loc>
          <lastmod>2025-02-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/network-es</loc>
          <lastmod>2025-02-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gift-es</loc>
          <lastmod>2025-02-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/network-en</loc>
          <lastmod>2025-02-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gift-en</loc>
          <lastmod>2025-02-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/network-de</loc>
          <lastmod>2025-02-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gift-de</loc>
          <lastmod>2025-02-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/network-ar</loc>
          <lastmod>2025-02-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gift-ar</loc>
          <lastmod>2025-02-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/useful-commands-zh</loc>
          <lastmod>2025-02-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/linux-bashrc-zh</loc>
          <lastmod>2025-02-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/useful-commands-ja</loc>
          <lastmod>2025-02-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/linux-bashrc-ja</loc>
          <lastmod>2025-02-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/useful-commands-hi</loc>
          <lastmod>2025-02-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/linux-bashrc-hi</loc>
          <lastmod>2025-02-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/useful-commands-hant</loc>
          <lastmod>2025-02-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/linux-bashrc-hant</loc>
          <lastmod>2025-02-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/useful-commands-fr</loc>
          <lastmod>2025-02-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/linux-bashrc-fr</loc>
          <lastmod>2025-02-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/useful-commands-es</loc>
          <lastmod>2025-02-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/linux-bashrc-es</loc>
          <lastmod>2025-02-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/useful-commands-en</loc>
          <lastmod>2025-02-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/linux-bashrc-en</loc>
          <lastmod>2025-02-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/useful-commands-de</loc>
          <lastmod>2025-02-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/linux-bashrc-de</loc>
          <lastmod>2025-02-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/useful-commands-ar</loc>
          <lastmod>2025-02-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/linux-bashrc-ar</loc>
          <lastmod>2025-02-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/tiger-zh</loc>
          <lastmod>2025-02-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/tiger-ja</loc>
          <lastmod>2025-02-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/tiger-hi</loc>
          <lastmod>2025-02-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/tiger-hant</loc>
          <lastmod>2025-02-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/tiger-fr</loc>
          <lastmod>2025-02-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/tiger-es</loc>
          <lastmod>2025-02-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/tiger-en</loc>
          <lastmod>2025-02-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/tiger-de</loc>
          <lastmod>2025-02-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/tiger-ar</loc>
          <lastmod>2025-02-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ffmpeg-commands-zh</loc>
          <lastmod>2025-02-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/emf-meter-zh</loc>
          <lastmod>2025-02-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ffmpeg-commands-ja</loc>
          <lastmod>2025-02-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/emf-meter-ja</loc>
          <lastmod>2025-02-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ffmpeg-commands-hi</loc>
          <lastmod>2025-02-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/emf-meter-hi</loc>
          <lastmod>2025-02-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ffmpeg-commands-hant</loc>
          <lastmod>2025-02-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/emf-meter-hant</loc>
          <lastmod>2025-02-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ffmpeg-commands-fr</loc>
          <lastmod>2025-02-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/emf-meter-fr</loc>
          <lastmod>2025-02-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ffmpeg-commands-es</loc>
          <lastmod>2025-02-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/emf-meter-es</loc>
          <lastmod>2025-02-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ffmpeg-commands-en</loc>
          <lastmod>2025-02-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/emf-meter-en</loc>
          <lastmod>2025-02-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ffmpeg-commands-de</loc>
          <lastmod>2025-02-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/emf-meter-de</loc>
          <lastmod>2025-02-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ffmpeg-commands-ar</loc>
          <lastmod>2025-02-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/emf-meter-ar</loc>
          <lastmod>2025-02-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/speech-recognition-zh</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/selenium-zh</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lighter-zh</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/jokes-zh</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bce-embedding-zh</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/speech-recognition-ja</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/selenium-ja</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lighter-ja</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/jokes-ja</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bce-embedding-ja</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/speech-recognition-hi</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/selenium-hi</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lighter-hi</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/jokes-hi</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bce-embedding-hi</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/speech-recognition-hant</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/selenium-hant</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lighter-hant</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/jokes-hant</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bce-embedding-hant</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/speech-recognition-fr</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/selenium-fr</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lighter-fr</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/jokes-fr</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bce-embedding-fr</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/speech-recognition-es</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/selenium-es</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lighter-es</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/jokes-es</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bce-embedding-es</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/speech-recognition-en</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/selenium-en</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lighter-en</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/jokes-en</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bce-embedding-en</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/speech-recognition-de</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/selenium-de</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lighter-de</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/jokes-de</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bce-embedding-de</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/speech-recognition-ar</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/selenium-ar</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lighter-ar</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/jokes-ar</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bce-embedding-ar</loc>
          <lastmod>2025-02-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/internet-freedom-zh</loc>
          <lastmod>2025-02-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bandwidth-zh</loc>
          <lastmod>2025-02-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/aliyun-elastic-ip-zh</loc>
          <lastmod>2025-02-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/internet-freedom-ja</loc>
          <lastmod>2025-02-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bandwidth-ja</loc>
          <lastmod>2025-02-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/aliyun-elastic-ip-ja</loc>
          <lastmod>2025-02-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/internet-freedom-hi</loc>
          <lastmod>2025-02-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bandwidth-hi</loc>
          <lastmod>2025-02-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/aliyun-elastic-ip-hi</loc>
          <lastmod>2025-02-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/internet-freedom-hant</loc>
          <lastmod>2025-02-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bandwidth-hant</loc>
          <lastmod>2025-02-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/aliyun-elastic-ip-hant</loc>
          <lastmod>2025-02-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/internet-freedom-fr</loc>
          <lastmod>2025-02-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bandwidth-fr</loc>
          <lastmod>2025-02-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/aliyun-elastic-ip-fr</loc>
          <lastmod>2025-02-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/internet-freedom-es</loc>
          <lastmod>2025-02-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bandwidth-es</loc>
          <lastmod>2025-02-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/aliyun-elastic-ip-es</loc>
          <lastmod>2025-02-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/internet-freedom-en</loc>
          <lastmod>2025-02-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bandwidth-en</loc>
          <lastmod>2025-02-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/aliyun-elastic-ip-en</loc>
          <lastmod>2025-02-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/internet-freedom-de</loc>
          <lastmod>2025-02-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bandwidth-de</loc>
          <lastmod>2025-02-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/aliyun-elastic-ip-de</loc>
          <lastmod>2025-02-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/internet-freedom-ar</loc>
          <lastmod>2025-02-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bandwidth-ar</loc>
          <lastmod>2025-02-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/aliyun-elastic-ip-ar</loc>
          <lastmod>2025-02-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ubuntu-zh</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ssh-zh</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/outdoor-cooking-zh</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/grok-api-zh</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gpg-zh</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/archlinux-zh</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ubuntu-ja</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ssh-ja</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/outdoor-cooking-ja</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/grok-api-ja</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gpg-ja</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/archlinux-ja</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ubuntu-hi</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ssh-hi</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/outdoor-cooking-hi</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/grok-api-hi</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gpg-hi</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/archlinux-hi</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ubuntu-hant</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ssh-hant</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/outdoor-cooking-hant</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/grok-api-hant</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gpg-hant</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/archlinux-hant</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ubuntu-fr</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ssh-fr</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/outdoor-cooking-fr</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/grok-api-fr</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gpg-fr</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/archlinux-fr</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ubuntu-es</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ssh-es</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/outdoor-cooking-es</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/grok-api-es</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gpg-es</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/archlinux-es</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ubuntu-en</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ssh-en</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/outdoor-cooking-en</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/grok-api-en</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gpg-en</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/archlinux-en</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ubuntu-de</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ssh-de</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/outdoor-cooking-de</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/grok-api-de</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gpg-de</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/archlinux-de</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ubuntu-ar</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ssh-ar</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/outdoor-cooking-ar</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/grok-api-ar</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gpg-ar</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/archlinux-ar</loc>
          <lastmod>2025-02-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/conda-zh</loc>
          <lastmod>2025-02-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/conda-ja</loc>
          <lastmod>2025-02-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/conda-hi</loc>
          <lastmod>2025-02-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/conda-hant</loc>
          <lastmod>2025-02-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/conda-fr</loc>
          <lastmod>2025-02-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/conda-es</loc>
          <lastmod>2025-02-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/conda-en</loc>
          <lastmod>2025-02-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/conda-de</loc>
          <lastmod>2025-02-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/conda-ar</loc>
          <lastmod>2025-02-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reranker-zh</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/prompts-zh</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mistral-zh</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/metal-zh</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/holiday-zh</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chat-zh</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reranker-ja</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/prompts-ja</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mistral-ja</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/metal-ja</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/holiday-ja</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chat-ja</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reranker-hi</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/prompts-hi</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mistral-hi</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/metal-hi</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/holiday-hi</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chat-hi</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reranker-hant</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/prompts-hant</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mistral-hant</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/metal-hant</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/holiday-hant</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chat-hant</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reranker-fr</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/prompts-fr</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mistral-fr</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/metal-fr</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/holiday-fr</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chat-fr</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reranker-es</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/prompts-es</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mistral-es</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/metal-es</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/holiday-es</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chat-es</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reranker-en</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/prompts-en</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mistral-en</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/metal-en</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/holiday-en</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chat-en</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reranker-de</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/prompts-de</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mistral-de</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/metal-de</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/holiday-de</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chat-de</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reranker-ar</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/prompts-ar</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mistral-ar</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/metal-ar</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/holiday-ar</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chat-ar</loc>
          <lastmod>2025-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pip-list-zh</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/network-tips-zh</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/maven-zh</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gem-zh</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/data-zh</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/commands-zh</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/command-control-zh</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/brew-list-zh</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pip-list-ja</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/network-tips-ja</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/maven-ja</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gem-ja</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/data-ja</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/commands-ja</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/command-control-ja</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/brew-list-ja</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pip-list-hi</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/network-tips-hi</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/maven-hi</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gem-hi</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/data-hi</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/commands-hi</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/command-control-hi</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/brew-list-hi</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pip-list-hant</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/network-tips-hant</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/maven-hant</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gem-hant</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/data-hant</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/commands-hant</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/command-control-hant</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/brew-list-hant</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pip-list-fr</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/network-tips-fr</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/maven-fr</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gem-fr</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/data-fr</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/commands-fr</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/command-control-fr</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/brew-list-fr</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pip-list-es</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/network-tips-es</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/maven-es</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gem-es</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/data-es</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/commands-es</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/command-control-es</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/brew-list-es</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pip-list-en</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/network-tips-en</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/maven-en</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gem-en</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/data-en</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/commands-en</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/command-control-en</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/brew-list-en</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pip-list-de</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/network-tips-de</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/maven-de</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gem-de</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/data-de</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/commands-de</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/command-control-de</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/brew-list-de</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pip-list-ar</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/network-tips-ar</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/maven-ar</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gem-ar</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/data-ar</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/commands-ar</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/command-control-ar</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/brew-list-ar</loc>
          <lastmod>2025-01-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hetzner-zh</loc>
          <lastmod>2025-01-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/daily-life-zh</loc>
          <lastmod>2025-01-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-thoughts-zh</loc>
          <lastmod>2025-01-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hetzner-ja</loc>
          <lastmod>2025-01-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/daily-life-ja</loc>
          <lastmod>2025-01-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-thoughts-ja</loc>
          <lastmod>2025-01-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hetzner-hi</loc>
          <lastmod>2025-01-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/daily-life-hi</loc>
          <lastmod>2025-01-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-thoughts-hi</loc>
          <lastmod>2025-01-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hetzner-hant</loc>
          <lastmod>2025-01-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/daily-life-hant</loc>
          <lastmod>2025-01-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-thoughts-hant</loc>
          <lastmod>2025-01-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hetzner-fr</loc>
          <lastmod>2025-01-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/daily-life-fr</loc>
          <lastmod>2025-01-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-thoughts-fr</loc>
          <lastmod>2025-01-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hetzner-es</loc>
          <lastmod>2025-01-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/daily-life-es</loc>
          <lastmod>2025-01-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-thoughts-es</loc>
          <lastmod>2025-01-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hetzner-en</loc>
          <lastmod>2025-01-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/daily-life-en</loc>
          <lastmod>2025-01-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-thoughts-en</loc>
          <lastmod>2025-01-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hetzner-de</loc>
          <lastmod>2025-01-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/daily-life-de</loc>
          <lastmod>2025-01-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-thoughts-de</loc>
          <lastmod>2025-01-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hetzner-ar</loc>
          <lastmod>2025-01-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/daily-life-ar</loc>
          <lastmod>2025-01-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-thoughts-ar</loc>
          <lastmod>2025-01-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/zsh-profile-zh</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shared-objects-zh</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/kids-zh</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/finetune-zh</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cloud-providers-zh</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/api-wrappers-zh</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-tips-zh</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/zsh-profile-ja</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shared-objects-ja</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/kids-ja</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/finetune-ja</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cloud-providers-ja</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/api-wrappers-ja</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-tips-ja</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/zsh-profile-hi</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shared-objects-hi</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/kids-hi</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/finetune-hi</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cloud-providers-hi</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/api-wrappers-hi</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-tips-hi</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/zsh-profile-hant</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shared-objects-hant</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/kids-hant</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/finetune-hant</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cloud-providers-hant</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/api-wrappers-hant</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-tips-hant</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/zsh-profile-fr</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shared-objects-fr</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/kids-fr</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/finetune-fr</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cloud-providers-fr</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/api-wrappers-fr</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-tips-fr</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/zsh-profile-es</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shared-objects-es</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/kids-es</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/finetune-es</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cloud-providers-es</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/api-wrappers-es</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-tips-es</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/zsh-profile-en</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shared-objects-en</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/kids-en</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/finetune-en</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cloud-providers-en</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/api-wrappers-en</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-tips-en</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/zsh-profile-de</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shared-objects-de</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/kids-de</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/finetune-de</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cloud-providers-de</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/api-wrappers-de</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-tips-de</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/zsh-profile-ar</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shared-objects-ar</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/kids-ar</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/finetune-ar</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cloud-providers-ar</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/api-wrappers-ar</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-tips-ar</loc>
          <lastmod>2025-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lightning-ethernet-zh</loc>
          <lastmod>2025-01-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lightning-ethernet-ja</loc>
          <lastmod>2025-01-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lightning-ethernet-hi</loc>
          <lastmod>2025-01-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lightning-ethernet-hant</loc>
          <lastmod>2025-01-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lightning-ethernet-fr</loc>
          <lastmod>2025-01-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lightning-ethernet-es</loc>
          <lastmod>2025-01-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lightning-ethernet-en</loc>
          <lastmod>2025-01-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lightning-ethernet-de</loc>
          <lastmod>2025-01-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lightning-ethernet-ar</loc>
          <lastmod>2025-01-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/startup-items-zh</loc>
          <lastmod>2025-01-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mmlu-zh</loc>
          <lastmod>2025-01-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/llama-cpp-zh</loc>
          <lastmod>2025-01-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lightsail-zh</loc>
          <lastmod>2025-01-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/startup-items-ja</loc>
          <lastmod>2025-01-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mmlu-ja</loc>
          <lastmod>2025-01-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/llama-cpp-ja</loc>
          <lastmod>2025-01-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lightsail-ja</loc>
          <lastmod>2025-01-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/startup-items-hi</loc>
          <lastmod>2025-01-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mmlu-hi</loc>
          <lastmod>2025-01-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/llama-cpp-hi</loc>
          <lastmod>2025-01-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lightsail-hi</loc>
          <lastmod>2025-01-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/startup-items-hant</loc>
          <lastmod>2025-01-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mmlu-hant</loc>
          <lastmod>2025-01-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/llama-cpp-hant</loc>
          <lastmod>2025-01-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lightsail-hant</loc>
          <lastmod>2025-01-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/startup-items-fr</loc>
          <lastmod>2025-01-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mmlu-fr</loc>
          <lastmod>2025-01-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/llama-cpp-fr</loc>
          <lastmod>2025-01-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lightsail-fr</loc>
          <lastmod>2025-01-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/startup-items-es</loc>
          <lastmod>2025-01-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mmlu-es</loc>
          <lastmod>2025-01-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/llama-cpp-es</loc>
          <lastmod>2025-01-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lightsail-es</loc>
          <lastmod>2025-01-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/startup-items-en</loc>
          <lastmod>2025-01-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mmlu-en</loc>
          <lastmod>2025-01-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/llama-cpp-en</loc>
          <lastmod>2025-01-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lightsail-en</loc>
          <lastmod>2025-01-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/startup-items-de</loc>
          <lastmod>2025-01-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mmlu-de</loc>
          <lastmod>2025-01-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/llama-cpp-de</loc>
          <lastmod>2025-01-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lightsail-de</loc>
          <lastmod>2025-01-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/startup-items-ar</loc>
          <lastmod>2025-01-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mmlu-ar</loc>
          <lastmod>2025-01-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/llama-cpp-ar</loc>
          <lastmod>2025-01-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lightsail-ar</loc>
          <lastmod>2025-01-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/squid-dante-zh</loc>
          <lastmod>2025-01-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/fc-oss-zh</loc>
          <lastmod>2025-01-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/disk-space-zh</loc>
          <lastmod>2025-01-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/deepseek-v3-conv-zh</loc>
          <lastmod>2025-01-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/squid-dante-ja</loc>
          <lastmod>2025-01-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/fc-oss-ja</loc>
          <lastmod>2025-01-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/disk-space-ja</loc>
          <lastmod>2025-01-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/deepseek-v3-conv-ja</loc>
          <lastmod>2025-01-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/squid-dante-hi</loc>
          <lastmod>2025-01-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/fc-oss-hi</loc>
          <lastmod>2025-01-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/disk-space-hi</loc>
          <lastmod>2025-01-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/deepseek-v3-conv-hi</loc>
          <lastmod>2025-01-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/squid-dante-hant</loc>
          <lastmod>2025-01-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/fc-oss-hant</loc>
          <lastmod>2025-01-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/disk-space-hant</loc>
          <lastmod>2025-01-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/deepseek-v3-conv-hant</loc>
          <lastmod>2025-01-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/squid-dante-fr</loc>
          <lastmod>2025-01-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/fc-oss-fr</loc>
          <lastmod>2025-01-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/disk-space-fr</loc>
          <lastmod>2025-01-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/deepseek-v3-conv-fr</loc>
          <lastmod>2025-01-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/squid-dante-es</loc>
          <lastmod>2025-01-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/fc-oss-es</loc>
          <lastmod>2025-01-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/disk-space-es</loc>
          <lastmod>2025-01-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/deepseek-v3-conv-es</loc>
          <lastmod>2025-01-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/squid-dante-en</loc>
          <lastmod>2025-01-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/fc-oss-en</loc>
          <lastmod>2025-01-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/disk-space-en</loc>
          <lastmod>2025-01-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/deepseek-v3-conv-en</loc>
          <lastmod>2025-01-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/squid-dante-de</loc>
          <lastmod>2025-01-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/fc-oss-de</loc>
          <lastmod>2025-01-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/disk-space-de</loc>
          <lastmod>2025-01-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/deepseek-v3-conv-de</loc>
          <lastmod>2025-01-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/squid-dante-ar</loc>
          <lastmod>2025-01-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/fc-oss-ar</loc>
          <lastmod>2025-01-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/disk-space-ar</loc>
          <lastmod>2025-01-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/deepseek-v3-conv-ar</loc>
          <lastmod>2025-01-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hot-water-zh</loc>
          <lastmod>2025-01-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cable-tester-zh</loc>
          <lastmod>2025-01-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hot-water-ja</loc>
          <lastmod>2025-01-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cable-tester-ja</loc>
          <lastmod>2025-01-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hot-water-hi</loc>
          <lastmod>2025-01-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cable-tester-hi</loc>
          <lastmod>2025-01-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hot-water-hant</loc>
          <lastmod>2025-01-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cable-tester-hant</loc>
          <lastmod>2025-01-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hot-water-fr</loc>
          <lastmod>2025-01-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cable-tester-fr</loc>
          <lastmod>2025-01-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hot-water-es</loc>
          <lastmod>2025-01-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cable-tester-es</loc>
          <lastmod>2025-01-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hot-water-en</loc>
          <lastmod>2025-01-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cable-tester-en</loc>
          <lastmod>2025-01-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hot-water-de</loc>
          <lastmod>2025-01-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cable-tester-de</loc>
          <lastmod>2025-01-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hot-water-ar</loc>
          <lastmod>2025-01-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cable-tester-ar</loc>
          <lastmod>2025-01-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/x-zh</loc>
          <lastmod>2025-01-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/x-ja</loc>
          <lastmod>2025-01-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/x-hi</loc>
          <lastmod>2025-01-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/x-hant</loc>
          <lastmod>2025-01-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/x-fr</loc>
          <lastmod>2025-01-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/x-es</loc>
          <lastmod>2025-01-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/x-en</loc>
          <lastmod>2025-01-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/x-de</loc>
          <lastmod>2025-01-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/x-ar</loc>
          <lastmod>2025-01-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/wattage-zh</loc>
          <lastmod>2025-01-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lamp-zh</loc>
          <lastmod>2025-01-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/github-desktop-font-zh</loc>
          <lastmod>2025-01-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/calorie-zh</loc>
          <lastmod>2025-01-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/wattage-ja</loc>
          <lastmod>2025-01-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lamp-ja</loc>
          <lastmod>2025-01-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/github-desktop-font-ja</loc>
          <lastmod>2025-01-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/calorie-ja</loc>
          <lastmod>2025-01-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/wattage-hi</loc>
          <lastmod>2025-01-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lamp-hi</loc>
          <lastmod>2025-01-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/github-desktop-font-hi</loc>
          <lastmod>2025-01-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/calorie-hi</loc>
          <lastmod>2025-01-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/wattage-hant</loc>
          <lastmod>2025-01-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lamp-hant</loc>
          <lastmod>2025-01-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/github-desktop-font-hant</loc>
          <lastmod>2025-01-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/calorie-hant</loc>
          <lastmod>2025-01-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/wattage-fr</loc>
          <lastmod>2025-01-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lamp-fr</loc>
          <lastmod>2025-01-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/github-desktop-font-fr</loc>
          <lastmod>2025-01-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/calorie-fr</loc>
          <lastmod>2025-01-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/wattage-es</loc>
          <lastmod>2025-01-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lamp-es</loc>
          <lastmod>2025-01-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/github-desktop-font-es</loc>
          <lastmod>2025-01-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/calorie-es</loc>
          <lastmod>2025-01-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/wattage-en</loc>
          <lastmod>2025-01-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lamp-en</loc>
          <lastmod>2025-01-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/github-desktop-font-en</loc>
          <lastmod>2025-01-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/calorie-en</loc>
          <lastmod>2025-01-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/wattage-de</loc>
          <lastmod>2025-01-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lamp-de</loc>
          <lastmod>2025-01-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/github-desktop-font-de</loc>
          <lastmod>2025-01-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/calorie-de</loc>
          <lastmod>2025-01-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/wattage-ar</loc>
          <lastmod>2025-01-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lamp-ar</loc>
          <lastmod>2025-01-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/github-desktop-font-ar</loc>
          <lastmod>2025-01-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/calorie-ar</loc>
          <lastmod>2025-01-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/function-compute-zh</loc>
          <lastmod>2025-01-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/function-compute-ja</loc>
          <lastmod>2025-01-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/function-compute-hi</loc>
          <lastmod>2025-01-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/function-compute-hant</loc>
          <lastmod>2025-01-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/function-compute-fr</loc>
          <lastmod>2025-01-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/function-compute-es</loc>
          <lastmod>2025-01-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/function-compute-en</loc>
          <lastmod>2025-01-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/function-compute-de</loc>
          <lastmod>2025-01-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/function-compute-ar</loc>
          <lastmod>2025-01-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/structure-zh</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/speech-to-text-zh</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/scale-pdf-zh</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/deep-think-zh</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bedroom-zh</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/structure-ja</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/speech-to-text-ja</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/scale-pdf-ja</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/deep-think-ja</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bedroom-ja</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/structure-hi</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/speech-to-text-hi</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/scale-pdf-hi</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/deep-think-hi</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bedroom-hi</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/structure-hant</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/speech-to-text-hant</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/scale-pdf-hant</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/deep-think-hant</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bedroom-hant</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/structure-fr</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/speech-to-text-fr</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/scale-pdf-fr</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/deep-think-fr</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bedroom-fr</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/structure-es</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/speech-to-text-es</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/scale-pdf-es</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/deep-think-es</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bedroom-es</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/structure-en</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/speech-to-text-en</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/scale-pdf-en</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/deep-think-en</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bedroom-en</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/structure-de</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/speech-to-text-de</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/scale-pdf-de</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/deep-think-de</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bedroom-de</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/structure-ar</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/speech-to-text-ar</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/scale-pdf-ar</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/deep-think-ar</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bedroom-ar</loc>
          <lastmod>2025-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/projector-zh</loc>
          <lastmod>2025-01-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/investing-zh</loc>
          <lastmod>2025-01-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/conversation-style-zh</loc>
          <lastmod>2025-01-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-papers-zh</loc>
          <lastmod>2025-01-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/projector-ja</loc>
          <lastmod>2025-01-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/investing-ja</loc>
          <lastmod>2025-01-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/conversation-style-ja</loc>
          <lastmod>2025-01-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-papers-ja</loc>
          <lastmod>2025-01-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/projector-hi</loc>
          <lastmod>2025-01-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/investing-hi</loc>
          <lastmod>2025-01-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/conversation-style-hi</loc>
          <lastmod>2025-01-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-papers-hi</loc>
          <lastmod>2025-01-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/projector-hant</loc>
          <lastmod>2025-01-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/investing-hant</loc>
          <lastmod>2025-01-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/conversation-style-hant</loc>
          <lastmod>2025-01-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-papers-hant</loc>
          <lastmod>2025-01-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/projector-fr</loc>
          <lastmod>2025-01-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/investing-fr</loc>
          <lastmod>2025-01-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/conversation-style-fr</loc>
          <lastmod>2025-01-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-papers-fr</loc>
          <lastmod>2025-01-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/projector-es</loc>
          <lastmod>2025-01-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/investing-es</loc>
          <lastmod>2025-01-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/conversation-style-es</loc>
          <lastmod>2025-01-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-papers-es</loc>
          <lastmod>2025-01-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/projector-en</loc>
          <lastmod>2025-01-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/investing-en</loc>
          <lastmod>2025-01-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/conversation-style-en</loc>
          <lastmod>2025-01-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-papers-en</loc>
          <lastmod>2025-01-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/projector-de</loc>
          <lastmod>2025-01-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/investing-de</loc>
          <lastmod>2025-01-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/conversation-style-de</loc>
          <lastmod>2025-01-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-papers-de</loc>
          <lastmod>2025-01-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/projector-ar</loc>
          <lastmod>2025-01-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/investing-ar</loc>
          <lastmod>2025-01-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/conversation-style-ar</loc>
          <lastmod>2025-01-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-papers-ar</loc>
          <lastmod>2025-01-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/model-training-zh</loc>
          <lastmod>2025-01-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/farming-zh</loc>
          <lastmod>2025-01-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/model-training-ja</loc>
          <lastmod>2025-01-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/farming-ja</loc>
          <lastmod>2025-01-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/model-training-hi</loc>
          <lastmod>2025-01-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/farming-hi</loc>
          <lastmod>2025-01-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/model-training-hant</loc>
          <lastmod>2025-01-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/farming-hant</loc>
          <lastmod>2025-01-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/model-training-fr</loc>
          <lastmod>2025-01-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/farming-fr</loc>
          <lastmod>2025-01-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/model-training-es</loc>
          <lastmod>2025-01-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/farming-es</loc>
          <lastmod>2025-01-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/model-training-en</loc>
          <lastmod>2025-01-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/farming-en</loc>
          <lastmod>2025-01-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/model-training-de</loc>
          <lastmod>2025-01-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/farming-de</loc>
          <lastmod>2025-01-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/model-training-ar</loc>
          <lastmod>2025-01-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/farming-ar</loc>
          <lastmod>2025-01-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ultra-paygo-zh</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/tailpipe-zh</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/language-support-zh</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/google-maps-zh</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/context-length-zh</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ultra-paygo-ja</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/tailpipe-ja</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/language-support-ja</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/google-maps-ja</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/context-length-ja</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ultra-paygo-hi</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/tailpipe-hi</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/language-support-hi</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/google-maps-hi</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/context-length-hi</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ultra-paygo-hant</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/tailpipe-hant</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/language-support-hant</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/google-maps-hant</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/context-length-hant</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ultra-paygo-fr</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/tailpipe-fr</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/language-support-fr</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/google-maps-fr</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/context-length-fr</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ultra-paygo-es</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/tailpipe-es</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/language-support-es</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/google-maps-es</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/context-length-es</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ultra-paygo-en</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/tailpipe-en</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/language-support-en</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/google-maps-en</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/context-length-en</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ultra-paygo-de</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/tailpipe-de</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/language-support-de</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/google-maps-de</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/context-length-de</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ultra-paygo-ar</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/tailpipe-ar</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/language-support-ar</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/google-maps-ar</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/context-length-ar</loc>
          <lastmod>2025-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/status-page-zh</loc>
          <lastmod>2025-01-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/search-zh</loc>
          <lastmod>2025-01-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reserved-ip-zh</loc>
          <lastmod>2025-01-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/error-zh</loc>
          <lastmod>2025-01-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/status-page-ja</loc>
          <lastmod>2025-01-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/search-ja</loc>
          <lastmod>2025-01-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reserved-ip-ja</loc>
          <lastmod>2025-01-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/error-ja</loc>
          <lastmod>2025-01-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/status-page-hi</loc>
          <lastmod>2025-01-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/search-hi</loc>
          <lastmod>2025-01-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reserved-ip-hi</loc>
          <lastmod>2025-01-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/error-hi</loc>
          <lastmod>2025-01-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/status-page-hant</loc>
          <lastmod>2025-01-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/search-hant</loc>
          <lastmod>2025-01-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reserved-ip-hant</loc>
          <lastmod>2025-01-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/error-hant</loc>
          <lastmod>2025-01-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/status-page-fr</loc>
          <lastmod>2025-01-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/search-fr</loc>
          <lastmod>2025-01-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reserved-ip-fr</loc>
          <lastmod>2025-01-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/error-fr</loc>
          <lastmod>2025-01-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/status-page-es</loc>
          <lastmod>2025-01-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/search-es</loc>
          <lastmod>2025-01-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reserved-ip-es</loc>
          <lastmod>2025-01-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/error-es</loc>
          <lastmod>2025-01-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/status-page-en</loc>
          <lastmod>2025-01-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/search-en</loc>
          <lastmod>2025-01-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reserved-ip-en</loc>
          <lastmod>2025-01-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/error-en</loc>
          <lastmod>2025-01-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/status-page-de</loc>
          <lastmod>2025-01-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/search-de</loc>
          <lastmod>2025-01-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reserved-ip-de</loc>
          <lastmod>2025-01-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/error-de</loc>
          <lastmod>2025-01-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/status-page-ar</loc>
          <lastmod>2025-01-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/search-ar</loc>
          <lastmod>2025-01-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reserved-ip-ar</loc>
          <lastmod>2025-01-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/error-ar</loc>
          <lastmod>2025-01-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/house-finances-zh</loc>
          <lastmod>2025-01-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gitmessageai-zh</loc>
          <lastmod>2025-01-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/house-finances-ja</loc>
          <lastmod>2025-01-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gitmessageai-ja</loc>
          <lastmod>2025-01-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/house-finances-hi</loc>
          <lastmod>2025-01-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gitmessageai-hi</loc>
          <lastmod>2025-01-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/house-finances-hant</loc>
          <lastmod>2025-01-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gitmessageai-hant</loc>
          <lastmod>2025-01-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/house-finances-fr</loc>
          <lastmod>2025-01-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gitmessageai-fr</loc>
          <lastmod>2025-01-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/house-finances-es</loc>
          <lastmod>2025-01-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gitmessageai-es</loc>
          <lastmod>2025-01-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/house-finances-en</loc>
          <lastmod>2025-01-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gitmessageai-en</loc>
          <lastmod>2025-01-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/house-finances-de</loc>
          <lastmod>2025-01-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gitmessageai-de</loc>
          <lastmod>2025-01-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/house-finances-ar</loc>
          <lastmod>2025-01-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gitmessageai-ar</loc>
          <lastmod>2025-01-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/subscribe-zh</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/resume-zh</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/portfolio-zh</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/papers-zh</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/original-zh</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/notes-zh</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/github-actions-zh</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/donate-zh</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/disclaimer-zh</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/contact-zh</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/subscribe-ja</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/resume-ja</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/portfolio-ja</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/papers-ja</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/original-ja</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/notes-ja</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/github-actions-ja</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/donate-ja</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/disclaimer-ja</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/contact-ja</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/subscribe-hi</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/resume-hi</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/portfolio-hi</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/papers-hi</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/original-hi</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/notes-hi</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/github-actions-hi</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/donate-hi</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/disclaimer-hi</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/contact-hi</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/subscribe-hant</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/resume-hant</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/portfolio-hant</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/papers-hant</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/original-hant</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/notes-hant</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/github-actions-hant</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/donate-hant</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/disclaimer-hant</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/contact-hant</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/subscribe-fr</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/resume-fr</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/portfolio-fr</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/papers-fr</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/original-fr</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/notes-fr</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/github-actions-fr</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/donate-fr</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/disclaimer-fr</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/contact-fr</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/subscribe-es</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/resume-es</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/portfolio-es</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/papers-es</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/original-es</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/notes-es</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/github-actions-es</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/donate-es</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/disclaimer-es</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/contact-es</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/subscribe-en</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/resume-en</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/portfolio-en</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/papers-en</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/original-en</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/notes-en</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/github-actions-en</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/donate-en</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/disclaimer-en</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/contact-en</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/subscribe-de</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/resume-de</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/portfolio-de</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/papers-de</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/original-de</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/notes-de</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/github-actions-de</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/donate-de</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/disclaimer-de</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/contact-de</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/subscribe-ar</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/resume-ar</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/portfolio-ar</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/papers-ar</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/original-ar</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/notes-ar</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/github-actions-ar</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/donate-ar</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/disclaimer-ar</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/contact-ar</loc>
          <lastmod>2025-01-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ragflow-zh</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mute-zh</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lese-me-zh</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/greptime-portal-zh</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gpts-from-conversation-zh</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/app-choices-zh</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ragflow-ja</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mute-ja</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lese-me-ja</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/greptime-portal-ja</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gpts-from-conversation-ja</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/app-choices-ja</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ragflow-hi</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mute-hi</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lese-me-hi</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/greptime-portal-hi</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gpts-from-conversation-hi</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/app-choices-hi</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ragflow-hant</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mute-hant</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lese-me-hant</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/greptime-portal-hant</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gpts-from-conversation-hant</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/app-choices-hant</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ragflow-fr</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mute-fr</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lese-me-fr</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/greptime-portal-fr</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gpts-from-conversation-fr</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/app-choices-fr</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ragflow-es</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mute-es</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lese-me-es</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/greptime-portal-es</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gpts-from-conversation-es</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/app-choices-es</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ragflow-en</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mute-en</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lese-me-en</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/greptime-portal-en</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gpts-from-conversation-en</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/app-choices-en</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ragflow-de</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mute-de</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lese-me-de</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/greptime-portal-de</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gpts-from-conversation-de</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/app-choices-de</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ragflow-ar</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mute-ar</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lese-me-ar</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/greptime-portal-ar</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gpts-from-conversation-ar</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/app-choices-ar</loc>
          <lastmod>2025-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/workflow-agent-zh</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/verb-zh</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/turbolist3r-zh</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/rrc-zh</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/prompt-context-zh</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/o1-zh</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/he-she-zh</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/greptimedb-zh</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gpts-zh</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/dirb-zh</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cofounder-zh</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-search-zh</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-cheat-zh</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/advanced-markdown-zh</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/workflow-agent-ja</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/verb-ja</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/turbolist3r-ja</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/rrc-ja</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/prompt-context-ja</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/o1-ja</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/he-she-ja</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/greptimedb-ja</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gpts-ja</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/dirb-ja</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cofounder-ja</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-search-ja</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-cheat-ja</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/advanced-markdown-ja</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/workflow-agent-hi</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/verb-hi</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/turbolist3r-hi</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/rrc-hi</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/prompt-context-hi</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/o1-hi</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/he-she-hi</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/greptimedb-hi</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gpts-hi</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/dirb-hi</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cofounder-hi</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-search-hi</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-cheat-hi</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/advanced-markdown-hi</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/workflow-agent-hant</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/verb-hant</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/turbolist3r-hant</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/rrc-hant</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/prompt-context-hant</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/o1-hant</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/he-she-hant</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/greptimedb-hant</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gpts-hant</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/dirb-hant</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cofounder-hant</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-search-hant</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-cheat-hant</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/advanced-markdown-hant</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/workflow-agent-fr</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/verb-fr</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/turbolist3r-fr</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/rrc-fr</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/prompt-context-fr</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/o1-fr</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/he-she-fr</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/greptimedb-fr</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gpts-fr</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/dirb-fr</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cofounder-fr</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-search-fr</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-cheat-fr</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/advanced-markdown-fr</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/workflow-agent-es</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/verb-es</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/turbolist3r-es</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/rrc-es</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/prompt-context-es</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/o1-es</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/he-she-es</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/greptimedb-es</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gpts-es</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/dirb-es</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cofounder-es</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-search-es</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-cheat-es</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/advanced-markdown-es</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/workflow-agent-en</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/verb-en</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/turbolist3r-en</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/rrc-en</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/prompt-context-en</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/o1-en</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/he-she-en</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/greptimedb-en</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gpts-en</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/dirb-en</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cofounder-en</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-search-en</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-cheat-en</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/advanced-markdown-en</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/workflow-agent-de</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/verb-de</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/turbolist3r-de</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/rrc-de</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/prompt-context-de</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/o1-de</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/he-she-de</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/greptimedb-de</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gpts-de</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/dirb-de</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cofounder-de</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-search-de</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-cheat-de</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/advanced-markdown-de</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/workflow-agent-ar</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/verb-ar</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/turbolist3r-ar</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/rrc-ar</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/prompt-context-ar</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/o1-ar</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/he-she-ar</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/greptimedb-ar</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gpts-ar</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/dirb-ar</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cofounder-ar</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-search-ar</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-cheat-ar</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/advanced-markdown-ar</loc>
          <lastmod>2025-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/psd-zh</loc>
          <lastmod>2025-01-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/proxy-ban-zh</loc>
          <lastmod>2025-01-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hacking-zh</loc>
          <lastmod>2025-01-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/psd-ja</loc>
          <lastmod>2025-01-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/proxy-ban-ja</loc>
          <lastmod>2025-01-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hacking-ja</loc>
          <lastmod>2025-01-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/psd-hi</loc>
          <lastmod>2025-01-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/proxy-ban-hi</loc>
          <lastmod>2025-01-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hacking-hi</loc>
          <lastmod>2025-01-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/psd-hant</loc>
          <lastmod>2025-01-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/proxy-ban-hant</loc>
          <lastmod>2025-01-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hacking-hant</loc>
          <lastmod>2025-01-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/psd-fr</loc>
          <lastmod>2025-01-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/proxy-ban-fr</loc>
          <lastmod>2025-01-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hacking-fr</loc>
          <lastmod>2025-01-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/psd-es</loc>
          <lastmod>2025-01-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/proxy-ban-es</loc>
          <lastmod>2025-01-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hacking-es</loc>
          <lastmod>2025-01-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/psd-en</loc>
          <lastmod>2025-01-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/proxy-ban-en</loc>
          <lastmod>2025-01-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hacking-en</loc>
          <lastmod>2025-01-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/psd-de</loc>
          <lastmod>2025-01-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/proxy-ban-de</loc>
          <lastmod>2025-01-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hacking-de</loc>
          <lastmod>2025-01-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/psd-ar</loc>
          <lastmod>2025-01-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/proxy-ban-ar</loc>
          <lastmod>2025-01-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hacking-ar</loc>
          <lastmod>2025-01-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/plan-2025-zh</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/introduction-zh</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/google-zh</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/digital-memories-zh</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/agi-world-zh</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/plan-2025-ja</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/introduction-ja</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/google-ja</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/digital-memories-ja</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/agi-world-ja</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/plan-2025-hi</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/introduction-hi</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/google-hi</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/digital-memories-hi</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/agi-world-hi</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/plan-2025-hant</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/introduction-hant</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/google-hant</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/digital-memories-hant</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/agi-world-hant</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/plan-2025-fr</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/introduction-fr</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/google-fr</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/digital-memories-fr</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/agi-world-fr</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/plan-2025-es</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/introduction-es</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/google-es</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/digital-memories-es</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/agi-world-es</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/plan-2025-en</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/introduction-en</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/google-en</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/digital-memories-en</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/agi-world-en</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/plan-2025-de</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/introduction-de</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/google-de</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/digital-memories-de</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/agi-world-de</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/plan-2025-ar</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/introduction-ar</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/google-ar</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/digital-memories-ar</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/agi-world-ar</loc>
          <lastmod>2025-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reclining-pillow-zh</loc>
          <lastmod>2025-01-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/power-bank-zh</loc>
          <lastmod>2025-01-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reclining-pillow-ja</loc>
          <lastmod>2025-01-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/power-bank-ja</loc>
          <lastmod>2025-01-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reclining-pillow-hi</loc>
          <lastmod>2025-01-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/power-bank-hi</loc>
          <lastmod>2025-01-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reclining-pillow-hant</loc>
          <lastmod>2025-01-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/power-bank-hant</loc>
          <lastmod>2025-01-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reclining-pillow-fr</loc>
          <lastmod>2025-01-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/power-bank-fr</loc>
          <lastmod>2025-01-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reclining-pillow-es</loc>
          <lastmod>2025-01-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/power-bank-es</loc>
          <lastmod>2025-01-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reclining-pillow-en</loc>
          <lastmod>2025-01-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/power-bank-en</loc>
          <lastmod>2025-01-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reclining-pillow-de</loc>
          <lastmod>2025-01-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/power-bank-de</loc>
          <lastmod>2025-01-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reclining-pillow-ar</loc>
          <lastmod>2025-01-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/power-bank-ar</loc>
          <lastmod>2025-01-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/phone-music-zh</loc>
          <lastmod>2025-01-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/naming-zh</loc>
          <lastmod>2025-01-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/github-search-zh</loc>
          <lastmod>2025-01-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/conspiracy-zh</loc>
          <lastmod>2025-01-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/phone-music-ja</loc>
          <lastmod>2025-01-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/naming-ja</loc>
          <lastmod>2025-01-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/github-search-ja</loc>
          <lastmod>2025-01-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/conspiracy-ja</loc>
          <lastmod>2025-01-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/phone-music-hi</loc>
          <lastmod>2025-01-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/naming-hi</loc>
          <lastmod>2025-01-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/github-search-hi</loc>
          <lastmod>2025-01-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/conspiracy-hi</loc>
          <lastmod>2025-01-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/phone-music-hant</loc>
          <lastmod>2025-01-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/naming-hant</loc>
          <lastmod>2025-01-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/github-search-hant</loc>
          <lastmod>2025-01-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/conspiracy-hant</loc>
          <lastmod>2025-01-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/phone-music-fr</loc>
          <lastmod>2025-01-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/naming-fr</loc>
          <lastmod>2025-01-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/github-search-fr</loc>
          <lastmod>2025-01-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/conspiracy-fr</loc>
          <lastmod>2025-01-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/phone-music-es</loc>
          <lastmod>2025-01-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/naming-es</loc>
          <lastmod>2025-01-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/github-search-es</loc>
          <lastmod>2025-01-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/conspiracy-es</loc>
          <lastmod>2025-01-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/phone-music-en</loc>
          <lastmod>2025-01-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/naming-en</loc>
          <lastmod>2025-01-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/github-search-en</loc>
          <lastmod>2025-01-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/conspiracy-en</loc>
          <lastmod>2025-01-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/phone-music-de</loc>
          <lastmod>2025-01-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/naming-de</loc>
          <lastmod>2025-01-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/github-search-de</loc>
          <lastmod>2025-01-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/conspiracy-de</loc>
          <lastmod>2025-01-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/phone-music-ar</loc>
          <lastmod>2025-01-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/naming-ar</loc>
          <lastmod>2025-01-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/github-search-ar</loc>
          <lastmod>2025-01-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/conspiracy-ar</loc>
          <lastmod>2025-01-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/status-zh</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/programming-zh</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/magnet-zh</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/embracing-change-zh</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/dark-mode-zh</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/communicate-zh</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/auto-ss-config-zh</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/status-ja</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/programming-ja</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/magnet-ja</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/embracing-change-ja</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/dark-mode-ja</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/communicate-ja</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/auto-ss-config-ja</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/status-hi</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/programming-hi</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/magnet-hi</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/embracing-change-hi</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/dark-mode-hi</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/communicate-hi</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/auto-ss-config-hi</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/status-hant</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/programming-hant</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/magnet-hant</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/embracing-change-hant</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/dark-mode-hant</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/communicate-hant</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/auto-ss-config-hant</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/status-fr</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/programming-fr</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/magnet-fr</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/embracing-change-fr</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/dark-mode-fr</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/communicate-fr</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/auto-ss-config-fr</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/status-es</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/programming-es</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/magnet-es</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/embracing-change-es</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/dark-mode-es</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/communicate-es</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/auto-ss-config-es</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/status-en</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/programming-en</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/magnet-en</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/embracing-change-en</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/dark-mode-en</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/communicate-en</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/auto-ss-config-en</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/status-de</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/programming-de</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/magnet-de</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/embracing-change-de</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/dark-mode-de</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/communicate-de</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/auto-ss-config-de</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/status-ar</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/programming-ar</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/magnet-ar</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/embracing-change-ar</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/dark-mode-ar</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/communicate-ar</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/auto-ss-config-ar</loc>
          <lastmod>2025-01-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/blockchain-crypto-zh</loc>
          <lastmod>2025-01-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/batch-zh</loc>
          <lastmod>2025-01-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-blockchain-zh</loc>
          <lastmod>2025-01-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/blockchain-crypto-ja</loc>
          <lastmod>2025-01-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/batch-ja</loc>
          <lastmod>2025-01-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-blockchain-ja</loc>
          <lastmod>2025-01-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/blockchain-crypto-hi</loc>
          <lastmod>2025-01-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/batch-hi</loc>
          <lastmod>2025-01-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-blockchain-hi</loc>
          <lastmod>2025-01-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/blockchain-crypto-hant</loc>
          <lastmod>2025-01-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/batch-hant</loc>
          <lastmod>2025-01-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-blockchain-hant</loc>
          <lastmod>2025-01-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/blockchain-crypto-fr</loc>
          <lastmod>2025-01-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/batch-fr</loc>
          <lastmod>2025-01-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-blockchain-fr</loc>
          <lastmod>2025-01-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/blockchain-crypto-es</loc>
          <lastmod>2025-01-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/batch-es</loc>
          <lastmod>2025-01-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-blockchain-es</loc>
          <lastmod>2025-01-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/blockchain-crypto-en</loc>
          <lastmod>2025-01-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/batch-en</loc>
          <lastmod>2025-01-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-blockchain-en</loc>
          <lastmod>2025-01-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/blockchain-crypto-de</loc>
          <lastmod>2025-01-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/batch-de</loc>
          <lastmod>2025-01-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-blockchain-de</loc>
          <lastmod>2025-01-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/blockchain-crypto-ar</loc>
          <lastmod>2025-01-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/batch-ar</loc>
          <lastmod>2025-01-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-blockchain-ar</loc>
          <lastmod>2025-01-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/parking-zh</loc>
          <lastmod>2025-01-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/parking-ja</loc>
          <lastmod>2025-01-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/parking-hi</loc>
          <lastmod>2025-01-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/parking-hant</loc>
          <lastmod>2025-01-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/parking-fr</loc>
          <lastmod>2025-01-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/parking-es</loc>
          <lastmod>2025-01-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/parking-en</loc>
          <lastmod>2025-01-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/parking-de</loc>
          <lastmod>2025-01-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/parking-ar</loc>
          <lastmod>2025-01-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/testing-zh</loc>
          <lastmod>2024-12-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-editor-zh</loc>
          <lastmod>2024-12-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/testing-ja</loc>
          <lastmod>2024-12-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-editor-ja</loc>
          <lastmod>2024-12-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/testing-hi</loc>
          <lastmod>2024-12-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-editor-hi</loc>
          <lastmod>2024-12-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/testing-hant</loc>
          <lastmod>2024-12-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-editor-hant</loc>
          <lastmod>2024-12-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/testing-fr</loc>
          <lastmod>2024-12-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-editor-fr</loc>
          <lastmod>2024-12-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/testing-es</loc>
          <lastmod>2024-12-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-editor-es</loc>
          <lastmod>2024-12-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/testing-en</loc>
          <lastmod>2024-12-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-editor-en</loc>
          <lastmod>2024-12-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/testing-de</loc>
          <lastmod>2024-12-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-editor-de</loc>
          <lastmod>2024-12-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/testing-ar</loc>
          <lastmod>2024-12-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-editor-ar</loc>
          <lastmod>2024-12-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/face-zh</loc>
          <lastmod>2024-12-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/face-ja</loc>
          <lastmod>2024-12-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/face-hi</loc>
          <lastmod>2024-12-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/face-hant</loc>
          <lastmod>2024-12-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/face-fr</loc>
          <lastmod>2024-12-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/face-es</loc>
          <lastmod>2024-12-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/face-en</loc>
          <lastmod>2024-12-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/face-de</loc>
          <lastmod>2024-12-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/face-ar</loc>
          <lastmod>2024-12-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/woman-zh</loc>
          <lastmod>2024-12-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/diy-proxy-zh</loc>
          <lastmod>2024-12-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cooking-zh</loc>
          <lastmod>2024-12-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/woman-ja</loc>
          <lastmod>2024-12-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/diy-proxy-ja</loc>
          <lastmod>2024-12-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cooking-ja</loc>
          <lastmod>2024-12-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/woman-hi</loc>
          <lastmod>2024-12-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/diy-proxy-hi</loc>
          <lastmod>2024-12-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cooking-hi</loc>
          <lastmod>2024-12-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/woman-hant</loc>
          <lastmod>2024-12-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/diy-proxy-hant</loc>
          <lastmod>2024-12-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cooking-hant</loc>
          <lastmod>2024-12-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/woman-fr</loc>
          <lastmod>2024-12-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/diy-proxy-fr</loc>
          <lastmod>2024-12-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cooking-fr</loc>
          <lastmod>2024-12-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/woman-es</loc>
          <lastmod>2024-12-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/diy-proxy-es</loc>
          <lastmod>2024-12-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cooking-es</loc>
          <lastmod>2024-12-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/woman-en</loc>
          <lastmod>2024-12-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/diy-proxy-en</loc>
          <lastmod>2024-12-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cooking-en</loc>
          <lastmod>2024-12-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/woman-de</loc>
          <lastmod>2024-12-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/diy-proxy-de</loc>
          <lastmod>2024-12-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cooking-de</loc>
          <lastmod>2024-12-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/woman-ar</loc>
          <lastmod>2024-12-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/diy-proxy-ar</loc>
          <lastmod>2024-12-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cooking-ar</loc>
          <lastmod>2024-12-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/sync-zh</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/list-zh</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hdmi-zh</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/github-readme-zh</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/focus-zh</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-translation-zh</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/sync-ja</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/list-ja</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hdmi-ja</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/github-readme-ja</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/focus-ja</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-translation-ja</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/sync-hi</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/list-hi</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hdmi-hi</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/github-readme-hi</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/focus-hi</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-translation-hi</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/sync-hant</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/list-hant</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hdmi-hant</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/github-readme-hant</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/focus-hant</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-translation-hant</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/sync-fr</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/list-fr</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hdmi-fr</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/github-readme-fr</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/focus-fr</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-translation-fr</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/sync-es</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/list-es</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hdmi-es</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/github-readme-es</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/focus-es</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-translation-es</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/sync-en</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/list-en</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hdmi-en</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/github-readme-en</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/focus-en</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-translation-en</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/sync-de</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/list-de</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hdmi-de</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/github-readme-de</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/focus-de</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-translation-de</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/sync-ar</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/list-ar</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hdmi-ar</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/github-readme-ar</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/focus-ar</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-translation-ar</loc>
          <lastmod>2024-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/markdown-zh</loc>
          <lastmod>2024-12-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gloves-zh</loc>
          <lastmod>2024-12-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/markdown-ja</loc>
          <lastmod>2024-12-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gloves-ja</loc>
          <lastmod>2024-12-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/markdown-hi</loc>
          <lastmod>2024-12-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gloves-hi</loc>
          <lastmod>2024-12-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/markdown-hant</loc>
          <lastmod>2024-12-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gloves-hant</loc>
          <lastmod>2024-12-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/markdown-fr</loc>
          <lastmod>2024-12-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gloves-fr</loc>
          <lastmod>2024-12-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/markdown-es</loc>
          <lastmod>2024-12-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gloves-es</loc>
          <lastmod>2024-12-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/markdown-en</loc>
          <lastmod>2024-12-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gloves-en</loc>
          <lastmod>2024-12-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/markdown-de</loc>
          <lastmod>2024-12-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gloves-de</loc>
          <lastmod>2024-12-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/markdown-ar</loc>
          <lastmod>2024-12-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gloves-ar</loc>
          <lastmod>2024-12-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/track-zh</loc>
          <lastmod>2024-12-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/track-ja</loc>
          <lastmod>2024-12-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/track-hi</loc>
          <lastmod>2024-12-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/track-hant</loc>
          <lastmod>2024-12-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/track-fr</loc>
          <lastmod>2024-12-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/track-es</loc>
          <lastmod>2024-12-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/track-en</loc>
          <lastmod>2024-12-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/track-de</loc>
          <lastmod>2024-12-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/track-ar</loc>
          <lastmod>2024-12-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/flutter-zh</loc>
          <lastmod>2024-12-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/flutter-ja</loc>
          <lastmod>2024-12-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/flutter-hi</loc>
          <lastmod>2024-12-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/flutter-hant</loc>
          <lastmod>2024-12-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/flutter-fr</loc>
          <lastmod>2024-12-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/flutter-es</loc>
          <lastmod>2024-12-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/flutter-en</loc>
          <lastmod>2024-12-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/flutter-de</loc>
          <lastmod>2024-12-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/flutter-ar</loc>
          <lastmod>2024-12-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/multifocal-zh</loc>
          <lastmod>2024-12-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/background-sound-zh</loc>
          <lastmod>2024-12-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/multifocal-ja</loc>
          <lastmod>2024-12-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/background-sound-ja</loc>
          <lastmod>2024-12-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/multifocal-hi</loc>
          <lastmod>2024-12-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/background-sound-hi</loc>
          <lastmod>2024-12-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/multifocal-hant</loc>
          <lastmod>2024-12-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/background-sound-hant</loc>
          <lastmod>2024-12-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/multifocal-fr</loc>
          <lastmod>2024-12-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/background-sound-fr</loc>
          <lastmod>2024-12-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/multifocal-es</loc>
          <lastmod>2024-12-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/background-sound-es</loc>
          <lastmod>2024-12-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/multifocal-en</loc>
          <lastmod>2024-12-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/background-sound-en</loc>
          <lastmod>2024-12-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/multifocal-de</loc>
          <lastmod>2024-12-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/background-sound-de</loc>
          <lastmod>2024-12-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/multifocal-ar</loc>
          <lastmod>2024-12-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/background-sound-ar</loc>
          <lastmod>2024-12-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/update-zh</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/three-phones-zh</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/photo-room-zh</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/flashlight-charging-zh</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/electric-vehicles-zh</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/confs-zh</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/update-ja</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/three-phones-ja</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/photo-room-ja</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/flashlight-charging-ja</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/electric-vehicles-ja</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/confs-ja</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/update-hi</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/three-phones-hi</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/photo-room-hi</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/flashlight-charging-hi</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/electric-vehicles-hi</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/confs-hi</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/update-hant</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/three-phones-hant</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/photo-room-hant</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/flashlight-charging-hant</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/electric-vehicles-hant</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/confs-hant</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/update-fr</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/three-phones-fr</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/photo-room-fr</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/flashlight-charging-fr</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/electric-vehicles-fr</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/confs-fr</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/update-es</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/three-phones-es</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/photo-room-es</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/flashlight-charging-es</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/electric-vehicles-es</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/confs-es</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/update-en</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/three-phones-en</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/photo-room-en</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/flashlight-charging-en</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/electric-vehicles-en</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/confs-en</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/update-de</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/three-phones-de</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/photo-room-de</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/flashlight-charging-de</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/electric-vehicles-de</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/confs-de</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/update-ar</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/three-phones-ar</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/photo-room-ar</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/flashlight-charging-ar</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/electric-vehicles-ar</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/confs-ar</loc>
          <lastmod>2024-12-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/charging-zh</loc>
          <lastmod>2024-12-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/charging-ja</loc>
          <lastmod>2024-12-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/charging-hi</loc>
          <lastmod>2024-12-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/charging-hant</loc>
          <lastmod>2024-12-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/charging-fr</loc>
          <lastmod>2024-12-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/charging-es</loc>
          <lastmod>2024-12-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/charging-en</loc>
          <lastmod>2024-12-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/charging-de</loc>
          <lastmod>2024-12-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/charging-ar</loc>
          <lastmod>2024-12-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/v2ray-script-zh</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ufw-zh</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pin-zh</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gcp-compute-zh</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/azure-vm-zh</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/v2ray-script-ja</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ufw-ja</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pin-ja</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gcp-compute-ja</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/azure-vm-ja</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/v2ray-script-hi</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ufw-hi</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pin-hi</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gcp-compute-hi</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/azure-vm-hi</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/v2ray-script-hant</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ufw-hant</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pin-hant</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gcp-compute-hant</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/azure-vm-hant</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/v2ray-script-fr</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ufw-fr</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pin-fr</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gcp-compute-fr</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/azure-vm-fr</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/v2ray-script-es</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ufw-es</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pin-es</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gcp-compute-es</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/azure-vm-es</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/v2ray-script-en</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ufw-en</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pin-en</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gcp-compute-en</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/azure-vm-en</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/v2ray-script-de</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ufw-de</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pin-de</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gcp-compute-de</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/azure-vm-de</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/v2ray-script-ar</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ufw-ar</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pin-ar</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gcp-compute-ar</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/azure-vm-ar</loc>
          <lastmod>2024-12-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/v2ray-zh</loc>
          <lastmod>2024-12-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/server-provider-zh</loc>
          <lastmod>2024-12-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/health-tools-zh</loc>
          <lastmod>2024-12-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/v2ray-ja</loc>
          <lastmod>2024-12-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/server-provider-ja</loc>
          <lastmod>2024-12-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/health-tools-ja</loc>
          <lastmod>2024-12-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/v2ray-hi</loc>
          <lastmod>2024-12-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/server-provider-hi</loc>
          <lastmod>2024-12-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/health-tools-hi</loc>
          <lastmod>2024-12-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/v2ray-hant</loc>
          <lastmod>2024-12-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/server-provider-hant</loc>
          <lastmod>2024-12-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/health-tools-hant</loc>
          <lastmod>2024-12-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/v2ray-fr</loc>
          <lastmod>2024-12-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/server-provider-fr</loc>
          <lastmod>2024-12-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/health-tools-fr</loc>
          <lastmod>2024-12-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/v2ray-es</loc>
          <lastmod>2024-12-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/server-provider-es</loc>
          <lastmod>2024-12-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/health-tools-es</loc>
          <lastmod>2024-12-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/v2ray-en</loc>
          <lastmod>2024-12-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/server-provider-en</loc>
          <lastmod>2024-12-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/health-tools-en</loc>
          <lastmod>2024-12-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/v2ray-de</loc>
          <lastmod>2024-12-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/server-provider-de</loc>
          <lastmod>2024-12-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/health-tools-de</loc>
          <lastmod>2024-12-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/v2ray-ar</loc>
          <lastmod>2024-12-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/server-provider-ar</loc>
          <lastmod>2024-12-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/health-tools-ar</loc>
          <lastmod>2024-12-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/repeatition-benefits-zh</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/redsocks-zh</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gcp-speech-zh</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/future-world-zh</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/echo-zh</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/disk-zh</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chatgpt-nested-zh</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/repeatition-benefits-ja</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/redsocks-ja</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gcp-speech-ja</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/future-world-ja</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/echo-ja</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/disk-ja</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chatgpt-nested-ja</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/repeatition-benefits-hi</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/redsocks-hi</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gcp-speech-hi</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/future-world-hi</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/echo-hi</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/disk-hi</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chatgpt-nested-hi</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/repeatition-benefits-hant</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/redsocks-hant</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gcp-speech-hant</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/future-world-hant</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/echo-hant</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/disk-hant</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chatgpt-nested-hant</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/repeatition-benefits-fr</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/redsocks-fr</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gcp-speech-fr</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/future-world-fr</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/echo-fr</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/disk-fr</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chatgpt-nested-fr</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/repeatition-benefits-es</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/redsocks-es</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gcp-speech-es</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/future-world-es</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/echo-es</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/disk-es</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chatgpt-nested-es</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/repeatition-benefits-en</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/redsocks-en</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gcp-speech-en</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/future-world-en</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/echo-en</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/disk-en</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chatgpt-nested-en</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/repeatition-benefits-de</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/redsocks-de</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gcp-speech-de</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/future-world-de</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/echo-de</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/disk-de</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chatgpt-nested-de</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/repeatition-benefits-ar</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/redsocks-ar</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gcp-speech-ar</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/future-world-ar</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/echo-ar</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/disk-ar</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chatgpt-nested-ar</loc>
          <lastmod>2024-12-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/zsh-hooks-zh</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/website-report-zh</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/system-prompt-zh</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/preexec-zh</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ios-settings-zh</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gmbh-zh</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/avoid-death-zh</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/zsh-hooks-ja</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/website-report-ja</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/system-prompt-ja</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/preexec-ja</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ios-settings-ja</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gmbh-ja</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/avoid-death-ja</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/zsh-hooks-hi</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/website-report-hi</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/system-prompt-hi</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/preexec-hi</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ios-settings-hi</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gmbh-hi</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/avoid-death-hi</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/zsh-hooks-hant</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/website-report-hant</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/system-prompt-hant</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/preexec-hant</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ios-settings-hant</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gmbh-hant</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/avoid-death-hant</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/zsh-hooks-fr</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/website-report-fr</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/system-prompt-fr</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/preexec-fr</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ios-settings-fr</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gmbh-fr</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/avoid-death-fr</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/zsh-hooks-es</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/website-report-es</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/system-prompt-es</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/preexec-es</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ios-settings-es</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gmbh-es</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/avoid-death-es</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/zsh-hooks-en</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/website-report-en</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/system-prompt-en</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/preexec-en</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ios-settings-en</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gmbh-en</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/avoid-death-en</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/zsh-hooks-de</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/website-report-de</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/system-prompt-de</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/preexec-de</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ios-settings-de</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gmbh-de</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/avoid-death-de</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/zsh-hooks-ar</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/website-report-ar</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/system-prompt-ar</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/preexec-ar</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ios-settings-ar</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gmbh-ar</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/avoid-death-ar</loc>
          <lastmod>2024-12-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/web-retrieval-zh</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/quora-lang-zh</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/png-zh</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/openwrt-hack-zh</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/fixed-price-zh</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/awesome-cv-zh</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/web-retrieval-ja</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/quora-lang-ja</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/png-ja</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/openwrt-hack-ja</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/fixed-price-ja</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/awesome-cv-ja</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/web-retrieval-hi</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/quora-lang-hi</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/png-hi</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/openwrt-hack-hi</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/fixed-price-hi</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/awesome-cv-hi</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/web-retrieval-hant</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/quora-lang-hant</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/png-hant</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/openwrt-hack-hant</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/fixed-price-hant</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/awesome-cv-hant</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/web-retrieval-fr</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/quora-lang-fr</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/png-fr</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/openwrt-hack-fr</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/fixed-price-fr</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/awesome-cv-fr</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/web-retrieval-es</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/quora-lang-es</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/png-es</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/openwrt-hack-es</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/fixed-price-es</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/awesome-cv-es</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/web-retrieval-en</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/quora-lang-en</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/png-en</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/openwrt-hack-en</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/fixed-price-en</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/awesome-cv-en</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/web-retrieval-de</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/quora-lang-de</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/png-de</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/openwrt-hack-de</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/fixed-price-de</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/awesome-cv-de</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/web-retrieval-ar</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/quora-lang-ar</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/png-ar</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/openwrt-hack-ar</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/fixed-price-ar</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/awesome-cv-ar</loc>
          <lastmod>2024-12-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pixel-usb-zh</loc>
          <lastmod>2024-12-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mac-apps-zh</loc>
          <lastmod>2024-12-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pixel-usb-ja</loc>
          <lastmod>2024-12-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mac-apps-ja</loc>
          <lastmod>2024-12-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pixel-usb-hi</loc>
          <lastmod>2024-12-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mac-apps-hi</loc>
          <lastmod>2024-12-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pixel-usb-hant</loc>
          <lastmod>2024-12-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mac-apps-hant</loc>
          <lastmod>2024-12-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pixel-usb-fr</loc>
          <lastmod>2024-12-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mac-apps-fr</loc>
          <lastmod>2024-12-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pixel-usb-es</loc>
          <lastmod>2024-12-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mac-apps-es</loc>
          <lastmod>2024-12-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pixel-usb-en</loc>
          <lastmod>2024-12-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mac-apps-en</loc>
          <lastmod>2024-12-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pixel-usb-de</loc>
          <lastmod>2024-12-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mac-apps-de</loc>
          <lastmod>2024-12-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pixel-usb-ar</loc>
          <lastmod>2024-12-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mac-apps-ar</loc>
          <lastmod>2024-12-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/yin-wang-zh</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/projects-zh</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/openai-price-zh</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/great-yin-wang-zh</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-tools-zh</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/yin-wang-ja</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/projects-ja</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/openai-price-ja</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/great-yin-wang-ja</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-tools-ja</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/yin-wang-hi</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/projects-hi</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/openai-price-hi</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/great-yin-wang-hi</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-tools-hi</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/yin-wang-hant</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/projects-hant</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/openai-price-hant</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/great-yin-wang-hant</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-tools-hant</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/yin-wang-fr</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/projects-fr</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/openai-price-fr</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/great-yin-wang-fr</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-tools-fr</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/yin-wang-es</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/projects-es</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/openai-price-es</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/great-yin-wang-es</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-tools-es</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/yin-wang-en</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/projects-en</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/openai-price-en</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/great-yin-wang-en</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-tools-en</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/yin-wang-de</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/projects-de</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/openai-price-de</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/great-yin-wang-de</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-tools-de</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/yin-wang-ar</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/projects-ar</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/openai-price-ar</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/great-yin-wang-ar</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ai-tools-ar</loc>
          <lastmod>2024-12-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/thinking-zh</loc>
          <lastmod>2024-12-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/thinking-ja</loc>
          <lastmod>2024-12-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/thinking-hi</loc>
          <lastmod>2024-12-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/thinking-hant</loc>
          <lastmod>2024-12-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/thinking-fr</loc>
          <lastmod>2024-12-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/thinking-es</loc>
          <lastmod>2024-12-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/thinking-en</loc>
          <lastmod>2024-12-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/thinking-de</loc>
          <lastmod>2024-12-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/thinking-ar</loc>
          <lastmod>2024-12-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/real-estate-zh</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mortgage-zh</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/life-tips-zh</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/firetv-zh</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/communication-zh</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/real-estate-ja</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mortgage-ja</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/life-tips-ja</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/firetv-ja</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/communication-ja</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/real-estate-hi</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mortgage-hi</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/life-tips-hi</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/firetv-hi</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/communication-hi</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/real-estate-hant</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mortgage-hant</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/life-tips-hant</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/firetv-hant</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/communication-hant</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/real-estate-fr</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mortgage-fr</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/life-tips-fr</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/firetv-fr</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/communication-fr</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/real-estate-es</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mortgage-es</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/life-tips-es</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/firetv-es</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/communication-es</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/real-estate-en</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mortgage-en</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/life-tips-en</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/firetv-en</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/communication-en</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/real-estate-de</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mortgage-de</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/life-tips-de</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/firetv-de</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/communication-de</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/real-estate-ar</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mortgage-ar</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/life-tips-ar</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/firetv-ar</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/communication-ar</loc>
          <lastmod>2024-12-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/libraries-zh</loc>
          <lastmod>2024-12-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/libraries-ja</loc>
          <lastmod>2024-12-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/libraries-hi</loc>
          <lastmod>2024-12-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/libraries-hant</loc>
          <lastmod>2024-12-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/libraries-fr</loc>
          <lastmod>2024-12-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/libraries-es</loc>
          <lastmod>2024-12-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/libraries-en</loc>
          <lastmod>2024-12-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/libraries-de</loc>
          <lastmod>2024-12-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/libraries-ar</loc>
          <lastmod>2024-12-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/things-zh</loc>
          <lastmod>2024-12-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/places-zh</loc>
          <lastmod>2024-12-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/things-ja</loc>
          <lastmod>2024-12-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/places-ja</loc>
          <lastmod>2024-12-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/things-hi</loc>
          <lastmod>2024-12-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/places-hi</loc>
          <lastmod>2024-12-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/things-hant</loc>
          <lastmod>2024-12-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/places-hant</loc>
          <lastmod>2024-12-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/things-fr</loc>
          <lastmod>2024-12-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/places-fr</loc>
          <lastmod>2024-12-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/things-es</loc>
          <lastmod>2024-12-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/places-es</loc>
          <lastmod>2024-12-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/things-en</loc>
          <lastmod>2024-12-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/places-en</loc>
          <lastmod>2024-12-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/things-de</loc>
          <lastmod>2024-12-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/places-de</loc>
          <lastmod>2024-12-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/things-ar</loc>
          <lastmod>2024-12-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/places-ar</loc>
          <lastmod>2024-12-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/fruit-zh</loc>
          <lastmod>2024-12-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/fruit-ja</loc>
          <lastmod>2024-12-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/fruit-hi</loc>
          <lastmod>2024-12-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/fruit-hant</loc>
          <lastmod>2024-12-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/fruit-fr</loc>
          <lastmod>2024-12-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/fruit-es</loc>
          <lastmod>2024-12-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/fruit-en</loc>
          <lastmod>2024-12-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/fruit-de</loc>
          <lastmod>2024-12-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/fruit-ar</loc>
          <lastmod>2024-12-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gcp-zh</loc>
          <lastmod>2024-12-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gcp-ja</loc>
          <lastmod>2024-12-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gcp-hi</loc>
          <lastmod>2024-12-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gcp-hant</loc>
          <lastmod>2024-12-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gcp-fr</loc>
          <lastmod>2024-12-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gcp-es</loc>
          <lastmod>2024-12-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gcp-en</loc>
          <lastmod>2024-12-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gcp-de</loc>
          <lastmod>2024-12-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/gcp-ar</loc>
          <lastmod>2024-12-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shawl-zh</loc>
          <lastmod>2024-12-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hair-zh</loc>
          <lastmod>2024-12-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shawl-ja</loc>
          <lastmod>2024-12-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hair-ja</loc>
          <lastmod>2024-12-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shawl-hi</loc>
          <lastmod>2024-12-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hair-hi</loc>
          <lastmod>2024-12-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shawl-hant</loc>
          <lastmod>2024-12-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hair-hant</loc>
          <lastmod>2024-12-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shawl-fr</loc>
          <lastmod>2024-12-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hair-fr</loc>
          <lastmod>2024-12-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shawl-es</loc>
          <lastmod>2024-12-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hair-es</loc>
          <lastmod>2024-12-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shawl-en</loc>
          <lastmod>2024-12-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hair-en</loc>
          <lastmod>2024-12-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shawl-de</loc>
          <lastmod>2024-12-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hair-de</loc>
          <lastmod>2024-12-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shawl-ar</loc>
          <lastmod>2024-12-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hair-ar</loc>
          <lastmod>2024-12-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mosquito-zh</loc>
          <lastmod>2024-11-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/apps-zh</loc>
          <lastmod>2024-11-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/apps-text-zh</loc>
          <lastmod>2024-11-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/apps-table-zh</loc>
          <lastmod>2024-11-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mosquito-ja</loc>
          <lastmod>2024-11-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/apps-text-ja</loc>
          <lastmod>2024-11-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/apps-table-ja</loc>
          <lastmod>2024-11-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/apps-ja</loc>
          <lastmod>2024-11-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mosquito-hi</loc>
          <lastmod>2024-11-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/apps-text-hi</loc>
          <lastmod>2024-11-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/apps-table-hi</loc>
          <lastmod>2024-11-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/apps-hi</loc>
          <lastmod>2024-11-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mosquito-hant</loc>
          <lastmod>2024-11-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/apps-text-hant</loc>
          <lastmod>2024-11-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/apps-table-hant</loc>
          <lastmod>2024-11-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/apps-hant</loc>
          <lastmod>2024-11-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mosquito-fr</loc>
          <lastmod>2024-11-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/apps-text-fr</loc>
          <lastmod>2024-11-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/apps-table-fr</loc>
          <lastmod>2024-11-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/apps-fr</loc>
          <lastmod>2024-11-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mosquito-es</loc>
          <lastmod>2024-11-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/apps-text-es</loc>
          <lastmod>2024-11-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/apps-table-es</loc>
          <lastmod>2024-11-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/apps-es</loc>
          <lastmod>2024-11-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mosquito-en</loc>
          <lastmod>2024-11-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/apps-text-en</loc>
          <lastmod>2024-11-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/apps-table-en</loc>
          <lastmod>2024-11-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/apps-en</loc>
          <lastmod>2024-11-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mosquito-de</loc>
          <lastmod>2024-11-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/apps-text-de</loc>
          <lastmod>2024-11-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/apps-table-de</loc>
          <lastmod>2024-11-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/apps-de</loc>
          <lastmod>2024-11-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/mosquito-ar</loc>
          <lastmod>2024-11-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/apps-text-ar</loc>
          <lastmod>2024-11-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/apps-table-ar</loc>
          <lastmod>2024-11-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/apps-ar</loc>
          <lastmod>2024-11-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/vision-tips-zh</loc>
          <lastmod>2024-11-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/baby-game-zh</loc>
          <lastmod>2024-11-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/vision-tips-ja</loc>
          <lastmod>2024-11-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/baby-game-ja</loc>
          <lastmod>2024-11-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/vision-tips-hi</loc>
          <lastmod>2024-11-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/baby-game-hi</loc>
          <lastmod>2024-11-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/vision-tips-hant</loc>
          <lastmod>2024-11-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/baby-game-hant</loc>
          <lastmod>2024-11-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/vision-tips-fr</loc>
          <lastmod>2024-11-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/baby-game-fr</loc>
          <lastmod>2024-11-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/vision-tips-es</loc>
          <lastmod>2024-11-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/baby-game-es</loc>
          <lastmod>2024-11-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/vision-tips-en</loc>
          <lastmod>2024-11-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/baby-game-en</loc>
          <lastmod>2024-11-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/vision-tips-de</loc>
          <lastmod>2024-11-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/baby-game-de</loc>
          <lastmod>2024-11-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/vision-tips-ar</loc>
          <lastmod>2024-11-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/baby-game-ar</loc>
          <lastmod>2024-11-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/interview-zh</loc>
          <lastmod>2024-11-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/interview-ja</loc>
          <lastmod>2024-11-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/interview-hi</loc>
          <lastmod>2024-11-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/interview-hant</loc>
          <lastmod>2024-11-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/interview-fr</loc>
          <lastmod>2024-11-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/interview-es</loc>
          <lastmod>2024-11-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/interview-en</loc>
          <lastmod>2024-11-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/interview-de</loc>
          <lastmod>2024-11-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/interview-ar</loc>
          <lastmod>2024-11-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/housing-end-zh</loc>
          <lastmod>2024-11-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/housing-end-ja</loc>
          <lastmod>2024-11-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/housing-end-hi</loc>
          <lastmod>2024-11-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/housing-end-hant</loc>
          <lastmod>2024-11-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/housing-end-fr</loc>
          <lastmod>2024-11-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/housing-end-es</loc>
          <lastmod>2024-11-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/housing-end-en</loc>
          <lastmod>2024-11-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/housing-end-de</loc>
          <lastmod>2024-11-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/housing-end-ar</loc>
          <lastmod>2024-11-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/review-2024-zh</loc>
          <lastmod>2024-11-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/associate-degree-zh</loc>
          <lastmod>2024-11-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/review-2024-ja</loc>
          <lastmod>2024-11-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/associate-degree-ja</loc>
          <lastmod>2024-11-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/review-2024-hi</loc>
          <lastmod>2024-11-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/associate-degree-hi</loc>
          <lastmod>2024-11-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/review-2024-hant</loc>
          <lastmod>2024-11-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/associate-degree-hant</loc>
          <lastmod>2024-11-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/review-2024-fr</loc>
          <lastmod>2024-11-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/associate-degree-fr</loc>
          <lastmod>2024-11-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/review-2024-es</loc>
          <lastmod>2024-11-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/associate-degree-es</loc>
          <lastmod>2024-11-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/review-2024-en</loc>
          <lastmod>2024-11-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/associate-degree-en</loc>
          <lastmod>2024-11-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/review-2024-de</loc>
          <lastmod>2024-11-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/associate-degree-de</loc>
          <lastmod>2024-11-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/review-2024-ar</loc>
          <lastmod>2024-11-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/associate-degree-ar</loc>
          <lastmod>2024-11-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/barely-clear-zh</loc>
          <lastmod>2024-11-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/barely-clear-ja</loc>
          <lastmod>2024-11-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/barely-clear-hi</loc>
          <lastmod>2024-11-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/barely-clear-hant</loc>
          <lastmod>2024-11-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/barely-clear-fr</loc>
          <lastmod>2024-11-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/barely-clear-es</loc>
          <lastmod>2024-11-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/barely-clear-en</loc>
          <lastmod>2024-11-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/barely-clear-de</loc>
          <lastmod>2024-11-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/barely-clear-ar</loc>
          <lastmod>2024-11-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/books-zh</loc>
          <lastmod>2024-10-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/books-ja</loc>
          <lastmod>2024-10-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/books-hi</loc>
          <lastmod>2024-10-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/books-hant</loc>
          <lastmod>2024-10-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/books-fr</loc>
          <lastmod>2024-10-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/books-es</loc>
          <lastmod>2024-10-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/books-en</loc>
          <lastmod>2024-10-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/books-de</loc>
          <lastmod>2024-10-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/books-ar</loc>
          <lastmod>2024-10-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/suno-zh</loc>
          <lastmod>2024-08-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/suno-ja</loc>
          <lastmod>2024-08-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/suno-hi</loc>
          <lastmod>2024-08-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/suno-hant</loc>
          <lastmod>2024-08-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/suno-fr</loc>
          <lastmod>2024-08-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/suno-es</loc>
          <lastmod>2024-08-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/suno-en</loc>
          <lastmod>2024-08-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/suno-de</loc>
          <lastmod>2024-08-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/suno-ar</loc>
          <lastmod>2024-08-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bot-zh</loc>
          <lastmod>2024-07-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bot-ja</loc>
          <lastmod>2024-07-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bot-hi</loc>
          <lastmod>2024-07-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bot-hant</loc>
          <lastmod>2024-07-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bot-fr</loc>
          <lastmod>2024-07-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bot-es</loc>
          <lastmod>2024-07-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bot-en</loc>
          <lastmod>2024-07-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bot-de</loc>
          <lastmod>2024-07-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bot-ar</loc>
          <lastmod>2024-07-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/trace-zh</loc>
          <lastmod>2024-07-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/trace-ja</loc>
          <lastmod>2024-07-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/trace-hi</loc>
          <lastmod>2024-07-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/trace-hant</loc>
          <lastmod>2024-07-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/trace-fr</loc>
          <lastmod>2024-07-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/trace-es</loc>
          <lastmod>2024-07-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/trace-en</loc>
          <lastmod>2024-07-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/trace-de</loc>
          <lastmod>2024-07-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/trace-ar</loc>
          <lastmod>2024-07-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/aws-zh</loc>
          <lastmod>2024-06-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/aws-ja</loc>
          <lastmod>2024-06-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/aws-hi</loc>
          <lastmod>2024-06-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/aws-hant</loc>
          <lastmod>2024-06-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/aws-fr</loc>
          <lastmod>2024-06-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/aws-es</loc>
          <lastmod>2024-06-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/aws-en</loc>
          <lastmod>2024-06-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/aws-de</loc>
          <lastmod>2024-06-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/aws-ar</loc>
          <lastmod>2024-06-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/review-2023-zh</loc>
          <lastmod>2024-01-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/review-2023-ja</loc>
          <lastmod>2024-01-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/review-2023-hi</loc>
          <lastmod>2024-01-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/review-2023-hant</loc>
          <lastmod>2024-01-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/review-2023-fr</loc>
          <lastmod>2024-01-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/review-2023-es</loc>
          <lastmod>2024-01-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/review-2023-en</loc>
          <lastmod>2024-01-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/review-2023-de</loc>
          <lastmod>2024-01-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/review-2023-ar</loc>
          <lastmod>2024-01-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/road-trip-tibet-zh</loc>
          <lastmod>2023-09-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/road-trip-tibet-ja</loc>
          <lastmod>2023-09-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/road-trip-tibet-hi</loc>
          <lastmod>2023-09-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/road-trip-tibet-hant</loc>
          <lastmod>2023-09-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/road-trip-tibet-fr</loc>
          <lastmod>2023-09-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/road-trip-tibet-es</loc>
          <lastmod>2023-09-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/road-trip-tibet-en</loc>
          <lastmod>2023-09-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/road-trip-tibet-de</loc>
          <lastmod>2023-09-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/road-trip-tibet-ar</loc>
          <lastmod>2023-09-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/neta-zh</loc>
          <lastmod>2023-09-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/neta-ja</loc>
          <lastmod>2023-09-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/neta-hi</loc>
          <lastmod>2023-09-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/neta-hant</loc>
          <lastmod>2023-09-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/neta-fr</loc>
          <lastmod>2023-09-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/neta-es</loc>
          <lastmod>2023-09-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/neta-en</loc>
          <lastmod>2023-09-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/neta-de</loc>
          <lastmod>2023-09-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/neta-ar</loc>
          <lastmod>2023-09-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/llama-zh</loc>
          <lastmod>2023-08-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/llama-ja</loc>
          <lastmod>2023-08-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/llama-hi</loc>
          <lastmod>2023-08-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/llama-hant</loc>
          <lastmod>2023-08-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/llama-fr</loc>
          <lastmod>2023-08-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/llama-es</loc>
          <lastmod>2023-08-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/llama-en</loc>
          <lastmod>2023-08-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/llama-de</loc>
          <lastmod>2023-08-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/llama-ar</loc>
          <lastmod>2023-08-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/computer-zh</loc>
          <lastmod>2023-08-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/computer-ja</loc>
          <lastmod>2023-08-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/computer-hi</loc>
          <lastmod>2023-08-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/computer-hant</loc>
          <lastmod>2023-08-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/computer-fr</loc>
          <lastmod>2023-08-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/computer-es</loc>
          <lastmod>2023-08-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/computer-en</loc>
          <lastmod>2023-08-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/computer-de</loc>
          <lastmod>2023-08-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/computer-ar</loc>
          <lastmod>2023-08-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bring-kids-zh</loc>
          <lastmod>2023-07-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bring-kids-ja</loc>
          <lastmod>2023-07-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bring-kids-hi</loc>
          <lastmod>2023-07-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bring-kids-hant</loc>
          <lastmod>2023-07-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bring-kids-fr</loc>
          <lastmod>2023-07-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bring-kids-es</loc>
          <lastmod>2023-07-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bring-kids-en</loc>
          <lastmod>2023-07-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bring-kids-de</loc>
          <lastmod>2023-07-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bring-kids-ar</loc>
          <lastmod>2023-07-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-wisdom-zh</loc>
          <lastmod>2023-07-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-wisdom-ja</loc>
          <lastmod>2023-07-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-wisdom-hi</loc>
          <lastmod>2023-07-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-wisdom-hant</loc>
          <lastmod>2023-07-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-wisdom-fr</loc>
          <lastmod>2023-07-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-wisdom-es</loc>
          <lastmod>2023-07-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-wisdom-en</loc>
          <lastmod>2023-07-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-wisdom-de</loc>
          <lastmod>2023-07-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-wisdom-ar</loc>
          <lastmod>2023-07-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/nihongo-zh</loc>
          <lastmod>2023-07-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/nihongo-ja</loc>
          <lastmod>2023-07-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/nihongo-hi</loc>
          <lastmod>2023-07-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/nihongo-hant</loc>
          <lastmod>2023-07-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/nihongo-fr</loc>
          <lastmod>2023-07-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/nihongo-es</loc>
          <lastmod>2023-07-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/nihongo-en</loc>
          <lastmod>2023-07-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/nihongo-de</loc>
          <lastmod>2023-07-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/nihongo-ar</loc>
          <lastmod>2023-07-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/agi-zh</loc>
          <lastmod>2023-07-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/agi-ja</loc>
          <lastmod>2023-07-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/agi-hi</loc>
          <lastmod>2023-07-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/agi-hant</loc>
          <lastmod>2023-07-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/agi-fr</loc>
          <lastmod>2023-07-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/agi-es</loc>
          <lastmod>2023-07-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/agi-en</loc>
          <lastmod>2023-07-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/agi-de</loc>
          <lastmod>2023-07-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/agi-ar</loc>
          <lastmod>2023-07-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ml-job-zh</loc>
          <lastmod>2023-07-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ml-job-ja</loc>
          <lastmod>2023-07-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ml-job-hi</loc>
          <lastmod>2023-07-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ml-job-hant</loc>
          <lastmod>2023-07-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ml-job-fr</loc>
          <lastmod>2023-07-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ml-job-es</loc>
          <lastmod>2023-07-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ml-job-en</loc>
          <lastmod>2023-07-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ml-job-de</loc>
          <lastmod>2023-07-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ml-job-ar</loc>
          <lastmod>2023-07-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/azure-zh</loc>
          <lastmod>2023-07-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/azure-ja</loc>
          <lastmod>2023-07-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/azure-hi</loc>
          <lastmod>2023-07-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/azure-hant</loc>
          <lastmod>2023-07-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/azure-fr</loc>
          <lastmod>2023-07-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/azure-es</loc>
          <lastmod>2023-07-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/azure-en</loc>
          <lastmod>2023-07-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/azure-de</loc>
          <lastmod>2023-07-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/azure-ar</loc>
          <lastmod>2023-07-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/zen-neural-zh</loc>
          <lastmod>2023-07-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/zen-neural-ja</loc>
          <lastmod>2023-07-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/zen-neural-hi</loc>
          <lastmod>2023-07-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/zen-neural-hant</loc>
          <lastmod>2023-07-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/zen-neural-fr</loc>
          <lastmod>2023-07-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/zen-neural-es</loc>
          <lastmod>2023-07-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/zen-neural-en</loc>
          <lastmod>2023-07-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/zen-neural-de</loc>
          <lastmod>2023-07-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/zen-neural-ar</loc>
          <lastmod>2023-07-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/10yo-zh</loc>
          <lastmod>2023-06-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/10yo-ja</loc>
          <lastmod>2023-06-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/10yo-hi</loc>
          <lastmod>2023-06-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/10yo-hant</loc>
          <lastmod>2023-06-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/10yo-fr</loc>
          <lastmod>2023-06-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/10yo-es</loc>
          <lastmod>2023-06-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/10yo-en</loc>
          <lastmod>2023-06-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/10yo-de</loc>
          <lastmod>2023-06-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/10yo-ar</loc>
          <lastmod>2023-06-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/astigmatism-zh</loc>
          <lastmod>2023-06-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/astigmatism-ja</loc>
          <lastmod>2023-06-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/astigmatism-hi</loc>
          <lastmod>2023-06-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/astigmatism-hant</loc>
          <lastmod>2023-06-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/astigmatism-fr</loc>
          <lastmod>2023-06-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/astigmatism-es</loc>
          <lastmod>2023-06-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/astigmatism-en</loc>
          <lastmod>2023-06-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/astigmatism-de</loc>
          <lastmod>2023-06-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/astigmatism-ar</loc>
          <lastmod>2023-06-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/vision-restoration-zh</loc>
          <lastmod>2023-06-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/change-zh</loc>
          <lastmod>2023-06-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/vision-restoration-ja</loc>
          <lastmod>2023-06-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/change-ja</loc>
          <lastmod>2023-06-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/vision-restoration-hi</loc>
          <lastmod>2023-06-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/change-hi</loc>
          <lastmod>2023-06-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/vision-restoration-hant</loc>
          <lastmod>2023-06-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/change-hant</loc>
          <lastmod>2023-06-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/vision-restoration-fr</loc>
          <lastmod>2023-06-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/change-fr</loc>
          <lastmod>2023-06-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/vision-restoration-es</loc>
          <lastmod>2023-06-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/change-es</loc>
          <lastmod>2023-06-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/vision-restoration-en</loc>
          <lastmod>2023-06-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/change-en</loc>
          <lastmod>2023-06-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/vision-restoration-de</loc>
          <lastmod>2023-06-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/change-de</loc>
          <lastmod>2023-06-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/vision-restoration-ar</loc>
          <lastmod>2023-06-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/change-ar</loc>
          <lastmod>2023-06-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/neural-network-zh</loc>
          <lastmod>2023-05-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/neural-network-ja</loc>
          <lastmod>2023-05-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/neural-network-hi</loc>
          <lastmod>2023-05-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/neural-network-hant</loc>
          <lastmod>2023-05-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/neural-network-fr</loc>
          <lastmod>2023-05-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/neural-network-es</loc>
          <lastmod>2023-05-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/neural-network-en</loc>
          <lastmod>2023-05-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/neural-network-de</loc>
          <lastmod>2023-05-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/neural-network-ar</loc>
          <lastmod>2023-05-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hongkong-trip-zh</loc>
          <lastmod>2023-05-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hongkong-trip-ja</loc>
          <lastmod>2023-05-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hongkong-trip-hi</loc>
          <lastmod>2023-05-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hongkong-trip-hant</loc>
          <lastmod>2023-05-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hongkong-trip-fr</loc>
          <lastmod>2023-05-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hongkong-trip-es</loc>
          <lastmod>2023-05-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hongkong-trip-en</loc>
          <lastmod>2023-05-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hongkong-trip-de</loc>
          <lastmod>2023-05-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hongkong-trip-ar</loc>
          <lastmod>2023-05-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/answers-zh</loc>
          <lastmod>2023-05-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/answers-ja</loc>
          <lastmod>2023-05-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/answers-hi</loc>
          <lastmod>2023-05-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/answers-hant</loc>
          <lastmod>2023-05-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/answers-fr</loc>
          <lastmod>2023-05-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/answers-es</loc>
          <lastmod>2023-05-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/answers-en</loc>
          <lastmod>2023-05-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/answers-de</loc>
          <lastmod>2023-05-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/answers-ar</loc>
          <lastmod>2023-05-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/japanese-zh</loc>
          <lastmod>2023-04-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/japanese-ja</loc>
          <lastmod>2023-04-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/japanese-hi</loc>
          <lastmod>2023-04-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/japanese-hant</loc>
          <lastmod>2023-04-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/japanese-fr</loc>
          <lastmod>2023-04-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/japanese-es</loc>
          <lastmod>2023-04-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/japanese-en</loc>
          <lastmod>2023-04-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/japanese-de</loc>
          <lastmod>2023-04-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/japanese-ar</loc>
          <lastmod>2023-04-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/spring-zh</loc>
          <lastmod>2023-02-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/spring-ja</loc>
          <lastmod>2023-02-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/spring-hi</loc>
          <lastmod>2023-02-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/spring-hant</loc>
          <lastmod>2023-02-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/spring-fr</loc>
          <lastmod>2023-02-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/spring-es</loc>
          <lastmod>2023-02-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/spring-en</loc>
          <lastmod>2023-02-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/spring-de</loc>
          <lastmod>2023-02-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/spring-ar</loc>
          <lastmod>2023-02-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/creative-ideas-zh</loc>
          <lastmod>2022-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/creative-ideas-ja</loc>
          <lastmod>2022-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/creative-ideas-hi</loc>
          <lastmod>2022-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/creative-ideas-hant</loc>
          <lastmod>2022-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/creative-ideas-fr</loc>
          <lastmod>2022-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/creative-ideas-es</loc>
          <lastmod>2022-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/creative-ideas-en</loc>
          <lastmod>2022-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/creative-ideas-de</loc>
          <lastmod>2022-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/creative-ideas-ar</loc>
          <lastmod>2022-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-anything-zh</loc>
          <lastmod>2022-12-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-anything-ja</loc>
          <lastmod>2022-12-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-anything-hi</loc>
          <lastmod>2022-12-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-anything-hant</loc>
          <lastmod>2022-12-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-anything-fr</loc>
          <lastmod>2022-12-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-anything-es</loc>
          <lastmod>2022-12-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-anything-en</loc>
          <lastmod>2022-12-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-anything-de</loc>
          <lastmod>2022-12-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-anything-ar</loc>
          <lastmod>2022-12-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chat-gpt-zh</loc>
          <lastmod>2022-12-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chat-gpt-ja</loc>
          <lastmod>2022-12-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chat-gpt-hi</loc>
          <lastmod>2022-12-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chat-gpt-hant</loc>
          <lastmod>2022-12-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chat-gpt-fr</loc>
          <lastmod>2022-12-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chat-gpt-es</loc>
          <lastmod>2022-12-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chat-gpt-en</loc>
          <lastmod>2022-12-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chat-gpt-de</loc>
          <lastmod>2022-12-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chat-gpt-ar</loc>
          <lastmod>2022-12-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cloud-platforms-zh</loc>
          <lastmod>2022-12-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cloud-platforms-ja</loc>
          <lastmod>2022-12-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cloud-platforms-hi</loc>
          <lastmod>2022-12-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cloud-platforms-hant</loc>
          <lastmod>2022-12-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cloud-platforms-fr</loc>
          <lastmod>2022-12-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cloud-platforms-es</loc>
          <lastmod>2022-12-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cloud-platforms-en</loc>
          <lastmod>2022-12-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cloud-platforms-de</loc>
          <lastmod>2022-12-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/cloud-platforms-ar</loc>
          <lastmod>2022-12-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/good-buys-zh</loc>
          <lastmod>2022-12-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/good-buys-ja</loc>
          <lastmod>2022-12-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/good-buys-hi</loc>
          <lastmod>2022-12-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/good-buys-hant</loc>
          <lastmod>2022-12-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/good-buys-fr</loc>
          <lastmod>2022-12-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/good-buys-es</loc>
          <lastmod>2022-12-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/good-buys-en</loc>
          <lastmod>2022-12-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/good-buys-de</loc>
          <lastmod>2022-12-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/good-buys-ar</loc>
          <lastmod>2022-12-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pcf-zh</loc>
          <lastmod>2022-11-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pcf-ja</loc>
          <lastmod>2022-11-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pcf-hi</loc>
          <lastmod>2022-11-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pcf-hant</loc>
          <lastmod>2022-11-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pcf-fr</loc>
          <lastmod>2022-11-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pcf-es</loc>
          <lastmod>2022-11-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pcf-en</loc>
          <lastmod>2022-11-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pcf-de</loc>
          <lastmod>2022-11-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pcf-ar</loc>
          <lastmod>2022-11-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/driving-zh</loc>
          <lastmod>2022-10-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/driving-ja</loc>
          <lastmod>2022-10-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/driving-hi</loc>
          <lastmod>2022-10-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/driving-hant</loc>
          <lastmod>2022-10-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/driving-fr</loc>
          <lastmod>2022-10-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/driving-es</loc>
          <lastmod>2022-10-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/driving-en</loc>
          <lastmod>2022-10-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/driving-de</loc>
          <lastmod>2022-10-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/driving-ar</loc>
          <lastmod>2022-10-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/showmebug-zh</loc>
          <lastmod>2021-08-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ruby-on-rails-zh</loc>
          <lastmod>2021-08-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/enterprise-wechat-zh</loc>
          <lastmod>2021-08-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/showmebug-ja</loc>
          <lastmod>2021-08-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ruby-on-rails-ja</loc>
          <lastmod>2021-08-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/enterprise-wechat-ja</loc>
          <lastmod>2021-08-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/showmebug-hi</loc>
          <lastmod>2021-08-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ruby-on-rails-hi</loc>
          <lastmod>2021-08-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/enterprise-wechat-hi</loc>
          <lastmod>2021-08-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/showmebug-hant</loc>
          <lastmod>2021-08-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ruby-on-rails-hant</loc>
          <lastmod>2021-08-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/enterprise-wechat-hant</loc>
          <lastmod>2021-08-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/showmebug-fr</loc>
          <lastmod>2021-08-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ruby-on-rails-fr</loc>
          <lastmod>2021-08-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/enterprise-wechat-fr</loc>
          <lastmod>2021-08-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/showmebug-es</loc>
          <lastmod>2021-08-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ruby-on-rails-es</loc>
          <lastmod>2021-08-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/enterprise-wechat-es</loc>
          <lastmod>2021-08-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/showmebug-en</loc>
          <lastmod>2021-08-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ruby-on-rails-en</loc>
          <lastmod>2021-08-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/enterprise-wechat-en</loc>
          <lastmod>2021-08-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/showmebug-de</loc>
          <lastmod>2021-08-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ruby-on-rails-de</loc>
          <lastmod>2021-08-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/enterprise-wechat-de</loc>
          <lastmod>2021-08-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/showmebug-ar</loc>
          <lastmod>2021-08-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ruby-on-rails-ar</loc>
          <lastmod>2021-08-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/enterprise-wechat-ar</loc>
          <lastmod>2021-08-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/algorithm-solutions-zh</loc>
          <lastmod>2021-06-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/algorithm-solutions-ja</loc>
          <lastmod>2021-06-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/algorithm-solutions-hi</loc>
          <lastmod>2021-06-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/algorithm-solutions-hant</loc>
          <lastmod>2021-06-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/algorithm-solutions-fr</loc>
          <lastmod>2021-06-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/algorithm-solutions-es</loc>
          <lastmod>2021-06-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/algorithm-solutions-en</loc>
          <lastmod>2021-06-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/algorithm-solutions-de</loc>
          <lastmod>2021-06-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/algorithm-solutions-ar</loc>
          <lastmod>2021-06-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/youtube-tv-zh</loc>
          <lastmod>2021-04-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/youtube-tv-ja</loc>
          <lastmod>2021-04-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/youtube-tv-hi</loc>
          <lastmod>2021-04-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/youtube-tv-hant</loc>
          <lastmod>2021-04-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/youtube-tv-fr</loc>
          <lastmod>2021-04-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/youtube-tv-es</loc>
          <lastmod>2021-04-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/youtube-tv-en</loc>
          <lastmod>2021-04-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/youtube-tv-de</loc>
          <lastmod>2021-04-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/youtube-tv-ar</loc>
          <lastmod>2021-04-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/scrape-zh</loc>
          <lastmod>2021-03-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/scrape-ja</loc>
          <lastmod>2021-03-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/scrape-hi</loc>
          <lastmod>2021-03-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/scrape-hant</loc>
          <lastmod>2021-03-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/scrape-fr</loc>
          <lastmod>2021-03-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/scrape-es</loc>
          <lastmod>2021-03-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/scrape-en</loc>
          <lastmod>2021-03-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/scrape-de</loc>
          <lastmod>2021-03-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/scrape-ar</loc>
          <lastmod>2021-03-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/python-zh</loc>
          <lastmod>2021-03-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/feynman-zh</loc>
          <lastmod>2021-03-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/python-ja</loc>
          <lastmod>2021-03-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/feynman-ja</loc>
          <lastmod>2021-03-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/python-hi</loc>
          <lastmod>2021-03-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/feynman-hi</loc>
          <lastmod>2021-03-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/python-hant</loc>
          <lastmod>2021-03-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/feynman-hant</loc>
          <lastmod>2021-03-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/python-fr</loc>
          <lastmod>2021-03-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/feynman-fr</loc>
          <lastmod>2021-03-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/python-es</loc>
          <lastmod>2021-03-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/feynman-es</loc>
          <lastmod>2021-03-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/python-en</loc>
          <lastmod>2021-03-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/feynman-en</loc>
          <lastmod>2021-03-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/python-de</loc>
          <lastmod>2021-03-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/feynman-de</loc>
          <lastmod>2021-03-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/python-ar</loc>
          <lastmod>2021-03-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/feynman-ar</loc>
          <lastmod>2021-03-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/oj-zh</loc>
          <lastmod>2021-03-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/oj-ja</loc>
          <lastmod>2021-03-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/oj-hi</loc>
          <lastmod>2021-03-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/oj-hant</loc>
          <lastmod>2021-03-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/oj-fr</loc>
          <lastmod>2021-03-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/oj-es</loc>
          <lastmod>2021-03-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/oj-en</loc>
          <lastmod>2021-03-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/oj-de</loc>
          <lastmod>2021-03-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/oj-ar</loc>
          <lastmod>2021-03-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/redis-zh</loc>
          <lastmod>2021-03-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/redis-ja</loc>
          <lastmod>2021-03-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/redis-hi</loc>
          <lastmod>2021-03-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/redis-hant</loc>
          <lastmod>2021-03-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/redis-fr</loc>
          <lastmod>2021-03-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/redis-es</loc>
          <lastmod>2021-03-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/redis-en</loc>
          <lastmod>2021-03-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/redis-de</loc>
          <lastmod>2021-03-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/redis-ar</loc>
          <lastmod>2021-03-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/start-zh</loc>
          <lastmod>2021-03-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ml2-zh</loc>
          <lastmod>2021-03-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ml-zh</loc>
          <lastmod>2021-03-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/start-ja</loc>
          <lastmod>2021-03-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ml2-ja</loc>
          <lastmod>2021-03-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ml-ja</loc>
          <lastmod>2021-03-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/start-hi</loc>
          <lastmod>2021-03-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ml2-hi</loc>
          <lastmod>2021-03-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ml-hi</loc>
          <lastmod>2021-03-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/start-hant</loc>
          <lastmod>2021-03-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ml2-hant</loc>
          <lastmod>2021-03-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ml-hant</loc>
          <lastmod>2021-03-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/start-fr</loc>
          <lastmod>2021-03-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ml2-fr</loc>
          <lastmod>2021-03-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ml-fr</loc>
          <lastmod>2021-03-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/start-es</loc>
          <lastmod>2021-03-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ml2-es</loc>
          <lastmod>2021-03-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ml-es</loc>
          <lastmod>2021-03-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/start-en</loc>
          <lastmod>2021-03-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ml2-en</loc>
          <lastmod>2021-03-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ml-en</loc>
          <lastmod>2021-03-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/start-de</loc>
          <lastmod>2021-03-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ml2-de</loc>
          <lastmod>2021-03-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ml-de</loc>
          <lastmod>2021-03-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/start-ar</loc>
          <lastmod>2021-03-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ml2-ar</loc>
          <lastmod>2021-03-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ml-ar</loc>
          <lastmod>2021-03-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/distributed-zh</loc>
          <lastmod>2021-03-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/distributed-ja</loc>
          <lastmod>2021-03-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/distributed-hi</loc>
          <lastmod>2021-03-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/distributed-hant</loc>
          <lastmod>2021-03-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/distributed-fr</loc>
          <lastmod>2021-03-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/distributed-es</loc>
          <lastmod>2021-03-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/distributed-en</loc>
          <lastmod>2021-03-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/distributed-de</loc>
          <lastmod>2021-03-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/distributed-ar</loc>
          <lastmod>2021-03-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/google-access-zh</loc>
          <lastmod>2021-03-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/google-access-ja</loc>
          <lastmod>2021-03-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/google-access-hi</loc>
          <lastmod>2021-03-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/google-access-hant</loc>
          <lastmod>2021-03-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/google-access-fr</loc>
          <lastmod>2021-03-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/google-access-es</loc>
          <lastmod>2021-03-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/google-access-en</loc>
          <lastmod>2021-03-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/google-access-de</loc>
          <lastmod>2021-03-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/google-access-ar</loc>
          <lastmod>2021-03-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/web-zh</loc>
          <lastmod>2021-03-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/web-ja</loc>
          <lastmod>2021-03-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/web-hi</loc>
          <lastmod>2021-03-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/web-hant</loc>
          <lastmod>2021-03-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/web-fr</loc>
          <lastmod>2021-03-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/web-es</loc>
          <lastmod>2021-03-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/web-en</loc>
          <lastmod>2021-03-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/web-de</loc>
          <lastmod>2021-03-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/web-ar</loc>
          <lastmod>2021-03-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/rust-zh</loc>
          <lastmod>2021-03-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/rust-ja</loc>
          <lastmod>2021-03-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/rust-hi</loc>
          <lastmod>2021-03-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/rust-hant</loc>
          <lastmod>2021-03-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/rust-fr</loc>
          <lastmod>2021-03-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/rust-es</loc>
          <lastmod>2021-03-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/rust-en</loc>
          <lastmod>2021-03-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/rust-de</loc>
          <lastmod>2021-03-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/rust-ar</loc>
          <lastmod>2021-03-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/curiosity-courses-zh</loc>
          <lastmod>2021-03-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/curiosity-courses-ja</loc>
          <lastmod>2021-03-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/curiosity-courses-hi</loc>
          <lastmod>2021-03-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/curiosity-courses-hant</loc>
          <lastmod>2021-03-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/curiosity-courses-fr</loc>
          <lastmod>2021-03-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/curiosity-courses-es</loc>
          <lastmod>2021-03-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/curiosity-courses-en</loc>
          <lastmod>2021-03-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/curiosity-courses-de</loc>
          <lastmod>2021-03-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/curiosity-courses-ar</loc>
          <lastmod>2021-03-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-japanese-zh</loc>
          <lastmod>2021-02-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-japanese-ja</loc>
          <lastmod>2021-02-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-japanese-hi</loc>
          <lastmod>2021-02-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-japanese-hant</loc>
          <lastmod>2021-02-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-japanese-fr</loc>
          <lastmod>2021-02-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-japanese-es</loc>
          <lastmod>2021-02-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-japanese-en</loc>
          <lastmod>2021-02-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-japanese-de</loc>
          <lastmod>2021-02-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-japanese-ar</loc>
          <lastmod>2021-02-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/future-kids-zh</loc>
          <lastmod>2021-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/future-kids-ja</loc>
          <lastmod>2021-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/future-kids-hi</loc>
          <lastmod>2021-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/future-kids-hant</loc>
          <lastmod>2021-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/future-kids-fr</loc>
          <lastmod>2021-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/future-kids-es</loc>
          <lastmod>2021-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/future-kids-en</loc>
          <lastmod>2021-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/future-kids-de</loc>
          <lastmod>2021-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/future-kids-ar</loc>
          <lastmod>2021-01-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/only-do-zh</loc>
          <lastmod>2020-12-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/only-do-ja</loc>
          <lastmod>2020-12-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/only-do-hi</loc>
          <lastmod>2020-12-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/only-do-hant</loc>
          <lastmod>2020-12-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/only-do-fr</loc>
          <lastmod>2020-12-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/only-do-es</loc>
          <lastmod>2020-12-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/only-do-en</loc>
          <lastmod>2020-12-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/only-do-de</loc>
          <lastmod>2020-12-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/only-do-ar</loc>
          <lastmod>2020-12-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/viral-zh</loc>
          <lastmod>2020-11-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/viral-ja</loc>
          <lastmod>2020-11-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/viral-hi</loc>
          <lastmod>2020-11-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/viral-hant</loc>
          <lastmod>2020-11-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/viral-fr</loc>
          <lastmod>2020-11-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/viral-es</loc>
          <lastmod>2020-11-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/viral-en</loc>
          <lastmod>2020-11-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/viral-de</loc>
          <lastmod>2020-11-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/viral-ar</loc>
          <lastmod>2020-11-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/think-zh</loc>
          <lastmod>2020-11-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/think-ja</loc>
          <lastmod>2020-11-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/think-hi</loc>
          <lastmod>2020-11-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/think-hant</loc>
          <lastmod>2020-11-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/think-fr</loc>
          <lastmod>2020-11-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/think-es</loc>
          <lastmod>2020-11-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/think-en</loc>
          <lastmod>2020-11-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/think-de</loc>
          <lastmod>2020-11-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/think-ar</loc>
          <lastmod>2020-11-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/science-zh</loc>
          <lastmod>2020-11-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/science-ja</loc>
          <lastmod>2020-11-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/science-hi</loc>
          <lastmod>2020-11-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/science-hant</loc>
          <lastmod>2020-11-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/science-fr</loc>
          <lastmod>2020-11-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/science-es</loc>
          <lastmod>2020-11-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/science-en</loc>
          <lastmod>2020-11-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/science-de</loc>
          <lastmod>2020-11-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/science-ar</loc>
          <lastmod>2020-11-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/my-plan-zh</loc>
          <lastmod>2020-11-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/my-plan-ja</loc>
          <lastmod>2020-11-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/my-plan-hi</loc>
          <lastmod>2020-11-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/my-plan-hant</loc>
          <lastmod>2020-11-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/my-plan-fr</loc>
          <lastmod>2020-11-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/my-plan-es</loc>
          <lastmod>2020-11-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/my-plan-en</loc>
          <lastmod>2020-11-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/my-plan-de</loc>
          <lastmod>2020-11-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/my-plan-ar</loc>
          <lastmod>2020-11-13T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/relationship-zh</loc>
          <lastmod>2020-11-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/relationship-ja</loc>
          <lastmod>2020-11-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/relationship-hi</loc>
          <lastmod>2020-11-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/relationship-hant</loc>
          <lastmod>2020-11-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/relationship-fr</loc>
          <lastmod>2020-11-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/relationship-es</loc>
          <lastmod>2020-11-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/relationship-en</loc>
          <lastmod>2020-11-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/relationship-de</loc>
          <lastmod>2020-11-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/relationship-ar</loc>
          <lastmod>2020-11-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/project-zh</loc>
          <lastmod>2020-11-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/project-ja</loc>
          <lastmod>2020-11-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/project-hi</loc>
          <lastmod>2020-11-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/project-hant</loc>
          <lastmod>2020-11-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/project-fr</loc>
          <lastmod>2020-11-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/project-es</loc>
          <lastmod>2020-11-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/project-en</loc>
          <lastmod>2020-11-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/project-de</loc>
          <lastmod>2020-11-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/project-ar</loc>
          <lastmod>2020-11-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/growth-zh</loc>
          <lastmod>2020-11-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/growth-ja</loc>
          <lastmod>2020-11-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/growth-hi</loc>
          <lastmod>2020-11-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/growth-hant</loc>
          <lastmod>2020-11-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/growth-fr</loc>
          <lastmod>2020-11-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/growth-es</loc>
          <lastmod>2020-11-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/growth-en</loc>
          <lastmod>2020-11-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/growth-de</loc>
          <lastmod>2020-11-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/growth-ar</loc>
          <lastmod>2020-11-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/organic-zh</loc>
          <lastmod>2020-11-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/organic-ja</loc>
          <lastmod>2020-11-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/organic-hi</loc>
          <lastmod>2020-11-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/organic-hant</loc>
          <lastmod>2020-11-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/organic-fr</loc>
          <lastmod>2020-11-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/organic-es</loc>
          <lastmod>2020-11-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/organic-en</loc>
          <lastmod>2020-11-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/organic-de</loc>
          <lastmod>2020-11-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/organic-ar</loc>
          <lastmod>2020-11-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/desire-zh</loc>
          <lastmod>2020-11-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/desire-ja</loc>
          <lastmod>2020-11-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/desire-hi</loc>
          <lastmod>2020-11-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/desire-hant</loc>
          <lastmod>2020-11-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/desire-fr</loc>
          <lastmod>2020-11-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/desire-es</loc>
          <lastmod>2020-11-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/desire-en</loc>
          <lastmod>2020-11-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/desire-de</loc>
          <lastmod>2020-11-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/desire-ar</loc>
          <lastmod>2020-11-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/job-zh</loc>
          <lastmod>2020-10-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/job-ja</loc>
          <lastmod>2020-10-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/job-hi</loc>
          <lastmod>2020-10-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/job-hant</loc>
          <lastmod>2020-10-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/job-fr</loc>
          <lastmod>2020-10-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/job-es</loc>
          <lastmod>2020-10-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/job-en</loc>
          <lastmod>2020-10-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/job-de</loc>
          <lastmod>2020-10-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/job-ar</loc>
          <lastmod>2020-10-22T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lvchensign-zh</loc>
          <lastmod>2020-04-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lvchensign-ja</loc>
          <lastmod>2020-04-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lvchensign-hi</loc>
          <lastmod>2020-04-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lvchensign-hant</loc>
          <lastmod>2020-04-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lvchensign-fr</loc>
          <lastmod>2020-04-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lvchensign-es</loc>
          <lastmod>2020-04-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lvchensign-en</loc>
          <lastmod>2020-04-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lvchensign-de</loc>
          <lastmod>2020-04-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lvchensign-ar</loc>
          <lastmod>2020-04-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/present-future-zh</loc>
          <lastmod>2020-03-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/present-future-ja</loc>
          <lastmod>2020-03-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/present-future-hi</loc>
          <lastmod>2020-03-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/present-future-hant</loc>
          <lastmod>2020-03-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/present-future-fr</loc>
          <lastmod>2020-03-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/present-future-es</loc>
          <lastmod>2020-03-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/present-future-en</loc>
          <lastmod>2020-03-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/present-future-de</loc>
          <lastmod>2020-03-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/present-future-ar</loc>
          <lastmod>2020-03-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/thanks-zh</loc>
          <lastmod>2020-03-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/thanks-ja</loc>
          <lastmod>2020-03-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/thanks-hi</loc>
          <lastmod>2020-03-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/thanks-hant</loc>
          <lastmod>2020-03-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/thanks-fr</loc>
          <lastmod>2020-03-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/thanks-es</loc>
          <lastmod>2020-03-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/thanks-en</loc>
          <lastmod>2020-03-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/thanks-de</loc>
          <lastmod>2020-03-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/thanks-ar</loc>
          <lastmod>2020-03-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/truth-zh</loc>
          <lastmod>2020-02-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/truth-ja</loc>
          <lastmod>2020-02-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/truth-hi</loc>
          <lastmod>2020-02-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/truth-hant</loc>
          <lastmod>2020-02-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/truth-fr</loc>
          <lastmod>2020-02-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/truth-es</loc>
          <lastmod>2020-02-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/truth-en</loc>
          <lastmod>2020-02-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/truth-de</loc>
          <lastmod>2020-02-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/truth-ar</loc>
          <lastmod>2020-02-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/blog-zh</loc>
          <lastmod>2020-02-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/blog-ja</loc>
          <lastmod>2020-02-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/blog-hi</loc>
          <lastmod>2020-02-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/blog-hant</loc>
          <lastmod>2020-02-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/blog-fr</loc>
          <lastmod>2020-02-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/blog-es</loc>
          <lastmod>2020-02-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/blog-en</loc>
          <lastmod>2020-02-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/blog-de</loc>
          <lastmod>2020-02-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/blog-ar</loc>
          <lastmod>2020-02-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/china-zh</loc>
          <lastmod>2020-02-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/china-ja</loc>
          <lastmod>2020-02-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/china-hi</loc>
          <lastmod>2020-02-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/china-hant</loc>
          <lastmod>2020-02-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/china-fr</loc>
          <lastmod>2020-02-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/china-es</loc>
          <lastmod>2020-02-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/china-en</loc>
          <lastmod>2020-02-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/china-de</loc>
          <lastmod>2020-02-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/china-ar</loc>
          <lastmod>2020-02-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/secrets-zh</loc>
          <lastmod>2020-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/secrets-ja</loc>
          <lastmod>2020-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/secrets-hi</loc>
          <lastmod>2020-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/secrets-hant</loc>
          <lastmod>2020-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/secrets-fr</loc>
          <lastmod>2020-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/secrets-es</loc>
          <lastmod>2020-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/secrets-en</loc>
          <lastmod>2020-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/secrets-de</loc>
          <lastmod>2020-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/secrets-ar</loc>
          <lastmod>2020-01-18T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/china-economy-zh</loc>
          <lastmod>2020-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/china-economy-ja</loc>
          <lastmod>2020-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/china-economy-hi</loc>
          <lastmod>2020-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/china-economy-hant</loc>
          <lastmod>2020-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/china-economy-fr</loc>
          <lastmod>2020-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/china-economy-es</loc>
          <lastmod>2020-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/china-economy-en</loc>
          <lastmod>2020-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/china-economy-de</loc>
          <lastmod>2020-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/china-economy-ar</loc>
          <lastmod>2020-01-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/house-zh</loc>
          <lastmod>2020-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/house-ja</loc>
          <lastmod>2020-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/house-hi</loc>
          <lastmod>2020-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/house-hant</loc>
          <lastmod>2020-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/house-fr</loc>
          <lastmod>2020-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/house-es</loc>
          <lastmod>2020-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/house-en</loc>
          <lastmod>2020-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/house-de</loc>
          <lastmod>2020-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/house-ar</loc>
          <lastmod>2020-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/future-zh</loc>
          <lastmod>2020-01-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/future-ja</loc>
          <lastmod>2020-01-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/future-hi</loc>
          <lastmod>2020-01-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/future-hant</loc>
          <lastmod>2020-01-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/future-fr</loc>
          <lastmod>2020-01-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/future-es</loc>
          <lastmod>2020-01-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/future-en</loc>
          <lastmod>2020-01-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/future-de</loc>
          <lastmod>2020-01-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/future-ar</loc>
          <lastmod>2020-01-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/success-zh</loc>
          <lastmod>2019-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/success-ja</loc>
          <lastmod>2019-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/success-hi</loc>
          <lastmod>2019-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/success-hant</loc>
          <lastmod>2019-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/success-fr</loc>
          <lastmod>2019-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/success-es</loc>
          <lastmod>2019-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/success-en</loc>
          <lastmod>2019-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/success-de</loc>
          <lastmod>2019-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/success-ar</loc>
          <lastmod>2019-12-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shutdown-zh</loc>
          <lastmod>2019-12-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shutdown-ja</loc>
          <lastmod>2019-12-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shutdown-hi</loc>
          <lastmod>2019-12-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shutdown-hant</loc>
          <lastmod>2019-12-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shutdown-fr</loc>
          <lastmod>2019-12-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shutdown-es</loc>
          <lastmod>2019-12-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shutdown-en</loc>
          <lastmod>2019-12-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shutdown-de</loc>
          <lastmod>2019-12-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/shutdown-ar</loc>
          <lastmod>2019-12-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/yesterday-zh</loc>
          <lastmod>2019-01-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/yesterday-ja</loc>
          <lastmod>2019-01-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/yesterday-hi</loc>
          <lastmod>2019-01-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/yesterday-hant</loc>
          <lastmod>2019-01-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/yesterday-fr</loc>
          <lastmod>2019-01-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/yesterday-es</loc>
          <lastmod>2019-01-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/yesterday-en</loc>
          <lastmod>2019-01-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/yesterday-de</loc>
          <lastmod>2019-01-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/yesterday-ar</loc>
          <lastmod>2019-01-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reflections-zh</loc>
          <lastmod>2018-10-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reflections-ja</loc>
          <lastmod>2018-10-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reflections-hi</loc>
          <lastmod>2018-10-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reflections-hant</loc>
          <lastmod>2018-10-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reflections-fr</loc>
          <lastmod>2018-10-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reflections-es</loc>
          <lastmod>2018-10-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reflections-en</loc>
          <lastmod>2018-10-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reflections-de</loc>
          <lastmod>2018-10-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reflections-ar</loc>
          <lastmod>2018-10-21T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/profit-zh</loc>
          <lastmod>2018-08-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/profit-ja</loc>
          <lastmod>2018-08-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/profit-hi</loc>
          <lastmod>2018-08-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/profit-hant</loc>
          <lastmod>2018-08-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/profit-fr</loc>
          <lastmod>2018-08-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/profit-es</loc>
          <lastmod>2018-08-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/profit-en</loc>
          <lastmod>2018-08-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/profit-de</loc>
          <lastmod>2018-08-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/profit-ar</loc>
          <lastmod>2018-08-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/people-zh</loc>
          <lastmod>2018-03-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/people-ja</loc>
          <lastmod>2018-03-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/people-hi</loc>
          <lastmod>2018-03-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/people-hant</loc>
          <lastmod>2018-03-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/people-fr</loc>
          <lastmod>2018-03-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/people-es</loc>
          <lastmod>2018-03-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/people-en</loc>
          <lastmod>2018-03-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/people-de</loc>
          <lastmod>2018-03-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/people-ar</loc>
          <lastmod>2018-03-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pm2-zh</loc>
          <lastmod>2017-12-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/laravel-zh</loc>
          <lastmod>2017-12-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pm2-ja</loc>
          <lastmod>2017-12-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/laravel-ja</loc>
          <lastmod>2017-12-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pm2-hi</loc>
          <lastmod>2017-12-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/laravel-hi</loc>
          <lastmod>2017-12-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pm2-hant</loc>
          <lastmod>2017-12-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/laravel-hant</loc>
          <lastmod>2017-12-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pm2-fr</loc>
          <lastmod>2017-12-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/laravel-fr</loc>
          <lastmod>2017-12-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pm2-es</loc>
          <lastmod>2017-12-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/laravel-es</loc>
          <lastmod>2017-12-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pm2-en</loc>
          <lastmod>2017-12-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/laravel-en</loc>
          <lastmod>2017-12-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pm2-de</loc>
          <lastmod>2017-12-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/laravel-de</loc>
          <lastmod>2017-12-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pm2-ar</loc>
          <lastmod>2017-12-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/laravel-ar</loc>
          <lastmod>2017-12-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/startup-zh</loc>
          <lastmod>2017-08-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/startup-ja</loc>
          <lastmod>2017-08-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/startup-hi</loc>
          <lastmod>2017-08-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/startup-hant</loc>
          <lastmod>2017-08-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/startup-fr</loc>
          <lastmod>2017-08-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/startup-es</loc>
          <lastmod>2017-08-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/startup-en</loc>
          <lastmod>2017-08-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/startup-de</loc>
          <lastmod>2017-08-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/startup-ar</loc>
          <lastmod>2017-08-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/grow-zh</loc>
          <lastmod>2017-07-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/grow-ja</loc>
          <lastmod>2017-07-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/grow-hi</loc>
          <lastmod>2017-07-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/grow-hant</loc>
          <lastmod>2017-07-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/grow-fr</loc>
          <lastmod>2017-07-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/grow-es</loc>
          <lastmod>2017-07-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/grow-en</loc>
          <lastmod>2017-07-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/grow-de</loc>
          <lastmod>2017-07-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/grow-ar</loc>
          <lastmod>2017-07-19T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pencil-zh</loc>
          <lastmod>2017-03-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pencil-ja</loc>
          <lastmod>2017-03-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pencil-hi</loc>
          <lastmod>2017-03-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pencil-hant</loc>
          <lastmod>2017-03-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pencil-fr</loc>
          <lastmod>2017-03-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pencil-es</loc>
          <lastmod>2017-03-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pencil-en</loc>
          <lastmod>2017-03-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pencil-de</loc>
          <lastmod>2017-03-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pencil-ar</loc>
          <lastmod>2017-03-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lieyun-zh</loc>
          <lastmod>2017-03-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lieyun-ja</loc>
          <lastmod>2017-03-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lieyun-hi</loc>
          <lastmod>2017-03-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lieyun-hant</loc>
          <lastmod>2017-03-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lieyun-fr</loc>
          <lastmod>2017-03-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lieyun-es</loc>
          <lastmod>2017-03-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lieyun-en</loc>
          <lastmod>2017-03-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lieyun-de</loc>
          <lastmod>2017-03-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lieyun-ar</loc>
          <lastmod>2017-03-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/live-wxapp-zh</loc>
          <lastmod>2017-01-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/live-wxapp-ja</loc>
          <lastmod>2017-01-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/live-wxapp-hi</loc>
          <lastmod>2017-01-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/live-wxapp-hant</loc>
          <lastmod>2017-01-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/live-wxapp-fr</loc>
          <lastmod>2017-01-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/live-wxapp-es</loc>
          <lastmod>2017-01-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/live-wxapp-en</loc>
          <lastmod>2017-01-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/live-wxapp-de</loc>
          <lastmod>2017-01-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/live-wxapp-ar</loc>
          <lastmod>2017-01-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/years-zh</loc>
          <lastmod>2017-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/srs-streaming-zh</loc>
          <lastmod>2017-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/years-ja</loc>
          <lastmod>2017-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/srs-streaming-ja</loc>
          <lastmod>2017-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/years-hi</loc>
          <lastmod>2017-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/srs-streaming-hi</loc>
          <lastmod>2017-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/years-hant</loc>
          <lastmod>2017-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/srs-streaming-hant</loc>
          <lastmod>2017-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/years-fr</loc>
          <lastmod>2017-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/srs-streaming-fr</loc>
          <lastmod>2017-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/years-es</loc>
          <lastmod>2017-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/srs-streaming-es</loc>
          <lastmod>2017-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/years-en</loc>
          <lastmod>2017-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/srs-streaming-en</loc>
          <lastmod>2017-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/years-de</loc>
          <lastmod>2017-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/srs-streaming-de</loc>
          <lastmod>2017-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/years-ar</loc>
          <lastmod>2017-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/srs-streaming-ar</loc>
          <lastmod>2017-01-06T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/streaming-zh</loc>
          <lastmod>2016-09-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/keynotes-zh</loc>
          <lastmod>2016-09-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/streaming-ja</loc>
          <lastmod>2016-09-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/keynotes-ja</loc>
          <lastmod>2016-09-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/streaming-hi</loc>
          <lastmod>2016-09-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/keynotes-hi</loc>
          <lastmod>2016-09-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/streaming-hant</loc>
          <lastmod>2016-09-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/keynotes-hant</loc>
          <lastmod>2016-09-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/streaming-fr</loc>
          <lastmod>2016-09-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/keynotes-fr</loc>
          <lastmod>2016-09-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/streaming-es</loc>
          <lastmod>2016-09-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/keynotes-es</loc>
          <lastmod>2016-09-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/streaming-en</loc>
          <lastmod>2016-09-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/keynotes-en</loc>
          <lastmod>2016-09-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/streaming-de</loc>
          <lastmod>2016-09-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/keynotes-de</loc>
          <lastmod>2016-09-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/streaming-ar</loc>
          <lastmod>2016-09-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/keynotes-ar</loc>
          <lastmod>2016-09-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/quzhibo-zh</loc>
          <lastmod>2016-09-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/quzhibo-ja</loc>
          <lastmod>2016-09-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/quzhibo-hi</loc>
          <lastmod>2016-09-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/quzhibo-hant</loc>
          <lastmod>2016-09-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/quzhibo-fr</loc>
          <lastmod>2016-09-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/quzhibo-es</loc>
          <lastmod>2016-09-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/quzhibo-en</loc>
          <lastmod>2016-09-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/quzhibo-de</loc>
          <lastmod>2016-09-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/quzhibo-ar</loc>
          <lastmod>2016-09-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ceo-zh</loc>
          <lastmod>2016-08-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ceo-ja</loc>
          <lastmod>2016-08-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ceo-hi</loc>
          <lastmod>2016-08-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ceo-hant</loc>
          <lastmod>2016-08-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ceo-fr</loc>
          <lastmod>2016-08-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ceo-es</loc>
          <lastmod>2016-08-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ceo-en</loc>
          <lastmod>2016-08-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ceo-de</loc>
          <lastmod>2016-08-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ceo-ar</loc>
          <lastmod>2016-08-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/live-web-zh</loc>
          <lastmod>2016-08-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/live-server-zh</loc>
          <lastmod>2016-08-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/live-mobile-web-zh</loc>
          <lastmod>2016-08-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/live-web-ja</loc>
          <lastmod>2016-08-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/live-server-ja</loc>
          <lastmod>2016-08-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/live-mobile-web-ja</loc>
          <lastmod>2016-08-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/live-web-hi</loc>
          <lastmod>2016-08-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/live-server-hi</loc>
          <lastmod>2016-08-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/live-mobile-web-hi</loc>
          <lastmod>2016-08-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/live-web-hant</loc>
          <lastmod>2016-08-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/live-server-hant</loc>
          <lastmod>2016-08-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/live-mobile-web-hant</loc>
          <lastmod>2016-08-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/live-web-fr</loc>
          <lastmod>2016-08-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/live-server-fr</loc>
          <lastmod>2016-08-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/live-mobile-web-fr</loc>
          <lastmod>2016-08-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/live-web-es</loc>
          <lastmod>2016-08-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/live-server-es</loc>
          <lastmod>2016-08-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/live-mobile-web-es</loc>
          <lastmod>2016-08-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/live-web-en</loc>
          <lastmod>2016-08-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/live-server-en</loc>
          <lastmod>2016-08-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/live-mobile-web-en</loc>
          <lastmod>2016-08-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/live-web-de</loc>
          <lastmod>2016-08-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/live-server-de</loc>
          <lastmod>2016-08-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/live-mobile-web-de</loc>
          <lastmod>2016-08-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/live-web-ar</loc>
          <lastmod>2016-08-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/live-server-ar</loc>
          <lastmod>2016-08-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/live-mobile-web-ar</loc>
          <lastmod>2016-08-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/parser-zh</loc>
          <lastmod>2016-06-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/parser-ja</loc>
          <lastmod>2016-06-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/parser-hi</loc>
          <lastmod>2016-06-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/parser-hant</loc>
          <lastmod>2016-06-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/parser-fr</loc>
          <lastmod>2016-06-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/parser-es</loc>
          <lastmod>2016-06-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/parser-en</loc>
          <lastmod>2016-06-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/parser-de</loc>
          <lastmod>2016-06-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/parser-ar</loc>
          <lastmod>2016-06-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/websocket-zh</loc>
          <lastmod>2016-05-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/websocket-ja</loc>
          <lastmod>2016-05-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/websocket-hi</loc>
          <lastmod>2016-05-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/websocket-hant</loc>
          <lastmod>2016-05-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/websocket-fr</loc>
          <lastmod>2016-05-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/websocket-es</loc>
          <lastmod>2016-05-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/websocket-en</loc>
          <lastmod>2016-05-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/websocket-de</loc>
          <lastmod>2016-05-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/websocket-ar</loc>
          <lastmod>2016-05-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/regex-zh</loc>
          <lastmod>2016-05-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/regex-ja</loc>
          <lastmod>2016-05-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/regex-hi</loc>
          <lastmod>2016-05-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/regex-hant</loc>
          <lastmod>2016-05-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/regex-fr</loc>
          <lastmod>2016-05-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/regex-es</loc>
          <lastmod>2016-05-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/regex-en</loc>
          <lastmod>2016-05-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/regex-de</loc>
          <lastmod>2016-05-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/regex-ar</loc>
          <lastmod>2016-05-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/yytext-zh</loc>
          <lastmod>2016-05-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/yytext-ja</loc>
          <lastmod>2016-05-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/yytext-hi</loc>
          <lastmod>2016-05-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/yytext-hant</loc>
          <lastmod>2016-05-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/yytext-fr</loc>
          <lastmod>2016-05-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/yytext-es</loc>
          <lastmod>2016-05-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/yytext-en</loc>
          <lastmod>2016-05-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/yytext-de</loc>
          <lastmod>2016-05-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/yytext-ar</loc>
          <lastmod>2016-05-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/creak-zh</loc>
          <lastmod>2016-05-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/creak-ja</loc>
          <lastmod>2016-05-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/creak-hi</loc>
          <lastmod>2016-05-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/creak-hant</loc>
          <lastmod>2016-05-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/creak-fr</loc>
          <lastmod>2016-05-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/creak-es</loc>
          <lastmod>2016-05-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/creak-en</loc>
          <lastmod>2016-05-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/creak-de</loc>
          <lastmod>2016-05-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/creak-ar</loc>
          <lastmod>2016-05-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/git-zh</loc>
          <lastmod>2016-05-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/git-ja</loc>
          <lastmod>2016-05-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/git-hi</loc>
          <lastmod>2016-05-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/git-hant</loc>
          <lastmod>2016-05-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/git-fr</loc>
          <lastmod>2016-05-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/git-es</loc>
          <lastmod>2016-05-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/git-en</loc>
          <lastmod>2016-05-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/git-de</loc>
          <lastmod>2016-05-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/git-ar</loc>
          <lastmod>2016-05-03T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ios-test-zh</loc>
          <lastmod>2016-04-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ios-test-ja</loc>
          <lastmod>2016-04-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ios-test-hi</loc>
          <lastmod>2016-04-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ios-test-hant</loc>
          <lastmod>2016-04-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ios-test-fr</loc>
          <lastmod>2016-04-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ios-test-es</loc>
          <lastmod>2016-04-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ios-test-en</loc>
          <lastmod>2016-04-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ios-test-de</loc>
          <lastmod>2016-04-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ios-test-ar</loc>
          <lastmod>2016-04-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/usa-zh</loc>
          <lastmod>2016-04-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/usa-ja</loc>
          <lastmod>2016-04-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/usa-hi</loc>
          <lastmod>2016-04-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/usa-hant</loc>
          <lastmod>2016-04-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/usa-fr</loc>
          <lastmod>2016-04-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/usa-es</loc>
          <lastmod>2016-04-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/usa-en</loc>
          <lastmod>2016-04-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/usa-de</loc>
          <lastmod>2016-04-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/usa-ar</loc>
          <lastmod>2016-04-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/codereview-stylus-zh</loc>
          <lastmod>2016-04-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/codereview-frontend-zh</loc>
          <lastmod>2016-04-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/codereview-stylus-ja</loc>
          <lastmod>2016-04-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/codereview-frontend-ja</loc>
          <lastmod>2016-04-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/codereview-stylus-hi</loc>
          <lastmod>2016-04-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/codereview-frontend-hi</loc>
          <lastmod>2016-04-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/codereview-stylus-hant</loc>
          <lastmod>2016-04-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/codereview-frontend-hant</loc>
          <lastmod>2016-04-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/codereview-stylus-fr</loc>
          <lastmod>2016-04-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/codereview-frontend-fr</loc>
          <lastmod>2016-04-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/codereview-stylus-es</loc>
          <lastmod>2016-04-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/codereview-frontend-es</loc>
          <lastmod>2016-04-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/codereview-stylus-en</loc>
          <lastmod>2016-04-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/codereview-frontend-en</loc>
          <lastmod>2016-04-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/codereview-stylus-de</loc>
          <lastmod>2016-04-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/codereview-frontend-de</loc>
          <lastmod>2016-04-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/codereview-stylus-ar</loc>
          <lastmod>2016-04-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/codereview-frontend-ar</loc>
          <lastmod>2016-04-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pingpp-zh</loc>
          <lastmod>2016-03-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pingpp-ja</loc>
          <lastmod>2016-03-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pingpp-hi</loc>
          <lastmod>2016-03-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pingpp-hant</loc>
          <lastmod>2016-03-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pingpp-fr</loc>
          <lastmod>2016-03-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pingpp-es</loc>
          <lastmod>2016-03-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pingpp-en</loc>
          <lastmod>2016-03-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pingpp-de</loc>
          <lastmod>2016-03-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pingpp-ar</loc>
          <lastmod>2016-03-07T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/usa-visa-zh</loc>
          <lastmod>2016-03-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/usa-visa-ja</loc>
          <lastmod>2016-03-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/usa-visa-hi</loc>
          <lastmod>2016-03-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/usa-visa-hant</loc>
          <lastmod>2016-03-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/usa-visa-fr</loc>
          <lastmod>2016-03-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/usa-visa-es</loc>
          <lastmod>2016-03-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/usa-visa-en</loc>
          <lastmod>2016-03-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/usa-visa-de</loc>
          <lastmod>2016-03-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/usa-visa-ar</loc>
          <lastmod>2016-03-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/weimg-ios-zh</loc>
          <lastmod>2016-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/weimg-ios-ja</loc>
          <lastmod>2016-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/weimg-ios-hi</loc>
          <lastmod>2016-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/weimg-ios-hant</loc>
          <lastmod>2016-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/weimg-ios-fr</loc>
          <lastmod>2016-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/weimg-ios-es</loc>
          <lastmod>2016-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/weimg-ios-en</loc>
          <lastmod>2016-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/weimg-ios-de</loc>
          <lastmod>2016-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/weimg-ios-ar</loc>
          <lastmod>2016-01-31T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/weimg-server-zh</loc>
          <lastmod>2016-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/weimg-server-ja</loc>
          <lastmod>2016-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/weimg-server-hi</loc>
          <lastmod>2016-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/weimg-server-hant</loc>
          <lastmod>2016-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/weimg-server-fr</loc>
          <lastmod>2016-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/weimg-server-es</loc>
          <lastmod>2016-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/weimg-server-en</loc>
          <lastmod>2016-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/weimg-server-de</loc>
          <lastmod>2016-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/weimg-server-ar</loc>
          <lastmod>2016-01-28T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/code-review-web-zh</loc>
          <lastmod>2015-12-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/code-review-web-ja</loc>
          <lastmod>2015-12-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/code-review-web-hi</loc>
          <lastmod>2015-12-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/code-review-web-hant</loc>
          <lastmod>2015-12-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/code-review-web-fr</loc>
          <lastmod>2015-12-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/code-review-web-es</loc>
          <lastmod>2015-12-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/code-review-web-en</loc>
          <lastmod>2015-12-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/code-review-web-de</loc>
          <lastmod>2015-12-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/code-review-web-ar</loc>
          <lastmod>2015-12-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/xib-zh</loc>
          <lastmod>2015-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/xcode-project-zh</loc>
          <lastmod>2015-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reveal-in-github-zh</loc>
          <lastmod>2015-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/info-plist-zh</loc>
          <lastmod>2015-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/xib-ja</loc>
          <lastmod>2015-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/xcode-project-ja</loc>
          <lastmod>2015-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reveal-in-github-ja</loc>
          <lastmod>2015-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/info-plist-ja</loc>
          <lastmod>2015-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/xib-hi</loc>
          <lastmod>2015-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/xcode-project-hi</loc>
          <lastmod>2015-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reveal-in-github-hi</loc>
          <lastmod>2015-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/info-plist-hi</loc>
          <lastmod>2015-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/xib-hant</loc>
          <lastmod>2015-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/xcode-project-hant</loc>
          <lastmod>2015-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reveal-in-github-hant</loc>
          <lastmod>2015-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/info-plist-hant</loc>
          <lastmod>2015-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/xib-fr</loc>
          <lastmod>2015-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/xcode-project-fr</loc>
          <lastmod>2015-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reveal-in-github-fr</loc>
          <lastmod>2015-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/info-plist-fr</loc>
          <lastmod>2015-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/xib-es</loc>
          <lastmod>2015-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/xcode-project-es</loc>
          <lastmod>2015-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reveal-in-github-es</loc>
          <lastmod>2015-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/info-plist-es</loc>
          <lastmod>2015-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/xib-en</loc>
          <lastmod>2015-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/xcode-project-en</loc>
          <lastmod>2015-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reveal-in-github-en</loc>
          <lastmod>2015-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/info-plist-en</loc>
          <lastmod>2015-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/xib-de</loc>
          <lastmod>2015-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/xcode-project-de</loc>
          <lastmod>2015-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reveal-in-github-de</loc>
          <lastmod>2015-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/info-plist-de</loc>
          <lastmod>2015-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/xib-ar</loc>
          <lastmod>2015-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/xcode-project-ar</loc>
          <lastmod>2015-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/reveal-in-github-ar</loc>
          <lastmod>2015-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/info-plist-ar</loc>
          <lastmod>2015-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/code-review-server-zh</loc>
          <lastmod>2015-10-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/code-review-server-ja</loc>
          <lastmod>2015-10-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/code-review-server-hi</loc>
          <lastmod>2015-10-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/code-review-server-hant</loc>
          <lastmod>2015-10-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/code-review-server-fr</loc>
          <lastmod>2015-10-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/code-review-server-es</loc>
          <lastmod>2015-10-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/code-review-server-en</loc>
          <lastmod>2015-10-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/code-review-server-de</loc>
          <lastmod>2015-10-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/code-review-server-ar</loc>
          <lastmod>2015-10-08T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/dropout-zh</loc>
          <lastmod>2015-09-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/dropout-ja</loc>
          <lastmod>2015-09-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/dropout-hi</loc>
          <lastmod>2015-09-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/dropout-hant</loc>
          <lastmod>2015-09-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/dropout-fr</loc>
          <lastmod>2015-09-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/dropout-es</loc>
          <lastmod>2015-09-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/dropout-en</loc>
          <lastmod>2015-09-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/dropout-de</loc>
          <lastmod>2015-09-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/dropout-ar</loc>
          <lastmod>2015-09-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chrome-extension-zh</loc>
          <lastmod>2015-08-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chrome-extension-ja</loc>
          <lastmod>2015-08-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chrome-extension-hi</loc>
          <lastmod>2015-08-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chrome-extension-hant</loc>
          <lastmod>2015-08-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chrome-extension-fr</loc>
          <lastmod>2015-08-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chrome-extension-es</loc>
          <lastmod>2015-08-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chrome-extension-en</loc>
          <lastmod>2015-08-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chrome-extension-de</loc>
          <lastmod>2015-08-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chrome-extension-ar</loc>
          <lastmod>2015-08-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/tabskiller-zh</loc>
          <lastmod>2015-07-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/tabskiller-ja</loc>
          <lastmod>2015-07-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/tabskiller-hi</loc>
          <lastmod>2015-07-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/tabskiller-hant</loc>
          <lastmod>2015-07-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/tabskiller-fr</loc>
          <lastmod>2015-07-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/tabskiller-es</loc>
          <lastmod>2015-07-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/tabskiller-en</loc>
          <lastmod>2015-07-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/tabskiller-de</loc>
          <lastmod>2015-07-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/tabskiller-ar</loc>
          <lastmod>2015-07-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/copy-zh</loc>
          <lastmod>2015-06-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/copy-ja</loc>
          <lastmod>2015-06-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/copy-hi</loc>
          <lastmod>2015-06-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/copy-hant</loc>
          <lastmod>2015-06-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/copy-fr</loc>
          <lastmod>2015-06-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/copy-es</loc>
          <lastmod>2015-06-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/copy-en</loc>
          <lastmod>2015-06-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/copy-de</loc>
          <lastmod>2015-06-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/copy-ar</loc>
          <lastmod>2015-06-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lzalbum-zh</loc>
          <lastmod>2015-04-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lzalbum-ja</loc>
          <lastmod>2015-04-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lzalbum-hi</loc>
          <lastmod>2015-04-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lzalbum-hant</loc>
          <lastmod>2015-04-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lzalbum-fr</loc>
          <lastmod>2015-04-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lzalbum-es</loc>
          <lastmod>2015-04-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lzalbum-en</loc>
          <lastmod>2015-04-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lzalbum-de</loc>
          <lastmod>2015-04-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lzalbum-ar</loc>
          <lastmod>2015-04-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/leanchat-ios-zh</loc>
          <lastmod>2014-11-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/leanchat-ios-ja</loc>
          <lastmod>2014-11-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/leanchat-ios-hi</loc>
          <lastmod>2014-11-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/leanchat-ios-hant</loc>
          <lastmod>2014-11-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/leanchat-ios-fr</loc>
          <lastmod>2014-11-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/leanchat-ios-es</loc>
          <lastmod>2014-11-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/leanchat-ios-en</loc>
          <lastmod>2014-11-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/leanchat-ios-de</loc>
          <lastmod>2014-11-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/leanchat-ios-ar</loc>
          <lastmod>2014-11-20T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-zh</loc>
          <lastmod>2014-10-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-ja</loc>
          <lastmod>2014-10-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-hi</loc>
          <lastmod>2014-10-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-hant</loc>
          <lastmod>2014-10-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-fr</loc>
          <lastmod>2014-10-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-es</loc>
          <lastmod>2014-10-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-en</loc>
          <lastmod>2014-10-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-de</loc>
          <lastmod>2014-10-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/learn-ar</loc>
          <lastmod>2014-10-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/android-manifest-zh</loc>
          <lastmod>2014-07-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/android-image-zh</loc>
          <lastmod>2014-07-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/android-manifest-ja</loc>
          <lastmod>2014-07-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/android-image-ja</loc>
          <lastmod>2014-07-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/android-manifest-hi</loc>
          <lastmod>2014-07-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/android-image-hi</loc>
          <lastmod>2014-07-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/android-manifest-hant</loc>
          <lastmod>2014-07-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/android-image-hant</loc>
          <lastmod>2014-07-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/android-manifest-fr</loc>
          <lastmod>2014-07-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/android-image-fr</loc>
          <lastmod>2014-07-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/android-manifest-es</loc>
          <lastmod>2014-07-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/android-image-es</loc>
          <lastmod>2014-07-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/android-manifest-en</loc>
          <lastmod>2014-07-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/android-image-en</loc>
          <lastmod>2014-07-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/android-manifest-de</loc>
          <lastmod>2014-07-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/android-image-de</loc>
          <lastmod>2014-07-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/android-manifest-ar</loc>
          <lastmod>2014-07-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/android-image-ar</loc>
          <lastmod>2014-07-27T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/flower-recognition-zh</loc>
          <lastmod>2014-04-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/draw-zh</loc>
          <lastmod>2014-04-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/flower-recognition-ja</loc>
          <lastmod>2014-04-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/draw-ja</loc>
          <lastmod>2014-04-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/flower-recognition-hi</loc>
          <lastmod>2014-04-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/draw-hi</loc>
          <lastmod>2014-04-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/flower-recognition-hant</loc>
          <lastmod>2014-04-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/draw-hant</loc>
          <lastmod>2014-04-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/flower-recognition-fr</loc>
          <lastmod>2014-04-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/draw-fr</loc>
          <lastmod>2014-04-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/flower-recognition-es</loc>
          <lastmod>2014-04-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/draw-es</loc>
          <lastmod>2014-04-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/flower-recognition-en</loc>
          <lastmod>2014-04-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/draw-en</loc>
          <lastmod>2014-04-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/flower-recognition-de</loc>
          <lastmod>2014-04-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/draw-de</loc>
          <lastmod>2014-04-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/flower-recognition-ar</loc>
          <lastmod>2014-04-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/draw-ar</loc>
          <lastmod>2014-04-25T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ffmpeg-zh</loc>
          <lastmod>2014-03-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ffmpeg-ja</loc>
          <lastmod>2014-03-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ffmpeg-hi</loc>
          <lastmod>2014-03-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ffmpeg-hant</loc>
          <lastmod>2014-03-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ffmpeg-fr</loc>
          <lastmod>2014-03-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ffmpeg-es</loc>
          <lastmod>2014-03-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ffmpeg-en</loc>
          <lastmod>2014-03-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ffmpeg-de</loc>
          <lastmod>2014-03-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/ffmpeg-ar</loc>
          <lastmod>2014-03-10T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pg-zh</loc>
          <lastmod>2014-02-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pg-ja</loc>
          <lastmod>2014-02-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pg-hi</loc>
          <lastmod>2014-02-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pg-hant</loc>
          <lastmod>2014-02-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pg-fr</loc>
          <lastmod>2014-02-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pg-es</loc>
          <lastmod>2014-02-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pg-en</loc>
          <lastmod>2014-02-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pg-de</loc>
          <lastmod>2014-02-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/pg-ar</loc>
          <lastmod>2014-02-05T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bjfu-web-zh</loc>
          <lastmod>2014-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bjfu-web-ja</loc>
          <lastmod>2014-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bjfu-web-hi</loc>
          <lastmod>2014-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bjfu-web-hant</loc>
          <lastmod>2014-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bjfu-web-fr</loc>
          <lastmod>2014-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bjfu-web-es</loc>
          <lastmod>2014-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bjfu-web-en</loc>
          <lastmod>2014-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bjfu-web-de</loc>
          <lastmod>2014-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bjfu-web-ar</loc>
          <lastmod>2014-01-09T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/eclipse-emacs-zh</loc>
          <lastmod>2013-11-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/eclipse-emacs-ja</loc>
          <lastmod>2013-11-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/eclipse-emacs-hi</loc>
          <lastmod>2013-11-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/eclipse-emacs-hant</loc>
          <lastmod>2013-11-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/eclipse-emacs-fr</loc>
          <lastmod>2013-11-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/eclipse-emacs-es</loc>
          <lastmod>2013-11-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/eclipse-emacs-en</loc>
          <lastmod>2013-11-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/eclipse-emacs-de</loc>
          <lastmod>2013-11-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/eclipse-emacs-ar</loc>
          <lastmod>2013-11-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hamming-zh</loc>
          <lastmod>2013-11-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hamming-ja</loc>
          <lastmod>2013-11-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hamming-hi</loc>
          <lastmod>2013-11-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hamming-hant</loc>
          <lastmod>2013-11-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hamming-fr</loc>
          <lastmod>2013-11-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hamming-es</loc>
          <lastmod>2013-11-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hamming-en</loc>
          <lastmod>2013-11-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hamming-de</loc>
          <lastmod>2013-11-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hamming-ar</loc>
          <lastmod>2013-11-11T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lisp-zh</loc>
          <lastmod>2013-09-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lisp-ja</loc>
          <lastmod>2013-09-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lisp-hi</loc>
          <lastmod>2013-09-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lisp-hant</loc>
          <lastmod>2013-09-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lisp-fr</loc>
          <lastmod>2013-09-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lisp-es</loc>
          <lastmod>2013-09-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lisp-en</loc>
          <lastmod>2013-09-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lisp-de</loc>
          <lastmod>2013-09-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/lisp-ar</loc>
          <lastmod>2013-09-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/middle-shool-zh</loc>
          <lastmod>2013-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/middle-shool-ja</loc>
          <lastmod>2013-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/middle-shool-hi</loc>
          <lastmod>2013-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/middle-shool-hant</loc>
          <lastmod>2013-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/middle-shool-fr</loc>
          <lastmod>2013-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/middle-shool-es</loc>
          <lastmod>2013-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/middle-shool-en</loc>
          <lastmod>2013-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/middle-shool-de</loc>
          <lastmod>2013-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/middle-shool-ar</loc>
          <lastmod>2013-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/noip-fail-zh</loc>
          <lastmod>2012-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/noip-fail-ja</loc>
          <lastmod>2012-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/noip-fail-hi</loc>
          <lastmod>2012-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/noip-fail-hant</loc>
          <lastmod>2012-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/noip-fail-fr</loc>
          <lastmod>2012-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/noip-fail-es</loc>
          <lastmod>2012-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/noip-fail-en</loc>
          <lastmod>2012-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/noip-fail-de</loc>
          <lastmod>2012-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/noip-fail-ar</loc>
          <lastmod>2012-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hiking-zh</loc>
          <lastmod>2012-03-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hiking-ja</loc>
          <lastmod>2012-03-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hiking-hi</loc>
          <lastmod>2012-03-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hiking-hant</loc>
          <lastmod>2012-03-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hiking-fr</loc>
          <lastmod>2012-03-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hiking-es</loc>
          <lastmod>2012-03-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hiking-en</loc>
          <lastmod>2012-03-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hiking-de</loc>
          <lastmod>2012-03-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hiking-ar</loc>
          <lastmod>2012-03-24T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/volunteer-zh</loc>
          <lastmod>2012-01-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/volunteer-ja</loc>
          <lastmod>2012-01-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/volunteer-hi</loc>
          <lastmod>2012-01-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/volunteer-hant</loc>
          <lastmod>2012-01-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/volunteer-fr</loc>
          <lastmod>2012-01-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/volunteer-es</loc>
          <lastmod>2012-01-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/volunteer-en</loc>
          <lastmod>2012-01-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/volunteer-de</loc>
          <lastmod>2012-01-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/volunteer-ar</loc>
          <lastmod>2012-01-29T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/wife-zh</loc>
          <lastmod>2012-01-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/wife-ja</loc>
          <lastmod>2012-01-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/wife-hi</loc>
          <lastmod>2012-01-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/wife-hant</loc>
          <lastmod>2012-01-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/wife-fr</loc>
          <lastmod>2012-01-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/wife-es</loc>
          <lastmod>2012-01-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/wife-en</loc>
          <lastmod>2012-01-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/wife-de</loc>
          <lastmod>2012-01-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/wife-ar</loc>
          <lastmod>2012-01-02T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/noip-zh</loc>
          <lastmod>2011-11-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/noip-ja</loc>
          <lastmod>2011-11-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/noip-hi</loc>
          <lastmod>2011-11-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/noip-hant</loc>
          <lastmod>2011-11-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/noip-fr</loc>
          <lastmod>2011-11-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/noip-es</loc>
          <lastmod>2011-11-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/noip-en</loc>
          <lastmod>2011-11-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/noip-de</loc>
          <lastmod>2011-11-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/noip-ar</loc>
          <lastmod>2011-11-12T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/sports-zh</loc>
          <lastmod>2011-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/sports-ja</loc>
          <lastmod>2011-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/sports-hi</loc>
          <lastmod>2011-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/sports-hant</loc>
          <lastmod>2011-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/sports-fr</loc>
          <lastmod>2011-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/sports-es</loc>
          <lastmod>2011-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/sports-en</loc>
          <lastmod>2011-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/sports-de</loc>
          <lastmod>2011-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/sports-ar</loc>
          <lastmod>2011-10-23T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/phone-factory-zh</loc>
          <lastmod>2011-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/phone-factory-ja</loc>
          <lastmod>2011-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/phone-factory-hi</loc>
          <lastmod>2011-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/phone-factory-hant</loc>
          <lastmod>2011-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/phone-factory-fr</loc>
          <lastmod>2011-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/phone-factory-es</loc>
          <lastmod>2011-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/phone-factory-en</loc>
          <lastmod>2011-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/phone-factory-de</loc>
          <lastmod>2011-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/phone-factory-ar</loc>
          <lastmod>2011-07-14T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chemistry-teacher-zh</loc>
          <lastmod>2011-04-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chemistry-teacher-ja</loc>
          <lastmod>2011-04-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chemistry-teacher-hi</loc>
          <lastmod>2011-04-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chemistry-teacher-hant</loc>
          <lastmod>2011-04-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chemistry-teacher-fr</loc>
          <lastmod>2011-04-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chemistry-teacher-es</loc>
          <lastmod>2011-04-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chemistry-teacher-en</loc>
          <lastmod>2011-04-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chemistry-teacher-de</loc>
          <lastmod>2011-04-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/chemistry-teacher-ar</loc>
          <lastmod>2011-04-04T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/usb-drive-zh</loc>
          <lastmod>2011-01-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hello-beijing-zh</loc>
          <lastmod>2011-01-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/disk-c-zh</loc>
          <lastmod>2011-01-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bee-zh</loc>
          <lastmod>2011-01-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/usb-drive-ja</loc>
          <lastmod>2011-01-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hello-beijing-ja</loc>
          <lastmod>2011-01-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/disk-c-ja</loc>
          <lastmod>2011-01-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bee-ja</loc>
          <lastmod>2011-01-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/usb-drive-hi</loc>
          <lastmod>2011-01-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hello-beijing-hi</loc>
          <lastmod>2011-01-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/disk-c-hi</loc>
          <lastmod>2011-01-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bee-hi</loc>
          <lastmod>2011-01-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/usb-drive-hant</loc>
          <lastmod>2011-01-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hello-beijing-hant</loc>
          <lastmod>2011-01-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/disk-c-hant</loc>
          <lastmod>2011-01-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bee-hant</loc>
          <lastmod>2011-01-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/usb-drive-fr</loc>
          <lastmod>2011-01-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hello-beijing-fr</loc>
          <lastmod>2011-01-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/disk-c-fr</loc>
          <lastmod>2011-01-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bee-fr</loc>
          <lastmod>2011-01-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/usb-drive-es</loc>
          <lastmod>2011-01-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hello-beijing-es</loc>
          <lastmod>2011-01-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/disk-c-es</loc>
          <lastmod>2011-01-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bee-es</loc>
          <lastmod>2011-01-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/usb-drive-en</loc>
          <lastmod>2011-01-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hello-beijing-en</loc>
          <lastmod>2011-01-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/disk-c-en</loc>
          <lastmod>2011-01-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bee-en</loc>
          <lastmod>2011-01-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/usb-drive-de</loc>
          <lastmod>2011-01-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hello-beijing-de</loc>
          <lastmod>2011-01-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/disk-c-de</loc>
          <lastmod>2011-01-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bee-de</loc>
          <lastmod>2011-01-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/usb-drive-ar</loc>
          <lastmod>2011-01-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/hello-beijing-ar</loc>
          <lastmod>2011-01-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/disk-c-ar</loc>
          <lastmod>2011-01-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/bee-ar</loc>
          <lastmod>2011-01-26T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/teacher-qiu-zh</loc>
          <lastmod>2011-01-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/teacher-qiu-ja</loc>
          <lastmod>2011-01-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/teacher-qiu-hi</loc>
          <lastmod>2011-01-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/teacher-qiu-hant</loc>
          <lastmod>2011-01-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/teacher-qiu-fr</loc>
          <lastmod>2011-01-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/teacher-qiu-es</loc>
          <lastmod>2011-01-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/teacher-qiu-en</loc>
          <lastmod>2011-01-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/teacher-qiu-de</loc>
          <lastmod>2011-01-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/teacher-qiu-ar</loc>
          <lastmod>2011-01-16T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/high-school-zh</loc>
          <lastmod>2010-10-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/high-school-ja</loc>
          <lastmod>2010-10-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/high-school-hi</loc>
          <lastmod>2010-10-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/high-school-hant</loc>
          <lastmod>2010-10-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/high-school-fr</loc>
          <lastmod>2010-10-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/high-school-es</loc>
          <lastmod>2010-10-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/high-school-en</loc>
          <lastmod>2010-10-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/high-school-de</loc>
          <lastmod>2010-10-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/high-school-ar</loc>
          <lastmod>2010-10-01T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/world-cup-zh</loc>
          <lastmod>2010-07-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/world-cup-ja</loc>
          <lastmod>2010-07-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/world-cup-hi</loc>
          <lastmod>2010-07-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/world-cup-hant</loc>
          <lastmod>2010-07-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/world-cup-fr</loc>
          <lastmod>2010-07-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/world-cup-es</loc>
          <lastmod>2010-07-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/world-cup-en</loc>
          <lastmod>2010-07-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/world-cup-de</loc>
          <lastmod>2010-07-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/world-cup-ar</loc>
          <lastmod>2010-07-17T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/qzone-zh</loc>
          <lastmod>2008-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/qzone-ja</loc>
          <lastmod>2008-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/qzone-hi</loc>
          <lastmod>2008-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/qzone-hant</loc>
          <lastmod>2008-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/qzone-fr</loc>
          <lastmod>2008-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/qzone-es</loc>
          <lastmod>2008-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/qzone-en</loc>
          <lastmod>2008-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/qzone-de</loc>
          <lastmod>2008-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/qzone-ar</loc>
          <lastmod>2008-07-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/primary-school-zh</loc>
          <lastmod>2006-03-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/primary-school-ja</loc>
          <lastmod>2006-03-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/primary-school-hi</loc>
          <lastmod>2006-03-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/primary-school-hant</loc>
          <lastmod>2006-03-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/primary-school-fr</loc>
          <lastmod>2006-03-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/primary-school-es</loc>
          <lastmod>2006-03-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/primary-school-en</loc>
          <lastmod>2006-03-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/primary-school-de</loc>
          <lastmod>2006-03-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/primary-school-ar</loc>
          <lastmod>2006-03-15T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/childhood-zh</loc>
          <lastmod>1995-06-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/childhood-ja</loc>
          <lastmod>1995-06-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/childhood-hi</loc>
          <lastmod>1995-06-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/childhood-hant</loc>
          <lastmod>1995-06-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/childhood-fr</loc>
          <lastmod>1995-06-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/childhood-es</loc>
          <lastmod>1995-06-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/childhood-en</loc>
          <lastmod>1995-06-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/childhood-de</loc>
          <lastmod>1995-06-30T00:00:00+08:00</lastmod>
        </url>
         
        <url>
          <loc>https://lzwjava.github.io/childhood-ar</loc>
          <lastmod>1995-06-30T00:00:00+08:00</lastmod>
        </url>
         
    </urlset>
    
  3. Make sure your _config.yml has url: "https://yourdomain.com" so links generate correctly.

3. Verify


👉 Since you already have _config.yml and _plugins/, the easiest is to just enable jekyll-sitemap. That way, you won’t need to maintain the XML manually.

Do you want me to draft the exact _config.yml addition for your repo (based on your current files), so you can paste it directly?


Back

openai/gpt-5

Donate