Montrose vs Cove Rangers
League One · Scotland · 12 Sept 2026, 14:00 UTC
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.
mw560bNlzZwp+EpMOQQ9Pq8JB4x6shzb7O91wds0TARlpelBIKgaAtfRu86/53pGQJXTWy2JnDrjn7unyhvHN10ptG+1z8xAnlt0LeB+dKHB9oRxedqXLSuLzsVL7bif7QyJZqLAvh7rEnUYYjFL18PRSLx0MhdJc+AOyL70yrQg/DrlqInwKDaSulHiJaF3P2NQsF2nQ67DKNjvetOvI1BAXF9CaA9Z26iva5T7VVN2N+W73/RKfSaRwa6dc2W23JuQXUSmq7O5Huw/8VzjJ1Yr6uS4dlnMPAMIhuEbRFiO/hQ6cf6HPrJjUyKAi1qJom2CoaNVlS2mVGhkR1O6ZNQ0pdgpFB3xHYWrKw==
f6c0a6a99d75a449919210f99f7be44aa8d9460b0156bdfcaeee81d5c541271eDecrypt 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 F12 → Console),
paste this, press Enter — it decrypts the exact pick shown above:
const blob = Uint8Array.from(atob("mw560bNlzZwp+EpMOQQ9Pq8JB4x6shzb7O91wds0TARlpelBIKgaAtfRu86/53pGQJXTWy2JnDrjn7unyhvHN10ptG+1z8xAnlt0LeB+dKHB9oRxedqXLSuLzsVL7bif7QyJZqLAvh7rEnUYYjFL18PRSLx0MhdJc+AOyL70yrQg/DrlqInwKDaSulHiJaF3P2NQsF2nQ67DKNjvetOvI1BAXF9CaA9Z26iva5T7VVN2N+W73/RKfSaRwa6dc2W23JuQXUSmq7O5Huw/8VzjJ1Yr6uS4dlnMPAMIhuEbRFiO/hQ6cf6HPrJjUyKAi1qJom2CoaNVlS2mVGhkR1O6ZNQ0pdgpFB3xHYWrKw=="), c => c.charCodeAt(0));
const key = Uint8Array.from("f6c0a6a99d75a449919210f99f7be44aa8d9460b0156bdfcaeee81d5c541271e".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):
f6c0a6a99d75a449919210f99f7be44aa8d9460b0156bdfcaeee81d5c541271e - IV / nonce (hex):
9b0e7ad1b365cd9c29f84a4c - Ciphertext (hex):
39043d3eaf09078c7ab21cdbecef75c1db344c0465a5e94120a81a02d7d1bbcebfe77a464095d35b2d899c3ae39fbba7ca1bc7375d29b46fb5cfcc409e5b742de07e74a1c1f6847179da972d2b8bcec54bedb89fed0c8966a2c0be1eeb12751862314bd7c3d148bc7432174973e00ec8bef4cab420fc3ae5a889f0283692ba51e225a1773f6350b05da743aec328d8ef7ad3af2350405c5f42680f59dba8af6b94fb55537637e5bbdff44a7d2691c1ae9d7365b6dc9b905d44a6abb3b91eec3ff15ce327562beae4b87659cc3c030886e11b44588efe143a71fe873eb2635322808b5a89a26d82a1a355952da6546864 - Auth tag (hex):
4753ba64d434a5d829141df11d85ab2b
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:
- Download the sealed batch file (.jsonl) and its proof (.ots) from GitHub.
- Drop both into opentimestamps.org (or run
ots verify *.ots). It replays the proof and confirms the Bitcoin block and its UTC time. - See it independently: block #966344 · 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.