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

Fortuna Düsseldorf vs Borussia Dortmund

Club Friendlies 1 · World · 25 Jul 2026, 11:00 UTC

Final score
2 : 1
Result
Won
Pick
Fortuna Düsseldorf
Market
1x2
Model prob.
16.9%
Best price
9.27
Min odds
7.73
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)
qw1XYZslAF7Sk6ydqdTxsMPjbSOtmt59aA9rLNZrIjd/reXLUYbBxq9/KCNpraxmzvryPg3pCt5SHyDZ+6bXteKFHab4SO0CxDTY93E7SPpgSMVFzt7R9j2N7WN8ddIgbs8ZUzlIlOHXt6omfjFMZ3fzfaFKDshTP1GYjg/x50E3eMVhXF1/oDDkwAQ1RERUbnVJOqEKsmaw9YtE5S+7s2FLUPzxviizF8qT0CPh6KWWFMUXoGEJQndTo8Y1CYIam2v2gnscbOHdPKKZ92XE4YINP3oVYjTWbhZiqp8mZUf+30lZLecqWYUy/OnfmDwzsoQEXkDg01O2cQfS03fxjQ7YZhlYcUrrI/yKCibJHA==
key fingerprint sha256: f1ec51109cfb6060c549cf68d276a90b819c326c8cfe9bbc6077eff2845c7291
Decrypt it & read the pick
Decryption key (released after the match)
ec85809a60df4e6a0463ed871eec0739f12adfd1cc2e3e37d7588cc2eadab201
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("qw1XYZslAF7Sk6ydqdTxsMPjbSOtmt59aA9rLNZrIjd/reXLUYbBxq9/KCNpraxmzvryPg3pCt5SHyDZ+6bXteKFHab4SO0CxDTY93E7SPpgSMVFzt7R9j2N7WN8ddIgbs8ZUzlIlOHXt6omfjFMZ3fzfaFKDshTP1GYjg/x50E3eMVhXF1/oDDkwAQ1RERUbnVJOqEKsmaw9YtE5S+7s2FLUPzxviizF8qT0CPh6KWWFMUXoGEJQndTo8Y1CYIam2v2gnscbOHdPKKZ92XE4YINP3oVYjTWbhZiqp8mZUf+30lZLecqWYUy/OnfmDwzsoQEXkDg01O2cQfS03fxjQ7YZhlYcUrrI/yKCibJHA=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("ec85809a60df4e6a0463ed871eec0739f12adfd1cc2e3e37d7588cc2eadab201".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): ec85809a60df4e6a0463ed871eec0739f12adfd1cc2e3e37d7588cc2eadab201
  • IV / nonce (hex): ab0d57619b25005ed293ac9d
  • Ciphertext (hex): a9d4f1b0c3e36d23ad9ade7d680f6b2cd66b22377fade5cb5186c1c6af7f282369adac66cefaf23e0de90ade521f20d9fba6d7b5e2851da6f848ed02c434d8f7713b48fa6048c545ceded1f63d8ded637c75d2206ecf1953394894e1d7b7aa267e314c6777f37da14a0ec8533f51988e0ff1e7413778c5615c5d7fa030e4c004354444546e75493aa10ab266b0f58b44e52fbbb3614b50fcf1be28b317ca93d023e1e8a59614c517a06109427753a3c63509821a9b6bf6827b1c6ce1dd3ca299f765c4e1820d3f7a156234d66e1662aa9f266547fedf49592de72a598532fce9df983c33b284045e40e0d353b67107d2d377f1
  • Auth tag (hex): 8d0ed8661958714aeb23fc8a0a26c91c

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