Sign in
← All matches
✅ Cryptographically verified · sealed pick #221

Gretna 2008 vs Annan Athletic

Club Friendlies 3 · World · 30 Jun 2026, 18:45 UTC

Final score
2 : 4
Result
Won
Pick
Annan Athletic
Market
1x2
Model prob.
76.0%
Best price
1.44
Min odds
1.39
Stake factor
1.70

Proof this pick was locked in before kickoff

The pick was encrypted before kickoff and published the moment it was sealed to Telegram and GitHub, each carrying an independent timestamp. The encrypted batch is also anchored in Bitcoin — a public record nobody, including us, can alter or back-date. After the match the key is released; decrypting that exact pre-published message reveals the pick, proving it was fixed in advance, not cherry-picked.

Encrypted pick (AES-256-GCM)
IFhB3GTk5rc3saRx8cGIsMXCJuOGBCM6qdNc3sApWcsSCOqW8bWpaRm1HR3DhIeR8ZQVUgJxZq7Y5SfBemCqvTqYzN0bhZ6fCdlO0H3ifpO2tB+IOb6wtm6PMFfjWVzfj8bKdKdyvEk6+xJtrYkB9m/n4r/mW2xX4vVKsXL/HC0BEWOKhLyv1GQt7+Y9lO3fM1ZOpzgJGmLcSlHmohijxk//9yIXqADgoMdCEhX75twJaalPVY/wMOsSzRwLpBA8xAxkcHX9WX8ciBAMbQyerMjJSBFH3uOVmaGeK+SbZ0tFS0ZdN9ZQfyGBN77CedgBx2JhH330vIBLVPKgKtmvy0wMIEHD1+vpUSlmDrCP
key fingerprint sha256: 5e2f1063e42380963929d1734a536cb14f6ad5c1d743bef92d09119e94a7d8a0
Decrypt it & read the pick
Decryption key (released after the match)
89e90316b978cef5af22df6e8bd185acfd5929dab4b3592f4cc2741def0420f9
Decrypt in CyberChef →
Verify it yourself — paste both values, no install

The Encrypted pick above is base64( nonce[12 bytes] + ciphertext + tag[16 bytes] ), AES-256-GCM. Zero-install check: open your browser console (press F12Console), paste this, press Enter — it decrypts the exact pick shown above:

const blob = Uint8Array.from(atob("IFhB3GTk5rc3saRx8cGIsMXCJuOGBCM6qdNc3sApWcsSCOqW8bWpaRm1HR3DhIeR8ZQVUgJxZq7Y5SfBemCqvTqYzN0bhZ6fCdlO0H3ifpO2tB+IOb6wtm6PMFfjWVzfj8bKdKdyvEk6+xJtrYkB9m/n4r/mW2xX4vVKsXL/HC0BEWOKhLyv1GQt7+Y9lO3fM1ZOpzgJGmLcSlHmohijxk//9yIXqADgoMdCEhX75twJaalPVY/wMOsSzRwLpBA8xAxkcHX9WX8ciBAMbQyerMjJSBFH3uOVmaGeK+SbZ0tFS0ZdN9ZQfyGBN77CedgBx2JhH330vIBLVPKgKtmvy0wMIEHD1+vpUSlmDrCP"), c => c.charCodeAt(0));
const key  = Uint8Array.from("89e90316b978cef5af22df6e8bd185acfd5929dab4b3592f4cc2741def0420f9".match(/../g).map(h => parseInt(h, 16)));
crypto.subtle.importKey("raw", key, "AES-GCM", false, ["decrypt"])
  .then(k => crypto.subtle.decrypt({ name: "AES-GCM", iv: blob.slice(0, 12) }, k, blob.slice(12)))
  .then(b => console.log(new TextDecoder().decode(b)));

Prefer a GUI? The orange button opens CyberChef pre-filled. Or split the parts yourself for any AES-256-GCM tool:

  • Algorithm: AES-256-GCM
  • Key (hex): 89e90316b978cef5af22df6e8bd185acfd5929dab4b3592f4cc2741def0420f9
  • IV / nonce (hex): 205841dc64e4e6b737b1a471
  • Ciphertext (hex): f1c188b0c5c226e38604233aa9d35cdec02959cb1208ea96f1b5a96919b51d1dc3848791f1941552027166aed8e527c17a60aabd3a98ccdd1b859e9f09d94ed07de27e93b6b41f8839beb0b66e8f3057e3595cdf8fc6ca74a772bc493afb126dad8901f66fe7e2bfe65b6c57e2f54ab172ff1c2d0111638a84bcafd4642defe63d94eddf33564ea738091a62dc4a51e6a218a3c64ffff72217a800e0a0c7421215fbe6dc0969a94f558ff030eb12cd1c0ba4103cc40c647075fd597f1c88100c6d0c9eacc8c9481147dee39599a19e2be49b674b454b465d37d6507f218137bec279d801c762611f7df4bc804b54f2a02ad9
  • Auth tag (hex): afcb4c0c2041c3d7ebe95129660eb08f

Any standard AES-256-GCM tool returns the exact same pick — the algorithm is a public standard.

How to verify the Bitcoin timestamp yourself

Bitcoin doesn't store the pick — it stores a 32-byte fingerprint (SHA-256) of the encrypted batch, via OpenTimestamps. That fingerprint is frozen in a public block nobody can alter or back-date. You can't spot it by eye on a block explorer (a block holds thousands of unrelated transactions) — you verify it with the .ots proof and any OpenTimestamps tool:

  1. Download the sealed batch file (.jsonl) and its proof (.ots) from GitHub.
  2. Drop both into opentimestamps.org (or run ots verify *.ots). It replays the proof and confirms the Bitcoin block and its UTC time.
  3. See it independently: block #956053 · anchoring transaction (its OP_RETURN holds the commitment). The block's Timestamp is when it became permanent.

Note: Bitcoin anchoring lands ~30–60 min after sealing, and a block's timestamp is miner-set (approximate). So the exact “before kickoff” proof is the seal time above — timestamped instantly by Telegram/GitHub — while Bitcoin is the independent, un-forgeable anchor of permanence.