Verify these instant wins
Instantly Win A Jellycat Bundle #1 is an instant-win competition: certain ticket numbers carry a prize, and those numbers are shown on the competition page from the moment it opens. What makes it fair is simple: you can’t choose or guess which ticket number you’ll get. It’s given to you at random when you buy, so no one can go after a winning ticket.
Two things make that true, and you can check both below:
- The list of which number wins which prize was fixed before any ticket sold, and shown openly the whole time, so it can’t be changed.
- Your ticket number is handed out at random, so nobody can line up to win.
How ticket numbers are assigned
On this competition you don’t choose your ticket number, and it isn’t simply the next number in order. When you buy, the system gives you a number using a secret shuffle that was set when the competition opened, before anyone had bought a ticket, and can’t be changed after.
Because that shuffle is secret and gives everyone a different number:
- Two people can never end up with the same number.
- Nobody, not you and not us, can guess or aim for a number in advance, so no one can go after a winning ticket. The prizes are shown openly against each number; the thing that’s random is which number you’re given.
- Your number is fixed the instant you buy, and recorded straight away.
We keep the shuffle secret so no one can work out in advance which number a purchase will get, which is what stops anyone targeting a winning ticket. Every number that’s given out still appears in the competition’s entrants list, so the numbers in play are public and can’t be quietly changed later.
You can see them: every entry and its ticket number is listed on the competition’s entrants page.
Prove the shuffle yourself
When the competition opened we published a fingerprint of the secret shuffle key, so it’s on record as fixed before anyone bought:
- Shuffle-key fingerprint (published at open)
081794527139d73c5bd5ed00694103e1f172281ae3a8011ea44de1c94f6493a2- The shuffle key itself (revealed now the competition has ended)
dlOJ1h8WueD8F18VOo2QXZgBgLcoGWNTe2QCKsvZ
First check the key matches the fingerprint published at open, then re-run the shuffle for yourself: feed each position 1, 2, 3… through it and you get the 2,520 ticket numbers in the pool, each exactly once. If it matches the fingerprint and produces a complete set with no repeats, the numbers were genuine and untouched.
Show the method
// 1. the key matches the fingerprint published at open:
printf '%s' 'dlOJ1h8WueD8F18VOo2QXZgBgLcoGWNTe2QCKsvZ' | sha256sum // => 081794527139d73c5bd5ed00694103e1f172281ae3a8011ea44de1c94f6493a2
// 2. re-run the shuffle: position -> ticket number
$seed = 'dlOJ1h8WueD8F18VOo2QXZgBgLcoGWNTe2QCKsvZ';
$domain = 2520; // the pool the numbers are shuffled within
$prf = fn($v,$r) => (int) hexdec(substr(hash('sha256', "$seed:$r:$v"), 0, 8));
$permute = function(int $pos) use ($domain, $prf) {
$half = (int) ceil(((int) ceil(log($domain, 2))) / 2);
$mask = (1 << $half) - 1;
$x = $pos - 1;
do {
$l = ($x >> $half) & $mask; $r = $x & $mask;
for ($i = 0; $i < 4; $i++) { $n = $l ^ ($prf($r, $i) & $mask); $l = $r; $r = $n; }
$x = ($l << $half) | $r;
} while ($x >= $domain);
return $x + 1;
};
// $permute(1), $permute(2), ... are the ticket numbers, in the order they were issued.
The prize list
Matches the opening commitmentThis is the full list of which prize sits on which ticket. It was fixed when the competition opened, before any ticket sold, and shown on the competition page the whole time, so a prize can’t be quietly moved onto or off a ticket. 140 prize tickets in total · 26 won.
Want to double-check it hasn’t changed? Here’s the technical proof
When the competition opened we took a fingerprint of the exact list: a SHA-256 code that changes completely if even one entry is altered. If the fingerprint from then still matches the list now, nothing has moved.
- Fingerprint recorded when it opened
561509e8b165bc97e0d622f0910aa93cfd02d77c3427cbf5fb6b35d3d488bbf8- Fingerprint of the list shown below
561509e8b165bc97e0d622f0910aa93cfd02d77c3427cbf5fb6b35d3d488bbf8
To reproduce it: each prize ticket is written as ticket:prize_type:amount_pence:prize_id, ordered by ticket number and joined with |; the SHA-256 of that string is the fingerprint.
printf '%s' '1:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|14:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|23:physical:10000:019f7f9f-ccf8-7379-b463-a2af2dc3f1df|25:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|75:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|97:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|144:physical:6000:019f1e1d-de2f-72ca-9db2-92be4ad68261|158:credit:1000:019ef68d-4b98-73d6-9661-cba193d78736|163:credit:1000:019ef68d-4b98-73d6-9661-cba193d78736|170:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|182:physical:6000:019f1e1d-de2f-72ca-9db2-92be4ad68261|184:physical:10000:019f7f9f-ccf8-7379-b463-a2af2dc3f1df|196:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|201:physical:6000:019f1e1d-de2f-72ca-9db2-92be4ad68261|202:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|227:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|241:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|258:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|263:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|313:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|326:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|359:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|379:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|381:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|382:physical:10000:019f7f9f-ccf8-7379-b463-a2af2dc3f1df|397:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|416:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|427:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|440:physical:6000:019f1e1d-de2f-72ca-9db2-92be4ad68261|446:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|470:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|478:credit:1000:019ef68d-4b98-73d6-9661-cba193d78736|481:credit:1000:019ef68d-4b98-73d6-9661-cba193d78736|495:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|513:credit:1000:019ef68d-4b98-73d6-9661-cba193d78736|534:credit:1000:019ef68d-4b98-73d6-9661-cba193d78736|571:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|598:physical:10000:019f7f9f-ccf8-7379-b463-a2af2dc3f1df|616:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|624:physical:6000:019f1e1d-de2f-72ca-9db2-92be4ad68261|634:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|643:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|692:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|703:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|721:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|728:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|734:credit:1000:019ef68d-4b98-73d6-9661-cba193d78736|749:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|806:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|824:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|852:credit:1000:019ef68d-4b98-73d6-9661-cba193d78736|887:physical:6000:019f1e1d-de2f-72ca-9db2-92be4ad68261|902:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|938:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|939:credit:1000:019ef68d-4b98-73d6-9661-cba193d78736|947:credit:1000:019ef68d-4b98-73d6-9661-cba193d78736|962:credit:1000:019ef68d-4b98-73d6-9661-cba193d78736|1007:physical:6000:019f1e1d-de2f-72ca-9db2-92be4ad68261|1012:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1039:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1041:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1055:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1063:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1097:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1125:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1126:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1129:physical:10000:019f7f9f-ccf8-7379-b463-a2af2dc3f1df|1135:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1155:credit:1000:019ef68d-4b98-73d6-9661-cba193d78736|1179:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1185:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1186:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1204:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1222:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1228:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1245:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1248:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1269:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1295:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1308:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1310:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1328:credit:1000:019ef68d-4b98-73d6-9661-cba193d78736|1338:physical:6000:019f1e1d-de2f-72ca-9db2-92be4ad68261|1357:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1386:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1414:physical:10000:019f7f9f-ccf8-7379-b463-a2af2dc3f1df|1429:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1454:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1465:credit:1000:019ef68d-4b98-73d6-9661-cba193d78736|1488:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1509:physical:10000:019f7f9f-ccf8-7379-b463-a2af2dc3f1df|1541:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1554:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1560:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1563:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1590:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1610:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1638:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1658:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1661:credit:1000:019ef68d-4b98-73d6-9661-cba193d78736|1667:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1669:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1672:credit:1000:019ef68d-4b98-73d6-9661-cba193d78736|1675:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1725:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1735:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1761:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1772:physical:10000:019f7f9f-ccf8-7379-b463-a2af2dc3f1df|1838:physical:10000:019f7f9f-ccf8-7379-b463-a2af2dc3f1df|1854:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1860:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1871:credit:1000:019ef68d-4b98-73d6-9661-cba193d78736|1895:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|1897:credit:1000:019ef68d-4b98-73d6-9661-cba193d78736|1915:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|2012:physical:6000:019f1e1d-de2f-72ca-9db2-92be4ad68261|2015:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|2051:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|2058:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|2060:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|2092:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|2097:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|2099:credit:1000:019ef68d-4b98-73d6-9661-cba193d78736|2162:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|2166:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|2242:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|2250:physical:10000:019f7f9f-ccf8-7379-b463-a2af2dc3f1df|2267:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|2297:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|2311:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|2338:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|2342:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|2354:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|2369:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|2415:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|2419:physical:6000:019f1e1d-de2f-72ca-9db2-92be4ad68261|2425:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|2426:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500|2430:credit:1000:019ef68d-4b98-73d6-9661-cba193d78736|2447:credit:200:019ef68d-d42f-730c-88db-2a4aaf2f4500' | sha256sum
Every prize-bearing ticket, and who won it
| Ticket | Prize | Winner |
|---|---|---|
| #1 | £2.00 site credit | unclaimed |
| #14 | £2.00 site credit | Amy R. |
| #23 | Choose Your Own Jellycat Plushie(s) worth £100 | unclaimed |
| #25 | £2.00 site credit | unclaimed |
| #75 | £2.00 site credit | unclaimed |
| #97 | £2.00 site credit | Katie A. |
| #144 | Choose Your Own Jellycat Plushie(s) worth £60 | unclaimed |
| #158 | £10.00 site credit | unclaimed |
| #163 | £10.00 site credit | unclaimed |
| #170 | £2.00 site credit | unclaimed |
| #182 | Choose Your Own Jellycat Plushie(s) worth £60 | Jadine C. |
| #184 | Choose Your Own Jellycat Plushie(s) worth £100 | unclaimed |
| #196 | £2.00 site credit | Laura W. |
| #201 | Choose Your Own Jellycat Plushie(s) worth £60 | unclaimed |
| #202 | £2.00 site credit | unclaimed |
| #227 | £2.00 site credit | unclaimed |
| #241 | £2.00 site credit | unclaimed |
| #258 | £2.00 site credit | unclaimed |
| #263 | £2.00 site credit | unclaimed |
| #313 | £2.00 site credit | Jennifer N. |
| #326 | £2.00 site credit | unclaimed |
| #359 | £2.00 site credit | unclaimed |
| #379 | £2.00 site credit | unclaimed |
| #381 | £2.00 site credit | unclaimed |
| #382 | Choose Your Own Jellycat Plushie(s) worth £100 | Adam P. |
| #397 | £2.00 site credit | unclaimed |
| #416 | £2.00 site credit | unclaimed |
| #427 | £2.00 site credit | unclaimed |
| #440 | Choose Your Own Jellycat Plushie(s) worth £60 | Amy R. from Washington |
| #446 | £2.00 site credit | Olivia G. |
| #470 | £2.00 site credit | unclaimed |
| #478 | £10.00 site credit | unclaimed |
| #481 | £10.00 site credit | unclaimed |
| #495 | £2.00 site credit | unclaimed |
| #513 | £10.00 site credit | unclaimed |
| #534 | £10.00 site credit | unclaimed |
| #571 | £2.00 site credit | unclaimed |
| #598 | Choose Your Own Jellycat Plushie(s) worth £100 | unclaimed |
| #616 | £2.00 site credit | unclaimed |
| #624 | Choose Your Own Jellycat Plushie(s) worth £60 | Cara B. from Wigton |
| #634 | £2.00 site credit | unclaimed |
| #643 | £2.00 site credit | unclaimed |
| #692 | £2.00 site credit | unclaimed |
| #703 | £2.00 site credit | unclaimed |
| #721 | £2.00 site credit | unclaimed |
| #728 | £2.00 site credit | Shannon B. |
| #734 | £10.00 site credit | unclaimed |
| #749 | £2.00 site credit | Niamh D. |
| #806 | £2.00 site credit | unclaimed |
| #824 | £2.00 site credit | unclaimed |
| #852 | £10.00 site credit | unclaimed |
| #887 | Choose Your Own Jellycat Plushie(s) worth £60 | Ashley T. from Lee On The Solent |
| #902 | £2.00 site credit | unclaimed |
| #938 | £2.00 site credit | unclaimed |
| #939 | £10.00 site credit | unclaimed |
| #947 | £10.00 site credit | unclaimed |
| #962 | £10.00 site credit | unclaimed |
| #1007 | Choose Your Own Jellycat Plushie(s) worth £60 | unclaimed |
| #1012 | £2.00 site credit | unclaimed |
| #1039 | £2.00 site credit | unclaimed |
| #1041 | £2.00 site credit | unclaimed |
| #1055 | £2.00 site credit | unclaimed |
| #1063 | £2.00 site credit | unclaimed |
| #1097 | £2.00 site credit | unclaimed |
| #1125 | £2.00 site credit | Lindsay M. |
| #1126 | £2.00 site credit | Cara B. |
| #1129 | Choose Your Own Jellycat Plushie(s) worth £100 | unclaimed |
| #1135 | £2.00 site credit | unclaimed |
| #1155 | £10.00 site credit | unclaimed |
| #1179 | £2.00 site credit | unclaimed |
| #1185 | £2.00 site credit | Jadine C. |
| #1186 | £2.00 site credit | unclaimed |
| #1204 | £2.00 site credit | unclaimed |
| #1222 | £2.00 site credit | unclaimed |
| #1228 | £2.00 site credit | unclaimed |
| #1245 | £2.00 site credit | Laura C. |
| #1248 | £2.00 site credit | unclaimed |
| #1269 | £2.00 site credit | unclaimed |
| #1295 | £2.00 site credit | unclaimed |
| #1308 | £2.00 site credit | unclaimed |
| #1310 | £2.00 site credit | unclaimed |
| #1328 | £10.00 site credit | unclaimed |
| #1338 | Choose Your Own Jellycat Plushie(s) worth £60 | unclaimed |
| #1357 | £2.00 site credit | unclaimed |
| #1386 | £2.00 site credit | unclaimed |
| #1414 | Choose Your Own Jellycat Plushie(s) worth £100 | unclaimed |
| #1429 | £2.00 site credit | unclaimed |
| #1454 | £2.00 site credit | Cara B. |
| #1465 | £10.00 site credit | Jadine C. |
| #1488 | £2.00 site credit | unclaimed |
| #1509 | Choose Your Own Jellycat Plushie(s) worth £100 | unclaimed |
| #1541 | £2.00 site credit | unclaimed |
| #1554 | £2.00 site credit | unclaimed |
| #1560 | £2.00 site credit | unclaimed |
| #1563 | £2.00 site credit | unclaimed |
| #1590 | £2.00 site credit | unclaimed |
| #1610 | £2.00 site credit | Amy R. |
| #1638 | £2.00 site credit | unclaimed |
| #1658 | £2.00 site credit | unclaimed |
| #1661 | £10.00 site credit | unclaimed |
| #1667 | £2.00 site credit | Jayne O. |
| #1669 | £2.00 site credit | unclaimed |
| #1672 | £10.00 site credit | unclaimed |
| #1675 | £2.00 site credit | unclaimed |
| #1725 | £2.00 site credit | unclaimed |
| #1735 | £2.00 site credit | Sarah W. |
| #1761 | £2.00 site credit | unclaimed |
| #1772 | Choose Your Own Jellycat Plushie(s) worth £100 | Jadine C. |
| #1838 | Choose Your Own Jellycat Plushie(s) worth £100 | unclaimed |
| #1854 | £2.00 site credit | unclaimed |
| #1860 | £2.00 site credit | unclaimed |
| #1871 | £10.00 site credit | unclaimed |
| #1895 | £2.00 site credit | unclaimed |
| #1897 | £10.00 site credit | Adam P. |
| #1915 | £2.00 site credit | unclaimed |
| #2012 | Choose Your Own Jellycat Plushie(s) worth £60 | unclaimed |
| #2015 | £2.00 site credit | Katie A. |
| #2051 | £2.00 site credit | unclaimed |
| #2058 | £2.00 site credit | unclaimed |
| #2060 | £2.00 site credit | unclaimed |
| #2092 | £2.00 site credit | unclaimed |
| #2097 | £2.00 site credit | unclaimed |
| #2099 | £10.00 site credit | unclaimed |
| #2162 | £2.00 site credit | unclaimed |
| #2166 | £2.00 site credit | unclaimed |
| #2242 | £2.00 site credit | unclaimed |
| #2250 | Choose Your Own Jellycat Plushie(s) worth £100 | unclaimed |
| #2267 | £2.00 site credit | Rebecca T. |
| #2297 | £2.00 site credit | unclaimed |
| #2311 | £2.00 site credit | Jayne O. |
| #2338 | £2.00 site credit | unclaimed |
| #2342 | £2.00 site credit | unclaimed |
| #2354 | £2.00 site credit | unclaimed |
| #2369 | £2.00 site credit | unclaimed |
| #2415 | £2.00 site credit | unclaimed |
| #2419 | Choose Your Own Jellycat Plushie(s) worth £60 | unclaimed |
| #2425 | £2.00 site credit | unclaimed |
| #2426 | £2.00 site credit | unclaimed |
| #2430 | £10.00 site credit | unclaimed |
| #2447 | £2.00 site credit | unclaimed |
See how all our draws work on our fairness & security page, or back to all winners.