<?xml version="1.0" encoding="UTF-8"?>
<!--
  The real routes. /about is deliberately absent: it is a <Navigate>
  redirect to /how-it-works, and listing a URL that 301s to another listed URL
  is a duplicate, not a page. The catch-all 404 route is absent for the same
  reason.
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>https://www.cheaperstreamer.com/</loc>
    <lastmod>2026-09-22</lastmod>
    <priority>1.0</priority>
  </url>
  <!--
    /cut is an Easter egg in the FOOTER (an unlabelled scissors), but it is
    a real page with real use, so it is indexed. The egg is the way in, not a
    wish to be unfindable: someone searching for how to cancel a service is
    exactly who it helps.

    ON <lastmod> (cheaperstreamer-72hi). Google treats it as a crawl hint and
  discounts it site-wide when it looks unreliable, so the error directions are
  not symmetric: a date that is too OLD only makes Google recrawl less
  eagerly, while one that is too NEW claims a change that did not happen.
  Guard the second. `sitemapValid.test.ts` refuses a malformed date and any
  date in the future, and requires /privacy and /terms to match the
  "Last updated" line those pages print, which is the authoritative claim.
  The other three are a judgement by whoever edits them; set the date when
  the CONTENT changes, not on every deploy.

  NOTE FOR ANYONE EDITING THESE COMMENTS: a double hyphen is illegal inside
    an XML comment (XML 1.0 section 2.5). The two that were here made the
    whole file unparseable, and Search Console rejects a malformed sitemap
    outright, so not one URL below would have been read. Use a comma or a
    parenthesis. `sitemapValid.test.ts` parses this file for that reason; a
    regex over the loc elements cannot see it, which is why nothing failed.
    (The first draft of this very note broke the file again.)
  -->
  <url>
    <loc>https://www.cheaperstreamer.com/cut</loc>
    <lastmod>2026-09-22</lastmod>
    <priority>0.3</priority>
  </url>
  <url>
    <loc>https://www.cheaperstreamer.com/how-it-works</loc>
    <lastmod>2026-09-22</lastmod>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://www.cheaperstreamer.com/privacy</loc>
    <lastmod>2026-09-06</lastmod>
    <priority>0.3</priority>
  </url>
  <url>
    <loc>https://www.cheaperstreamer.com/terms</loc>
    <lastmod>2026-09-06</lastmod>
    <priority>0.3</priority>
  </url>
</urlset>
