<?xml version="1.0" encoding="UTF-8"?>
<!--
  Three URLs, because there are three. The app has no router — the whole game
  lives at "/" — so this is not an oversight or a stub: listing invented paths
  would point crawlers at soft 404s, which is the exact problem app/public/404.html
  was added to solve.

  Every URL here is the APEX (mazepawn.com, no www), matching rel="canonical" in
  index.html. Both have to agree: a sitemap listing one host while the canonical
  names another is a duplicate-content signal rather than the fix for one.
  seo.test.ts fails if they drift.

  The 301 that actually enforces the apex is a Cloudflare zone Redirect Rule,
  not a file here — Pages _redirects cannot express a domain-level redirect.

  WHERE THE lastmod DATES COME FROM, because guessing produced a wrong one.
  For /privacy and /terms it is the "last updated" line PRINTED IN THE PAGE, and
  seo.test.ts now fails if the two disagree. That drift is not hypothetical: the
  privacy policy was revised twice on 2026-09-07 (analytics, then error
  monitoring) while this file still said 2026-09-03 — telling a crawler not to
  bother re-reading the page we had just rewritten, days before submitting the
  site to Search Console.

  /terms went the other way and was too NEW: it said 2026-09-03 because the file
  was touched that day, but the only edit was href="/privacy.html" ->
  href="/privacy". The terms themselves last changed on the 2nd, which is what
  the page says and what belongs here.

  "/" has no printed date and so has no cross-check. Update it by hand when
  index.html changes in a way a reader would notice.
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>https://mazepawn.com/</loc>
    <lastmod>2026-09-03</lastmod>
    <changefreq>weekly</changefreq>
    <priority>1.0</priority>
  </url>
  <url>
    <loc>https://mazepawn.com/privacy</loc>
    <lastmod>2026-09-07</lastmod>
    <changefreq>yearly</changefreq>
    <priority>0.3</priority>
  </url>
  <url>
    <loc>https://mazepawn.com/terms</loc>
    <lastmod>2026-09-02</lastmod>
    <changefreq>yearly</changefreq>
    <priority>0.3</priority>
  </url>
</urlset>
