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

Jwaya vs Shabab Al Sahel

Premier League · Lebanon · 02 Jul 2026, 12:30 UTC

Final score
0 : 0
Result
Lost
Pick
Jwaya
Market
1x2
Model prob.
61.4%
Best price
1.93
Min odds
1.74
Stake factor
2.50

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)
q/pNrvGdSaqTJVQk7sPNHmgWQwxeSQWOFl4AAVNu7YQckUM8oIfdMWpQ7KXycYPF4c+xu9TBcKAkkqNtUDldhIGbviN1BN3VId+qHH1eYzYmUKuWa+VaRQxIWZQcWaJqPwCDfBV72Eujz/Kose6dpeuIGUr42OAqqquRBY7sPKdoABreaSx9CamIFT0Rfn2PyuyqGjeNprD44dwb8/6VQqUQdL23ymY0XzFoxmeFHxEMwoHWmgNi4Y+noAG/zj5H7x84CFUqFyGjQJO+pz2oPZWfEhaxEE2kW9+cMrCWqEoFOkAE9g/7nu3tTF8CB4KoSWgWvgwEhNptadxO93eCsqf0fKu0
key fingerprint sha256: f9b0fad2abb06fef02fbcefc5392b72fe7728ebaabda9ad1d57b2baaf72b9540
Decrypt it & read the pick
Decryption key (released after the match)
99ed74414cfc617c0d933ec48321954d2bc8271de6255c585556fc30a6ae3915
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("q/pNrvGdSaqTJVQk7sPNHmgWQwxeSQWOFl4AAVNu7YQckUM8oIfdMWpQ7KXycYPF4c+xu9TBcKAkkqNtUDldhIGbviN1BN3VId+qHH1eYzYmUKuWa+VaRQxIWZQcWaJqPwCDfBV72Eujz/Kose6dpeuIGUr42OAqqquRBY7sPKdoABreaSx9CamIFT0Rfn2PyuyqGjeNprD44dwb8/6VQqUQdL23ymY0XzFoxmeFHxEMwoHWmgNi4Y+noAG/zj5H7x84CFUqFyGjQJO+pz2oPZWfEhaxEE2kW9+cMrCWqEoFOkAE9g/7nu3tTF8CB4KoSWgWvgwEhNptadxO93eCsqf0fKu0"), c => c.charCodeAt(0));
const key  = Uint8Array.from("99ed74414cfc617c0d933ec48321954d2bc8271de6255c585556fc30a6ae3915".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): 99ed74414cfc617c0d933ec48321954d2bc8271de6255c585556fc30a6ae3915
  • IV / nonce (hex): abfa4daef19d49aa93255424
  • Ciphertext (hex): eec3cd1e6816430c5e49058e165e0001536eed841c91433ca087dd316a50eca5f27183c5e1cfb1bbd4c170a02492a36d50395d84819bbe237504ddd521dfaa1c7d5e63362650ab966be55a450c4859941c59a26a3f00837c157bd84ba3cff2a8b1ee9da5eb88194af8d8e02aaaab91058eec3ca768001ade692c7d09a988153d117e7d8fcaecaa1a378da6b0f8e1dc1bf3fe9542a51074bdb7ca66345f3168c667851f110cc281d69a0362e18fa7a001bfce3e47ef1f3808552a1721a34093bea73da83d959f1216b1104da45bdf9c32b096a84a053a4004f60ffb9eeded4c5f020782a8496816be0c
  • Auth tag (hex): 0484da6d69dc4ef77782b2a7f47cabb4

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