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

Surkhon Termez vs Dinamo Samarqand

Super league · Uzbekistan · 23 Jul 2026, 15:00 UTC

Final score
1 : 2
Result
Lost
Pick
Surkhon Termez
Market
1x2
Model prob.
27.5%
Best price
4.86
Min odds
4.26
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)
Qx/Vk5wDXFD8m12FTf45A60t9RUYmrEJx2kI+wO1QY/FxmM17c8GB05OZXqiPoQTt7n0P+F8huBc54MLHQxZtymKNRgFc09QKcTepakAekHfX/y9rwgr3nvTuBQ8u72lrVNciRObQPqm8ZjI7q0juthrfBBNPa41B6VVWFXsKc/Jpt/9wjnj3bQh471zi4UasiQe3Knbt4YrrfK6JTE15yWBHR+X7z2Sv3CiPT/uURQJIsvTywUKeceNxusz6nPJBOG1NQBDHB3DhoPYcRtx+jHg1MomVaXZ+if8c3SoYHKZk7ldfEhZbrGHkv0zjvMDbRdGcLABtx4CPAXd39E6z7r/sB2M68tvmg==
key fingerprint sha256: 2fb805776938092ce799dc502a3e345d3657d187e6528b9bec009f81455071be
Decrypt it & read the pick
Decryption key (released after the match)
d7b80fed1e056a4c85f38f999ad625748f4cb92643a96f1cd55a99556744a6ea
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("Qx/Vk5wDXFD8m12FTf45A60t9RUYmrEJx2kI+wO1QY/FxmM17c8GB05OZXqiPoQTt7n0P+F8huBc54MLHQxZtymKNRgFc09QKcTepakAekHfX/y9rwgr3nvTuBQ8u72lrVNciRObQPqm8ZjI7q0juthrfBBNPa41B6VVWFXsKc/Jpt/9wjnj3bQh471zi4UasiQe3Knbt4YrrfK6JTE15yWBHR+X7z2Sv3CiPT/uURQJIsvTywUKeceNxusz6nPJBOG1NQBDHB3DhoPYcRtx+jHg1MomVaXZ+if8c3SoYHKZk7ldfEhZbrGHkv0zjvMDbRdGcLABtx4CPAXd39E6z7r/sB2M68tvmg=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("d7b80fed1e056a4c85f38f999ad625748f4cb92643a96f1cd55a99556744a6ea".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): d7b80fed1e056a4c85f38f999ad625748f4cb92643a96f1cd55a99556744a6ea
  • IV / nonce (hex): 431fd5939c035c50fc9b5d85
  • Ciphertext (hex): 4dfe3903ad2df515189ab109c76908fb03b5418fc5c66335edcf06074e4e657aa23e8413b7b9f43fe17c86e05ce7830b1d0c59b7298a351805734f5029c4dea5a9007a41df5ffcbdaf082bde7bd3b8143cbbbda5ad535c89139b40faa6f198c8eead23bad86b7c104d3dae3507a5555855ec29cfc9a6dffdc239e3ddb421e3bd738b851ab2241edca9dbb7862badf2ba253135e725811d1f97ef3d92bf70a23d3fee51140922cbd3cb050a79c78dc6eb33ea73c904e1b53500431c1dc38683d8711b71fa31e0d4ca2655a5d9fa27fc7374a860729993b95d7c48596eb18792fd338ef3036d174670b001b71e02
  • Auth tag (hex): 3c05dddfd13acfbaffb01d8cebcb6f9a

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