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

Sorrento vs Perth RedStar

Npl Western Australia · Australia · 01 Aug 2026, 07:00 UTC

Final score
1 : 0
Result
Lost
Pick
Perth RedStar
Market
1x2
Model prob.
63.2%
Best price
1.76
Min odds
1.69
Stake factor
1.90

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)
DDzV9L5rG0qZ+WQ7nxDzdJ/1PobBrAU9xyEiNGr5xf44rDipzSqqkekkqVy6Gu0ymZMINGudLHvu5RLjZrS7vI/pPSxfXiQ3w0Qnjnb5LcaRpQQWzpAgGXm/jDjkGGEabMD3hK0lsoihvm+ve4Ho5sA7fMjnPaLbfnt1UE86SMDXoR1VKK/jRy7xIhHLTNMHPDmj8rPf0I1sP6cuI6xfkJIlrnnfARifWVM6Loby9yp1cYbNRAr1U8zsHXRmkjOY0rSROfP36nE7LOScP091SWfVnuMkXSghngtTG3sHWO+wNawIuhiF/T5yVsO6gO3csC/v/943wsqVypGJS7U2VlUqIc1hEjiQpmUUrpw=
key fingerprint sha256: 9dffbd2511ec381aab4f623f810f3de8f449542fac2e167a6abb88c3a98a75a1
Decrypt it & read the pick
Decryption key (released after the match)
1beedb0257660f9a3fa25b36f61dcd12f83ea1212ea32cad3a7544580c148f9b
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("DDzV9L5rG0qZ+WQ7nxDzdJ/1PobBrAU9xyEiNGr5xf44rDipzSqqkekkqVy6Gu0ymZMINGudLHvu5RLjZrS7vI/pPSxfXiQ3w0Qnjnb5LcaRpQQWzpAgGXm/jDjkGGEabMD3hK0lsoihvm+ve4Ho5sA7fMjnPaLbfnt1UE86SMDXoR1VKK/jRy7xIhHLTNMHPDmj8rPf0I1sP6cuI6xfkJIlrnnfARifWVM6Loby9yp1cYbNRAr1U8zsHXRmkjOY0rSROfP36nE7LOScP091SWfVnuMkXSghngtTG3sHWO+wNawIuhiF/T5yVsO6gO3csC/v/943wsqVypGJS7U2VlUqIc1hEjiQpmUUrpw="), c => c.charCodeAt(0));
const key  = Uint8Array.from("1beedb0257660f9a3fa25b36f61dcd12f83ea1212ea32cad3a7544580c148f9b".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): 1beedb0257660f9a3fa25b36f61dcd12f83ea1212ea32cad3a7544580c148f9b
  • IV / nonce (hex): 0c3cd5f4be6b1b4a99f9643b
  • Ciphertext (hex): 9f10f3749ff53e86c1ac053dc72122346af9c5fe38ac38a9cd2aaa91e924a95cba1aed32999308346b9d2c7beee512e366b4bbbc8fe93d2c5f5e2437c344278e76f92dc691a50416ce90201979bf8c38e418611a6cc0f784ad25b288a1be6faf7b81e8e6c03b7cc8e73da2db7e7b75504f3a48c0d7a11d5528afe3472ef12211cb4cd3073c39a3f2b3dfd08d6c3fa72e23ac5f909225ae79df01189f59533a2e86f2f72a757186cd440af553ccec1d7466923398d2b49139f3f7ea713b2ce49c3f4f754967d59ee3245d28219e0b531b7b0758efb035ac08ba1885fd3e7256c3ba80eddcb02fefffde37c2ca95ca91894b
  • Auth tag (hex): b53656552a21cd61123890a66514ae9c

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