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

Đồng Nai U21 vs Tây Ninh U21

U21 Championship · Vietnam · 05 Jul 2026, 07:30 UTC

Final score
3 : 1
Result
Won
Pick
Đồng Nai U21
Market
1x2
Model prob.
45.6%
Best price
2.68
Min odds
2.40
Stake factor
2.80

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)
vEvt142Dw6RLaEUibh0qBQeOpeBz4o6TkoF6VkkoKwLb1XdS0Hx+q76lcOLhDvVmV3hkg493Z/BJlAwHkK8MxV03FRB4r9VwJUuS7b1tOGH+a2+U9pX50KoXfrklreHlC1xg+VKdykCAs6fefzGHJmy3wKl0EOyj8oS4QEOpPV6yFw+mHfbAAsO/B1AOv+s+QgWD/Hu56lJwQlQ/1Lg3aJ3mhZVfAYdSs0nPMUYhFxazMBkYR6rFAuJcnI/q9coh0W8mlE4vF2/vgQEJPKplNngMy5ObJSLskIPBsUZEKW4P4m6L8y+pJg3UkBlkPSvYOPeWgr3FKptErpHW/ILYIHqobUHBBZiGEnGX7SVt
key fingerprint sha256: 81c507a8b209e8c55435319fa62a2f115d59ef116b2e62b9bc7fafeb2d420ffb
Decrypt it & read the pick
Decryption key (released after the match)
11abe377c91e90a218a1398d87217677ad72c2c41e1747d002ec041232a785f7
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("vEvt142Dw6RLaEUibh0qBQeOpeBz4o6TkoF6VkkoKwLb1XdS0Hx+q76lcOLhDvVmV3hkg493Z/BJlAwHkK8MxV03FRB4r9VwJUuS7b1tOGH+a2+U9pX50KoXfrklreHlC1xg+VKdykCAs6fefzGHJmy3wKl0EOyj8oS4QEOpPV6yFw+mHfbAAsO/B1AOv+s+QgWD/Hu56lJwQlQ/1Lg3aJ3mhZVfAYdSs0nPMUYhFxazMBkYR6rFAuJcnI/q9coh0W8mlE4vF2/vgQEJPKplNngMy5ObJSLskIPBsUZEKW4P4m6L8y+pJg3UkBlkPSvYOPeWgr3FKptErpHW/ILYIHqobUHBBZiGEnGX7SVt"), c => c.charCodeAt(0));
const key  = Uint8Array.from("11abe377c91e90a218a1398d87217677ad72c2c41e1747d002ec041232a785f7".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): 11abe377c91e90a218a1398d87217677ad72c2c41e1747d002ec041232a785f7
  • IV / nonce (hex): bc4bedd78d83c3a44b684522
  • Ciphertext (hex): 6e1d2a05078ea5e073e28e9392817a5649282b02dbd57752d07c7eabbea570e2e10ef566577864838f7767f049940c0790af0cc55d37151078afd570254b92edbd6d3861fe6b6f94f695f9d0aa177eb925ade1e50b5c60f9529dca4080b3a7de7f3187266cb7c0a97410eca3f284b84043a93d5eb2170fa61df6c002c3bf07500ebfeb3e420583fc7bb9ea527042543fd4b837689de685955f018752b349cf3146211716b330191847aac502e25c9c8feaf5ca21d16f26944e2f176fef8101093caa6536780ccb939b2522ec9083c1b14644296e0fe26e8bf32fa9260dd49019643d2bd838f79682bdc52a9b44ae91d6fc82
  • Auth tag (hex): d8207aa86d41c1059886127197ed256d

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