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

Renate vs Dolomiti Bellunesi

Serie C Group A · Italy · 17 Sept 2026, 19:00 UTC

Final score
0 : 0
Result
Lost
Pick
Renate
Market
1X2
CLV vs fair close
+23.62%
Model prob.
43.4%
Best price
2.55
Min odds
2.35
Stake factor
2.30

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)
GL5113TSssUTD/5WEMc5WcG8FhDtCXHJkq1pXq9efzgMyOLR5gr6n2iTDDHmKF1Z8GA7rMotZCElxu2Nv83RmaW6SzP+5XI9KqZUinBjl5++yvqsThRHBXvbbrb/UcauugWUOWEEDF3swsLtB3WUbHLIwutXCyDGVzUkutuwcLE1zrWCW+Rn3/Z6LZSzSugH6a4UmBDLamkWCc8VaevXJNaTWPhR9kM3PjavFEwe3ejoaa8i1qjH+2NzBUvoFMvmSpQGP9Rm95X28Qska3xXt4RysjwdGOoU2O3JgMZN9h7zkhNZTGLgt1UdGW5w/0mBZyC1NVIKXy+C3YNCkZ8qa81s2LLoqZzoGYLD
key fingerprint sha256: 2aa501395edb4c4a374f4d1b1ff0c1c9f551a9089050f67e8b71683e81e22591
Decrypt it & read the pick
Decryption key (released after the match)
25aa86d1e3592a50cc39ff35b0a3bc1ef64e19e27c2b472c5bf56760438d4b37
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("GL5113TSssUTD/5WEMc5WcG8FhDtCXHJkq1pXq9efzgMyOLR5gr6n2iTDDHmKF1Z8GA7rMotZCElxu2Nv83RmaW6SzP+5XI9KqZUinBjl5++yvqsThRHBXvbbrb/UcauugWUOWEEDF3swsLtB3WUbHLIwutXCyDGVzUkutuwcLE1zrWCW+Rn3/Z6LZSzSugH6a4UmBDLamkWCc8VaevXJNaTWPhR9kM3PjavFEwe3ejoaa8i1qjH+2NzBUvoFMvmSpQGP9Rm95X28Qska3xXt4RysjwdGOoU2O3JgMZN9h7zkhNZTGLgt1UdGW5w/0mBZyC1NVIKXy+C3YNCkZ8qa81s2LLoqZzoGYLD"), c => c.charCodeAt(0));
const key  = Uint8Array.from("25aa86d1e3592a50cc39ff35b0a3bc1ef64e19e27c2b472c5bf56760438d4b37".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): 25aa86d1e3592a50cc39ff35b0a3bc1ef64e19e27c2b472c5bf56760438d4b37
  • IV / nonce (hex): 18be75d774d2b2c5130ffe56
  • Ciphertext (hex): 10c73959c1bc1610ed0971c992ad695eaf5e7f380cc8e2d1e60afa9f68930c31e6285d59f0603bacca2d642125c6ed8dbfcdd199a5ba4b33fee5723d2aa6548a7063979fbecafaac4e1447057bdb6eb6ff51c6aeba05943961040c5decc2c2ed0775946c72c8c2eb570b20c6573524badbb070b135ceb5825be467dff67a2d94b34ae807e9ae149810cb6a691609cf1569ebd724d69358f851f643373e36af144c1edde8e869af22d6a8c7fb6373054be814cbe64a94063fd466f795f6f10b246b7c57b78472b23c1d18ea14d8edc980c64df61ef39213594c62e0b7551d196e70ff49816720b535520a5f2f82dd83
  • Auth tag (hex): 42919f2a6bcd6cd8b2e8a99ce81982c3

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