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

Provincial Lobos vs Deportivo Metalúrgico

Torneo Promocional Amateur · Argentina · 05 Aug 2026, 18:00 UTC

Final score
0 : 5
Result
Won
Pick
Deportivo Metalúrgico
Market
1x2
Model prob.
76.7%
Best price
1.49
Min odds
1.37
Stake factor
2.20

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)
tyE2o8g2+xmnv+U3HYbl+LXqccl0wu8e9bHRvV7SptO/8rYKfrR+0qy1InwoDkYbVI5twhNQXicsAYVrJ6sTXyCOyEp8n0gjaaffNp6a3HJBTV+9Qj/5xlZ83pJIs9qwrTOu8U9mJ4ms+L0LVEeGsD/DeXuMTVi3suKWiSKf1GrSHURzL9ys5vhf63Cp/ZjtXz6XQADbafGTLC9jkaAIslMhH+HtC+vYF87Bz5FFfOb4QVg1qhs7MrpqaRT9G5dI+jeqXvddv66Efm4sNtypBaKUAIvARb+7tb0saLBUKVoGCRWTW68uP6z1SI4NRz+6YlBo+Fj4KZfVO1zUZ3e+8yo7orsct99dl+xjE1mI/6w8z59V+TCz
key fingerprint sha256: 8b4a15f5ead6401c8026c7d92f53c28a61c93b298223e5342fff360e292f2f66
Decrypt it & read the pick
Decryption key (released after the match)
2b0e8f4fb4b49d4cd962db261893806e12a29c45871fd1b5e1f667476af1b7d4
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("tyE2o8g2+xmnv+U3HYbl+LXqccl0wu8e9bHRvV7SptO/8rYKfrR+0qy1InwoDkYbVI5twhNQXicsAYVrJ6sTXyCOyEp8n0gjaaffNp6a3HJBTV+9Qj/5xlZ83pJIs9qwrTOu8U9mJ4ms+L0LVEeGsD/DeXuMTVi3suKWiSKf1GrSHURzL9ys5vhf63Cp/ZjtXz6XQADbafGTLC9jkaAIslMhH+HtC+vYF87Bz5FFfOb4QVg1qhs7MrpqaRT9G5dI+jeqXvddv66Efm4sNtypBaKUAIvARb+7tb0saLBUKVoGCRWTW68uP6z1SI4NRz+6YlBo+Fj4KZfVO1zUZ3e+8yo7orsct99dl+xjE1mI/6w8z59V+TCz"), c => c.charCodeAt(0));
const key  = Uint8Array.from("2b0e8f4fb4b49d4cd962db261893806e12a29c45871fd1b5e1f667476af1b7d4".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): 2b0e8f4fb4b49d4cd962db261893806e12a29c45871fd1b5e1f667476af1b7d4
  • IV / nonce (hex): b72136a3c836fb19a7bfe537
  • Ciphertext (hex): 1d86e5f8b5ea71c974c2ef1ef5b1d1bd5ed2a6d3bff2b60a7eb47ed2acb5227c280e461b548e6dc213505e272c01856b27ab135f208ec84a7c9f482369a7df369e9adc72414d5fbd423ff9c6567cde9248b3dab0ad33aef14f662789acf8bd0b544786b03fc3797b8c4d58b7b2e29689229fd46ad21d44732fdcace6f85feb70a9fd98ed5f3e974000db69f1932c2f6391a008b253211fe1ed0bebd817cec1cf91457ce6f8415835aa1b3b32ba6a6914fd1b9748fa37aa5ef75dbfae847e6e2c36dca905a294008bc045bfbbb5bd2c68b054295a060915935baf2e3facf5488e0d473fba625068f858f82997d53b5cd46777bef32a3ba2bb1cb7df
  • Auth tag (hex): 5d97ec63135988ffac3ccf9f55f930b3

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