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

Meshakhte Tkibuli vs Dinamo Batumi

Erovnuli Liga · Georgia · 21 Aug 2026, 13:00 UTC

Final score
0 : 1
Result
Won
Pick
Dinamo Batumi
Market
1X2
CLV vs fair close
+12.08%
Model prob.
68.8%
Best price
1.53
Min odds
1.48
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)
SvxWXsYrf6CCMaRAb71U5G8GfZufVmTipyvt5LXOvv0yGguWqSY/ZRZX4mnxXczU7Augkr9p35V2fv1B227Ftp99fOgkgQbKiTxuMwjK5VZfyWNqZRo0WXqBS2PQxXVmxw6asae7cu3AKR2pE29cdJQ0k9aDafKeBsWRQ+PxwA6pSBcPVXpSsIg7mYyqlQ+P/jbXkTKl9ELnvTZCVhEtxI9VIJnrENZwNzP12h5AUIZq3U53EV801BYnf1oZqbM5zs1nvXe+3hPTyx082etnZAmJwLDF9p5QOChZxJPWZ1rDrnRmnYOCU9Nfh/8u6Ae/zFzCxYSFE8o8qE2anxKXDfAyZ6bB0L7ofNVrq5NTlA==
key fingerprint sha256: 0ced25f947e8edabbb831347c1c577e15dae7df0e4e66089104e7f49a82cf5bc
Decrypt it & read the pick
Decryption key (released after the match)
fb644678ef4d07965ba065b8b2cb9fdb130d8ff880dce7b743444a0cd621257d
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("SvxWXsYrf6CCMaRAb71U5G8GfZufVmTipyvt5LXOvv0yGguWqSY/ZRZX4mnxXczU7Augkr9p35V2fv1B227Ftp99fOgkgQbKiTxuMwjK5VZfyWNqZRo0WXqBS2PQxXVmxw6asae7cu3AKR2pE29cdJQ0k9aDafKeBsWRQ+PxwA6pSBcPVXpSsIg7mYyqlQ+P/jbXkTKl9ELnvTZCVhEtxI9VIJnrENZwNzP12h5AUIZq3U53EV801BYnf1oZqbM5zs1nvXe+3hPTyx082etnZAmJwLDF9p5QOChZxJPWZ1rDrnRmnYOCU9Nfh/8u6Ae/zFzCxYSFE8o8qE2anxKXDfAyZ6bB0L7ofNVrq5NTlA=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("fb644678ef4d07965ba065b8b2cb9fdb130d8ff880dce7b743444a0cd621257d".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): fb644678ef4d07965ba065b8b2cb9fdb130d8ff880dce7b743444a0cd621257d
  • IV / nonce (hex): 4afc565ec62b7fa08231a440
  • Ciphertext (hex): 6fbd54e46f067d9b9f5664e2a72bede4b5cebefd321a0b96a9263f651657e269f15dccd4ec0ba092bf69df95767efd41db6ec5b69f7d7ce8248106ca893c6e3308cae5565fc9636a651a34597a814b63d0c57566c70e9ab1a7bb72edc0291da9136f5c74943493d68369f29e06c59143e3f1c00ea948170f557a52b0883b998caa950f8ffe36d79132a5f442e7bd364256112dc48f552099eb10d6703733f5da1e4050866add4e77115f34d416277f5a19a9b339cecd67bd77bede13d3cb1d3cd9eb67640989c0b0c5f69e50382859c493d6675ac3ae74669d838253d35f87ff2ee807bfcc5cc2c5848513ca3ca84d9a9f1297
  • Auth tag (hex): 0df03267a6c1d0bee87cd56bab935394

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