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

Rijeka vs Rudeš

1. HNL · Croatia · 02 Aug 2026, 19:00 UTC

Final score
2 : 1
Result
Won
Pick
Rijeka
Market
1x2
Model prob.
82.9%
Best price
1.32
Min odds
1.27
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)
anrZRNpwT6WqcPhCJWO5GrGZ2Gahm7E5hVqxG+gb3ClVttMKBi+EbJuiJGBXO6Pm7kfrRApTwd1+oqR1tXmSatoEC7DBmbrbbBTw8mjgDweSxYMhNqjvPeyOmHOaV60qMdqjC1WE52ykTfAEyDbhdMog7TYVvb+5qNeHuNNaNCR/74YriO2XEW+Kw4gqbOR72VDto9RYK1XUVTUYsJfsP99Iq4SwnkXWGOstflB3bUP0RJkuw++m6+hsJnRLm2n2qI9ZuQ7jI/k2b7Qh825ZOitAF0Ji4VPlVk7U7qtZlVXbzCRldOsnOOV1O9GaVTDK7Hhc0FSyAillm5Egm6X3KEk4KnzNpA==
key fingerprint sha256: 10824b5d2c8074d414de75b8eca3a6a6e41e6ff3d9daa7d99ed1fb738d0046d5
Decrypt it & read the pick
Decryption key (released after the match)
0f5a0cc0345917b1306436a0f26921184e0be2eeaeeb0ac7e68fcae5bf019b37
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("anrZRNpwT6WqcPhCJWO5GrGZ2Gahm7E5hVqxG+gb3ClVttMKBi+EbJuiJGBXO6Pm7kfrRApTwd1+oqR1tXmSatoEC7DBmbrbbBTw8mjgDweSxYMhNqjvPeyOmHOaV60qMdqjC1WE52ykTfAEyDbhdMog7TYVvb+5qNeHuNNaNCR/74YriO2XEW+Kw4gqbOR72VDto9RYK1XUVTUYsJfsP99Iq4SwnkXWGOstflB3bUP0RJkuw++m6+hsJnRLm2n2qI9ZuQ7jI/k2b7Qh825ZOitAF0Ji4VPlVk7U7qtZlVXbzCRldOsnOOV1O9GaVTDK7Hhc0FSyAillm5Egm6X3KEk4KnzNpA=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("0f5a0cc0345917b1306436a0f26921184e0be2eeaeeb0ac7e68fcae5bf019b37".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): 0f5a0cc0345917b1306436a0f26921184e0be2eeaeeb0ac7e68fcae5bf019b37
  • IV / nonce (hex): 6a7ad944da704fa5aa70f842
  • Ciphertext (hex): 2563b91ab199d866a19bb139855ab11be81bdc2955b6d30a062f846c9ba22460573ba3e6ee47eb440a53c1dd7ea2a475b579926ada040bb0c199badb6c14f0f268e00f0792c5832136a8ef3dec8e98739a57ad2a31daa30b5584e76ca44df004c836e174ca20ed3615bdbfb9a8d787b8d35a34247fef862b88ed97116f8ac3882a6ce47bd950eda3d4582b55d4553518b097ec3fdf48ab84b09e45d618eb2d7e50776d43f444992ec3efa6ebe86c26744b9b69f6a88f59b90ee323f9366fb421f36e593a2b40174262e153e5564ed4eeab599555dbcc246574eb2738e5753bd19a5530caec785cd054b2
  • Auth tag (hex): 0229659b91209ba5f72849382a7ccda4

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