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

Newell's Old Boys vs Boca Juniors

Liga Profesional de Fútbol · Argentina · 02 Aug 2026, 20:00 UTC

Final score
2 : 2
Result
Lost
Pick
Boca Juniors
Market
1x2
Model prob.
50.5%
Best price
2.26
Min odds
2.15
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)
S3kxtxyvgtkOFtNizndDsyZgHEJclWNS0Ulch504wbrQqIlj+t8oA3kCPA+nbX7uDnza22vIwrwsmQ+1BXhwN5onKlmFqSRWF8eGip00Qkq/uZQoNZWtDOK4A9g0J05X7sRgsITRUtRY9UYzly7Wa0TGBKiz3BpopHD0rdHhTja/pYWNlZKBbX/Wvc3bswtZ9OXK9GObIRUxBt3u3iBFnnnbfzTL6qGc45TKEVkS3hlExRcBDyRm/HqLAT+UWkSr6w8yr2wgot7qAzXyseG/LDqHfB3R6DDRtscC3qP+zMKttrPgAewDdn7U1D4aifjmW2w2cPPh8uJDC6aQrZrLcBUjHRrPpNq2YvDM
key fingerprint sha256: 43a6495636f64850af5b2c8b582d5f39bf79512aebbccdaaa8c19d8d5e34df8c
Decrypt it & read the pick
Decryption key (released after the match)
3392b5d98c9297723e7c5b257a48cbd803bc7ab62ea4068604a2254ca97ec289
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("S3kxtxyvgtkOFtNizndDsyZgHEJclWNS0Ulch504wbrQqIlj+t8oA3kCPA+nbX7uDnza22vIwrwsmQ+1BXhwN5onKlmFqSRWF8eGip00Qkq/uZQoNZWtDOK4A9g0J05X7sRgsITRUtRY9UYzly7Wa0TGBKiz3BpopHD0rdHhTja/pYWNlZKBbX/Wvc3bswtZ9OXK9GObIRUxBt3u3iBFnnnbfzTL6qGc45TKEVkS3hlExRcBDyRm/HqLAT+UWkSr6w8yr2wgot7qAzXyseG/LDqHfB3R6DDRtscC3qP+zMKttrPgAewDdn7U1D4aifjmW2w2cPPh8uJDC6aQrZrLcBUjHRrPpNq2YvDM"), c => c.charCodeAt(0));
const key  = Uint8Array.from("3392b5d98c9297723e7c5b257a48cbd803bc7ab62ea4068604a2254ca97ec289".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): 3392b5d98c9297723e7c5b257a48cbd803bc7ab62ea4068604a2254ca97ec289
  • IV / nonce (hex): 4b7931b71caf82d90e16d362
  • Ciphertext (hex): ce7743b326601c425c956352d1495c879d38c1bad0a88963fadf280379023c0fa76d7eee0e7cdadb6bc8c2bc2c990fb5057870379a272a5985a9245617c7868a9d34424abfb994283595ad0ce2b803d834274e57eec460b084d152d458f54633972ed66b44c604a8b3dc1a68a470f4add1e14e36bfa5858d9592816d7fd6bdcddbb30b59f4e5caf4639b21153106ddeede20459e79db7f34cbeaa19ce394ca115912de1944c517010f2466fc7a8b013f945a44abeb0f32af6c20a2deea0335f2b1e1bf2c3a877c1dd1e830d1b6c702dea3feccc2adb6b3e001ec03767ed4d43e1a89f8e65b6c3670f3e1f2e2430ba6
  • Auth tag (hex): 90ad9acb7015231d1acfa4dab662f0cc

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