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

BFA vs Ekranas

1. Lyga · Lithuania · 02 Jul 2026, 15:00 UTC

Final score
3 : 0
Result
Won
Pick
BFA
Market
1x2
Model prob.
49.6%
Best price
2.44
Min odds
2.19
Stake factor
2.70

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)
DQPg87q6l2DkIGmvBsiFhCZqs4VQl9k6Y+uVRaHbC6oZooY/jSFQ161VFSSq4Fx3RJ7DWXN7PioQ6+bitXqB1E5W6TKVk0q6+FSmQGRwgGOoUkm0eZcOq6A/2uUsqALVLqrI6zFLAgktT/eB7JZzE3s5gNEXAO4AiCo+ZB/BItg5rA9DzR0OY53dul0/9206FVJ88+QiNwKQBku8E41XZFvSsBmOKmuDlNAFi0rZh3+BVVYXVslHc3S2pWUxbjs2ba9MB60H4+YF1MP7DaUcPb/B5+wvgcUDxbpNEJxbHQA7D7rJPn+VmYQ2VVSelKoOBIbUn72LUfR/G8iJIzkBIC83IWM=
key fingerprint sha256: 2c1d6d0adc7b1587f4f71cc141b99c0a8e8d49dc86cf6a1194524ad2af6ba2f3
Decrypt it & read the pick
Decryption key (released after the match)
fa55540559738f847b0c1811bbf4a09ee377cc15fada9aeaba4658d1d0a65ee9
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("DQPg87q6l2DkIGmvBsiFhCZqs4VQl9k6Y+uVRaHbC6oZooY/jSFQ161VFSSq4Fx3RJ7DWXN7PioQ6+bitXqB1E5W6TKVk0q6+FSmQGRwgGOoUkm0eZcOq6A/2uUsqALVLqrI6zFLAgktT/eB7JZzE3s5gNEXAO4AiCo+ZB/BItg5rA9DzR0OY53dul0/9206FVJ88+QiNwKQBku8E41XZFvSsBmOKmuDlNAFi0rZh3+BVVYXVslHc3S2pWUxbjs2ba9MB60H4+YF1MP7DaUcPb/B5+wvgcUDxbpNEJxbHQA7D7rJPn+VmYQ2VVSelKoOBIbUn72LUfR/G8iJIzkBIC83IWM="), c => c.charCodeAt(0));
const key  = Uint8Array.from("fa55540559738f847b0c1811bbf4a09ee377cc15fada9aeaba4658d1d0a65ee9".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): fa55540559738f847b0c1811bbf4a09ee377cc15fada9aeaba4658d1d0a65ee9
  • IV / nonce (hex): 0d03e0f3baba9760e42069af
  • Ciphertext (hex): 06c88584266ab3855097d93a63eb9545a1db0baa19a2863f8d2150d7ad551524aae05c77449ec359737b3e2a10ebe6e2b57a81d44e56e93295934abaf854a64064708063a85249b479970eaba03fdae52ca802d52eaac8eb314b02092d4ff781ec9673137b3980d11700ee00882a3e641fc122d839ac0f43cd1d0e639dddba5d3ff76d3a15527cf3e422370290064bbc138d57645bd2b0198e2a6b8394d0058b4ad9877f8155561756c9477374b6a565316e3b366daf4c07ad07e3e605d4c3fb0da51c3dbfc1e7ec2f81c503c5ba4d109c5b1d003b0fbac93e7f9599843655549e94aa0e0486d49f
  • Auth tag (hex): bd8b51f47f1bc889233901202f372163

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