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

Nantong Zhiyun vs Shaanxi Union

League One · China · 22 Aug 2026, 11:30 UTC

Final score
4 : 1
Result
Won
Pick
Nantong Zhiyun
Market
1X2
CLV vs fair close
+8.97%
Model prob.
52.9%
Best price
2.00
Min odds
1.93
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)
9KSB4NGuaSpWUhknDj4EbrtHjK0n95rHNMmow9C+o3I1gGNR2Xnq4Y+v+KlknmClHBASncULLi1kSjH/+kdNYvZd/zvv5ZuKgmHDofgeMi+VnwoVa+OudXDzgReH45YvU6Lwd2orD/qZ7ncN8cxeq6Gc/PmRVf61XGjXBESBP6imeJSQxzOdZsnwo8Y5Mn3pX5/UMOabN+xS5KeJEqfMFTffeQ0ourW3bnFK9eGW6ojq17LonicOlBs2eu2kAMon9GCViMNEbdRF5MLnt9/oDcOBjJpKhnuodXi1EnXmqujksg5jqJWxsCjSlq6opjUiNWTr0I7D0RFJHjTjwf6B4ZgG5ZlrpcFbWuKYQw==
key fingerprint sha256: d984c51a6e4a4526ebc9a82fd71f124453c0ab99d92e96d51f3ff29046b04c46
Decrypt it & read the pick
Decryption key (released after the match)
9bead192b558d79cfb22d0d100b2db1c8bfd8a8ee754fda68bfcef30402e832c
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("9KSB4NGuaSpWUhknDj4EbrtHjK0n95rHNMmow9C+o3I1gGNR2Xnq4Y+v+KlknmClHBASncULLi1kSjH/+kdNYvZd/zvv5ZuKgmHDofgeMi+VnwoVa+OudXDzgReH45YvU6Lwd2orD/qZ7ncN8cxeq6Gc/PmRVf61XGjXBESBP6imeJSQxzOdZsnwo8Y5Mn3pX5/UMOabN+xS5KeJEqfMFTffeQ0ourW3bnFK9eGW6ojq17LonicOlBs2eu2kAMon9GCViMNEbdRF5MLnt9/oDcOBjJpKhnuodXi1EnXmqujksg5jqJWxsCjSlq6opjUiNWTr0I7D0RFJHjTjwf6B4ZgG5ZlrpcFbWuKYQw=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("9bead192b558d79cfb22d0d100b2db1c8bfd8a8ee754fda68bfcef30402e832c".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): 9bead192b558d79cfb22d0d100b2db1c8bfd8a8ee754fda68bfcef30402e832c
  • IV / nonce (hex): f4a481e0d1ae692a56521927
  • Ciphertext (hex): 0e3e046ebb478cad27f79ac734c9a8c3d0bea37235806351d979eae18faff8a9649e60a51c10129dc50b2e2d644a31fffa474d62f65dff3befe59b8a8261c3a1f81e322f959f0a156be3ae7570f3811787e3962f53a2f0776a2b0ffa99ee770df1cc5eaba19cfcf99155feb55c68d70444813fa8a6789490c7339d66c9f0a3c639327de95f9fd430e69b37ec52e4a78912a7cc1537df790d28bab5b76e714af5e196ea88ead7b2e89e270e941b367aeda400ca27f4609588c3446dd445e4c2e7b7dfe80dc3818c9a4a867ba87578b51275e6aae8e4b20e63a895b1b028d296aea8a635223564ebd08ec3d111491e34e3
  • Auth tag (hex): c1fe81e19806e5996ba5c15b5ae29843

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