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

Lito vs LSM

Primera División Amateur · Uruguay · 28 Jun 2026, 18:00 UTC

Final score
1 : 1
Result
Won
Pick
Draw
Market
1x2
Model prob.
36.4%
Best price
3.30
Min odds
3.08
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)
xC6vAQJqR7y8X/rzUxtDF5eUnkHuPc80rLUL3cf9q77ff+pK6ntPxfu6ekvofdOqR0zo7ZF60k9qpkMNFtaicRWxAiqdpGTyRfGuNwmc/frWSpOODyUHBlQY4xBlBCtOIp7qpQ6zjDnUvOAmjRefwXL/gGFwVhoNO1ZkybsXK6R+C94+rcWDxWw2ns2B62vLyHKpbxgNOabij6hEpSq3I/otkH3vmtUehR3MquLI7vQbmYJtgZPjkPfABZPBPrlHqpnTIZ2+sKWKMM0yVtVXOto7oId3kX0V6RcMY8k/Hnve/fStMcnaeu/+QzF81t1j/dKTBqtUIFKAmuMIbDRLycBdqxA=
key fingerprint sha256: 131c6a7d9ae205216f63fb2de239f25a0bcc40ac7a7c5c3040a66fd419c2c131
Decrypt it & read the pick
Decryption key (released after the match)
cb83c3acaecb80c3bc903655e092e86f95a089727799e5adecc9a98ae48031d7
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("xC6vAQJqR7y8X/rzUxtDF5eUnkHuPc80rLUL3cf9q77ff+pK6ntPxfu6ekvofdOqR0zo7ZF60k9qpkMNFtaicRWxAiqdpGTyRfGuNwmc/frWSpOODyUHBlQY4xBlBCtOIp7qpQ6zjDnUvOAmjRefwXL/gGFwVhoNO1ZkybsXK6R+C94+rcWDxWw2ns2B62vLyHKpbxgNOabij6hEpSq3I/otkH3vmtUehR3MquLI7vQbmYJtgZPjkPfABZPBPrlHqpnTIZ2+sKWKMM0yVtVXOto7oId3kX0V6RcMY8k/Hnve/fStMcnaeu/+QzF81t1j/dKTBqtUIFKAmuMIbDRLycBdqxA="), c => c.charCodeAt(0));
const key  = Uint8Array.from("cb83c3acaecb80c3bc903655e092e86f95a089727799e5adecc9a98ae48031d7".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): cb83c3acaecb80c3bc903655e092e86f95a089727799e5adecc9a98ae48031d7
  • IV / nonce (hex): c42eaf01026a47bcbc5ffaf3
  • Ciphertext (hex): 531b431797949e41ee3dcf34acb50bddc7fdabbedf7fea4aea7b4fc5fbba7a4be87dd3aa474ce8ed917ad24f6aa6430d16d6a27115b1022a9da464f245f1ae37099cfdfad64a938e0f2507065418e31065042b4e229eeaa50eb38c39d4bce0268d179fc172ff806170561a0d3b5664c9bb172ba47e0bde3eadc583c56c369ecd81eb6bcbc872a96f180d39a6e28fa844a52ab723fa2d907def9ad51e851dccaae2c8eef41b99826d8193e390f7c00593c13eb947aa99d3219dbeb0a58a30cd3256d5573ada3ba08777917d15e9170c63c93f1e7bdefdf4ad31c9da7aeffe43317cd6dd63fdd29306
  • Auth tag (hex): ab542052809ae3086c344bc9c05dab10

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