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

Atlético Mineiro vs Bahia

Serie A · Brazil · 21 Jul 2026, 22:30 UTC

Final score
1 : 1
Result
Lost
Pick
Atlético Mineiro
Market
1x2
Model prob.
51.5%
Best price
2.20
Min odds
2.11
Stake factor
2.10

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)
XGAUJ6BRbmJlxTPhxvVFFIYQ3u+IDEYDa1CI0zy/Yufh2GrwVoaEZySy5kzLY5A6EcqQZOwfXHlm6gOK/rj7BbH/09wiBD3q5TMQdDCfGjWF/4YnJCj4Gv0kcFZUmbMANn7AfBtbBrMU6zwQcUdqvt9HOL4/uwwkBJB4LHbQGfrgb95KV/cJlDqfwMPEmKZekRR6Gut1WeQOgcawEg4UY93KDOw6HxcpnDpvbSy7C6cSGlC2+jDPMuXpJskCUyHAVwLQgQK+DusXxfECmjiOGFf8qBvNMca3C+zCSFnid8yW8Qrgc+76glzhBGpefBwerxJtF1v+DnVpeffxOjUwYLAHCi56cusUoqbq/Ubh4e7m
key fingerprint sha256: a47b27d7e5d735ced3da77b46f15023a4995f1a652cf119ec760da495efa9cd0
Decrypt it & read the pick
Decryption key (released after the match)
1bf617b390dbdd32672083eb037a007a2b217a58e16ccfe493d7aad2ac718980
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("XGAUJ6BRbmJlxTPhxvVFFIYQ3u+IDEYDa1CI0zy/Yufh2GrwVoaEZySy5kzLY5A6EcqQZOwfXHlm6gOK/rj7BbH/09wiBD3q5TMQdDCfGjWF/4YnJCj4Gv0kcFZUmbMANn7AfBtbBrMU6zwQcUdqvt9HOL4/uwwkBJB4LHbQGfrgb95KV/cJlDqfwMPEmKZekRR6Gut1WeQOgcawEg4UY93KDOw6HxcpnDpvbSy7C6cSGlC2+jDPMuXpJskCUyHAVwLQgQK+DusXxfECmjiOGFf8qBvNMca3C+zCSFnid8yW8Qrgc+76glzhBGpefBwerxJtF1v+DnVpeffxOjUwYLAHCi56cusUoqbq/Ubh4e7m"), c => c.charCodeAt(0));
const key  = Uint8Array.from("1bf617b390dbdd32672083eb037a007a2b217a58e16ccfe493d7aad2ac718980".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): 1bf617b390dbdd32672083eb037a007a2b217a58e16ccfe493d7aad2ac718980
  • IV / nonce (hex): 5c601427a0516e6265c533e1
  • Ciphertext (hex): c6f545148610deef880c46036b5088d33cbf62e7e1d86af05686846724b2e64ccb63903a11ca9064ec1f5c7966ea038afeb8fb05b1ffd3dc22043deae5331074309f1a3585ff86272428f81afd2470565499b300367ec07c1b5b06b314eb3c1071476abedf4738be3fbb0c240490782c76d019fae06fde4a57f709943a9fc0c3c498a65e91147a1aeb7559e40e81c6b0120e1463ddca0cec3a1f17299c3a6f6d2cbb0ba7121a50b6fa30cf32e5e926c9025321c05702d08102be0eeb17c5f1029a388e1857fca81bcd31c6b70becc24859e277cc96f10ae073eefa825ce1046a5e7c1c1eaf126d175bfe0e756979f7f13a353060b0
  • Auth tag (hex): 070a2e7a72eb14a2a6eafd46e1e1eee6

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