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

Amstetten vs Crvena Zvezda

Club Friendlies 3 · World · 25 Jun 2026, 15:30 UTC

Final score
1 : 2
Result
Lost
Pick
Draw
Market
1x2
Model prob.
19.9%
Best price
8.24
Min odds
6.28
Stake factor
3.00

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)
RVz3GJoWNf23ncMynILAfG+b1Nd7/kG9PLzfaJMmNn0cBcsDpuwqClLE7I9DE0xKoiRyBJBAXgAsZfF00ucluSFEXNWxqDEb+LWrlcmX0iePHiejciDo+ctXLCcSpIv0uriOAUpfuhywjq4p90faTpKrJnHNRcW8S4h1+QXrx2gFdB3UJMOiq9wKAyjVS+x3wthSthBaCt3yOBrTb2L8NdkSbn613GfolElOvhBmSbOe1/zYrQSbbMbzpccSHMWv8d+KH6oz1T2gTLXYkaLNr3y5WT3sreSdZQOeDrWIVXju5tBs9ZsXZL4zjVNFC33Isv63W9lOqXnM4G9Io6TYl/Uj
key fingerprint sha256: 0fe84c1cf18e748b323780e6dcd1f331bc864c33c84e5b08bc539d65ea8205c9
Decrypt it & read the pick
Decryption key (released after the match)
edaedd43d08cf8b571eee855f8a59d7a9ec20e8bc32167ee7a5b464a80e0d5e6
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("RVz3GJoWNf23ncMynILAfG+b1Nd7/kG9PLzfaJMmNn0cBcsDpuwqClLE7I9DE0xKoiRyBJBAXgAsZfF00ucluSFEXNWxqDEb+LWrlcmX0iePHiejciDo+ctXLCcSpIv0uriOAUpfuhywjq4p90faTpKrJnHNRcW8S4h1+QXrx2gFdB3UJMOiq9wKAyjVS+x3wthSthBaCt3yOBrTb2L8NdkSbn613GfolElOvhBmSbOe1/zYrQSbbMbzpccSHMWv8d+KH6oz1T2gTLXYkaLNr3y5WT3sreSdZQOeDrWIVXju5tBs9ZsXZL4zjVNFC33Isv63W9lOqXnM4G9Io6TYl/Uj"), c => c.charCodeAt(0));
const key  = Uint8Array.from("edaedd43d08cf8b571eee855f8a59d7a9ec20e8bc32167ee7a5b464a80e0d5e6".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): edaedd43d08cf8b571eee855f8a59d7a9ec20e8bc32167ee7a5b464a80e0d5e6
  • IV / nonce (hex): 455cf7189a1635fdb79dc332
  • Ciphertext (hex): 9c82c07c6f9bd4d77bfe41bd3cbcdf689326367d1c05cb03a6ec2a0a52c4ec8f43134c4aa224720490405e002c65f174d2e725b921445cd5b1a8311bf8b5ab95c997d2278f1e27a37220e8f9cb572c2712a48bf4bab88e014a5fba1cb08eae29f747da4e92ab2671cd45c5bc4b8875f905ebc76805741dd424c3a2abdc0a0328d54bec77c2d852b6105a0addf2381ad36f62fc35d9126e7eb5dc67e894494ebe106649b39ed7fcd8ad049b6cc6f3a5c7121cc5aff1df8a1faa33d53da04cb5d891a2cdaf7cb9593decade49d65039e0eb5885578eee6d06cf59b1764be338d53450b7dc8b2fe
  • Auth tag (hex): b75bd94ea979cce06f48a3a4d897f523

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