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

Boca Unidos vs Defensores de Puerto Vilelas

Torneo Federal A · Argentina · 19 Sept 2026, 18:30 UTC

Final score
3 : 3
Result
Lost
Pick
Boca Unidos
Market
1X2
CLV vs fair close
+37.90%
Model prob.
50.3%
Best price
2.10
Min odds
2.03
Stake factor
1.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)
WyoS69Z6ZLeiAkru0ddJDi8VugLsE7cNQGw0U1iDbkfwJ2M9/IuaCIM4a5SLRuDsfWXl0l8K5Gn1k/BVeO2dgBTaM8K5y2GY3h8Q0s7rKkp7eOfg+Pw0RlqZ81RP7AVEPgznlctymlFIxTAeEyWBYY9NEhHTk/udQI75Mu6SZID+F2gMr0OvzS285Mkl7cRUFWICwiaYx53hLVXAUqMuml9bHGKuxGLwrKGBLLrH1s19YO76K8k1A9CAaiRY/o3Ygsh+dYext6Q3aJloDY0K8a/y5pSF5D/1MDrrxGuT4xqxJR+0CCfNoVP8Ea65pW5NuoXelp/CdnIYRvHRYrGC1OnmZOMDOmxn8jhUkhw=
key fingerprint sha256: d6363257d0b03590ddd08794779e1d394e1a6fce1a7760c6c23a0e613f38bf6a
Decrypt it & read the pick
Decryption key (released after the match)
36cd2306b6713e76cca3ec167fc14f38bfe2afadbac10c82d69644155e8028cd
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("WyoS69Z6ZLeiAkru0ddJDi8VugLsE7cNQGw0U1iDbkfwJ2M9/IuaCIM4a5SLRuDsfWXl0l8K5Gn1k/BVeO2dgBTaM8K5y2GY3h8Q0s7rKkp7eOfg+Pw0RlqZ81RP7AVEPgznlctymlFIxTAeEyWBYY9NEhHTk/udQI75Mu6SZID+F2gMr0OvzS285Mkl7cRUFWICwiaYx53hLVXAUqMuml9bHGKuxGLwrKGBLLrH1s19YO76K8k1A9CAaiRY/o3Ygsh+dYext6Q3aJloDY0K8a/y5pSF5D/1MDrrxGuT4xqxJR+0CCfNoVP8Ea65pW5NuoXelp/CdnIYRvHRYrGC1OnmZOMDOmxn8jhUkhw="), c => c.charCodeAt(0));
const key  = Uint8Array.from("36cd2306b6713e76cca3ec167fc14f38bfe2afadbac10c82d69644155e8028cd".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): 36cd2306b6713e76cca3ec167fc14f38bfe2afadbac10c82d69644155e8028cd
  • IV / nonce (hex): 5b2a12ebd67a64b7a2024aee
  • Ciphertext (hex): d1d7490e2f15ba02ec13b70d406c345358836e47f027633dfc8b9a0883386b948b46e0ec7d65e5d25f0ae469f593f05578ed9d8014da33c2b9cb6198de1f10d2ceeb2a4a7b78e7e0f8fc34465a99f3544fec05443e0ce795cb729a5148c5301e132581618f4d1211d393fb9d408ef932ee926480fe17680caf43afcd2dbce4c925edc454156202c22698c79de12d55c052a32e9a5f5b1c62aec462f0aca1812cbac7d6cd7d60eefa2bc93503d0806a2458fe8dd882c87e7587b1b7a4376899680d8d0af1aff2e69485e43ff5303aebc46b93e31ab1251fb40827cda153fc11aeb9a56e4dba85de969fc276721846f1d162
  • Auth tag (hex): b182d4e9e664e3033a6c67f23854921c

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