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

MetroStars vs West Torrens Birkalla

NPL South Australia · Australia · 29 Aug 2026, 09:30 UTC

Final score
2 : 2
Result
Lost
Pick
MetroStars
Market
1X2
CLV vs fair close
+26.02%
Model prob.
40.9%
Best price
2.75
Min odds
2.49
Stake factor
2.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)
sVD5sPGwhShs7s3XhWch4UgNutDwnVhoQDgRs1G293SWOqjzP6sBgUSWiVyxgvEZ/fwjrDqZbW7KPRN7oos38tQrK9L484ZaN0KMBHhIn1B8Q2fmpwJ1AJo5zcPi8L4AfdWK8DX6tZa1ddUazmegkGEEVdTkpr/ofYH7ImzfTtqJU19upoZhCt7QWxYOF+ESun8yppHZZfHHyH54etIUYDjUqIBWnn9lBbplriK4POC+iSefLgUbo/8gl8AFtoW4W6XOpmgkmpnIypMO4hJhiBlcML9v79VhwoPwEdfv0JRnu6T+yNFrMpecA64n0QWZxWHu6rMrOZinpJSsWfNxsI5XIcOw6TxOu2MusEDB0A==
key fingerprint sha256: 0bf8019828eacfa855eb69fd77ca970e0fbad75422460f91f684a60924a0f911
Decrypt it & read the pick
Decryption key (released after the match)
24cc34801466ccd3eb07f54f81e05f7d166d8acfab7ae61b125c9093ee577fef
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("sVD5sPGwhShs7s3XhWch4UgNutDwnVhoQDgRs1G293SWOqjzP6sBgUSWiVyxgvEZ/fwjrDqZbW7KPRN7oos38tQrK9L484ZaN0KMBHhIn1B8Q2fmpwJ1AJo5zcPi8L4AfdWK8DX6tZa1ddUazmegkGEEVdTkpr/ofYH7ImzfTtqJU19upoZhCt7QWxYOF+ESun8yppHZZfHHyH54etIUYDjUqIBWnn9lBbplriK4POC+iSefLgUbo/8gl8AFtoW4W6XOpmgkmpnIypMO4hJhiBlcML9v79VhwoPwEdfv0JRnu6T+yNFrMpecA64n0QWZxWHu6rMrOZinpJSsWfNxsI5XIcOw6TxOu2MusEDB0A=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("24cc34801466ccd3eb07f54f81e05f7d166d8acfab7ae61b125c9093ee577fef".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): 24cc34801466ccd3eb07f54f81e05f7d166d8acfab7ae61b125c9093ee577fef
  • IV / nonce (hex): b150f9b0f1b085286ceecdd7
  • Ciphertext (hex): 856721e1480dbad0f09d5868403811b351b6f774963aa8f33fab01814496895cb182f119fdfc23ac3a996d6eca3d137ba28b37f2d42b2bd2f8f3865a37428c0478489f507c4367e6a70275009a39cdc3e2f0be007dd58af035fab596b575d51ace67a090610455d4e4a6bfe87d81fb226cdf4eda89535f6ea686610aded05b160e17e112ba7f32a691d965f1c7c87e787ad2146038d4a880569e7f6505ba65ae22b83ce0be89279f2e051ba3ff2097c005b685b85ba5cea668249a99c8ca930ee2126188195c30bf6fefd561c283f011d7efd09467bba4fec8d16b32979c03ae27d10599c561eeeab32b3998a7a494ac59f371
  • Auth tag (hex): b08e5721c3b0e93c4ebb632eb040c1d0

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