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

Dangjin Citizen vs Jeonbuk Motors II

K3 League · South Korea · 18 Jul 2026, 10:00 UTC

Final score
2 : 0
Result
Won
Pick
Dangjin Citizen
Market
1x2
Model prob.
64.1%
Best price
1.75
Min odds
1.67
Stake factor
1.90

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)
evnsCQHXlthfymxaQl3XvwWDpv8ttj4dlFaDtHdidXbsfNkF2BG+ejEdvxLRire1qlQJTayPctgqY6Z6gE+AMtH9iRpQUA0SHcODNYDpljnm0wROFIW+78xa9KwX7bLgrJCfE+FwLzIcayGvOyHUBBrnshk8yXnnyLYmVlrcSReJU4kGknCEXyd+sBU29tVS7N5SWCNxihLtFdui9BwnFSFE4Ml+3Ms2T0pCmBtBwd+jlH1I1m19l80QFt5qOqvzI/hnrsFaKcaxZBMq3dtIpzDvWxLqNlNX1hn+DRTBUssIkqcNA3+S9dssmMKJweKypgFDyYM+qm1ktteihcTMjGIJ/5TqlFU7Vqfp3DtR13I=
key fingerprint sha256: dd1ff16af11ded9dfdaddf9ac70e10a0d1495a1563437eb3e77124d2b9dc1f0f
Decrypt it & read the pick
Decryption key (released after the match)
0a81627d92367659eae2fed4dd51a4feed5f119dc8edb45bf692a8354d4cefcc
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("evnsCQHXlthfymxaQl3XvwWDpv8ttj4dlFaDtHdidXbsfNkF2BG+ejEdvxLRire1qlQJTayPctgqY6Z6gE+AMtH9iRpQUA0SHcODNYDpljnm0wROFIW+78xa9KwX7bLgrJCfE+FwLzIcayGvOyHUBBrnshk8yXnnyLYmVlrcSReJU4kGknCEXyd+sBU29tVS7N5SWCNxihLtFdui9BwnFSFE4Ml+3Ms2T0pCmBtBwd+jlH1I1m19l80QFt5qOqvzI/hnrsFaKcaxZBMq3dtIpzDvWxLqNlNX1hn+DRTBUssIkqcNA3+S9dssmMKJweKypgFDyYM+qm1ktteihcTMjGIJ/5TqlFU7Vqfp3DtR13I="), c => c.charCodeAt(0));
const key  = Uint8Array.from("0a81627d92367659eae2fed4dd51a4feed5f119dc8edb45bf692a8354d4cefcc".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): 0a81627d92367659eae2fed4dd51a4feed5f119dc8edb45bf692a8354d4cefcc
  • IV / nonce (hex): 7af9ec0901d796d85fca6c5a
  • Ciphertext (hex): 425dd7bf0583a6ff2db63e1d945683b477627576ec7cd905d811be7a311dbf12d18ab7b5aa54094dac8f72d82a63a67a804f8032d1fd891a50500d121dc3833580e99639e6d3044e1485beefcc5af4ac17edb2e0ac909f13e1702f321c6b21af3b21d4041ae7b2193cc979e7c8b626565adc4917895389069270845f277eb01536f6d552ecde525823718a12ed15dba2f41c27152144e0c97edccb364f4a42981b41c1dfa3947d48d66d7d97cd1016de6a3aabf323f867aec15a29c6b164132adddb48a730ef5b12ea365357d619fe0d14c152cb0892a70d037f92f5db2c98c289c1e2b2a60143c9833eaa6d64b6d7a285c4cc8c
  • Auth tag (hex): 6209ff94ea94553b56a7e9dc3b51d772

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