<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Verifying…</title>
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous">
  <style>
    html, body { height: 100%; background-color: #f8f9fa; }
    .challenge-box {
      display: flex; flex-direction: column; justify-content: center;
      align-items: center; height: 100%; text-align: center; padding: 2rem;
    }
  </style>
</head>
<body>
<div class="challenge-box">
  <noscript>
    <style>#js-check { display: none !important; }</style>
    <div class="text-danger text-center mb-4">
      <h5 class="text-danger fw-bold">JavaScript is required to access this website.</h5>
      <p>Please enable JavaScript and disable any ad blockers or browser extensions that may interfere.</p>
    </div>
  </noscript>

  <div id="js-check">
    <div class="spinner-border text-primary mb-3" style="width: 3rem; height: 3rem;" role="status">
      <span class="visually-hidden">Loading…</span>
    </div>
    <h5 id="status">Please wait while we verify you're not a bot…</h5>
  </div>
</div>
<noscript>
  <div class="challenge-box text-danger">
    <h5>JavaScript is required to access this website.</h5>
    <p>Please enable JavaScript and disable any script-blocking extensions (such as ad blockers) to continue.</p>
  </div>
</noscript>
  <script>
if (!window.isSecureContext || !window.crypto?.subtle) {
  document.head.innerHTML = `
    <meta http-equiv="refresh" content="1;url=https://${location.hostname}${location.pathname}${location.search}">
    <title>Redirecting to Secure Version…</title>
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
    <style>
      html, body { height: 100%; background-color: #f8f9fa; }
      .challenge-box {
        display: flex; flex-direction: column; justify-content: center;
        align-items: center; height: 100%; text-align: center; padding: 2rem;
      }
    </style>
  `;
  document.body.innerHTML = `
    <div class="challenge-box">
      <div class="spinner-border text-primary mb-3" style="width: 3rem; height: 3rem;" role="status"></div>
      <h5>Redirecting to secure connection…</h5>
      <p>You will be redirected to <strong>https://${location.hostname}</strong> in 1 second.</p>
    </div>
  `;
  throw new Error("Redirecting to HTTPS");
}

const target = "FeedBurner/1.0 (http://www.FeedBurner.com)";
const zeros  = "00";
async function sha256(s) {
    const buf = await crypto.subtle.digest('SHA-256', new TextEncoder().encode(s));
    return Array.from(new Uint8Array(buf)).map(b => b.toString(16).padStart(2,'0')).join('');
}
(async () => {
    let nonce = 0;
    while (true) {
        const h = await sha256(target + "|1775319423|" + nonce);
        if (h.startsWith(zeros)) {
            const form = document.createElement('form');
            form.method = 'POST'; form.style.display = 'none';
            const params = {
              nonce: nonce, ts: 1775319423, target: target
            };
            for (const key in params) {
                const input = document.createElement('input');
                input.name = key; input.value = params[key];
                form.appendChild(input);
            }
            document.body.appendChild(form);
            form.submit();
            return;
        }
        nonce++;
    }
})();
  </script>
</body>
</html>
