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

Austria Wien vs Debrecen

Club Friendlies 3 · World · 04 Jul 2026, 13:00 UTC

Final score
1 : 1
Result
Lost
Pick
Austria Wien
Market
1x2
Model prob.
69.1%
Best price
1.62
Min odds
1.54
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)
iOpub7Z+L7jIfuHIvyZvm8yfjjAcU8xjFxbVywaz8n6BEttHQzK7ZyzD1KnOHgGUuVoobWjOu8mHdmAxXEGKLdwhIqPXU9HovDvvjR+YCNMqua2w2FwvR/3WSWaDgRCYH9cXLL80DyATm2sLtV+LB4GhceGFgl5rw9LWTB4DA9IqIApnJBpiTIU95kYG2uN5thzaRPjcFacg737UiyAezq8Y8jVkA4JFWcmIL/s52Oi3NE2z02LcEae3yusJ54pNHWJbTJO/YvOKwIeX7ZnPyn2Fnf921fbB9p0NXKnvDz0wW2SCoiU03tvlqihRiW9tqg+h4gpVqvyUmt9LnVtrs8h5ao3skw21wJzkWNk=
key fingerprint sha256: 6d73754924249d4144624e4fbfc5696c07d3e6724fa18a514a820045c3c1a251
Decrypt it & read the pick
Decryption key (released after the match)
4729152820341d4aa0adb3690a5f5e34137bb1c49630c78fc65541973d8b1bad
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("iOpub7Z+L7jIfuHIvyZvm8yfjjAcU8xjFxbVywaz8n6BEttHQzK7ZyzD1KnOHgGUuVoobWjOu8mHdmAxXEGKLdwhIqPXU9HovDvvjR+YCNMqua2w2FwvR/3WSWaDgRCYH9cXLL80DyATm2sLtV+LB4GhceGFgl5rw9LWTB4DA9IqIApnJBpiTIU95kYG2uN5thzaRPjcFacg737UiyAezq8Y8jVkA4JFWcmIL/s52Oi3NE2z02LcEae3yusJ54pNHWJbTJO/YvOKwIeX7ZnPyn2Fnf921fbB9p0NXKnvDz0wW2SCoiU03tvlqihRiW9tqg+h4gpVqvyUmt9LnVtrs8h5ao3skw21wJzkWNk="), c => c.charCodeAt(0));
const key  = Uint8Array.from("4729152820341d4aa0adb3690a5f5e34137bb1c49630c78fc65541973d8b1bad".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): 4729152820341d4aa0adb3690a5f5e34137bb1c49630c78fc65541973d8b1bad
  • IV / nonce (hex): 88ea6e6fb67e2fb8c87ee1c8
  • Ciphertext (hex): bf266f9bcc9f8e301c53cc631716d5cb06b3f27e8112db474332bb672cc3d4a9ce1e0194b95a286d68cebbc9877660315c418a2ddc2122a3d753d1e8bc3bef8d1f9808d32ab9adb0d85c2f47fdd64966838110981fd7172cbf340f20139b6b0bb55f8b0781a171e185825e6bc3d2d64c1e0303d22a200a67241a624c853de64606dae379b61cda44f8dc15a720ef7ed48b201eceaf18f2356403824559c9882ffb39d8e8b7344db3d362dc11a7b7caeb09e78a4d1d625b4c93bf62f38ac08797ed99cfca7d859dff76d5f6c1f69d0d5ca9ef0f3d305b6482a22534dedbe5aa2851896f6daa0fa1e20a55aafc949adf4b9d
  • Auth tag (hex): 5b6bb3c8796a8dec930db5c09ce458d9

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