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

Sutherland Sharks vs SD Raiders

NPL New South Wales · Australia · 30 Aug 2026, 05:00 UTC

Final score
1 : 2
Result
Won
Pick
SD Raiders
Market
1X2
CLV vs fair close
+18.87%
Model prob.
47.1%
Best price
2.23
Min odds
2.16
Stake factor
1.40

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)
/FTTaULKh3QjxwF73soET+IvMi68wZS91F6t4DQ8pRXpjjj83kdPeCvTqMc6nUrcCwYg/4WgNY/caB+MX2+et8o7v+klH1pD0W4e+J8jwmA9clSVkk7GgFjkJ8FTFfvhsHHHqBQCLkp+y50lQ0ubtnDYrck4fO4QAHhxXuncPVXQPfgw11lyV1Bq1+qaIkB48bfogYZYhuRmvfyPtC82VsByRcPBui7SCYfwS1mvJHejFWEFDkFPR6jxaX3S/+2LyP+SDxrIc/d3jYkn33RBTsuE7+j28X2XJnPphmAT3yi2doE4mT0LE4Y1t55ssd1iICtFagV2p+YniFlMdTZ1bRmVZyss8bV+ETbcU8uN
key fingerprint sha256: 829b5ba66d218b34bc1e5117f09ba54d6b77cf67caadbb8d7ab0e1e20566f4f6
Decrypt it & read the pick
Decryption key (released after the match)
d910e9b9c77259870789497fc79f26f014931d5c82fab3ab9db2f0b847d08a22
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("/FTTaULKh3QjxwF73soET+IvMi68wZS91F6t4DQ8pRXpjjj83kdPeCvTqMc6nUrcCwYg/4WgNY/caB+MX2+et8o7v+klH1pD0W4e+J8jwmA9clSVkk7GgFjkJ8FTFfvhsHHHqBQCLkp+y50lQ0ubtnDYrck4fO4QAHhxXuncPVXQPfgw11lyV1Bq1+qaIkB48bfogYZYhuRmvfyPtC82VsByRcPBui7SCYfwS1mvJHejFWEFDkFPR6jxaX3S/+2LyP+SDxrIc/d3jYkn33RBTsuE7+j28X2XJnPphmAT3yi2doE4mT0LE4Y1t55ssd1iICtFagV2p+YniFlMdTZ1bRmVZyss8bV+ETbcU8uN"), c => c.charCodeAt(0));
const key  = Uint8Array.from("d910e9b9c77259870789497fc79f26f014931d5c82fab3ab9db2f0b847d08a22".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): d910e9b9c77259870789497fc79f26f014931d5c82fab3ab9db2f0b847d08a22
  • IV / nonce (hex): fc54d36942ca877423c7017b
  • Ciphertext (hex): deca044fe22f322ebcc194bdd45eade0343ca515e98e38fcde474f782bd3a8c73a9d4adc0b0620ff85a0358fdc681f8c5f6f9eb7ca3bbfe9251f5a43d16e1ef89f23c2603d725495924ec68058e427c15315fbe1b071c7a814022e4a7ecb9d25434b9bb670d8adc9387cee100078715ee9dc3d55d03df830d7597257506ad7ea9a224078f1b7e881865886e466bdfc8fb42f3656c07245c3c1ba2ed20987f04b59af2477a31561050e414f47a8f1697dd2ffed8bc8ff920f1ac873f7778d8927df74414ecb84efe8f6f17d972673e9866013df28b6768138993d0b138635b79e6cb1dd62202b456a0576a7e62788594c7536
  • Auth tag (hex): 756d1995672b2cf1b57e1136dc53cb8d

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 #964605 · 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.