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

San Martín Formosa vs Sarmiento Resistencia

Torneo Federal A · Argentina · 21 Jun 2026, 19:00 UTC

Final score
3 : 0
Result
Won
Pick
San Martín Formosa
Market
1x2
Model prob.
70.8%
Best price
1.54
Min odds
1.50
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)
nOrKrs9bNJ2lq+omgN4xbjWmthOhabmqilF5ggJk8eA8B1veERcuoyCCLkvwrB2eHEPMmBMclfyZXMwpJ+SzrkTJcKz7KEc15yYWOC0O190CfE5yTeJSaMHhW6c/8T4OeMGggD5wDHkJYwOY/SJgg7jRLwVde4tnk1K/nhdF3VbvoJEJb50XrXsAwKU9BJehftxD3Ne+x61wxvDC3/0uI2iMhen+v/DoUyVXoJC20THfIgvNAZmEfQtoiPORL87vOhlwcBro1ktxP0Tz5dFrd2e+LnqUGFdsbMoEmnsG8Xsh0oPkGoGles5EBPkr5lCU+3NNY7MEgut2Vq7asyiVGKMHNugtzAc2RGDQygD10JNl
key fingerprint sha256: 191269ddff44169c1681c5d1265a97bded7aaa8d9c758f15b2a980d0704d2ab3
Decrypt it & read the pick
Decryption key (released after the match)
a644f2e036735af3cd98c3912d49ba902e9f09c3a2b11242d6632b974d204ad5
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("nOrKrs9bNJ2lq+omgN4xbjWmthOhabmqilF5ggJk8eA8B1veERcuoyCCLkvwrB2eHEPMmBMclfyZXMwpJ+SzrkTJcKz7KEc15yYWOC0O190CfE5yTeJSaMHhW6c/8T4OeMGggD5wDHkJYwOY/SJgg7jRLwVde4tnk1K/nhdF3VbvoJEJb50XrXsAwKU9BJehftxD3Ne+x61wxvDC3/0uI2iMhen+v/DoUyVXoJC20THfIgvNAZmEfQtoiPORL87vOhlwcBro1ktxP0Tz5dFrd2e+LnqUGFdsbMoEmnsG8Xsh0oPkGoGles5EBPkr5lCU+3NNY7MEgut2Vq7asyiVGKMHNugtzAc2RGDQygD10JNl"), c => c.charCodeAt(0));
const key  = Uint8Array.from("a644f2e036735af3cd98c3912d49ba902e9f09c3a2b11242d6632b974d204ad5".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): a644f2e036735af3cd98c3912d49ba902e9f09c3a2b11242d6632b974d204ad5
  • IV / nonce (hex): 9ceacaaecf5b349da5abea26
  • Ciphertext (hex): 80de316e35a6b613a169b9aa8a5179820264f1e03c075bde11172ea320822e4bf0ac1d9e1c43cc98131c95fc995ccc2927e4b3ae44c970acfb284735e72616382d0ed7dd027c4e724de25268c1e15ba73ff13e0e78c1a0803e700c7909630398fd226083b8d12f055d7b8b679352bf9e1745dd56efa091096f9d17ad7b00c0a53d0497a17edc43dcd7bec7ad70c6f0c2dffd2e23688c85e9febff0e8532557a090b6d131df220bcd0199847d0b6888f3912fceef3a1970701ae8d64b713f44f3e5d16b7767be2e7a9418576c6cca049a7b06f17b21d283e41a81a57ace4404f92be65094fb734d63b30482eb7656aedab3289518a3
  • Auth tag (hex): 0736e82dcc07364460d0ca00f5d09365

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