<script>
(function () {
  const COOKIE_NAME = 'original_referrer';
  const COOKIE_DAYS = 90;

  function getCookie(name) {
    const cookies = document.cookie.split('; ');
    for (const cookie of cookies) {
      const [key, ...value] = cookie.split('=');
      if (key === name) {
        return decodeURIComponent(value.join('='));
      }
    }
    return null;
  }

  function setCookie(name, value, days) {
    const expires = new Date();
    expires.setTime(expires.getTime() + days * 24 * 60 * 60 * 1000);

    document.cookie =
      name + '=' + encodeURIComponent(value) +
      '; expires=' + expires.toUTCString() +
      '; path=/; SameSite=Lax';
  }

  // Only store the referrer if we don't already have one.
  // This preserves the original referral source across pages.
  if (!getCookie(COOKIE_NAME) && document.referrer) {
    setCookie(COOKIE_NAME, document.referrer, COOKIE_DAYS);
  }
})();
</script>
<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//yachtlogicpro.com/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://yachtlogicpro.com/post-sitemap.xml</loc>
		<lastmod>2026-08-29T22:54:06+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://yachtlogicpro.com/page-sitemap.xml</loc>
		<lastmod>2026-08-21T15:10:16+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://yachtlogicpro.com/jupiterx-fonts-sitemap.xml</loc>
		<lastmod>2024-07-09T10:57:23+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Rank Math SEO Plugin (c) Rank Math - rankmath.com -->