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

BFA vs Kauno Žalgiris

Lithuanian Cup · Lithuania · 23 Jun 2026, 15:00 UTC

Final score
0 : 3
Result
Won
Pick
Kauno Žalgiris
Market
1x2
Model prob.
76.8%
Best price
1.47
Min odds
1.37
Stake factor
2.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)
pgZXarPHB8VphxBywYHc2qbqb49HI1mXR2jZFxp4aEwxlQ0jtmUxiL45NzL+SAaN27pIs8Wt5mEvFcPe16Fi+190Bfq2AqgPjoXZX1NvUyUcm0nFQwyx/E0mM1AyU/qu5J8aPJJqo9FbVZRdgTQepzKTLo133uBHifoyPwDdQnmqaiTwdj6oLGtUpt/Ok5/eRB+GNnWDrExPMsxVUG5jKXHkkJV0sS5dSWPZ2DJH+vSiE/jl2FvM/hN5uuObc1KqpS6I3ipU0ye9aY8thTh+SPq3kzs7al6fRreEx/R1F7u80By1/nwbUYsKSRD6O7PIURw51H8P1cx3C76q2jlmBUUkCLkL476ozHTZ1psP
key fingerprint sha256: 408afa43ccbff88ecda0149c8e7385aa91118f07810831dcceaa47d3fe0f19ac
Decrypt it & read the pick
Decryption key (released after the match)
bbf1ee0d9f076858f279f0a209304d9695d85a15e55805649ffd54a0a96c2bd5
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("pgZXarPHB8VphxBywYHc2qbqb49HI1mXR2jZFxp4aEwxlQ0jtmUxiL45NzL+SAaN27pIs8Wt5mEvFcPe16Fi+190Bfq2AqgPjoXZX1NvUyUcm0nFQwyx/E0mM1AyU/qu5J8aPJJqo9FbVZRdgTQepzKTLo133uBHifoyPwDdQnmqaiTwdj6oLGtUpt/Ok5/eRB+GNnWDrExPMsxVUG5jKXHkkJV0sS5dSWPZ2DJH+vSiE/jl2FvM/hN5uuObc1KqpS6I3ipU0ye9aY8thTh+SPq3kzs7al6fRreEx/R1F7u80By1/nwbUYsKSRD6O7PIURw51H8P1cx3C76q2jlmBUUkCLkL476ozHTZ1psP"), c => c.charCodeAt(0));
const key  = Uint8Array.from("bbf1ee0d9f076858f279f0a209304d9695d85a15e55805649ffd54a0a96c2bd5".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): bbf1ee0d9f076858f279f0a209304d9695d85a15e55805649ffd54a0a96c2bd5
  • IV / nonce (hex): a606576ab3c707c569871072
  • Ciphertext (hex): c181dcdaa6ea6f8f472359974768d9171a78684c31950d23b6653188be393732fe48068ddbba48b3c5ade6612f15c3ded7a162fb5f7405fab602a80f8e85d95f536f53251c9b49c5430cb1fc4d2633503253faaee49f1a3c926aa3d15b55945d81341ea732932e8d77dee04789fa323f00dd4279aa6a24f0763ea82c6b54a6dfce939fde441f86367583ac4c4f32cc55506e632971e4909574b12e5d4963d9d83247faf4a213f8e5d85bccfe1379bae39b7352aaa52e88de2a54d327bd698f2d85387e48fab7933b3b6a5e9f46b784c7f47517bbbcd01cb5fe7c1b518b0a4910fa3bb3c8511c39d47f0fd5cc770bbeaada39
  • Auth tag (hex): 6605452408b90be3bea8cc74d9d69b0f

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