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

Ismaily vs Haras El Hodood

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

Final score
0 : 2
Result
Won
Pick
Haras El Hodood
Market
1X2
CLV vs fair close
-10.28%
Model prob.
44.9%
Best price
2.45
Min odds
2.27
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)
ePrH5wjKgiMYzASR0AZDGsnLjd9Yo2bUxcZsTng3I9hrfDvs82tbGqqmXdLYxvH5w9YzAIgAc807AJhmLOZP3EBMTYQSn55RKijj6n1lE33iteY6WGLLR6NVq35w2XIqR9IsnKHRXn/RUE2UgSPEXOjScLHWYC3V8+uOLwGKaOGjLJGAKC+8QcNXPo4SFNYSN9l6YFv9l2M8dgqnpidyAx31kP7AOjFTw5Ihc9r9bVYzPIyJ/lwBckyjaGQp9PiO21yJ6VuhTzCxRhGBwXYSsoB70HOwyRP8N+xFmQUdThApgv3EWC3mGXF1ysgg/gvYjiHSltkqU4B6DmO52XewWP02U3cdvLK6Iukj0swuA3FQoyI=
key fingerprint sha256: 3cfa47958098f587317b9d3f23daa2633dc8d3c50ad8ee9cf6763048f82806d0
Decrypt it & read the pick
Decryption key (released after the match)
9d27a67f4018d49fe1bd00e43b8b4e483b54047bb2eea92f6cd2009761b9220a
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("ePrH5wjKgiMYzASR0AZDGsnLjd9Yo2bUxcZsTng3I9hrfDvs82tbGqqmXdLYxvH5w9YzAIgAc807AJhmLOZP3EBMTYQSn55RKijj6n1lE33iteY6WGLLR6NVq35w2XIqR9IsnKHRXn/RUE2UgSPEXOjScLHWYC3V8+uOLwGKaOGjLJGAKC+8QcNXPo4SFNYSN9l6YFv9l2M8dgqnpidyAx31kP7AOjFTw5Ihc9r9bVYzPIyJ/lwBckyjaGQp9PiO21yJ6VuhTzCxRhGBwXYSsoB70HOwyRP8N+xFmQUdThApgv3EWC3mGXF1ysgg/gvYjiHSltkqU4B6DmO52XewWP02U3cdvLK6Iukj0swuA3FQoyI="), c => c.charCodeAt(0));
const key  = Uint8Array.from("9d27a67f4018d49fe1bd00e43b8b4e483b54047bb2eea92f6cd2009761b9220a".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): 9d27a67f4018d49fe1bd00e43b8b4e483b54047bb2eea92f6cd2009761b9220a
  • IV / nonce (hex): 78fac7e708ca822318cc0491
  • Ciphertext (hex): d006431ac9cb8ddf58a366d4c5c66c4e783723d86b7c3becf36b5b1aaaa65dd2d8c6f1f9c3d63300880073cd3b0098662ce64fdc404c4d84129f9e512a28e3ea7d65137de2b5e63a5862cb47a355ab7e70d9722a47d22c9ca1d15e7fd1504d948123c45ce8d270b1d6602dd5f3eb8e2f018a68e1a32c9180282fbc41c3573e8e1214d61237d97a605bfd97633c760aa7a62772031df590fec03a3153c3922173dafd6d56333c8c89fe5c01724ca3686429f4f88edb5c89e95ba14f30b1461181c17612b2807bd073b0c913fc37ec4599051d4e102982fdc4582de6197175cac820fe0bd88e21d296d92a53807a0e63b9d977b058fd3653
  • Auth tag (hex): 771dbcb2ba22e923d2cc2e037150a322

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