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

Boca Juniors Res. vs Independiente Riva. Res.

Reserve League · Argentina · 04 Aug 2026, 22:00 UTC

Final score
1 : 0
Result
Won
Pick
Boca Juniors Res.
Market
1x2
Model prob.
83.8%
Best price
1.29
Min odds
1.25
Stake factor
1.60

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)
GeeSG4rTZrbBau7go7aumIo3XXeC4VQS9tCdg6DTu2n1ju38c97JfG6E9UMQGxMWAF/reT/+huTfx1t7q1EfUmND+Fnl/w6/NojXO5dGH7W7TfBhbD+ZCcI9R+tls2sh7H6gbs9g1eCDvPest02YalR7BgosI4fN1HpHbn6XjyyWiGv10gM8JKPQEtjDNhpWcymWw+Xf9ifDNOwaft8G8RfTFvwWThkz4XHNe3bEaEItD44LE/xtzFpbCJ86M55WrHW8EDNjJoeDJptQPfl4eCqVBie79hUItZS2NMzXwiYmvfgXCxBrMwyKCE8GBfQE5YKrj1HMz+B61ioR6ZR/UMTAHg3jxg3fsJdcGbJhinDR
key fingerprint sha256: e29d8d82530b50e6101fdc4e90e7a408fd865aa9d8d52439ef3f358273c39778
Decrypt it & read the pick
Decryption key (released after the match)
a640438c0524373d732f57ad118c724bb7605ae286653caa3f087a41449e489a
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("GeeSG4rTZrbBau7go7aumIo3XXeC4VQS9tCdg6DTu2n1ju38c97JfG6E9UMQGxMWAF/reT/+huTfx1t7q1EfUmND+Fnl/w6/NojXO5dGH7W7TfBhbD+ZCcI9R+tls2sh7H6gbs9g1eCDvPest02YalR7BgosI4fN1HpHbn6XjyyWiGv10gM8JKPQEtjDNhpWcymWw+Xf9ifDNOwaft8G8RfTFvwWThkz4XHNe3bEaEItD44LE/xtzFpbCJ86M55WrHW8EDNjJoeDJptQPfl4eCqVBie79hUItZS2NMzXwiYmvfgXCxBrMwyKCE8GBfQE5YKrj1HMz+B61ioR6ZR/UMTAHg3jxg3fsJdcGbJhinDR"), c => c.charCodeAt(0));
const key  = Uint8Array.from("a640438c0524373d732f57ad118c724bb7605ae286653caa3f087a41449e489a".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): a640438c0524373d732f57ad118c724bb7605ae286653caa3f087a41449e489a
  • IV / nonce (hex): 19e7921b8ad366b6c16aeee0
  • Ciphertext (hex): a3b6ae988a375d7782e15412f6d09d83a0d3bb69f58eedfc73dec97c6e84f543101b1316005feb793ffe86e4dfc75b7bab511f526343f859e5ff0ebf3688d73b97461fb5bb4df0616c3f9909c23d47eb65b36b21ec7ea06ecf60d5e083bcf7acb74d986a547b060a2c2387cdd47a476e7e978f2c96886bf5d2033c24a3d012d8c3361a56732996c3e5dff627c334ec1a7edf06f117d316fc164e1933e171cd7b76c468422d0f8e0b13fc6dcc5a5b089f3a339e56ac75bc103363268783269b503df978782a950627bbf61508b594b634ccd7c22626bdf8170b106b330c8a084f0605f404e582ab8f51cccfe07ad62a11e9947f50c4
  • Auth tag (hex): c01e0de3c60ddfb0975c19b2618a70d1

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