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

Inter San Carlos vs Deportivo Saprissa

Primera Division · Costa Rica · 23 Aug 2026, 21:00 UTC

Final score
0 : 0
Result
Won
Pick
Draw
Market
1X2
CLV vs fair close
+3.53%
Model prob.
27.5%
Best price
3.90
Min odds
3.71
Stake factor
1.00

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)
gjAhJWrZzU+/Derg7OuHTqK9rVstgeJe8sgVhY7dwgaTl6HPvyEEsSh0uzlFiqHSnIIdte+l0sgRvhE+MxJUqdbqlPduP1KGeOwu8kKlq8dSUSdVEcuRYANzLaG9YzcQfEJeFMrY2eSk4TuyLYuEhHLLx4/+cynBgkQ0xslpW53c1ceqQ+SXbprkRfHNBdks94A7Y1pSOjSAbfzpF0h45LMxrTwEwDltPlC2UnJDsrihVGFna7Xi1XabLlTmRy4eOtgHCcjkVrN+hT1+1bpkAi7FRcJ5KXn9mrEi8n7GYInAAk/xQg9AefcMDZtv0kCXU2dRf8WS+b2mX8FoXjeDMq8uuFzM
key fingerprint sha256: 0197bbd569dd6a3a2fde07b2e6303f412ce34c0b9ba03889e043eca643e1a3ab
Decrypt it & read the pick
Decryption key (released after the match)
9c5dddc3d624f2c80568a1c3f3a9188ab76106fedc073cc2ec75c7f8387be7be
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("gjAhJWrZzU+/Derg7OuHTqK9rVstgeJe8sgVhY7dwgaTl6HPvyEEsSh0uzlFiqHSnIIdte+l0sgRvhE+MxJUqdbqlPduP1KGeOwu8kKlq8dSUSdVEcuRYANzLaG9YzcQfEJeFMrY2eSk4TuyLYuEhHLLx4/+cynBgkQ0xslpW53c1ceqQ+SXbprkRfHNBdks94A7Y1pSOjSAbfzpF0h45LMxrTwEwDltPlC2UnJDsrihVGFna7Xi1XabLlTmRy4eOtgHCcjkVrN+hT1+1bpkAi7FRcJ5KXn9mrEi8n7GYInAAk/xQg9AefcMDZtv0kCXU2dRf8WS+b2mX8FoXjeDMq8uuFzM"), c => c.charCodeAt(0));
const key  = Uint8Array.from("9c5dddc3d624f2c80568a1c3f3a9188ab76106fedc073cc2ec75c7f8387be7be".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): 9c5dddc3d624f2c80568a1c3f3a9188ab76106fedc073cc2ec75c7f8387be7be
  • IV / nonce (hex): 823021256ad9cd4fbf0deae0
  • Ciphertext (hex): eceb874ea2bdad5b2d81e25ef2c815858eddc2069397a1cfbf2104b12874bb39458aa1d29c821db5efa5d2c811be113e331254a9d6ea94f76e3f528678ec2ef242a5abc75251275511cb916003732da1bd6337107c425e14cad8d9e4a4e13bb22d8b848472cbc78ffe7329c1824434c6c9695b9ddcd5c7aa43e4976e9ae445f1cd05d92cf7803b635a523a34806dfce9174878e4b331ad3c04c0396d3e50b6527243b2b8a15461676bb5e2d5769b2e54e6472e1e3ad80709c8e456b37e853d7ed5ba64022ec545c2792979fd9ab122f27ec66089c0024ff1420f4079f70c0d9b6fd240975367517fc5
  • Auth tag (hex): 92f9bda65fc1685e378332af2eb85ccc

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