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

Al Nasr Cairo vs Dayrout

2nd Division A · Egypt · 10 Sept 2026, 13:30 UTC

Final score
2 : 0
Result
Lost
Pick
Dayrout
Market
1X2
CLV vs fair close
-23.53%
Model prob.
20.4%
Best price
5.50
Min odds
5.00
Stake factor
1.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)
k/qIS96tLrodMViZ05qx5fKOUfSVEVg8Q+A0dTMU50iNqyH+Z9o+ArziEfbnwOzF6wTveWU4lnpwVa49bUqrjIKXKykOE81vSjmusk2qqIj0TSyJLAJ1/nWExeXgv4pb8rWXXXBN4Hqt8izq4GvhyWhNxCnpCwFiIuZkzaVAOALGu/PqES2lDI5nZmP9v/JIL56bErdpk0YtrsP3I+e2valrK3tnrXEegDCl4gE34qlnVulsOPQeXPtWZW0UfZHfnmhq2FiJnbd4WBaMXAHjJ9plRZ1lb3Z3MHDUmMs/ZMbL+MBrXWIhXhlA+0txbbSqT1somv5OkgKyuys9Xc36+R+3zVJG
key fingerprint sha256: 2974f69dc25a1fbd000972caf99da6453a730c68bbd72f511ee2760caa2dffcd
Decrypt it & read the pick
Decryption key (released after the match)
671fd4220b7581424ce59486cf3aafac92c674a8340825f8382856ab7e45e1a2
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("k/qIS96tLrodMViZ05qx5fKOUfSVEVg8Q+A0dTMU50iNqyH+Z9o+ArziEfbnwOzF6wTveWU4lnpwVa49bUqrjIKXKykOE81vSjmusk2qqIj0TSyJLAJ1/nWExeXgv4pb8rWXXXBN4Hqt8izq4GvhyWhNxCnpCwFiIuZkzaVAOALGu/PqES2lDI5nZmP9v/JIL56bErdpk0YtrsP3I+e2valrK3tnrXEegDCl4gE34qlnVulsOPQeXPtWZW0UfZHfnmhq2FiJnbd4WBaMXAHjJ9plRZ1lb3Z3MHDUmMs/ZMbL+MBrXWIhXhlA+0txbbSqT1somv5OkgKyuys9Xc36+R+3zVJG"), c => c.charCodeAt(0));
const key  = Uint8Array.from("671fd4220b7581424ce59486cf3aafac92c674a8340825f8382856ab7e45e1a2".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): 671fd4220b7581424ce59486cf3aafac92c674a8340825f8382856ab7e45e1a2
  • IV / nonce (hex): 93fa884bdead2eba1d315899
  • Ciphertext (hex): d39ab1e5f28e51f49511583c43e034753314e7488dab21fe67da3e02bce211f6e7c0ecc5eb04ef796538967a7055ae3d6d4aab8c82972b290e13cd6f4a39aeb24daaa888f44d2c892c0275fe7584c5e5e0bf8a5bf2b5975d704de07aadf22ceae06be1c9684dc429e90b016222e664cda5403802c6bbf3ea112da50c8e676663fdbff2482f9e9b12b76993462daec3f723e7b6bda96b2b7b67ad711e8030a5e20137e2a96756e96c38f41e5cfb56656d147d91df9e686ad858899db77858168c5c01e327da65459d656f76773070d498cb3f64c6cbf8c06b5d62215e1940fb4b716db4aa4f5b289afe
  • Auth tag (hex): 4e9202b2bb2b3d5dcdfaf91fb7cd5246

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