forked from isjeffcom/coronvirusFigureUK
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.sql
More file actions
837 lines (794 loc) · 435 KB
/
sample.sql
File metadata and controls
837 lines (794 loc) · 435 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
-- phpMyAdmin SQL Dump
-- version 4.4.15.10
-- https://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Apr 17, 2020 at 05:00 AM
-- Server version: 5.6.47-log
-- PHP Version: 5.6.40
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `corona`
--
-- --------------------------------------------------------
--
-- Table structure for table `current`
--
CREATE TABLE IF NOT EXISTS `current` (
`id` int(11) NOT NULL,
`source` text,
`link` text,
`domId` text,
`confirmed` int(11) DEFAULT NULL,
`death` int(11) DEFAULT NULL,
`cured` int(11) DEFAULT NULL,
`serious` int(11) DEFAULT NULL,
`negative` int(11) DEFAULT NULL,
`suspected` int(11) DEFAULT NULL,
`tested` int(11) DEFAULT NULL,
`test_done` int(11) DEFAULT NULL,
`england` int(11) DEFAULT NULL,
`scotland` int(11) DEFAULT NULL,
`wales` int(11) DEFAULT NULL,
`nireland` int(11) DEFAULT NULL,
`area` text,
`ts` bigint(128) DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `current`
--
INSERT INTO `current` (`id`, `source`, `link`, `domId`, `confirmed`, `death`, `cured`, `serious`, `negative`, `suspected`, `tested`, `test_done`, `england`, `scotland`, `wales`, `nireland`, `area`, `ts`) VALUES
(1, 'UK.GOV', 'https://www.gov.uk/guidance/coronavirus-covid-19-information-for-the-public', 'number-of-cases', 103093, 13729, 0, 0, 224515, 0, 327608, -1, 79489, 7102, 6401, 2201, '[{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":355},{\\"location\\":\\"Barnet\\",\\"number\\":1001},{\\"location\\":\\"Barnsley\\",\\"number\\":415},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":139},{\\"location\\":\\"Bedford\\",\\"number\\":244},{\\"location\\":\\"Bexley\\",\\"number\\":462},{\\"location\\":\\"Birmingham\\",\\"number\\":1982},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":188},{\\"location\\":\\"Blackpool\\",\\"number\\":190},{\\"location\\":\\"Bolton\\",\\"number\\":447},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":259},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":139},{\\"location\\":\\"Bradford\\",\\"number\\":460},{\\"location\\":\\"Brent\\",\\"number\\":1086},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":233},{\\"location\\":\\"Bristol, City of\\",\\"number\\":374},{\\"location\\":\\"Bromley\\",\\"number\\":815},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":542},{\\"location\\":\\"Bury\\",\\"number\\":262},{\\"location\\":\\"Calderdale\\",\\"number\\":168},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":441},{\\"location\\":\\"Camden\\",\\"number\\":455},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":309},{\\"location\\":\\"Cheshire East\\",\\"number\\":477},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":473},{\\"location\\":\\"City of London\\",\\"number\\":13},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":349},{\\"location\\":\\"County Durham\\",\\"number\\":770},{\\"location\\":\\"Coventry\\",\\"number\\":459},{\\"location\\":\\"Croydon\\",\\"number\\":1050},{\\"location\\":\\"Cumbria\\",\\"number\\":1345},{\\"location\\":\\"Darlington\\",\\"number\\":157},{\\"location\\":\\"Derby\\",\\"number\\":379},{\\"location\\":\\"Derbyshire\\",\\"number\\":803},{\\"location\\":\\"Devon\\",\\"number\\":460},{\\"location\\":\\"Doncaster\\",\\"number\\":239},{\\"location\\":\\"Dorset\\",\\"number\\":212},{\\"location\\":\\"Dudley\\",\\"number\\":490},{\\"location\\":\\"Ealing\\",\\"number\\":802},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":272},{\\"location\\":\\"East Sussex\\",\\"number\\":383},{\\"location\\":\\"Enfield\\",\\"number\\":570},{\\"location\\":\\"Essex\\",\\"number\\":1647},{\\"location\\":\\"Gateshead\\",\\"number\\":492},{\\"location\\":\\"Gloucestershire\\",\\"number\\":768},{\\"location\\":\\"Greenwich\\",\\"number\\":509},{\\"location\\":\\"Hackney\\",\\"number\\":524},{\\"location\\":\\"Halton\\",\\"number\\":227},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":405},{\\"location\\":\\"Hampshire\\",\\"number\\":1858},{\\"location\\":\\"Haringey\\",\\"number\\":428},{\\"location\\":\\"Harrow\\",\\"number\\":696},{\\"location\\":\\"Hartlepool\\",\\"number\\":79},{\\"location\\":\\"Havering\\",\\"number\\":505},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":127},{\\"location\\":\\"Hertfordshire\\",\\"number\\":1609},{\\"location\\":\\"Hillingdon\\",\\"number\\":554},{\\"location\\":\\"Hounslow\\",\\"number\\":509},{\\"location\\":\\"Isle of Wight\\",\\"number\\":55},{\\"location\\":\\"Islington\\",\\"number\\":337},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":376},{\\"location\\":\\"Kent\\",\\"number\\":1958},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":175},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":317},{\\"location\\":\\"Kirklees\\",\\"number\\":381},{\\"location\\":\\"Knowsley\\",\\"number\\":339},{\\"location\\":\\"Lambeth\\",\\"number\\":950},{\\"location\\":\\"Lancashire\\",\\"number\\":1769},{\\"location\\":\\"Leeds\\",\\"number\\":743},{\\"location\\":\\"Leicester\\",\\"number\\":427},{\\"location\\":\\"Leicestershire\\",\\"number\\":581},{\\"location\\":\\"Lewisham\\",\\"number\\":732},{\\"location\\":\\"Lincolnshire\\",\\"number\\":531},{\\"location\\":\\"Liverpool\\",\\"number\\":1010},{\\"location\\":\\"Luton\\",\\"number\\":387},{\\"location\\":\\"Manchester\\",\\"number\\":744},{\\"location\\":\\"Medway\\",\\"number\\":428},{\\"location\\":\\"Merton\\",\\"number\\":526},{\\"location\\":\\"Middlesbrough\\",\\"number\\":325},{\\"location\\":\\"Milton Keynes\\",\\"number\\":331},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":638},{\\"location\\":\\"Newham\\",\\"number\\":809},{\\"location\\":\\"Norfolk\\",\\"number\\":786},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":86},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":142},{\\"location\\":\\"North Somerset\\",\\"number\\":127},{\\"location\\":\\"North Tyneside\\",\\"number\\":339},{\\"location\\":\\"North Yorkshire\\",\\"number\\":542},{\\"location\\":\\"Northamptonshire\\",\\"number\\":784},{\\"location\\":\\"Northumberland\\",\\"number\\":502},{\\"location\\":\\"Nottingham\\",\\"number\\":339},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":755},{\\"location\\":\\"Oldham\\",\\"number\\":378},{\\"location\\":\\"Oxfordshire\\",\\"number\\":1015},{\\"location\\":\\"Peterborough\\",\\"number\\":113},{\\"location\\":\\"Plymouth\\",\\"number\\":176},{\\"location\\":\\"Portsmouth\\",\\"number\\":200},{\\"location\\":\\"Reading\\",\\"number\\":246},{\\"location\\":\\"Redbridge\\",\\"number\\":548},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":195},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":297},{\\"location\\":\\"Rochdale\\",\\"number\\":278},{\\"location\\":\\"Rotherham\\",\\"number\\":407},{\\"location\\":\\"Rutland\\",\\"number\\":12},{\\"location\\":\\"Salford\\",\\"number\\":379},{\\"location\\":\\"Sandwell\\",\\"number\\":624},{\\"location\\":\\"Sefton\\",\\"number\\":560},{\\"location\\":\\"Sheffield\\",\\"number\\":1412},{\\"location\\":\\"Shropshire\\",\\"number\\":287},{\\"location\\":\\"Slough\\",\\"number\\":262},{\\"location\\":\\"Solihull\\",\\"number\\":372},{\\"location\\":\\"Somerset\\",\\"number\\":248},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":223},{\\"location\\":\\"South Tyneside\\",\\"number\\":251},{\\"location\\":\\"Southampton\\",\\"number\\":301},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":229},{\\"location\\":\\"Southwark\\",\\"number\\":1001},{\\"location\\":\\"St. Helens\\",\\"number\\":407},{\\"location\\":\\"Staffordshire\\",\\"number\\":1051},{\\"location\\":\\"Stockport\\",\\"number\\":549},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":217},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":240},{\\"location\\":\\"Suffolk\\",\\"number\\":527},{\\"location\\":\\"Sunderland\\",\\"number\\":729},{\\"location\\":\\"Surrey\\",\\"number\\":1739},{\\"location\\":\\"Sutton\\",\\"number\\":500},{\\"location\\":\\"Swindon\\",\\"number\\":200},{\\"location\\":\\"Tameside\\",\\"number\\":320},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":143},{\\"location\\":\\"Thurrock\\",\\"number\\":207},{\\"location\\":\\"Torbay\\",\\"number\\":107},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":517},{\\"location\\":\\"Trafford\\",\\"number\\":402},{\\"location\\":\\"Wakefield\\",\\"number\\":344},{\\"location\\":\\"Walsall\\",\\"number\\":609},{\\"location\\":\\"Waltham Forest\\",\\"number\\":586},{\\"location\\":\\"Wandsworth\\",\\"number\\":766},{\\"location\\":\\"Warrington\\",\\"number\\":372},{\\"location\\":\\"Warwickshire\\",\\"number\\":742},{\\"location\\":\\"West Berkshire\\",\\"number\\":186},{\\"location\\":\\"West Sussex\\",\\"number\\":679},{\\"location\\":\\"Westminster\\",\\"number\\":510},{\\"location\\":\\"Wigan\\",\\"number\\":354},{\\"location\\":\\"Wiltshire\\",\\"number\\":271},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":163},{\\"location\\":\\"Wirral\\",\\"number\\":623},{\\"location\\":\\"Wokingham\\",\\"number\\":201},{\\"location\\":\\"Wolverhampton\\",\\"number\\":501},{\\"location\\":\\"Worcestershire\\",\\"number\\":718},{\\"location\\":\\"York\\",\\"number\\":153},{\\"location\\":\\"Ayrshire and Arran\\",\\"number\\":503},{\\"location\\":\\"Borders\\",\\"number\\":220},{\\"location\\":\\"Dumfries and Galloway\\",\\"number\\":207},{\\"location\\":\\"Fife\\",\\"number\\":446},{\\"location\\":\\"Forth Valley\\",\\"number\\":400},{\\"location\\":\\"Grampian\\",\\"number\\":389},{\\"location\\":\\"Greater Glasgow and Clyde\\",\\"number\\":1742},{\\"location\\":\\"Highland\\",\\"number\\":184},{\\"location\\":\\"Lanarkshire\\",\\"number\\":911},{\\"location\\":\\"Lothian\\",\\"number\\":1107},{\\"location\\":\\"Orkney\\",\\"number\\":5},{\\"location\\":\\"Shetland\\",\\"number\\":45},{\\"location\\":\\"Tayside\\",\\"number\\":937},{\\"location\\":\\"Eileanan Siar (Western Isles)\\",\\"number\\":6},{\\"location\\":\\"Golden Jubilee National Hospital\\",\\"number\\":0},{\\"location\\":\\"Cardiff\\",\\"number\\":1184},{\\"location\\":\\"Rhondda Cynon Taff\\",\\"number\\":660},{\\"location\\":\\"Swansea\\",\\"number\\":639},{\\"location\\":\\"Newport\\",\\"number\\":565},{\\"location\\":\\"Caerphilly\\",\\"number\\":426},{\\"location\\":\\"Vale of Glamorgan\\",\\"number\\":360},{\\"location\\":\\"Carmarthenshire\\",\\"number\\":295},{\\"location\\":\\"Neath Port Talbot\\",\\"number\\":295},{\\"location\\":\\"Bridgend\\",\\"number\\":249},{\\"location\\":\\"Torfaen\\",\\"number\\":234},{\\"location\\":\\"Blaenau Gwent\\",\\"number\\":193},{\\"location\\":\\"Monmouthshire\\",\\"number\\":191},{\\"location\\":\\"Merthyr Tydfil\\",\\"number\\":136},{\\"location\\":\\"Flintshire\\",\\"number\\":133},{\\"location\\":\\"Denbighshire\\",\\"number\\":133},{\\"location\\":\\"Pembrokeshire\\",\\"number\\":130},{\\"location\\":\\"Wrexham\\",\\"number\\":109},{\\"location\\":\\"Gwynedd\\",\\"number\\":103},{\\"location\\":\\"Powys\\",\\"number\\":103},{\\"location\\":\\"Conwy\\",\\"number\\":80},{\\"location\\":\\"Ceredigion\\",\\"number\\":31},{\\"location\\":\\"Northern Ireland\\",\\"number\\":2201}]', 1587069000000),
(2, 'Worldometers', 'https://www.worldometers.info/coronavirus/', 'main_table_countries', 84279, 10612, 344, 1559, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, '', 1586743501000);
-- --------------------------------------------------------
--
-- Table structure for table `current_shadow`
--
CREATE TABLE IF NOT EXISTS `current_shadow` (
`id` int(11) NOT NULL,
`source` text,
`link` text,
`domId` text,
`confirmed` int(11) DEFAULT NULL,
`death` int(11) DEFAULT NULL,
`cured` int(11) DEFAULT NULL,
`serious` int(11) DEFAULT NULL,
`negative` int(11) DEFAULT NULL,
`suspected` int(11) DEFAULT NULL,
`tested` int(11) DEFAULT NULL,
`test_done` int(11) DEFAULT NULL,
`england` int(11) DEFAULT NULL,
`scotland` int(11) DEFAULT NULL,
`wales` int(11) DEFAULT NULL,
`nireland` int(11) DEFAULT NULL,
`area` text,
`ts` bigint(128) DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `current_shadow`
--
INSERT INTO `current_shadow` (`id`, `source`, `link`, `domId`, `confirmed`, `death`, `cured`, `serious`, `negative`, `suspected`, `tested`, `test_done`, `england`, `scotland`, `wales`, `nireland`, `area`, `ts`) VALUES
(1, 'UK.GOV', 'https://www.gov.uk/guidance/coronavirus-covid-19-information-for-the-public', 'number-of-cases', 103093, 13729, 0, 0, 224515, 0, 327608, -1, 79489, 7102, 6401, 2201, '[{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":355},{\\"location\\":\\"Barnet\\",\\"number\\":1001},{\\"location\\":\\"Barnsley\\",\\"number\\":415},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":139},{\\"location\\":\\"Bedford\\",\\"number\\":244},{\\"location\\":\\"Bexley\\",\\"number\\":462},{\\"location\\":\\"Birmingham\\",\\"number\\":1982},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":188},{\\"location\\":\\"Blackpool\\",\\"number\\":190},{\\"location\\":\\"Bolton\\",\\"number\\":447},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":259},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":139},{\\"location\\":\\"Bradford\\",\\"number\\":460},{\\"location\\":\\"Brent\\",\\"number\\":1086},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":233},{\\"location\\":\\"Bristol, City of\\",\\"number\\":374},{\\"location\\":\\"Bromley\\",\\"number\\":815},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":542},{\\"location\\":\\"Bury\\",\\"number\\":262},{\\"location\\":\\"Calderdale\\",\\"number\\":168},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":441},{\\"location\\":\\"Camden\\",\\"number\\":455},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":309},{\\"location\\":\\"Cheshire East\\",\\"number\\":477},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":473},{\\"location\\":\\"City of London\\",\\"number\\":13},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":349},{\\"location\\":\\"County Durham\\",\\"number\\":770},{\\"location\\":\\"Coventry\\",\\"number\\":459},{\\"location\\":\\"Croydon\\",\\"number\\":1050},{\\"location\\":\\"Cumbria\\",\\"number\\":1345},{\\"location\\":\\"Darlington\\",\\"number\\":157},{\\"location\\":\\"Derby\\",\\"number\\":379},{\\"location\\":\\"Derbyshire\\",\\"number\\":803},{\\"location\\":\\"Devon\\",\\"number\\":460},{\\"location\\":\\"Doncaster\\",\\"number\\":239},{\\"location\\":\\"Dorset\\",\\"number\\":212},{\\"location\\":\\"Dudley\\",\\"number\\":490},{\\"location\\":\\"Ealing\\",\\"number\\":802},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":272},{\\"location\\":\\"East Sussex\\",\\"number\\":383},{\\"location\\":\\"Enfield\\",\\"number\\":570},{\\"location\\":\\"Essex\\",\\"number\\":1647},{\\"location\\":\\"Gateshead\\",\\"number\\":492},{\\"location\\":\\"Gloucestershire\\",\\"number\\":768},{\\"location\\":\\"Greenwich\\",\\"number\\":509},{\\"location\\":\\"Hackney\\",\\"number\\":524},{\\"location\\":\\"Halton\\",\\"number\\":227},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":405},{\\"location\\":\\"Hampshire\\",\\"number\\":1858},{\\"location\\":\\"Haringey\\",\\"number\\":428},{\\"location\\":\\"Harrow\\",\\"number\\":696},{\\"location\\":\\"Hartlepool\\",\\"number\\":79},{\\"location\\":\\"Havering\\",\\"number\\":505},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":127},{\\"location\\":\\"Hertfordshire\\",\\"number\\":1609},{\\"location\\":\\"Hillingdon\\",\\"number\\":554},{\\"location\\":\\"Hounslow\\",\\"number\\":509},{\\"location\\":\\"Isle of Wight\\",\\"number\\":55},{\\"location\\":\\"Islington\\",\\"number\\":337},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":376},{\\"location\\":\\"Kent\\",\\"number\\":1958},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":175},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":317},{\\"location\\":\\"Kirklees\\",\\"number\\":381},{\\"location\\":\\"Knowsley\\",\\"number\\":339},{\\"location\\":\\"Lambeth\\",\\"number\\":950},{\\"location\\":\\"Lancashire\\",\\"number\\":1769},{\\"location\\":\\"Leeds\\",\\"number\\":743},{\\"location\\":\\"Leicester\\",\\"number\\":427},{\\"location\\":\\"Leicestershire\\",\\"number\\":581},{\\"location\\":\\"Lewisham\\",\\"number\\":732},{\\"location\\":\\"Lincolnshire\\",\\"number\\":531},{\\"location\\":\\"Liverpool\\",\\"number\\":1010},{\\"location\\":\\"Luton\\",\\"number\\":387},{\\"location\\":\\"Manchester\\",\\"number\\":744},{\\"location\\":\\"Medway\\",\\"number\\":428},{\\"location\\":\\"Merton\\",\\"number\\":526},{\\"location\\":\\"Middlesbrough\\",\\"number\\":325},{\\"location\\":\\"Milton Keynes\\",\\"number\\":331},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":638},{\\"location\\":\\"Newham\\",\\"number\\":809},{\\"location\\":\\"Norfolk\\",\\"number\\":786},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":86},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":142},{\\"location\\":\\"North Somerset\\",\\"number\\":127},{\\"location\\":\\"North Tyneside\\",\\"number\\":339},{\\"location\\":\\"North Yorkshire\\",\\"number\\":542},{\\"location\\":\\"Northamptonshire\\",\\"number\\":784},{\\"location\\":\\"Northumberland\\",\\"number\\":502},{\\"location\\":\\"Nottingham\\",\\"number\\":339},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":755},{\\"location\\":\\"Oldham\\",\\"number\\":378},{\\"location\\":\\"Oxfordshire\\",\\"number\\":1015},{\\"location\\":\\"Peterborough\\",\\"number\\":113},{\\"location\\":\\"Plymouth\\",\\"number\\":176},{\\"location\\":\\"Portsmouth\\",\\"number\\":200},{\\"location\\":\\"Reading\\",\\"number\\":246},{\\"location\\":\\"Redbridge\\",\\"number\\":548},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":195},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":297},{\\"location\\":\\"Rochdale\\",\\"number\\":278},{\\"location\\":\\"Rotherham\\",\\"number\\":407},{\\"location\\":\\"Rutland\\",\\"number\\":12},{\\"location\\":\\"Salford\\",\\"number\\":379},{\\"location\\":\\"Sandwell\\",\\"number\\":624},{\\"location\\":\\"Sefton\\",\\"number\\":560},{\\"location\\":\\"Sheffield\\",\\"number\\":1412},{\\"location\\":\\"Shropshire\\",\\"number\\":287},{\\"location\\":\\"Slough\\",\\"number\\":262},{\\"location\\":\\"Solihull\\",\\"number\\":372},{\\"location\\":\\"Somerset\\",\\"number\\":248},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":223},{\\"location\\":\\"South Tyneside\\",\\"number\\":251},{\\"location\\":\\"Southampton\\",\\"number\\":301},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":229},{\\"location\\":\\"Southwark\\",\\"number\\":1001},{\\"location\\":\\"St. Helens\\",\\"number\\":407},{\\"location\\":\\"Staffordshire\\",\\"number\\":1051},{\\"location\\":\\"Stockport\\",\\"number\\":549},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":217},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":240},{\\"location\\":\\"Suffolk\\",\\"number\\":527},{\\"location\\":\\"Sunderland\\",\\"number\\":729},{\\"location\\":\\"Surrey\\",\\"number\\":1739},{\\"location\\":\\"Sutton\\",\\"number\\":500},{\\"location\\":\\"Swindon\\",\\"number\\":200},{\\"location\\":\\"Tameside\\",\\"number\\":320},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":143},{\\"location\\":\\"Thurrock\\",\\"number\\":207},{\\"location\\":\\"Torbay\\",\\"number\\":107},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":517},{\\"location\\":\\"Trafford\\",\\"number\\":402},{\\"location\\":\\"Wakefield\\",\\"number\\":344},{\\"location\\":\\"Walsall\\",\\"number\\":609},{\\"location\\":\\"Waltham Forest\\",\\"number\\":586},{\\"location\\":\\"Wandsworth\\",\\"number\\":766},{\\"location\\":\\"Warrington\\",\\"number\\":372},{\\"location\\":\\"Warwickshire\\",\\"number\\":742},{\\"location\\":\\"West Berkshire\\",\\"number\\":186},{\\"location\\":\\"West Sussex\\",\\"number\\":679},{\\"location\\":\\"Westminster\\",\\"number\\":510},{\\"location\\":\\"Wigan\\",\\"number\\":354},{\\"location\\":\\"Wiltshire\\",\\"number\\":271},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":163},{\\"location\\":\\"Wirral\\",\\"number\\":623},{\\"location\\":\\"Wokingham\\",\\"number\\":201},{\\"location\\":\\"Wolverhampton\\",\\"number\\":501},{\\"location\\":\\"Worcestershire\\",\\"number\\":718},{\\"location\\":\\"York\\",\\"number\\":153},{\\"location\\":\\"Ayrshire and Arran\\",\\"number\\":503},{\\"location\\":\\"Borders\\",\\"number\\":220},{\\"location\\":\\"Dumfries and Galloway\\",\\"number\\":207},{\\"location\\":\\"Fife\\",\\"number\\":446},{\\"location\\":\\"Forth Valley\\",\\"number\\":400},{\\"location\\":\\"Grampian\\",\\"number\\":389},{\\"location\\":\\"Greater Glasgow and Clyde\\",\\"number\\":1742},{\\"location\\":\\"Highland\\",\\"number\\":184},{\\"location\\":\\"Lanarkshire\\",\\"number\\":911},{\\"location\\":\\"Lothian\\",\\"number\\":1107},{\\"location\\":\\"Orkney\\",\\"number\\":5},{\\"location\\":\\"Shetland\\",\\"number\\":45},{\\"location\\":\\"Tayside\\",\\"number\\":937},{\\"location\\":\\"Eileanan Siar (Western Isles)\\",\\"number\\":6},{\\"location\\":\\"Golden Jubilee National Hospital\\",\\"number\\":0},{\\"location\\":\\"Cardiff\\",\\"number\\":1184},{\\"location\\":\\"Rhondda Cynon Taff\\",\\"number\\":660},{\\"location\\":\\"Swansea\\",\\"number\\":639},{\\"location\\":\\"Newport\\",\\"number\\":565},{\\"location\\":\\"Caerphilly\\",\\"number\\":426},{\\"location\\":\\"Vale of Glamorgan\\",\\"number\\":360},{\\"location\\":\\"Carmarthenshire\\",\\"number\\":295},{\\"location\\":\\"Neath Port Talbot\\",\\"number\\":295},{\\"location\\":\\"Bridgend\\",\\"number\\":249},{\\"location\\":\\"Torfaen\\",\\"number\\":234},{\\"location\\":\\"Blaenau Gwent\\",\\"number\\":193},{\\"location\\":\\"Monmouthshire\\",\\"number\\":191},{\\"location\\":\\"Merthyr Tydfil\\",\\"number\\":136},{\\"location\\":\\"Flintshire\\",\\"number\\":133},{\\"location\\":\\"Denbighshire\\",\\"number\\":133},{\\"location\\":\\"Pembrokeshire\\",\\"number\\":130},{\\"location\\":\\"Wrexham\\",\\"number\\":109},{\\"location\\":\\"Gwynedd\\",\\"number\\":103},{\\"location\\":\\"Powys\\",\\"number\\":103},{\\"location\\":\\"Conwy\\",\\"number\\":80},{\\"location\\":\\"Ceredigion\\",\\"number\\":31},{\\"location\\":\\"Northern Ireland\\",\\"number\\":2201}]', 1587069000000),
(2, 'Worldometers', 'https://www.worldometers.info/coronavirus/', 'main_table_countries', 84279, 10612, 344, 1559, 0, 0, NULL, NULL, NULL, NULL, NULL, NULL, '', 1586743501000);
-- --------------------------------------------------------
--
-- Table structure for table `err`
--
CREATE TABLE IF NOT EXISTS `err` (
`id` int(11) NOT NULL,
`source` text NOT NULL,
`reason` text NOT NULL,
`detail` text NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=289 DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `err`
--
INSERT INTO `err` (`id`, `source`, `reason`, `detail`) VALUES
(1, 'NHS', 'no death', 'As,of,9am,on,16,March,2020,,44,105,people,have,been,tested,in,the,UK,,of,which,42,562,were,confirmed,negative,and,1,543,were,confirmed,as,positive.'),
(2, 'NHS', 'no death', 'As,of,9am,on,16,March,2020,,44,105,people,have,been,tested,in,the,UK,,of,which,42,562,were,confirmed,negative,and,1,543,were,confirmed,as,positive.'),
(3, 'NHS', 'no death', 'As,of,9am,on,16,March,2020,,44,105,people,have,been,tested,in,the,UK,,of,which,42,562,were,confirmed,negative,and,1,543,were,confirmed,as,positive.'),
(4, 'NHS', 'no death', 'As,of,9am,on,16,March,2020,,44,105,people,have,been,tested,in,the,UK,,of,which,42,562,were,confirmed,negative,and,1,543,were,confirmed,as,positive.'),
(5, 'NHS', 'no death', 'As,of,9am,on,16,March,2020,,44,105,people,have,been,tested,in,the,UK,,of,which,42,562,were,confirmed,negative,and,1,543,were,confirmed,as,positive.'),
(6, 'NHS', 'no death', 'As,of,9am,on,16,March,2020,,44,105,people,have,been,tested,in,the,UK,,of,which,42,562,were,confirmed,negative,and,1,543,were,confirmed,as,positive.'),
(7, 'NHS', 'no death', 'As,of,9am,on,16,March,2020,,44,105,people,have,been,tested,in,the,UK,,of,which,42,562,were,confirmed,negative,and,1,543,were,confirmed,as,positive.'),
(8, 'NHS', 'no death', 'As,of,9am,on,16,March,2020,,44,105,people,have,been,tested,in,the,UK,,of,which,42,562,were,confirmed,negative,and,1,543,were,confirmed,as,positive.'),
(9, 'NHS', 'no death', 'As,of,9am,on,16,March,2020,,44,105,people,have,been,tested,in,the,UK,,of,which,42,562,were,confirmed,negative,and,1,543,were,confirmed,as,positive.'),
(10, 'NHS', 'no death', 'As,of,9am,on,16,March,2020,,44,105,people,have,been,tested,in,the,UK,,of,which,42,562,were,confirmed,negative,and,1,543,were,confirmed,as,positive.'),
(11, 'NHS', 'no death', 'As,of,9am,on,16,March,2020,,44,105,people,have,been,tested,in,the,UK,,of,which,42,562,were,confirmed,negative,and,1,543,were,confirmed,as,positive.'),
(12, 'NHS', 'no death', 'As,of,9am,on,16,March,2020,,44,105,people,have,been,tested,in,the,UK,,of,which,42,562,were,confirmed,negative,and,1,543,were,confirmed,as,positive.'),
(13, 'NHS', 'no death', 'As,of,9am,on,16,March,2020,,44,105,people,have,been,tested,in,the,UK,,of,which,42,562,were,confirmed,negative,and,1,543,were,confirmed,as,positive.'),
(14, 'NHS', 'no death', 'As,of,9am,on,16,March,2020,,44,105,people,have,been,tested,in,the,UK,,of,which,42,562,were,confirmed,negative,and,1,543,were,confirmed,as,positive.'),
(15, 'NHS', 'no death', 'As,of,9am,on,16,March,2020,,44,105,people,have,been,tested,in,the,UK,,of,which,42,562,were,confirmed,negative,and,1,543,were,confirmed,as,positive.'),
(16, 'NHS', 'no death', 'As,of,9am,on,16,March,2020,,44,105,people,have,been,tested,in,the,UK,,of,which,42,562,were,confirmed,negative,and,1,543,were,confirmed,as,positive.'),
(17, 'NHS', 'no death', 'As,of,9am,on,16,March,2020,,44,105,people,have,been,tested,in,the,UK,,of,which,42,562,were,confirmed,negative,and,1,543,were,confirmed,as,positive.'),
(18, 'NHS', 'no death', 'As,of,9am,on,16,March,2020,,44,105,people,have,been,tested,in,the,UK,,of,which,42,562,were,confirmed,negative,and,1,543,were,confirmed,as,positive.'),
(19, 'NHS', 'no death', 'As,of,9am,on,16,March,2020,,44,105,people,have,been,tested,in,the,UK,,of,which,42,562,were,confirmed,negative,and,1,543,were,confirmed,as,positive.'),
(20, 'NHS', 'no death', 'As,of,9am,on,16,March,2020,,44,105,people,have,been,tested,in,the,UK,,of,which,42,562,were,confirmed,negative,and,1,543,were,confirmed,as,positive.'),
(21, 'NHS', 'no death', 'As,of,9am,on,16,March,2020,,44,105,people,have,been,tested,in,the,UK,,of,which,42,562,were,confirmed,negative,and,1,543,were,confirmed,as,positive.'),
(22, 'NHS', 'no death', 'As,of,9am,on,16,March,2020,,44,105,people,have,been,tested,in,the,UK,,of,which,42,562,were,confirmed,negative,and,1,543,were,confirmed,as,positive.'),
(23, 'NHS', 'no death', 'As,of,9am,on,16,March,2020,,44,105,people,have,been,tested,in,the,UK,,of,which,42,562,were,confirmed,negative,and,1,543,were,confirmed,as,positive.'),
(24, 'NHS', 'no death', 'As,of,9am,on,16,March,2020,,44,105,people,have,been,tested,in,the,UK,,of,which,42,562,were,confirmed,negative,and,1,543,were,confirmed,as,positive.'),
(25, 'NHS', 'no death', 'As,of,9am,on,16,March,2020,,44,105,people,have,been,tested,in,the,UK,,of,which,42,562,were,confirmed,negative,and,1,543,were,confirmed,as,positive.'),
(26, 'NHS', 'no death', 'As,of,9am,on,16,March,2020,,44,105,people,have,been,tested,in,the,UK,,of,which,42,562,were,confirmed,negative,and,1,543,were,confirmed,as,positive.'),
(27, 'NHS', 'no death', 'As,of,9am,on,16,March,2020,,44,105,people,have,been,tested,in,the,UK,,of,which,42,562,were,confirmed,negative,and,1,543,were,confirmed,as,positive.'),
(28, 'NHS', 'no death', 'As,of,9am,on,16,March,2020,,44,105,people,have,been,tested,in,the,UK,,of,which,42,562,were,confirmed,negative,and,1,543,were,confirmed,as,positive.'),
(29, 'NHS', 'no death', 'As,of,9am,on,17,March,2020,,50,442,people,have,been,tested,in,the,UK,,of,which,48,492,were,confirmed,negative,and,1,950,were,confirmed,as,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(30, 'NHS', 'no death', 'As,of,9am,on,17,March,2020,,50,442,people,have,been,tested,in,the,UK,,of,which,48,492,were,confirmed,negative,and,1,950,were,confirmed,as,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(31, 'NHS', 'no death', 'As,of,9am,on,17,March,2020,,50,442,people,have,been,tested,in,the,UK,,of,which,48,492,were,confirmed,negative,and,1,950,were,confirmed,as,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(32, 'NHS', 'no death', 'As,of,9am,on,17,March,2020,,50,442,people,have,been,tested,in,the,UK,,of,which,48,492,were,confirmed,negative,and,1,950,were,confirmed,as,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(33, 'NHS', 'no death', 'As,of,9am,on,17,March,2020,,50,442,people,have,been,tested,in,the,UK,,of,which,48,492,were,confirmed,negative,and,1,950,were,confirmed,as,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(34, 'NHS', 'no death', 'As,of,9am,on,17,March,2020,,50,442,people,have,been,tested,in,the,UK,,of,which,48,492,were,confirmed,negative,and,1,950,were,confirmed,as,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(35, 'NHS', 'no death', 'As,of,9am,on,17,March,2020,,50,442,people,have,been,tested,in,the,UK,,of,which,48,492,were,confirmed,negative,and,1,950,were,confirmed,as,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(36, 'NHS', 'no death', 'As,of,9am,on,17,March,2020,,50,442,people,have,been,tested,in,the,UK,,of,which,48,492,were,confirmed,negative,and,1,950,were,confirmed,as,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(37, 'NHS', 'no death', 'As,of,9am,on,17,March,2020,,50,442,people,have,been,tested,in,the,UK,,of,which,48,492,were,confirmed,negative,and,1,950,were,confirmed,as,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(38, 'NHS', 'no death', 'As,of,9am,on,17,March,2020,,50,442,people,have,been,tested,in,the,UK,,of,which,48,492,were,confirmed,negative,and,1,950,were,confirmed,as,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(39, 'NHS', 'no death', 'As,of,9am,on,17,March,2020,,50,442,people,have,been,tested,in,the,UK,,of,which,48,492,were,confirmed,negative,and,1,950,were,confirmed,as,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(40, 'NHS', 'no death', 'As,of,9am,on,17,March,2020,,50,442,people,have,been,tested,in,the,UK,,of,which,48,492,were,confirmed,negative,and,1,950,were,confirmed,as,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(41, 'NHS', 'no death', 'As,of,9am,on,17,March,2020,,50,442,people,have,been,tested,in,the,UK,,of,which,48,492,were,confirmed,negative,and,1,950,were,confirmed,as,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(42, 'NHS', 'no death', 'As,of,9am,on,17,March,2020,,50,442,people,have,been,tested,in,the,UK,,of,which,48,492,were,confirmed,negative,and,1,950,were,confirmed,as,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(43, 'NHS', 'no death', 'As,of,9am,on,17,March,2020,,50,442,people,have,been,tested,in,the,UK,,of,which,48,492,were,confirmed,negative,and,1,950,were,confirmed,as,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(44, 'NHS', 'no death', 'As,of,9am,on,17,March,2020,,50,442,people,have,been,tested,in,the,UK,,of,which,48,492,were,confirmed,negative,and,1,950,were,confirmed,as,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(45, 'NHS', 'no death', 'As,of,9am,on,17,March,2020,,50,442,people,have,been,tested,in,the,UK,,of,which,48,492,were,confirmed,negative,and,1,950,were,confirmed,as,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(46, 'NHS', 'no death', 'As,of,9am,on,17,March,2020,,50,442,people,have,been,tested,in,the,UK,,of,which,48,492,were,confirmed,negative,and,1,950,were,confirmed,as,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(47, 'NHS', 'no death', 'As,of,9am,on,17,March,2020,,50,442,people,have,been,tested,in,the,UK,,of,which,48,492,were,confirmed,negative,and,1,950,were,confirmed,as,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(48, 'NHS', 'no death', 'As,of,9am,on,17,March,2020,,50,442,people,have,been,tested,in,the,UK,,of,which,48,492,were,confirmed,negative,and,1,950,were,confirmed,as,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(49, 'NHS', 'no death', 'As,of,9am,on,17,March,2020,,50,442,people,have,been,tested,in,the,UK,,of,which,48,492,were,confirmed,negative,and,1,950,were,confirmed,as,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(50, 'NHS', 'no death', 'As,of,9am,on,17,March,2020,,50,442,people,have,been,tested,in,the,UK,,of,which,48,492,were,confirmed,negative,and,1,950,were,confirmed,as,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(51, 'NHS', 'no death', 'As,of,9am,on,17,March,2020,,50,442,people,have,been,tested,in,the,UK,,of,which,48,492,were,confirmed,negative,and,1,950,were,confirmed,as,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(52, 'NHS', 'no death', 'As,of,9am,on,17,March,2020,,50,442,people,have,been,tested,in,the,UK,,of,which,48,492,were,confirmed,negative,and,1,950,were,confirmed,as,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(53, 'NHS', 'no death', 'As,of,9am,on,17,March,2020,,50,442,people,have,been,tested,in,the,UK,,of,which,48,492,were,confirmed,negative,and,1,950,were,confirmed,as,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(54, 'NHS', 'no death', 'As,of,9am,on,17,March,2020,,50,442,people,have,been,tested,in,the,UK,,of,which,48,492,were,confirmed,negative,and,1,950,were,confirmed,as,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(55, 'NHS', 'no death', 'As,of,9am,on,17,March,2020,,50,442,people,have,been,tested,in,the,UK,,of,which,48,492,were,confirmed,negative,and,1,950,were,confirmed,as,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(56, 'NHS', 'no death', 'As,of,9am,on,17,March,2020,,50,442,people,have,been,tested,in,the,UK,,of,which,48,492,were,confirmed,negative,and,1,950,were,confirmed,as,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(57, 'NHS', 'no death', 'As,of,9am,on,17,March,2020,,50,442,people,have,been,tested,in,the,UK,,of,which,48,492,were,confirmed,negative,and,1,950,were,confirmed,as,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(58, 'NHS', 'no death', 'As,of,9am,on,17,March,2020,,50,442,people,have,been,tested,in,the,UK,,of,which,48,492,were,confirmed,negative,and,1,950,were,confirmed,as,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(59, 'NHS', 'no death', 'As,of,9am,on,17,March,2020,,50,442,people,have,been,tested,in,the,UK,,of,which,48,492,were,confirmed,negative,and,1,950,were,confirmed,as,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(60, 'NHS', 'no death', 'As,of,9am,on,17,March,2020,,50,442,people,have,been,tested,in,the,UK,,of,which,48,492,were,confirmed,negative,and,1,950,were,confirmed,as,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(61, 'NHS', 'no death', 'As,of,9am,on,17,March,2020,,50,442,people,have,been,tested,in,the,UK,,of,which,48,492,were,confirmed,negative,and,1,950,were,confirmed,as,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(62, 'NHS', 'no death', 'As,of,9am,on,17,March,2020,,50,442,people,have,been,tested,in,the,UK,,of,which,48,492,were,confirmed,negative,and,1,950,were,confirmed,as,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(63, 'NHS', 'no death', 'As,of,9am,on,17,March,2020,,50,442,people,have,been,tested,in,the,UK,,of,which,48,492,were,confirmed,negative,and,1,950,were,confirmed,as,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(64, 'NHS', 'no death', 'As,of,9am,on,18,March,2020,,56,221,people,have,been,tested,in,the,UK,,of,which,53,595,were,confirmed,negative,and,2,626,were,confirmed,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(65, 'NHS', 'source struct changed', '[object Object]'),
(66, 'NHS', 'no death', 'As,of,9am,on,18,March,2020,,56,221,people,have,been,tested,in,the,UK,,of,which,53,595,were,confirmed,negative,and,2,626,were,confirmed,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(67, 'NHS', 'source struct changed', '[object Object]'),
(68, 'NHS', 'source struct changed', '[object Object]'),
(69, 'NHS', 'no death', 'As,of,9am,on,18,March,2020,,56,221,people,have,been,tested,in,the,UK,,of,which,53,595,were,confirmed,negative,and,2,626,were,confirmed,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(70, 'NHS', 'no death', 'As,of,9am,on,18,March,2020,,56,221,people,have,been,tested,in,the,UK,,of,which,53,595,were,confirmed,negative,and,2,626,were,confirmed,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(71, 'NHS', 'source struct changed', '[object Object]'),
(72, 'NHS', 'no death', 'As,of,9am,on,18,March,2020,,56,221,people,have,been,tested,in,the,UK,,of,which,53,595,were,confirmed,negative,and,2,626,were,confirmed,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(73, 'NHS', 'source struct changed', '[object Object]'),
(74, 'NHS', 'no death', 'As,of,9am,on,18,March,2020,,56,221,people,have,been,tested,in,the,UK,,of,which,53,595,were,confirmed,negative,and,2,626,were,confirmed,positive.,The,latest,confirmed,number,of,deaths,will,be,announced,later,today.'),
(75, 'NHS', 'source struct changed', '[object Object]'),
(76, 'Worldometers', 'timeout', 'Error: Not Found'),
(77, 'Worldometers', 'timeout', 'Error: Not Found'),
(78, 'Worldometers', 'timeout', 'Error: Not Found'),
(79, 'approve', 'no area data', 'none'),
(80, 'approve', 'no area data', 'none'),
(81, 'approve', 'no area data', 'none'),
(82, 'approve', 'no area data', 'none'),
(83, 'approve', 'no area data', 'none'),
(84, 'approve', 'no area data', 'none'),
(85, 'approve', 'no area data', 'none'),
(86, 'approve', 'no area data', 'none'),
(87, 'approve', 'no area data', 'none'),
(88, 'Worldometers', 'source struct changed', '[object Object]'),
(89, 'Worldometers', 'source struct changed', '[object Object]'),
(90, 'Worldometers', 'source struct changed', '[object Object]'),
(91, 'Worldometers', 'source struct changed', '[object Object]'),
(92, 'Worldometers', 'source struct changed', '[object Object]'),
(93, 'Worldometers', 'source struct changed', '[object Object]'),
(94, 'Worldometers', 'source struct changed', '[object Object]'),
(95, 'Worldometers', 'source struct changed', '[object Object]'),
(96, 'Worldometers', 'source struct changed', '[object Object]'),
(97, 'Worldometers', 'source struct changed', '[object Object]'),
(98, 'Worldometers', 'source struct changed', '[object Object]'),
(99, 'Worldometers', 'source struct changed', '[object Object]'),
(100, 'Worldometers', 'source struct changed', '[object Object]'),
(101, 'Worldometers', 'source struct changed', '[object Object]'),
(102, 'Worldometers', 'source struct changed', '[object Object]'),
(103, 'Worldometers', 'source struct changed', '[object Object]'),
(104, 'Worldometers', 'source struct changed', '[object Object]'),
(105, 'Worldometers', 'source struct changed', '[object Object]'),
(106, 'Worldometers', 'source struct changed', '[object Object]'),
(107, 'Worldometers', 'source struct changed', '[object Object]'),
(108, 'Worldometers', 'source struct changed', '[object Object]'),
(109, 'Worldometers', 'source struct changed', '[object Object]'),
(110, 'Worldometers', 'source struct changed', '[object Object]'),
(111, 'Worldometers', 'source struct changed', '[object Object]'),
(112, 'Worldometers', 'source struct changed', '[object Object]'),
(113, 'Worldometers', 'source struct changed', '[object Object]'),
(114, 'Worldometers', 'source struct changed', '[object Object]'),
(115, 'Worldometers', 'source struct changed', '[object Object]'),
(116, 'Worldometers', 'source struct changed', '[object Object]'),
(117, 'Worldometers', 'source struct changed', '[object Object]'),
(118, 'Worldometers', 'source struct changed', '[object Object]'),
(119, 'Worldometers', 'source struct changed', '[object Object]'),
(120, 'Worldometers', 'source struct changed', '[object Object]'),
(121, 'Worldometers', 'source struct changed', '[object Object]'),
(122, 'Worldometers', 'source struct changed', '[object Object]'),
(123, 'Worldometers', 'source struct changed', '[object Object]'),
(124, 'Worldometers', 'source struct changed', '[object Object]'),
(125, 'Worldometers', 'source struct changed', '[object Object]'),
(126, 'Worldometers', 'source struct changed', '[object Object]'),
(127, 'Worldometers', 'source struct changed', '[object Object]'),
(128, 'Worldometers', 'source struct changed', '[object Object]'),
(129, 'Worldometers', 'source struct changed', '[object Object]'),
(130, 'Worldometers', 'source struct changed', '[object Object]'),
(131, 'Worldometers', 'source struct changed', '[object Object]'),
(132, 'Worldometers', 'source struct changed', '[object Object]'),
(133, 'Worldometers', 'source struct changed', '[object Object]'),
(134, 'Worldometers', 'source struct changed', '[object Object]'),
(135, 'Worldometers', 'source struct changed', '[object Object]'),
(136, 'Worldometers', 'source struct changed', '[object Object]'),
(137, 'Worldometers', 'source struct changed', '[object Object]'),
(138, 'Worldometers', 'source struct changed', '[object Object]'),
(139, 'Worldometers', 'source struct changed', '[object Object]'),
(140, 'Worldometers', 'source struct changed', '[object Object]'),
(141, 'Worldometers', 'source struct changed', '[object Object]'),
(142, 'Worldometers', 'source struct changed', '[object Object]'),
(143, 'Worldometers', 'source struct changed', '[object Object]'),
(144, 'Worldometers', 'source struct changed', '[object Object]'),
(145, 'Worldometers', 'source struct changed', '[object Object]'),
(146, 'Worldometers', 'source struct changed', '[object Object]'),
(147, 'Worldometers', 'source struct changed', '[object Object]'),
(148, 'Worldometers', 'source struct changed', '[object Object]'),
(149, 'Worldometers', 'source struct changed', '[object Object]'),
(150, 'Worldometers', 'source struct changed', '[object Object]'),
(151, 'Worldometers', 'source struct changed', '[object Object]'),
(152, 'Worldometers', 'source struct changed', '[object Object]'),
(153, 'Worldometers', 'source struct changed', '[object Object]'),
(154, 'Worldometers', 'source struct changed', '[object Object]'),
(155, 'Worldometers', 'source struct changed', '[object Object]'),
(156, 'Worldometers', 'source struct changed', '[object Object]'),
(157, 'Worldometers', 'source struct changed', '[object Object]'),
(158, 'Worldometers', 'source struct changed', '[object Object]'),
(159, 'Worldometers', 'source struct changed', '[object Object]'),
(160, 'Worldometers', 'source struct changed', '[object Object]'),
(161, 'Worldometers', 'source struct changed', '[object Object]'),
(162, 'Worldometers', 'source struct changed', '[object Object]'),
(163, 'Worldometers', 'source struct changed', '[object Object]'),
(164, 'Worldometers', 'source struct changed', '[object Object]'),
(165, 'Worldometers', 'source struct changed', '[object Object]'),
(166, 'Worldometers', 'source struct changed', '[object Object]'),
(167, 'Worldometers', 'source struct changed', '[object Object]'),
(168, 'Worldometers', 'source struct changed', '[object Object]'),
(169, 'Worldometers', 'source struct changed', '[object Object]'),
(170, 'Worldometers', 'source struct changed', '[object Object]'),
(171, 'Worldometers', 'source struct changed', '[object Object]'),
(172, 'Worldometers', 'source struct changed', '[object Object]'),
(173, 'Worldometers', 'source struct changed', '[object Object]'),
(174, 'Worldometers', 'source struct changed', '[object Object]'),
(175, 'Worldometers', 'source struct changed', '[object Object]'),
(176, 'Worldometers', 'source struct changed', '[object Object]'),
(177, 'Worldometers', 'source struct changed', '[object Object]'),
(178, 'Worldometers', 'source struct changed', '[object Object]'),
(179, 'Worldometers', 'source struct changed', '[object Object]'),
(180, 'Worldometers', 'source struct changed', '[object Object]'),
(181, 'Worldometers', 'source struct changed', '[object Object]'),
(182, 'Worldometers', 'source struct changed', '[object Object]'),
(183, 'Worldometers', 'source struct changed', '[object Object]'),
(184, 'Worldometers', 'source struct changed', '[object Object]'),
(185, 'Worldometers', 'source struct changed', '[object Object]'),
(186, 'Worldometers', 'source struct changed', '[object Object]'),
(187, 'Worldometers', 'source struct changed', '[object Object]'),
(188, 'Worldometers', 'source struct changed', '[object Object]'),
(189, 'Worldometers', 'source struct changed', '[object Object]'),
(190, 'Worldometers', 'source struct changed', '[object Object]'),
(191, 'Worldometers', 'source struct changed', '[object Object]'),
(192, 'Worldometers', 'source struct changed', '[object Object]'),
(193, 'Worldometers', 'source struct changed', '[object Object]'),
(194, 'Worldometers', 'source struct changed', '[object Object]'),
(195, 'Worldometers', 'source struct changed', '[object Object]'),
(196, 'Worldometers', 'source struct changed', '[object Object]'),
(197, 'Worldometers', 'source struct changed', '[object Object]'),
(198, 'Worldometers', 'source struct changed', '[object Object]'),
(199, 'Worldometers', 'source struct changed', '[object Object]'),
(200, 'Worldometers', 'source struct changed', '[object Object]'),
(201, 'Worldometers', 'source struct changed', '[object Object]'),
(202, 'Worldometers', 'source struct changed', '[object Object]'),
(203, 'Worldometers', 'source struct changed', '[object Object]'),
(204, 'Worldometers', 'source struct changed', '[object Object]'),
(205, 'Worldometers', 'source struct changed', '[object Object]'),
(206, 'approve', 'no area data', 'none'),
(207, 'Worldometers', 'source struct changed', '[object Object]'),
(208, 'approve', 'no area data', 'none'),
(209, 'Worldometers', 'source struct changed', '[object Object]'),
(210, 'approve', 'no area data', 'none'),
(211, 'Worldometers', 'source struct changed', '[object Object]'),
(212, 'approve', 'no area data', 'none'),
(213, 'Worldometers', 'source struct changed', '[object Object]'),
(214, 'approve', 'no area data', 'none'),
(215, 'Worldometers', 'source struct changed', '[object Object]'),
(216, 'approve', 'no area data', 'none'),
(217, 'NHS', 'timeout', 'Error: read ECONNRESET'),
(218, 'Worldometers', 'source struct changed', '[object Object]'),
(219, 'approve', 'no area data', 'none'),
(220, 'Worldometers', 'source struct changed', '[object Object]'),
(221, 'approve', 'no area data', 'none'),
(222, 'Worldometers', 'source struct changed', '[object Object]'),
(223, 'approve', 'no area data', 'none'),
(224, 'Worldometers', 'source struct changed', '[object Object]'),
(225, 'approve', 'no area data', 'none'),
(226, 'Worldometers', 'source struct changed', '[object Object]'),
(227, 'approve', 'no area data', 'none'),
(228, 'Worldometers', 'source struct changed', '[object Object]'),
(229, 'approve', 'no area data', 'none'),
(230, 'Worldometers', 'source struct changed', '[object Object]'),
(231, 'approve', 'no area data', 'none'),
(232, 'Worldometers', 'source struct changed', '[object Object]'),
(233, 'approve', 'no area data', 'none'),
(234, 'Worldometers', 'source struct changed', '[object Object]'),
(235, 'Worldometers', 'source struct changed', '[object Object]'),
(236, 'Worldometers', 'source struct changed', '[object Object]'),
(237, 'Worldometers', 'source struct changed', '[object Object]'),
(238, 'Worldometers', 'source struct changed', '[object Object]'),
(239, 'Worldometers', 'source struct changed', '[object Object]'),
(240, 'Worldometers', 'source struct changed', '[object Object]'),
(241, 'Worldometers', 'source struct changed', '[object Object]'),
(242, 'Worldometers', 'source struct changed', '[object Object]'),
(243, 'approve', 'no area data', 'none'),
(244, 'Worldometers', 'source struct changed', '[object Object]'),
(245, 'approve', 'no area data', 'none'),
(246, 'Worldometers', 'source struct changed', '[object Object]'),
(247, 'Worldometers', 'source struct changed', '[object Object]'),
(248, 'Worldometers', 'source struct changed', '[object Object]'),
(249, 'Worldometers', 'source struct changed', '[object Object]'),
(250, 'Worldometers', 'source struct changed', '[object Object]'),
(251, 'Worldometers', 'source struct changed', '[object Object]'),
(252, 'Worldometers', 'source struct changed', '[object Object]'),
(253, 'Worldometers', 'source struct changed', '[object Object]'),
(254, 'Worldometers', 'source struct changed', '[object Object]'),
(255, 'Worldometers', 'source struct changed', '[object Object]'),
(256, 'Worldometers', 'source struct changed', '[object Object]'),
(257, 'Worldometers', 'source struct changed', '[object Object]'),
(258, 'Worldometers', 'source struct changed', '[object Object]'),
(259, 'Worldometers', 'source struct changed', '[object Object]'),
(260, 'Worldometers', 'source struct changed', '[object Object]'),
(261, 'Worldometers', 'source struct changed', '[object Object]'),
(262, 'Worldometers', 'source struct changed', '[object Object]'),
(263, 'Worldometers', 'source struct changed', '[object Object]'),
(264, 'Worldometers', 'source struct changed', '[object Object]'),
(265, 'Worldometers', 'source struct changed', '[object Object]'),
(266, 'Worldometers', 'source struct changed', '[object Object]'),
(267, 'Worldometers', 'source struct changed', '[object Object]'),
(268, 'Worldometers', 'source struct changed', '[object Object]'),
(269, 'Worldometers', 'source struct changed', '[object Object]'),
(270, 'Worldometers', 'source struct changed', '[object Object]'),
(271, 'Worldometers', 'source struct changed', '[object Object]'),
(272, 'Worldometers', 'source struct changed', '[object Object]'),
(273, 'Worldometers', 'source struct changed', '[object Object]'),
(274, 'Worldometers', 'source struct changed', '[object Object]'),
(275, 'Worldometers', 'source struct changed', '[object Object]'),
(276, 'Worldometers', 'source struct changed', '[object Object]'),
(277, 'Worldometers', 'source struct changed', '[object Object]'),
(278, 'Worldometers', 'source struct changed', '[object Object]'),
(279, 'Worldometers', 'source struct changed', '[object Object]'),
(280, 'Worldometers', 'source struct changed', '[object Object]'),
(281, 'Worldometers', 'source struct changed', '[object Object]'),
(282, 'Worldometers', 'source struct changed', '[object Object]'),
(283, 'Worldometers', 'source struct changed', '[object Object]'),
(284, 'Worldometers', 'source struct changed', '[object Object]'),
(285, 'Worldometers', 'source struct changed', '[object Object]'),
(286, 'Worldometers', 'source struct changed', '[object Object]'),
(287, 'Worldometers', 'source struct changed', '[object Object]'),
(288, 'Worldometers', 'source struct changed', '[object Object]');
-- --------------------------------------------------------
--
-- Table structure for table `geo`
--
CREATE TABLE IF NOT EXISTS `geo` (
`id` int(11) NOT NULL,
`name` text NOT NULL,
`lo` varchar(128) NOT NULL,
`la` varchar(128) NOT NULL
) ENGINE=InnoDB AUTO_INCREMENT=221 DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `geo`
--
INSERT INTO `geo` (`id`, `name`, `lo`, `la`) VALUES
(1, 'Barking and Dagenham', '0.155831', '51.55903'),
(2, 'Southend-on-Sea', '0.71', '51.54'),
(3, 'Barnsley', '-1.47889', '53.55361'),
(4, 'Barnet', '-0.190878', '51.658724'),
(5, 'Bexley', '0.1384', '51.4589'),
(6, 'Bedford', '-0.46306', '52.13444'),
(7, 'Bolton', '-2.43333', '53.58333'),
(8, 'Central Bedfordshire', '-0.4215', '51.9975'),
(9, 'Bracknell Forest', '-0.7505', '51.4136'),
(10, 'Bournemouth', '-1.88', '50.72'),
(11, 'Blackpool', '-3.05', '53.81667'),
(12, 'Stockport', '-2.14944', '53.40833'),
(13, 'Stoke-on-Trent', '-2.18333', '53'),
(14, 'Sutton', '-1.822', '52.563'),
(15, 'Staffordshire', '-2', '52.8333'),
(16, 'Suffolk', '1', '52.1667'),
(17, 'Somerset', '-3', '51.0833'),
(18, 'Tameside', '-2.1365584', '53.4787136'),
(19, 'Calderdale', '-1.8569415', '53.7050135'),
(20, 'Camden', '-0.1944449', '51.5428636'),
(21, 'Bath and North East Somerset', '-2.5', '51.3333'),
(22, 'Bristol, City of', '-2.58333', '51.45'),
(23, 'Brighton and Hove', '-0.169118', '50.824765'),
(24, 'Bromley', '0.021', '51.407'),
(25, 'Buckinghamshire', '-0.75', '51.75'),
(26, 'Bury', '-2.29855', '53.59315'),
(27, 'Bradford', '-1.751', '53.794'),
(28, 'Cornwall', '-4.75', '50.4167'),
(29, 'Brent', '-0.281436', '51.558600'),
(30, 'County Durham', '-1.65', '54.6667'),
(31, 'City of London', '-0.098687', '51.5110275'),
(32, 'Darlington', '-1.55722', '54.52278'),
(33, 'Cheshire West and Chester', '-2.7359', '53.1635'),
(34, 'Coventry', '-1.51667', '52.41667'),
(35, 'Cumbria', '-2.8333', '54.5833'),
(36, 'Redbridge', '0.045425', '51.576359'),
(37, 'Plymouth', '-4.14222', '50.37139'),
(38, 'Portsmouth', '-1.08889', '50.79528'),
(39, 'Reading', '-0.97306', '51.45417'),
(40, 'Oxfordshire', '-1.25', '51.8333'),
(41, 'Nottinghamshire', '-1', '53.1667'),
(42, 'Sandwell', '-2.0776779', '52.5149613'),
(43, 'Oldham', '-2.11833', '53.54472'),
(44, 'Poole', '-1.98333', '50.71667'),
(45, 'Peterborough', '-0.25', '52.58333'),
(46, 'Rotherham', '-1.35722', '53.43'),
(47, 'Redcar and Cleveland', '-1.0429', '54.5864'),
(48, 'Sheffield', '-1.47194', '53.3825'),
(49, 'Sefton', '-2.9715', '53.5034'),
(50, 'South Tyneside', '-1.427679', '54.971373'),
(51, 'Salford', '-2.29306', '53.48278'),
(52, 'Slough', '-0.59306', '51.50972'),
(53, 'Shropshire', '-2.75', '52.6667'),
(54, 'Solihull', '-1.775221', '52.38591'),
(55, 'Southampton', '-1.40472', '50.90694'),
(56, 'Southwark', '-0.087965', '51.502756'),
(57, 'South Gloucestershire', '-2.4201', '51.5358'),
(58, 'Middlesbrough', '-1.23333', '54.57389'),
(59, 'Rochdale', '-2.161', '53.6136'),
(60, 'Warrington', '-2.59611', '53.38889'),
(61, 'Norfolk', '1', '52.6667'),
(62, 'Manchester', '-2.23333', '53.46667'),
(63, 'Lincolnshire', '-0.25', '53.1667'),
(64, 'Stockton-on-Tees', '-1.33333', '54.55'),
(65, 'Sunderland', '-1.38028', '54.9'),
(66, 'St. Helens', '-2.7273', '53.4535'),
(67, 'Swindon', '-1.78111', '51.55833'),
(68, 'Surrey', '-0.3333', '51.25'),
(69, 'Torbay', '-3.5453', '50.4369'),
(70, 'Telford and Wrekin', '-2.4702', '52.6759'),
(71, 'Trafford', '-2.4357261', '53.4189705'),
(72, 'Wakefield', '-1.492', '53.6801'),
(73, 'Tower Hamlets', '-0.017202500000000003', '51.5087275'),
(74, 'Waltham Forest', '-0.011032', '51.579011'),
(75, 'Walsall', '-1.98', '52.58'),
(76, 'Thurrock', '0.3195', '51.4893'),
(77, 'Greater Glasgow and Clyde', '-4.258572', '55.873878'),
(78, 'Fife', '-3', '56.3333'),
(79, 'Grampian', '-2.701796', '57.2331625'),
(80, 'Lanarkshire', '-3.8420878', '55.5833322'),
(81, 'Lothian', '-3.188', '55.952'),
(82, 'Northumberland', '-2.0006', '55.25'),
(83, 'North Tyneside', '-1.6', '55.01'),
(84, 'North East Lincolnshire', '-0.0833', '53.5333'),
(85, 'Northamptonshire', '-0.8333', '52.25'),
(86, 'Wandsworth', '-0.1692', '51.4497'),
(87, 'North Yorkshire', '-1.3911', '54.134'),
(88, 'Warwickshire', '-1.5833', '52.3333'),
(89, 'West Berkshire', '-1.3677', '51.4434'),
(90, 'Newham', '0.034301', '51.523139'),
(91, 'Merton', '-0.202', '51.408'),
(92, 'Newcastle upon Tyne', '-1.61333', '54.97778'),
(93, 'Milton Keynes', '-0.76667', '52.03333'),
(94, 'West Sussex', '-0.4167', '51'),
(95, 'Nottingham', '-1.14917', '52.955'),
(96, 'North Somerset', '-2.816', '51.4248'),
(97, 'Lambeth', '-0.12013599999999999', '51.495269'),
(98, 'Wigan', '-2.63167', '53.54472'),
(99, 'Richmond upon Thames', '-0.301', '51.456'),
(100, 'North Lincolnshire', '-0.6295', '53.5727'),
(101, 'Wokingham', '-0.84', '51.41'),
(102, 'Tayside', '-3.013338', '56.45373'),
(103, 'Worcestershire', '-2.2089', '52.1961'),
(104, 'Ayrshire & Arran', '-5.2378665', '55.4446278'),
(105, 'Wolverhampton', '-2.12528', '52.58417'),
(106, 'Cheshire East', '-2.3624', '53.167'),
(107, 'Rutland', '-0.6709', '52.6625'),
(108, 'York', '-1.08333', '53.95'),
(109, 'Hillingdon', '-0.45', '51.54'),
(110, 'Wirral', '-3.121107', '53.360693'),
(111, 'Forth Valley', '-3.84691', '56.025334'),
(112, 'Windsor and Maidenhead', '-0.6079', '51.4833'),
(113, 'Hertfordshire', '-0.25', '51.8333'),
(114, 'Haringey', '-0.111814', '51.6000305'),
(115, 'Liverpool', '-3', '53.41667'),
(116, 'Greenwich', '-0.0026889', '51.4768563'),
(117, 'Kensington and Chelsea', '-0.195075', '51.502201'),
(118, 'Hampshire', '-1.1667', '51.0833'),
(119, 'Hammersmith and Fulham', '-0.232215', '51.492212'),
(120, 'Halton', '-2.6932', '53.3312'),
(121, 'Hackney', '-0.0277', '51.5434'),
(122, 'Leicester', '-1.1382085', '52.6387099'),
(123, 'Leicestershire', '-1', '52.6667'),
(124, 'Lewisham', '-0.0101', '51.4624'),
(125, 'Kent', '0.4617803', '51.1964903'),
(126, 'Kingston upon Thames', '-0.2995', '51.4103'),
(127, 'Knowsley', '-2.85', '53.41'),
(128, 'Isles of Scilly', '-6.292715', '49.920153'),
(129, 'Lancashire', '-2.5', '53.8333'),
(130, 'Medway', '0.5271', '51.3898'),
(131, 'Kirklees', '-1.9302435', '53.6424095'),
(132, 'Isle of Wight', '-1.2799', '50.6888'),
(133, 'Hounslow', '-0.3507', '51.4668'),
(134, 'Luton', '-0.43333', '51.9'),
(135, 'Kingston upon Hull, City of', '-0.3325', '53.74433'),
(136, 'Islington', '-0.1444663', '51.5470727'),
(137, 'Leeds', '-1.54917', '53.79972'),
(138, 'Blackburn with Darwen', '-2.4839', '53.7313'),
(139, 'Birmingham', '-1.9', '52.48333'),
(140, 'Croydon', '-0.1099', '51.3727'),
(141, 'Ealing', '-0.3031', '51.5139'),
(142, 'Derby', '-1.474607', '52.922630'),
(143, 'Gloucestershire', '-2.1667', '51.8333'),
(144, 'Cambridgeshire', '0.0833', '52.3333'),
(145, 'Enfield', '-0.06', '51.645'),
(146, 'East Riding of Yorkshire', '-0.5813', '53.9112'),
(147, 'Essex', '0.5833', '51.8333'),
(148, 'Doncaster', '-1.133', '53.516'),
(149, 'Havering', '0.1861', '51.6156'),
(150, 'Herefordshire, County of', '-2.932047', '51.914761'),
(151, 'Dorset', '-2.3333', '50.75'),
(152, 'Gateshead', '-1.6', '54.95'),
(153, 'Derbyshire', '-1.478815', '53.068729'),
(154, 'Devon', '-3.75', '50.75'),
(155, 'East Sussex', '0.3333', '50.9167'),
(156, 'Hartlepool', '-1.21667', '54.68333'),
(157, 'Dudley', '-2.1', '52.51667'),
(158, 'Harrow', '-0.3464', '51.5836'),
(159, 'Wiltshire', '-1.9167', '51.25'),
(160, 'Westminster', '-0.1434954', '51.4977712'),
(161, 'Cornwall and Isles of Scilly', '-6.292715', '49.920153'),
(162, 'Hackney and City of London', '-0.0558', '51.5476'),
(163, 'Bournemouth, Christchurch and Poole', '-1.8947581', '50.7540531'),
(164, 'Ayrshire and Arran', '-5.2378665', '55.4446278'),
(165, 'Shetland', '-1.2689', '60.3038'),
(166, 'Borders', '-2.9321567', '55.5041996'),
(167, 'Northern Ireland', '-5.84', '54.59093'),
(168, 'Wales', '-3.63785', '52.3496'),
(169, 'Highland', '-5.0038', '57.5066'),
(170, 'Dumfries and Galloway', '-3.8333', '55.0833'),
(183, ' Dumfries and Galloway ', '-3.8333', '55.0833'),
(184, ' Highland ', '-5.0038', '57.5066'),
(185, ' Greater Glasgow and Clyde ', '-4.258572', '55.873878'),
(186, ' Lothian ', '-3.188', '55.952'),
(187, ' Grampian ', '-2.701796', '57.2331625'),
(188, ' Borders ', '101.675284', '3.119809'),
(189, ' Ayrshire and Arran ', '-5.2378665', '55.4446278'),
(190, ' Shetland ', '-1.2689', '60.3038'),
(191, ' Forth Valley ', '-3.84691', '56.025334'),
(192, ' Tayside ', '-3.013338', '56.45373'),
(193, ' Fife ', '-3', '56.3333'),
(194, ' Lanarkshire ', '-3.8420878', '55.5833322'),
(195, 'Eileanan Siar (Western Isles)', '-6.064505', '56.62362'),
(196, 'Orkney', '-3.12', '59.01'),
(197, ' Eileanan Siar (Western Isles) ', '-6.064505', '56.62362'),
(198, ' Orkney ', '-3.12', '59.01'),
(199, 'Golden Jubilee National Hospital', '-4.4260265', '55.906475'),
(200, 'Cardiff', '-3.18', '51.48'),
(201, 'Rhondda Cynon Taff', '-3.4488', '51.659'),
(202, 'Neath Port Talbot', '-3.8005835', '51.599398'),
(203, 'Torfaen', '-3.055244', '51.71415'),
(204, 'Conwy', '-3.83', '53.28'),
(205, 'Bridgend', '-3.58', '51.51'),
(206, 'Powys', '-3.4167', '52.3333'),
(207, 'Gwynedd', '-4.0948', '52.935'),
(208, 'Flintshire', '-3.139365', '53.250814'),
(209, 'Denbighshire', '-3.310562', '53.114447'),
(210, 'Merthyr Tydfil', '-3.37805', '51.74289'),
(211, 'Newport', '-3.0494932', '51.5743868'),
(212, 'Pembrokeshire', '-4.9814415', '51.7924165'),
(213, 'Carmarthenshire', '-4.2658629999999995', '51.865450499999994'),
(214, 'Monmouthshire', '-3.021525', '51.805327'),
(215, 'Swansea', '-3.95', '51.61667'),
(216, 'Wrexham', '-2.9932', '53.0463'),
(217, 'Blaenau Gwent', '-3.2044', '51.7775'),
(218, 'Vale of Glamorgan', '-3.271866', '51.403647'),
(219, 'Caerphilly', '-3.204022', '51.582713'),
(220, 'Ceredigion', '-4.0838944999999995', '52.4163755');
-- --------------------------------------------------------
--
-- Table structure for table `history`
--
CREATE TABLE IF NOT EXISTS `history` (
`id` int(11) NOT NULL,
`date` bigint(128) NOT NULL,
`confirmed` int(11) NOT NULL,
`death` int(11) NOT NULL,
`cured` int(11) NOT NULL,
`serious` int(11) NOT NULL,
`negative` int(11) NOT NULL,
`suspected` int(11) NOT NULL,
`tested` int(11) DEFAULT NULL,
`test_done` int(11) DEFAULT NULL,
`england` int(11) DEFAULT NULL,
`scotland` int(11) DEFAULT NULL,
`wales` int(11) DEFAULT NULL,
`nireland` int(11) DEFAULT NULL,
`area` text
) ENGINE=InnoDB AUTO_INCREMENT=78 DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `history`
--
INSERT INTO `history` (`id`, `date`, `confirmed`, `death`, `cured`, `serious`, `negative`, `suspected`, `tested`, `test_done`, `england`, `scotland`, `wales`, `nireland`, `area`) VALUES
(1, 1580428200000, 0, 0, 0, 0, 161, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(2, 1580601000000, 2, 0, 0, 0, 201, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(3, 1580514600000, 2, 0, 0, 0, 175, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(4, 1580687400000, 2, 0, 0, 0, 264, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(5, 1580773800000, 2, 0, 0, 0, 324, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(6, 1580860200000, 2, 0, 0, 0, 414, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(7, 1580946600000, 2, 0, 0, 0, 466, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(8, 1581033000000, 3, 0, 0, 0, 563, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(9, 1581205800000, 3, 0, 0, 0, 683, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(10, 1581119400000, 3, 0, 0, 0, 617, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(11, 1581292200000, 4, 0, 0, 0, 791, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(12, 1581378600000, 8, 0, 0, 0, 1106, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(13, 1581551400000, 8, 0, 0, 0, 1750, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(14, 1581637800000, 9, 0, 0, 0, 2512, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(15, 1581810600000, 9, 0, 0, 0, 2983, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(16, 1581724200000, 9, 0, 0, 0, 2955, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(17, 1581465000000, 8, 0, 0, 0, 1350, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(18, 1581897000000, 9, 0, 0, 0, 3100, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(19, 1581983400000, 9, 0, 0, 0, 4492, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(20, 1582069800000, 9, 0, 0, 0, 4907, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(21, 1582156200000, 9, 0, 0, 0, 5207, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(22, 1582242600000, 9, 0, 0, 0, 5540, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(23, 1582329000000, 9, 0, 0, 0, 5876, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(24, 1582415400000, 9, 0, 0, 0, 6143, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(25, 1582501800000, 9, 0, 0, 0, 6315, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(26, 1582588200000, 9, 0, 0, 0, 6527, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(27, 1582674600000, 13, 0, 0, 0, 6782, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(28, 1582758600000, 13, 0, 0, 0, 7119, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(29, 1582845000000, 15, 0, 0, 0, 7675, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(30, 1582931400000, 19, 0, 0, 0, 8966, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(31, 1583017800000, 23, 0, 0, 0, 10460, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(32, 1583104200000, 35, 0, 0, 0, 11715, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(33, 1583190600000, 40, 0, 0, 0, 13405, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(34, 1583277000000, 51, 0, 0, 0, 13860, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(35, 1583363400000, 85, 0, 0, 0, 16574, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(36, 1583449800000, 115, 0, 0, 0, 17968, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(37, 1583538610000, 163, 1, 18, 0, 20175, 0, NULL, NULL, NULL, NULL, NULL, NULL, '[{\\"location\\":\\"East of England\\",\\"number\\":11},{\\"location\\":\\"London\\",\\"number\\":29},{\\"location\\":\\"Midlands\\",\\"number\\":12},{\\"location\\":\\"North East and Yorkshire\\",\\"number\\":13},{\\"location\\":\\"North West\\",\\"number\\":21},{\\"location\\":\\"South East\\",\\"number\\":24},{\\"location\\":\\"South West\\",\\"number\\":22},{\\"location\\":\\"Tayside\\",\\"number\\":1},{\\"location\\":\\"Ayrshire & Arran\\",\\"number\\":1},{\\"location\\":\\"Forth Valley\\",\\"number\\":2},{\\"location\\":\\"Greater Glasgow and Clyde\\",\\"number\\":1},{\\"location\\":\\"Grampian\\",\\"number\\":3},{\\"location\\":\\"Fife\\",\\"number\\":2},{\\"location\\":\\"Lothian\\",\\"number\\":1}]'),
(38, 1583625010000, 206, 2, 18, 0, 21254, 0, NULL, NULL, NULL, NULL, NULL, NULL, '[{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Barnet\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Barnsley\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Bedford\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Bexley\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Birmingham\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Blackpool\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Bolton\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Bournemouth\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Bradford\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Brent\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":\\"7\\"},{\\"location\\":\\"Bristol, City of\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Bromley\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Bury\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Calderdale\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Camden\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Cheshire East\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":\\"2\\"},{\\"location\\":\\"County Durham\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Coventry\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Croydon\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Cumbria\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Darlington\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Derby\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Derbyshire\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Devon\\",\\"number\\":\\"10\\"},{\\"location\\":\\"Doncaster\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Dorset\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Dudley\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Ealing\\",\\"number\\":\\"5\\"},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"East Sussex\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Enfield\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Essex\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Gateshead\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Gloucestershire\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Greenwich\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Hackney and City of London\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Halton\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Hampshire\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Haringey\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Harrow\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Hartlepool\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Havering\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Hertfordshire\\",\\"number\\":\\"8\\"},{\\"location\\":\\"Hillingdon\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Hounslow\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Isle of Wight\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Islington\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Kent\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Kirklees\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Knowsley\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Lambeth\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Lancashire\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Leeds\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Leicester\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Leicestershire\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Lewisham\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Lincolnshire\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Liverpool\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Luton\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Manchester\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Medway\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Merton\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Middlesbrough\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Milton Keynes\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Newham\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Norfolk\\",\\"number\\":\\"0\\"},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"North Somerset\\",\\"number\\":\\"0\\"},{\\"location\\":\\"North Tyneside\\",\\"number\\":\\"1\\"},{\\"location\\":\\"North Yorkshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Northamptonshire\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Northumberland\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Nottingham\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Oldham\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Oxfordshire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Peterborough\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Plymouth\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Poole\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Portsmouth\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Reading\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Redbridge\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Rochdale\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Rotherham\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Rutland\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Salford\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Sandwell\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Sefton\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Sheffield\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Shropshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Slough\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Solihull\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Somerset\\",\\"number\\":\\"1\\"},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"South Tyneside\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Southampton\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Southwark\\",\\"number\\":\\"1\\"},{\\"location\\":\\"St. Helens\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Staffordshire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Stockport\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Suffolk\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Sunderland\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Surrey\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Sutton\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Swindon\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Tameside\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Thurrock\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Torbay\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Trafford\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Wakefield\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Walsall\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Waltham Forest\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Wandsworth\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Warrington\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Warwickshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"West Berkshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"West Sussex\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Westminster\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Wigan\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Wiltshire\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Wirral\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Wokingham\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Wolverhampton\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Worcestershire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"York\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Tayside\\",\\"number\\":1},{\\"location\\":\\"Ayrshire & Arran\\",\\"number\\":1},{\\"location\\":\\"Forth Valley\\",\\"number\\":2},{\\"location\\":\\"Greater Glasgow and Clyde\\",\\"number\\":2},{\\"location\\":\\"Grampian\\",\\"number\\":4},{\\"location\\":\\"Fife\\",\\"number\\":2},{\\"location\\":\\"Lothian\\",\\"number\\":2},{\\"location\\":\\"Lanarkshire\\",\\"number\\":2}]'),
(39, 1583711410000, 273, 2, 18, 0, 23240, 0, NULL, NULL, NULL, NULL, NULL, NULL, '[{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Barnet\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Barnsley\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Bedford\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Bexley\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Birmingham\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Blackpool\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Bolton\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Bradford\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Brent\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":\\"7\\"},{\\"location\\":\\"Bristol, City of\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Bromley\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Bury\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Calderdale\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Camden\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Cheshire East\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Cornwall\\",\\"number\\":\\"3\\"},{\\"location\\":\\"County Durham\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Coventry\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Croydon\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Cumbria\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Darlington\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Derby\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Derbyshire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Devon\\",\\"number\\":\\"12\\"},{\\"location\\":\\"Doncaster\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Dorset\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Dudley\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Ealing\\",\\"number\\":\\"5\\"},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"East Sussex\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Enfield\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Essex\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Gateshead\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Gloucestershire\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Greenwich\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Hackney\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Halton\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Hampshire\\",\\"number\\":\\"8\\"},{\\"location\\":\\"Haringey\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Harrow\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Hartlepool\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Havering\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Hertfordshire\\",\\"number\\":\\"13\\"},{\\"location\\":\\"Hillingdon\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Hounslow\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Isle of Wight\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Islington\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":\\"8\\"},{\\"location\\":\\"Kent\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Kirklees\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Knowsley\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Lambeth\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Lancashire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Leeds\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Leicester\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Leicestershire\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Lewisham\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Lincolnshire\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Liverpool\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Luton\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Manchester\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Medway\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Merton\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Middlesbrough\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Milton Keynes\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Newham\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Norfolk\\",\\"number\\":\\"0\\"},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"North Somerset\\",\\"number\\":\\"0\\"},{\\"location\\":\\"North Tyneside\\",\\"number\\":\\"1\\"},{\\"location\\":\\"North Yorkshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Northamptonshire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Northumberland\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Nottingham\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Oldham\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Oxfordshire\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Peterborough\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Plymouth\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Portsmouth\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Reading\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Redbridge\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Rochdale\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Rotherham\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Rutland\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Salford\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Sandwell\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Sefton\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Sheffield\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Shropshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Slough\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Solihull\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Somerset\\",\\"number\\":\\"2\\"},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"South Tyneside\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Southampton\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Southwark\\",\\"number\\":\\"3\\"},{\\"location\\":\\"St. Helens\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Staffordshire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Stockport\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Suffolk\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Sunderland\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Surrey\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Sutton\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Swindon\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Tameside\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Thurrock\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Torbay\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Trafford\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Wakefield\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Walsall\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Waltham Forest\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Wandsworth\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Warrington\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Warwickshire\\",\\"number\\":\\"3\\"},{\\"location\\":\\"West Berkshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"West Sussex\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Westminster\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Wigan\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Wiltshire\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Wirral\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Wokingham\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Wolverhampton\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Worcestershire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"York\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Tayside\\",\\"number\\":1},{\\"location\\":\\"Ayrshire & Arran\\",\\"number\\":1},{\\"location\\":\\"Forth Valley\\",\\"number\\":2},{\\"location\\":\\"Greater Glasgow and Clyde\\",\\"number\\":3},{\\"location\\":\\"Grampian\\",\\"number\\":4},{\\"location\\":\\"Fife\\",\\"number\\":2},{\\"location\\":\\"Lothian\\",\\"number\\":3},{\\"location\\":\\"Lanarkshire\\",\\"number\\":2}]'),
(40, 1583884210000, 373, 6, 18, 0, 25888, 0, NULL, NULL, NULL, NULL, NULL, NULL, '[ { \\"location\\": \\"Barking and Dagenham\\", \\"number\\": \\"1\\" }, { \\"location\\": \\"Barnet\\", \\"number\\": \\"8\\" }, { \\"location\\": \\"Barnsley\\", \\"number\\": \\"2\\" }, { \\"location\\": \\"Bath and North East Somerset\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Bedford\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Bexley\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Birmingham\\", \\"number\\": \\"1\\" }, { \\"location\\": \\"Blackburn with Darwen\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Blackpool\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Bolton\\", \\"number\\": \\"3\\" }, { \\"location\\": \\"Bournemouth, Christchurch and Poole\\", \\"number\\": \\"3\\" }, { \\"location\\": \\"Bracknell Forest\\", \\"number\\": \\"2\\" }, { \\"location\\": \\"Bradford\\", \\"number\\": \\"1\\" }, { \\"location\\": \\"Brent\\", \\"number\\": \\"3\\" }, { \\"location\\": \\"Brighton and Hove\\", \\"number\\": \\"8\\" }, { \\"location\\": \\"Bristol, City of\\", \\"number\\": \\"2\\" }, { \\"location\\": \\"Bromley\\", \\"number\\": \\"2\\" }, { \\"location\\": \\"Buckinghamshire\\", \\"number\\": \\"2\\" }, { \\"location\\": \\"Bury\\", \\"number\\": \\"3\\" }, { \\"location\\": \\"Calderdale\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Cambridgeshire\\", \\"number\\": \\"1\\" }, { \\"location\\": \\"Camden\\", \\"number\\": \\"5\\" }, { \\"location\\": \\"Central Bedfordshire\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Cheshire East\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Cheshire West and Chester\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Cornwall and Isles of Scilly\\", \\"number\\": \\"4\\" }, { \\"location\\": \\"County Durham\\", \\"number\\": \\"1\\" }, { \\"location\\": \\"Coventry\\", \\"number\\": \\"3\\" }, { \\"location\\": \\"Croydon\\", \\"number\\": \\"1\\" }, { \\"location\\": \\"Cumbria\\", \\"number\\": \\"7\\" }, { \\"location\\": \\"Darlington\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Derby\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Derbyshire\\", \\"number\\": \\"4\\" }, { \\"location\\": \\"Devon\\", \\"number\\": \\"13\\" }, { \\"location\\": \\"Doncaster\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Dorset\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Dudley\\", \\"number\\": \\"1\\" }, { \\"location\\": \\"Ealing\\", \\"number\\": \\"5\\" }, { \\"location\\": \\"East Riding of Yorkshire\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"East Sussex\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Enfield\\", \\"number\\": \\"1\\" }, { \\"location\\": \\"Essex\\", \\"number\\": \\"5\\" }, { \\"location\\": \\"Gateshead\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Gloucestershire\\", \\"number\\": \\"3\\" }, { \\"location\\": \\"Greenwich\\", \\"number\\": \\"1\\" }, { \\"location\\": \\"Hackney and City of London\\", \\"number\\": \\"3\\" }, { \\"location\\": \\"Halton\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Hammersmith and Fulham\\", \\"number\\": \\"2\\" }, { \\"location\\": \\"Hampshire\\", \\"number\\": \\"10\\" }, { \\"location\\": \\"Haringey\\", \\"number\\": \\"1\\" }, { \\"location\\": \\"Harrow\\", \\"number\\": \\"1\\" }, { \\"location\\": \\"Hartlepool\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Havering\\", \\"number\\": \\"2\\" }, { \\"location\\": \\"Herefordshire, County of\\", \\"number\\": \\"1\\" }, { \\"location\\": \\"Hertfordshire\\", \\"number\\": \\"16\\" }, { \\"location\\": \\"Hillingdon\\", \\"number\\": \\"1\\" }, { \\"location\\": \\"Hounslow\\", \\"number\\": \\"5\\" }, { \\"location\\": \\"Isle of Wight\\", \\"number\\": \\"1\\" }, { \\"location\\": \\"Islington\\", \\"number\\": \\"1\\" }, { \\"location\\": \\"Kensington and Chelsea\\", \\"number\\": \\"13\\" }, { \\"location\\": \\"Kent\\", \\"number\\": \\"5\\" }, { \\"location\\": \\"Kingston upon Hull, City of\\", \\"number\\": \\"1\\" }, { \\"location\\": \\"Kingston upon Thames\\", \\"number\\": \\"1\\" }, { \\"location\\": \\"Kirklees\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Knowsley\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Lambeth\\", \\"number\\": \\"4\\" }, { \\"location\\": \\"Lancashire\\", \\"number\\": \\"4\\" }, { \\"location\\": \\"Leeds\\", \\"number\\": \\"5\\" }, { \\"location\\": \\"Leicester\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Leicestershire\\", \\"number\\": \\"2\\" }, { \\"location\\": \\"Lewisham\\", \\"number\\": \\"3\\" }, { \\"location\\": \\"Lincolnshire\\", \\"number\\": \\"1\\" }, { \\"location\\": \\"Liverpool\\", \\"number\\": \\"5\\" }, { \\"location\\": \\"Luton\\", \\"number\\": \\"2\\" }, { \\"location\\": \\"Manchester\\", \\"number\\": \\"5\\" }, { \\"location\\": \\"Medway\\", \\"number\\": \\"2\\" }, { \\"location\\": \\"Merton\\", \\"number\\": \\"2\\" }, { \\"location\\": \\"Middlesbrough\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Milton Keynes\\", \\"number\\": \\"2\\" }, { \\"location\\": \\"Newcastle upon Tyne\\", \\"number\\": \\"4\\" }, { \\"location\\": \\"Newham\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Norfolk\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"North East Lincolnshire\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"North Lincolnshire\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"North Somerset\\", \\"number\\": \\"1\\" }, { \\"location\\": \\"North Tyneside\\", \\"number\\": \\"1\\" }, { \\"location\\": \\"North Yorkshire\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Northamptonshire\\", \\"number\\": \\"5\\" }, { \\"location\\": \\"Northumberland\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Nottingham\\", \\"number\\": \\"2\\" }, { \\"location\\": \\"Nottinghamshire\\", \\"number\\": \\"5\\" }, { \\"location\\": \\"Oldham\\", \\"number\\": \\"4\\" }, { \\"location\\": \\"Oxfordshire\\", \\"number\\": \\"7\\" }, { \\"location\\": \\"Peterborough\\", \\"number\\": \\"1\\" }, { \\"location\\": \\"Plymouth\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Portsmouth\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Reading\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Redbridge\\", \\"number\\": \\"1\\" }, { \\"location\\": \\"Redcar and Cleveland\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Richmond upon Thames\\", \\"number\\": \\"1\\" }, { \\"location\\": \\"Rochdale\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Rotherham\\", \\"number\\": \\"1\\" }, { \\"location\\": \\"Rutland\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Salford\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Sandwell\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Sefton\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Sheffield\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Shropshire\\", \\"number\\": \\"1\\" }, { \\"location\\": \\"Slough\\", \\"number\\": \\"1\\" }, { \\"location\\": \\"Solihull\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Somerset\\", \\"number\\": \\"2\\" }, { \\"location\\": \\"South Gloucestershire\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"South Tyneside\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Southampton\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Southend-on-Sea\\", \\"number\\": \\"1\\" }, { \\"location\\": \\"Southwark\\", \\"number\\": \\"8\\" }, { \\"location\\": \\"St. Helens\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Staffordshire\\", \\"number\\": \\"4\\" }, { \\"location\\": \\"Stockport\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Stockton-on-Tees\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Stoke-on-Trent\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Suffolk\\", \\"number\\": \\"1\\" }, { \\"location\\": \\"Sunderland\\", \\"number\\": \\"1\\" }, { \\"location\\": \\"Surrey\\", \\"number\\": \\"6\\" }, { \\"location\\": \\"Sutton\\", \\"number\\": \\"2\\" }, { \\"location\\": \\"Swindon\\", \\"number\\": \\"2\\" }, { \\"location\\": \\"Tameside\\", \\"number\\": \\"1\\" }, { \\"location\\": \\"Telford and Wrekin\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Thurrock\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Torbay\\", \\"number\\": \\"7\\" }, { \\"location\\": \\"Tower Hamlets\\", \\"number\\": \\"4\\" }, { \\"location\\": \\"Trafford\\", \\"number\\": \\"4\\" }, { \\"location\\": \\"Wakefield\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Walsall\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Waltham Forest\\", \\"number\\": \\"1\\" }, { \\"location\\": \\"Wandsworth\\", \\"number\\": \\"3\\" }, { \\"location\\": \\"Warrington\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"Warwickshire\\", \\"number\\": \\"4\\" }, { \\"location\\": \\"West Berkshire\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"West Sussex\\", \\"number\\": \\"3\\" }, { \\"location\\": \\"Westminster\\", \\"number\\": \\"5\\" }, { \\"location\\": \\"Wigan\\", \\"number\\": \\"3\\" }, { \\"location\\": \\"Wiltshire\\", \\"number\\": \\"4\\" }, { \\"location\\": \\"Windsor and Maidenhead\\", \\"number\\": \\"1\\" }, { \\"location\\": \\"Wirral\\", \\"number\\": \\"1\\" }, { \\"location\\": \\"Wokingham\\", \\"number\\": \\"3\\" }, { \\"location\\": \\"Wolverhampton\\", \\"number\\": \\"3\\" }, { \\"location\\": \\"Worcestershire\\", \\"number\\": \\"0\\" }, { \\"location\\": \\"York\\", \\"number\\": \\"3\\" }, { \\"location\\": \\"Ayrshire and Arran\\", \\"number\\": 1 }, { \\"location\\": \\"Fife\\", \\"number\\": 2 }, { \\"location\\": \\"Forth Valley\\", \\"number\\": 2 }, { \\"location\\": \\"Grampian\\", \\"number\\": 6 }, { \\"location\\": \\"Greater Glasgow and Clyde\\", \\"number\\": 3 }, { \\"location\\": \\"Lanarkshire\\", \\"number\\": 3 }, { \\"location\\": \\"Lothian\\", \\"number\\": 7 }, { \\"location\\": \\"Shetland\\", \\"number\\": 2 }, { \\"location\\": \\"Tayside\\", \\"number\\": 1 }, { \\"location\\": \\"Wales\\", \\"number\\": 6 }, { \\"location\\": \\"Northern Ireland\\", \\"number\\": 16 } ]'),
(41, 1583970610000, 456, 6, 18, 0, 27020, 0, NULL, NULL, NULL, NULL, NULL, NULL, '[{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Barnet\\",\\"number\\":\\"8\\"},{\\"location\\":\\"Barnsley\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Bedford\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Bexley\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Birmingham\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Blackpool\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Bolton\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Bradford\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Brent\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":\\"8\\"},{\\"location\\":\\"Bristol, City of\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Bromley\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Bury\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Calderdale\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Camden\\",\\"number\\":\\"7\\"},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Cheshire East\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":\\"5\\"},{\\"location\\":\\"County Durham\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Coventry\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Croydon\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Cumbria\\",\\"number\\":\\"7\\"},{\\"location\\":\\"Darlington\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Derby\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Derbyshire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Devon\\",\\"number\\":\\"13\\"},{\\"location\\":\\"Doncaster\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Dorset\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Dudley\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Ealing\\",\\"number\\":\\"5\\"},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"East Sussex\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Enfield\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Essex\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Gateshead\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Gloucestershire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Greenwich\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Hackney and City of London\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Halton\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Hampshire\\",\\"number\\":\\"13\\"},{\\"location\\":\\"Haringey\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Harrow\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Hartlepool\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Havering\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Hertfordshire\\",\\"number\\":\\"18\\"},{\\"location\\":\\"Hillingdon\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Hounslow\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Isle of Wight\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Islington\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":\\"15\\"},{\\"location\\":\\"Kent\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Kirklees\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Knowsley\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Lambeth\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Lancashire\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Leeds\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Leicester\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Leicestershire\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Lewisham\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Lincolnshire\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Liverpool\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Luton\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Manchester\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Medway\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Merton\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Middlesbrough\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Milton Keynes\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Newham\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Norfolk\\",\\"number\\":\\"0\\"},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":\\"1\\"},{\\"location\\":\\"North Somerset\\",\\"number\\":\\"0\\"},{\\"location\\":\\"North Tyneside\\",\\"number\\":\\"2\\"},{\\"location\\":\\"North Yorkshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Northamptonshire\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Northumberland\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Nottingham\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Oldham\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Oxfordshire\\",\\"number\\":\\"9\\"},{\\"location\\":\\"Peterborough\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Plymouth\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Portsmouth\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Reading\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Redbridge\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Rochdale\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Rotherham\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Rutland\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Salford\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Sandwell\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Sefton\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Sheffield\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Shropshire\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Slough\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Solihull\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Somerset\\",\\"number\\":\\"2\\"},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":\\"1\\"},{\\"location\\":\\"South Tyneside\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Southampton\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Southwark\\",\\"number\\":\\"9\\"},{\\"location\\":\\"St. Helens\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Staffordshire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Stockport\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Suffolk\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Sunderland\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Surrey\\",\\"number\\":\\"10\\"},{\\"location\\":\\"Sutton\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Swindon\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Tameside\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Thurrock\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Torbay\\",\\"number\\":\\"7\\"},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Trafford\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Wakefield\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Walsall\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Waltham Forest\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Wandsworth\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Warrington\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Warwickshire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"West Berkshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"West Sussex\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Westminster\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Wigan\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Wiltshire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Wirral\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Wokingham\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Wolverhampton\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Worcestershire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"York\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Ayrshire and Arran\\",\\"number\\":3},{\\"location\\":\\"Borders\\",\\"number\\":2},{\\"location\\":\\"Fife\\",\\"number\\":2},{\\"location\\":\\"Forth Valley\\",\\"number\\":2},{\\"location\\":\\"Grampian\\",\\"number\\":6},{\\"location\\":\\"Greater Glasgow and Clyde\\",\\"number\\":5},{\\"location\\":\\"Lanarkshire\\",\\"number\\":4},{\\"location\\":\\"Lothian\\",\\"number\\":8},{\\"location\\":\\"Shetland\\",\\"number\\":2},{\\"location\\":\\"Tayside\\",\\"number\\":2},{\\"location\\": \\"Wales\\",\\"number\\": 15},{\\"location\\": \\"Northern Ireland\\",\\"number\\": 18}]'),
(42, 1583797810000, 319, 3, 18, 0, 24641, 0, NULL, NULL, NULL, NULL, NULL, NULL, '[{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Barnet\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Barnsley\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Bedford\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Bexley\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Birmingham\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Blackpool\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Bolton\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Bradford\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Brent\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":\\"8\\"},{\\"location\\":\\"Bristol, City of\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Bromley\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Bury\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Calderdale\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Camden\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Cheshire East\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":\\"4\\"},{\\"location\\":\\"County Durham\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Coventry\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Croydon\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Cumbria\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Darlington\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Derby\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Derbyshire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Devon\\",\\"number\\":\\"12\\"},{\\"location\\":\\"Doncaster\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Dorset\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Dudley\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Ealing\\",\\"number\\":\\"5\\"},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"East Sussex\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Enfield\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Essex\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Gateshead\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Gloucestershire\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Greenwich\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Hackney and City of London\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Halton\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Hampshire\\",\\"number\\":\\"8\\"},{\\"location\\":\\"Haringey\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Harrow\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Hartlepool\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Havering\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Hertfordshire\\",\\"number\\":\\"13\\"},{\\"location\\":\\"Hillingdon\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Hounslow\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Isle of Wight\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Islington\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":\\"8\\"},{\\"location\\":\\"Kent\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Kirklees\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Knowsley\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Lambeth\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Lancashire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Leeds\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Leicester\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Leicestershire\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Lewisham\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Lincolnshire\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Liverpool\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Luton\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Manchester\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Medway\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Merton\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Middlesbrough\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Milton Keynes\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Newham\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Norfolk\\",\\"number\\":\\"0\\"},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"North Somerset\\",\\"number\\":\\"0\\"},{\\"location\\":\\"North Tyneside\\",\\"number\\":\\"1\\"},{\\"location\\":\\"North Yorkshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Northamptonshire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Northumberland\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Nottingham\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Oldham\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Oxfordshire\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Peterborough\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Plymouth\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Portsmouth\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Reading\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Redbridge\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Rochdale\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Rotherham\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Rutland\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Salford\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Sandwell\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Sefton\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Sheffield\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Shropshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Slough\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Solihull\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Somerset\\",\\"number\\":\\"2\\"},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"South Tyneside\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Southampton\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Southwark\\",\\"number\\":\\"5\\"},{\\"location\\":\\"St. Helens\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Staffordshire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Stockport\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Suffolk\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Sunderland\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Surrey\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Sutton\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Swindon\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Tameside\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Thurrock\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Torbay\\",\\"number\\":\\"7\\"},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Trafford\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Wakefield\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Walsall\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Waltham Forest\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Wandsworth\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Warrington\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Warwickshire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"West Berkshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"West Sussex\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Westminster\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Wigan\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Wiltshire\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Wirral\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Wokingham\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Wolverhampton\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Worcestershire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"York\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Ayrshire and Arran\\",\\"number\\":1},{\\"location\\":\\"Fife\\",\\"number\\":2},{\\"location\\":\\"Forth Valley\\",\\"number\\":2},{\\"location\\":\\"Grampian\\",\\"number\\":4},{\\"location\\":\\"Greater Glasgow and Clyde\\",\\"number\\":3},{\\"location\\":\\"Lanarkshire\\",\\"number\\":3},{\\"location\\":\\"Lothian\\",\\"number\\":5},{\\"location\\":\\"Shetland\\",\\"number\\":2},{\\"location\\":\\"Tayside\\",\\"number\\":1}]');
INSERT INTO `history` (`id`, `date`, `confirmed`, `death`, `cured`, `serious`, `negative`, `suspected`, `tested`, `test_done`, `england`, `scotland`, `wales`, `nireland`, `area`) VALUES
(43, 1584143410000, 798, 10, 18, 0, 31973, 0, NULL, NULL, NULL, NULL, NULL, NULL, '[{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Barnet\\",\\"number\\":\\"8\\"},{\\"location\\":\\"Barnsley\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Bedford\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Bexley\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Birmingham\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Blackpool\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Bolton\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Bradford\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Brent\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":\\"8\\"},{\\"location\\":\\"Bristol, City of\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Bromley\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Bury\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Calderdale\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Camden\\",\\"number\\":\\"7\\"},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Cheshire East\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":\\"5\\"},{\\"location\\":\\"County Durham\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Coventry\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Croydon\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Cumbria\\",\\"number\\":\\"7\\"},{\\"location\\":\\"Darlington\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Derby\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Derbyshire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Devon\\",\\"number\\":\\"13\\"},{\\"location\\":\\"Doncaster\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Dorset\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Dudley\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Ealing\\",\\"number\\":\\"5\\"},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"East Sussex\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Enfield\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Essex\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Gateshead\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Gloucestershire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Greenwich\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Hackney and City of London\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Halton\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Hampshire\\",\\"number\\":\\"13\\"},{\\"location\\":\\"Haringey\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Harrow\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Hartlepool\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Havering\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Hertfordshire\\",\\"number\\":\\"18\\"},{\\"location\\":\\"Hillingdon\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Hounslow\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Isle of Wight\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Islington\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":\\"15\\"},{\\"location\\":\\"Kent\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Kirklees\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Knowsley\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Lambeth\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Lancashire\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Leeds\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Leicester\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Leicestershire\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Lewisham\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Lincolnshire\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Liverpool\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Luton\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Manchester\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Medway\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Merton\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Middlesbrough\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Milton Keynes\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Newham\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Norfolk\\",\\"number\\":\\"0\\"},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":\\"1\\"},{\\"location\\":\\"North Somerset\\",\\"number\\":\\"0\\"},{\\"location\\":\\"North Tyneside\\",\\"number\\":\\"2\\"},{\\"location\\":\\"North Yorkshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Northamptonshire\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Northumberland\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Nottingham\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Oldham\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Oxfordshire\\",\\"number\\":\\"9\\"},{\\"location\\":\\"Peterborough\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Plymouth\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Portsmouth\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Reading\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Redbridge\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Rochdale\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Rotherham\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Rutland\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Salford\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Sandwell\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Sefton\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Sheffield\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Shropshire\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Slough\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Solihull\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Somerset\\",\\"number\\":\\"2\\"},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":\\"1\\"},{\\"location\\":\\"South Tyneside\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Southampton\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Southwark\\",\\"number\\":\\"9\\"},{\\"location\\":\\"St. Helens\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Staffordshire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Stockport\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Suffolk\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Sunderland\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Surrey\\",\\"number\\":\\"10\\"},{\\"location\\":\\"Sutton\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Swindon\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Tameside\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Thurrock\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Torbay\\",\\"number\\":\\"7\\"},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Trafford\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Wakefield\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Walsall\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Waltham Forest\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Wandsworth\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Warrington\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Warwickshire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"West Berkshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"West Sussex\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Westminster\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Wigan\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Wiltshire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Wirral\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Wokingham\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Wolverhampton\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Worcestershire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"York\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Ayrshire and Arran\\",\\"number\\":4},{\\"location\\":\\"Borders\\",\\"number\\":3},{\\"location\\":\\"Fife\\",\\"number\\":4},{\\"location\\":\\"Forth Valley\\",\\"number\\":6},{\\"location\\":\\"Grampian\\",\\"number\\":11},{\\"location\\":\\"Greater Glasgow and Clyde\\",\\"number\\":21},{\\"location\\":\\"Lanarkshire\\",\\"number\\":7},{\\"location\\":\\"Lothian\\",\\"number\\":20},{\\"location\\":\\"Shetland\\",\\"number\\":6},{\\"location\\":\\"Tayside\\",\\"number\\":3},{\\"location\\":\\"Wales\\",\\"number\\":38},{\\"location\\":\\"Northern Ireland\\",\\"number\\":29}]'),
(44, 1584057010000, 590, 8, 18, 0, 29174, 0, NULL, NULL, NULL, NULL, NULL, NULL, '[{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Barnet\\",\\"number\\":\\"8\\"},{\\"location\\":\\"Barnsley\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Bedford\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Bexley\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Birmingham\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Blackpool\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Bolton\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Bradford\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Brent\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":\\"8\\"},{\\"location\\":\\"Bristol, City of\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Bromley\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Bury\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Calderdale\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Camden\\",\\"number\\":\\"7\\"},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Cheshire East\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":\\"5\\"},{\\"location\\":\\"County Durham\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Coventry\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Croydon\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Cumbria\\",\\"number\\":\\"7\\"},{\\"location\\":\\"Darlington\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Derby\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Derbyshire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Devon\\",\\"number\\":\\"13\\"},{\\"location\\":\\"Doncaster\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Dorset\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Dudley\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Ealing\\",\\"number\\":\\"5\\"},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"East Sussex\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Enfield\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Essex\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Gateshead\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Gloucestershire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Greenwich\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Hackney and City of London\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Halton\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Hampshire\\",\\"number\\":\\"13\\"},{\\"location\\":\\"Haringey\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Harrow\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Hartlepool\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Havering\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Hertfordshire\\",\\"number\\":\\"18\\"},{\\"location\\":\\"Hillingdon\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Hounslow\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Isle of Wight\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Islington\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":\\"15\\"},{\\"location\\":\\"Kent\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Kirklees\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Knowsley\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Lambeth\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Lancashire\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Leeds\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Leicester\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Leicestershire\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Lewisham\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Lincolnshire\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Liverpool\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Luton\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Manchester\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Medway\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Merton\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Middlesbrough\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Milton Keynes\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Newham\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Norfolk\\",\\"number\\":\\"0\\"},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":\\"1\\"},{\\"location\\":\\"North Somerset\\",\\"number\\":\\"0\\"},{\\"location\\":\\"North Tyneside\\",\\"number\\":\\"2\\"},{\\"location\\":\\"North Yorkshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Northamptonshire\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Northumberland\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Nottingham\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Oldham\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Oxfordshire\\",\\"number\\":\\"9\\"},{\\"location\\":\\"Peterborough\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Plymouth\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Portsmouth\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Reading\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Redbridge\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Rochdale\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Rotherham\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Rutland\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Salford\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Sandwell\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Sefton\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Sheffield\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Shropshire\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Slough\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Solihull\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Somerset\\",\\"number\\":\\"2\\"},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":\\"1\\"},{\\"location\\":\\"South Tyneside\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Southampton\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Southwark\\",\\"number\\":\\"9\\"},{\\"location\\":\\"St. Helens\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Staffordshire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Stockport\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Suffolk\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Sunderland\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Surrey\\",\\"number\\":\\"10\\"},{\\"location\\":\\"Sutton\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Swindon\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Tameside\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Thurrock\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Torbay\\",\\"number\\":\\"7\\"},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Trafford\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Wakefield\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Walsall\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Waltham Forest\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Wandsworth\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Warrington\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Warwickshire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"West Berkshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"West Sussex\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Westminster\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Wigan\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Wiltshire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Wirral\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Wokingham\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Wolverhampton\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Worcestershire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"York\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Ayrshire and Arran\\",\\"number\\":4},{\\"location\\":\\"Borders\\",\\"number\\":2},{\\"location\\":\\"Fife\\",\\"number\\":3},{\\"location\\":\\"Forth Valley\\",\\"number\\":6},{\\"location\\":\\"Grampian\\",\\"number\\":7},{\\"location\\":\\"Greater Glasgow and Clyde\\",\\"number\\":10},{\\"location\\":\\"Lanarkshire\\",\\"number\\":7},{\\"location\\":\\"Lothian\\",\\"number\\":11},{\\"location\\":\\"Shetland\\",\\"number\\":6},{\\"location\\":\\"Tayside\\",\\"number\\":4},{\\"location\\":\\"Wales\\",\\"number\\":25},{\\"location\\":\\"Northern Ireland\\",\\"number\\":19}]'),
(45, 1584229810000, 1140, 21, 18, 0, 36606, 0, NULL, NULL, NULL, NULL, NULL, NULL, '[{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Barnet\\",\\"number\\":\\"23\\"},{\\"location\\":\\"Barnsley\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Bedford\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Bexley\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Birmingham\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Blackpool\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Bolton\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Bradford\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Brent\\",\\"number\\":\\"14\\"},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":\\"9\\"},{\\"location\\":\\"Bristol, City of\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Bromley\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":\\"13\\"},{\\"location\\":\\"Bury\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Calderdale\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Camden\\",\\"number\\":\\"19\\"},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Cheshire East\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":\\"4\\"},{\\"location\\":\\"County Durham\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Coventry\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Croydon\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Cumbria\\",\\"number\\":\\"9\\"},{\\"location\\":\\"Darlington\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Derby\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Derbyshire\\",\\"number\\":\\"9\\"},{\\"location\\":\\"Devon\\",\\"number\\":\\"14\\"},{\\"location\\":\\"Doncaster\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Dorset\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Dudley\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Ealing\\",\\"number\\":\\"18\\"},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":\\"2\\"},{\\"location\\":\\"East Sussex\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Enfield\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Essex\\",\\"number\\":\\"8\\"},{\\"location\\":\\"Gateshead\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Gloucestershire\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Greenwich\\",\\"number\\":\\"10\\"},{\\"location\\":\\"Hackney and City of London\\",\\"number\\":\\"11\\"},{\\"location\\":\\"Halton\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":\\"10\\"},{\\"location\\":\\"Hampshire\\",\\"number\\":\\"41\\"},{\\"location\\":\\"Haringey\\",\\"number\\":\\"9\\"},{\\"location\\":\\"Harrow\\",\\"number\\":\\"10\\"},{\\"location\\":\\"Hartlepool\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Havering\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Hertfordshire\\",\\"number\\":\\"21\\"},{\\"location\\":\\"Hillingdon\\",\\"number\\":\\"7\\"},{\\"location\\":\\"Hounslow\\",\\"number\\":\\"10\\"},{\\"location\\":\\"Isle of Wight\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Islington\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":\\"27\\"},{\\"location\\":\\"Kent\\",\\"number\\":\\"11\\"},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Kirklees\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Knowsley\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Lambeth\\",\\"number\\":\\"25\\"},{\\"location\\":\\"Lancashire\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Leeds\\",\\"number\\":\\"9\\"},{\\"location\\":\\"Leicester\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Leicestershire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Lewisham\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Lincolnshire\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Liverpool\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Luton\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Manchester\\",\\"number\\":\\"9\\"},{\\"location\\":\\"Medway\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Merton\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Middlesbrough\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Milton Keynes\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Newham\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Norfolk\\",\\"number\\":\\"0\\"},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":\\"1\\"},{\\"location\\":\\"North Somerset\\",\\"number\\":\\"0\\"},{\\"location\\":\\"North Tyneside\\",\\"number\\":\\"2\\"},{\\"location\\":\\"North Yorkshire\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Northamptonshire\\",\\"number\\":\\"8\\"},{\\"location\\":\\"Northumberland\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Nottingham\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Oldham\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Oxfordshire\\",\\"number\\":\\"21\\"},{\\"location\\":\\"Peterborough\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Plymouth\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Portsmouth\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Reading\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Redbridge\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Rochdale\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Rotherham\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Rutland\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Salford\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Sandwell\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Sefton\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Sheffield\\",\\"number\\":\\"13\\"},{\\"location\\":\\"Shropshire\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Slough\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Solihull\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Somerset\\",\\"number\\":\\"2\\"},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":\\"2\\"},{\\"location\\":\\"South Tyneside\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Southampton\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Southwark\\",\\"number\\":\\"28\\"},{\\"location\\":\\"St. Helens\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Staffordshire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Stockport\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Suffolk\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Sunderland\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Surrey\\",\\"number\\":\\"15\\"},{\\"location\\":\\"Sutton\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Swindon\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Tameside\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Thurrock\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Torbay\\",\\"number\\":\\"7\\"},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":\\"8\\"},{\\"location\\":\\"Trafford\\",\\"number\\":\\"7\\"},{\\"location\\":\\"Wakefield\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Walsall\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Waltham Forest\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Wandsworth\\",\\"number\\":\\"9\\"},{\\"location\\":\\"Warrington\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Warwickshire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"West Berkshire\\",\\"number\\":\\"3\\"},{\\"location\\":\\"West Sussex\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Westminster\\",\\"number\\":\\"24\\"},{\\"location\\":\\"Wigan\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Wiltshire\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Wirral\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Wokingham\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Wolverhampton\\",\\"number\\":\\"9\\"},{\\"location\\":\\"Worcestershire\\",\\"number\\":\\"2\\"},{\\"location\\":\\"York\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Ayrshire and Arran\\",\\"number\\":6},{\\"location\\":\\"Borders\\",\\"number\\":5},{\\"location\\":\\"Fife\\",\\"number\\":6},{\\"location\\":\\"Forth Valley\\",\\"number\\":6},{\\"location\\":\\"Grampian\\",\\"number\\":9},{\\"location\\":\\"Greater Glasgow and Clyde\\",\\"number\\":31},{\\"location\\":\\"Highland\\",\\"number\\":1},{\\"location\\":\\"Lanarkshire\\",\\"number\\":10},{\\"location\\":\\"Lothian\\",\\"number\\":25},{\\"location\\":\\"Shetland\\",\\"number\\":11},{\\"location\\":\\"Tayside\\",\\"number\\":11},{\\"location\\":\\"Wales\\",\\"number\\":60},{\\"location\\":\\"Northern Ireland\\",\\"number\\":34}]'),
(46, 1584316210000, 1372, 35, 20, 0, 38907, 0, NULL, NULL, NULL, NULL, NULL, NULL, '[{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":\\"7\\"},{\\"location\\":\\"Barnet\\",\\"number\\":\\"25\\"},{\\"location\\":\\"Barnsley\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Bedford\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Bexley\\",\\"number\\":\\"7\\"},{\\"location\\":\\"Birmingham\\",\\"number\\":\\"8\\"},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Blackpool\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Bolton\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Bradford\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Brent\\",\\"number\\":\\"20\\"},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":\\"10\\"},{\\"location\\":\\"Bristol, City of\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Bromley\\",\\"number\\":\\"7\\"},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":\\"15\\"},{\\"location\\":\\"Bury\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Calderdale\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":\\"7\\"},{\\"location\\":\\"Camden\\",\\"number\\":\\"22\\"},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Cheshire East\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":\\"5\\"},{\\"location\\":\\"County Durham\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Coventry\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Croydon\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Cumbria\\",\\"number\\":\\"10\\"},{\\"location\\":\\"Darlington\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Derby\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Derbyshire\\",\\"number\\":\\"11\\"},{\\"location\\":\\"Devon\\",\\"number\\":\\"15\\"},{\\"location\\":\\"Doncaster\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Dorset\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Dudley\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Ealing\\",\\"number\\":\\"20\\"},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":\\"3\\"},{\\"location\\":\\"East Sussex\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Enfield\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Essex\\",\\"number\\":\\"14\\"},{\\"location\\":\\"Gateshead\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Gloucestershire\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Greenwich\\",\\"number\\":\\"13\\"},{\\"location\\":\\"Hackney and City of London\\",\\"number\\":\\"13\\"},{\\"location\\":\\"Halton\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":\\"19\\"},{\\"location\\":\\"Hampshire\\",\\"number\\":\\"53\\"},{\\"location\\":\\"Haringey\\",\\"number\\":\\"11\\"},{\\"location\\":\\"Harrow\\",\\"number\\":\\"12\\"},{\\"location\\":\\"Hartlepool\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Havering\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Hertfordshire\\",\\"number\\":\\"32\\"},{\\"location\\":\\"Hillingdon\\",\\"number\\":\\"10\\"},{\\"location\\":\\"Hounslow\\",\\"number\\":\\"10\\"},{\\"location\\":\\"Isle of Wight\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Islington\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":\\"40\\"},{\\"location\\":\\"Kent\\",\\"number\\":\\"11\\"},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Kirklees\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Knowsley\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Lambeth\\",\\"number\\":\\"26\\"},{\\"location\\":\\"Lancashire\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Leeds\\",\\"number\\":\\"19\\"},{\\"location\\":\\"Leicester\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Leicestershire\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Lewisham\\",\\"number\\":\\"11\\"},{\\"location\\":\\"Lincolnshire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Liverpool\\",\\"number\\":\\"9\\"},{\\"location\\":\\"Luton\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Manchester\\",\\"number\\":\\"9\\"},{\\"location\\":\\"Medway\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Merton\\",\\"number\\":\\"9\\"},{\\"location\\":\\"Middlesbrough\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Milton Keynes\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Newham\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Norfolk\\",\\"number\\":\\"1\\"},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":\\"2\\"},{\\"location\\":\\"North Somerset\\",\\"number\\":\\"0\\"},{\\"location\\":\\"North Tyneside\\",\\"number\\":\\"2\\"},{\\"location\\":\\"North Yorkshire\\",\\"number\\":\\"7\\"},{\\"location\\":\\"Northamptonshire\\",\\"number\\":\\"9\\"},{\\"location\\":\\"Northumberland\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Nottingham\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Oldham\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Oxfordshire\\",\\"number\\":\\"24\\"},{\\"location\\":\\"Peterborough\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Plymouth\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Portsmouth\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Reading\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Redbridge\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Rochdale\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Rotherham\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Rutland\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Salford\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Sandwell\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Sefton\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Sheffield\\",\\"number\\":\\"12\\"},{\\"location\\":\\"Shropshire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Slough\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Solihull\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Somerset\\",\\"number\\":\\"2\\"},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"South Tyneside\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Southampton\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Southwark\\",\\"number\\":\\"30\\"},{\\"location\\":\\"St. Helens\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Staffordshire\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Stockport\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Suffolk\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Sunderland\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Surrey\\",\\"number\\":\\"23\\"},{\\"location\\":\\"Sutton\\",\\"number\\":\\"7\\"},{\\"location\\":\\"Swindon\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Tameside\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Thurrock\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Torbay\\",\\"number\\":\\"7\\"},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":\\"9\\"},{\\"location\\":\\"Trafford\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Wakefield\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Walsall\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Waltham Forest\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Wandsworth\\",\\"number\\":\\"17\\"},{\\"location\\":\\"Warrington\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Warwickshire\\",\\"number\\":\\"5\\"},{\\"location\\":\\"West Berkshire\\",\\"number\\":\\"3\\"},{\\"location\\":\\"West Sussex\\",\\"number\\":\\"7\\"},{\\"location\\":\\"Westminster\\",\\"number\\":\\"35\\"},{\\"location\\":\\"Wigan\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Wiltshire\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Wirral\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Wokingham\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Wolverhampton\\",\\"number\\":\\"8\\"},{\\"location\\":\\"Worcestershire\\",\\"number\\":\\"3\\"},{\\"location\\":\\"York\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Ayrshire and Arran\\",\\"number\\":6},{\\"location\\":\\"Borders\\",\\"number\\":7},{\\"location\\":\\"Fife\\",\\"number\\":7},{\\"location\\":\\"Forth Valley\\",\\"number\\":10},{\\"location\\":\\"Grampian\\",\\"number\\":12},{\\"location\\":\\"Greater Glasgow and Clyde\\",\\"number\\":39},{\\"location\\":\\"Highland\\",\\"number\\":2},{\\"location\\":\\"Lanarkshire\\",\\"number\\":16},{\\"location\\":\\"Lothian\\",\\"number\\":28},{\\"location\\":\\"Shetland\\",\\"number\\":11},{\\"location\\":\\"Tayside\\",\\"number\\":15},{\\"location\\":\\"Wales\\",\\"number\\":94},{\\"location\\":\\"Northern Ireland\\",\\"number\\":45}]'),
(47, 1584402610000, 1543, 55, 52, 0, 42562, 0, NULL, NULL, 1196, 171, 124, 52, '[{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":\\"10\\"},{\\"location\\":\\"Barnet\\",\\"number\\":\\"25\\"},{\\"location\\":\\"Barnsley\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Bedford\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Bexley\\",\\"number\\":\\"8\\"},{\\"location\\":\\"Birmingham\\",\\"number\\":\\"15\\"},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Blackpool\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Bolton\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Bradford\\",\\"number\\":\\"7\\"},{\\"location\\":\\"Brent\\",\\"number\\":\\"20\\"},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":\\"10\\"},{\\"location\\":\\"Bristol, City of\\",\\"number\\":\\"7\\"},{\\"location\\":\\"Bromley\\",\\"number\\":\\"11\\"},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":\\"12\\"},{\\"location\\":\\"Bury\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Calderdale\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":\\"12\\"},{\\"location\\":\\"Camden\\",\\"number\\":\\"22\\"},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Cheshire East\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":\\"8\\"},{\\"location\\":\\"County Durham\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Coventry\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Croydon\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Cumbria\\",\\"number\\":\\"10\\"},{\\"location\\":\\"Darlington\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Derby\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Derbyshire\\",\\"number\\":\\"12\\"},{\\"location\\":\\"Devon\\",\\"number\\":\\"20\\"},{\\"location\\":\\"Doncaster\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Dorset\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Dudley\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Ealing\\",\\"number\\":\\"18\\"},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"East Sussex\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Enfield\\",\\"number\\":\\"8\\"},{\\"location\\":\\"Essex\\",\\"number\\":\\"20\\"},{\\"location\\":\\"Gateshead\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Gloucestershire\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Greenwich\\",\\"number\\":\\"18\\"},{\\"location\\":\\"Hackney and City of London\\",\\"number\\":\\"20\\"},{\\"location\\":\\"Halton\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":\\"21\\"},{\\"location\\":\\"Hampshire\\",\\"number\\":\\"55\\"},{\\"location\\":\\"Haringey\\",\\"number\\":\\"16\\"},{\\"location\\":\\"Harrow\\",\\"number\\":\\"14\\"},{\\"location\\":\\"Hartlepool\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Havering\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Hertfordshire\\",\\"number\\":\\"29\\"},{\\"location\\":\\"Hillingdon\\",\\"number\\":\\"13\\"},{\\"location\\":\\"Hounslow\\",\\"number\\":\\"12\\"},{\\"location\\":\\"Isle of Wight\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Islington\\",\\"number\\":\\"11\\"},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":\\"43\\"},{\\"location\\":\\"Kent\\",\\"number\\":\\"12\\"},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Kirklees\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Knowsley\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Lambeth\\",\\"number\\":\\"26\\"},{\\"location\\":\\"Lancashire\\",\\"number\\":\\"8\\"},{\\"location\\":\\"Leeds\\",\\"number\\":\\"14\\"},{\\"location\\":\\"Leicester\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Leicestershire\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Lewisham\\",\\"number\\":\\"17\\"},{\\"location\\":\\"Lincolnshire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Liverpool\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Luton\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Manchester\\",\\"number\\":\\"8\\"},{\\"location\\":\\"Medway\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Merton\\",\\"number\\":\\"12\\"},{\\"location\\":\\"Middlesbrough\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Milton Keynes\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Newham\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Norfolk\\",\\"number\\":\\"2\\"},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":\\"0\\"},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":\\"1\\"},{\\"location\\":\\"North Somerset\\",\\"number\\":\\"2\\"},{\\"location\\":\\"North Tyneside\\",\\"number\\":\\"3\\"},{\\"location\\":\\"North Yorkshire\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Northamptonshire\\",\\"number\\":\\"12\\"},{\\"location\\":\\"Northumberland\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Nottingham\\",\\"number\\":\\"10\\"},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":\\"14\\"},{\\"location\\":\\"Oldham\\",\\"number\\":\\"10\\"},{\\"location\\":\\"Oxfordshire\\",\\"number\\":\\"23\\"},{\\"location\\":\\"Peterborough\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Plymouth\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Portsmouth\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Reading\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Redbridge\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Rochdale\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Rotherham\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Rutland\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Salford\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Sandwell\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Sefton\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Sheffield\\",\\"number\\":\\"15\\"},{\\"location\\":\\"Shropshire\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Slough\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Solihull\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Somerset\\",\\"number\\":\\"3\\"},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":\\"5\\"},{\\"location\\":\\"South Tyneside\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Southampton\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Southwark\\",\\"number\\":\\"33\\"},{\\"location\\":\\"St. Helens\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Staffordshire\\",\\"number\\":\\"7\\"},{\\"location\\":\\"Stockport\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Suffolk\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Sunderland\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Surrey\\",\\"number\\":\\"25\\"},{\\"location\\":\\"Sutton\\",\\"number\\":\\"11\\"},{\\"location\\":\\"Swindon\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Tameside\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Thurrock\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Torbay\\",\\"number\\":\\"7\\"},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":\\"12\\"},{\\"location\\":\\"Trafford\\",\\"number\\":\\"7\\"},{\\"location\\":\\"Wakefield\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Walsall\\",\\"number\\":\\"11\\"},{\\"location\\":\\"Waltham Forest\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Wandsworth\\",\\"number\\":\\"20\\"},{\\"location\\":\\"Warrington\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Warwickshire\\",\\"number\\":\\"4\\"},{\\"location\\":\\"West Berkshire\\",\\"number\\":\\"3\\"},{\\"location\\":\\"West Sussex\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Westminster\\",\\"number\\":\\"37\\"},{\\"location\\":\\"Wigan\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Wiltshire\\",\\"number\\":\\"7\\"},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Wirral\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Wokingham\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Wolverhampton\\",\\"number\\":\\"11\\"},{\\"location\\":\\"Worcestershire\\",\\"number\\":\\"3\\"},{\\"location\\":\\"York\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Ayrshire and Arran\\",\\"number\\":7},{\\"location\\":\\"Borders\\",\\"number\\":7},{\\"location\\":\\"Dumfries and Galloway\\",\\"number\\":1},{\\"location\\":\\"Fife\\",\\"number\\":7},{\\"location\\":\\"Forth Valley\\",\\"number\\":10},{\\"location\\":\\"Grampian\\",\\"number\\":12},{\\"location\\":\\"Greater Glasgow and Clyde\\",\\"number\\":44},{\\"location\\":\\"Highland\\",\\"number\\":2},{\\"location\\":\\"Lanarkshire\\",\\"number\\":20},{\\"location\\":\\"Lothian\\",\\"number\\":29},{\\"location\\":\\"Shetland\\",\\"number\\":15},{\\"location\\":\\"Tayside\\",\\"number\\":17},{\\"location\\":\\"Wales\\",\\"number\\":124},{\\"location\\":\\"Northern Ireland\\",\\"number\\":52}]');
INSERT INTO `history` (`id`, `date`, `confirmed`, `death`, `cured`, `serious`, `negative`, `suspected`, `tested`, `test_done`, `england`, `scotland`, `wales`, `nireland`, `area`) VALUES
(48, 1584489010000, 1950, 60, 65, 0, 48492, 0, NULL, NULL, 1557, 195, 136, 62, '[{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":\\" 9\\"},{\\"location\\":\\"Barnet\\",\\"number\\":\\" 24\\"},{\\"location\\":\\"Barnsley\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Bedford\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Bexley\\",\\"number\\":\\" 14\\"},{\\"location\\":\\"Birmingham\\",\\"number\\":\\" 20\\"},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Blackpool\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Bolton\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":\\" 6\\"},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Bradford\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Brent\\",\\"number\\":\\" 24\\"},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":\\" 9\\"},{\\"location\\":\\"Bristol, City of\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"Bromley\\",\\"number\\":\\" 23\\"},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":\\" 23\\"},{\\"location\\":\\"Bury\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Calderdale\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":\\" 12\\"},{\\"location\\":\\"Camden\\",\\"number\\":\\" 20\\"},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":\\" 6\\"},{\\"location\\":\\"Cheshire East\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"County Durham\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Coventry\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Croydon\\",\\"number\\":\\" 6\\"},{\\"location\\":\\"Cumbria\\",\\"number\\":\\" 22\\"},{\\"location\\":\\"Darlington\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Derby\\",\\"number\\":\\" 0\\"},{\\"location\\":\\"Derbyshire\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"Devon\\",\\"number\\":\\" 24\\"},{\\"location\\":\\"Doncaster\\",\\"number\\":\\" 0\\"},{\\"location\\":\\"Dorset\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Dudley\\",\\"number\\":\\" 9\\"},{\\"location\\":\\"Ealing\\",\\"number\\":\\" 21\\"},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":\\" 9\\"},{\\"location\\":\\"East Sussex\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Enfield\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Essex\\",\\"number\\":\\" 21\\"},{\\"location\\":\\"Gateshead\\",\\"number\\":\\" 0\\"},{\\"location\\":\\"Gloucestershire\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Greenwich\\",\\"number\\":\\" 19\\"},{\\"location\\":\\"Hackney and City of London\\",\\"number\\":\\" 22\\"},{\\"location\\":\\"Halton\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":\\" 23\\"},{\\"location\\":\\"Hampshire\\",\\"number\\":\\" 69\\"},{\\"location\\":\\"Haringey\\",\\"number\\":\\" 17\\"},{\\"location\\":\\"Harrow\\",\\"number\\":\\" 15\\"},{\\"location\\":\\"Hartlepool\\",\\"number\\":\\" 0\\"},{\\"location\\":\\"Havering\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Hertfordshire\\",\\"number\\":\\" 36\\"},{\\"location\\":\\"Hillingdon\\",\\"number\\":\\" 16\\"},{\\"location\\":\\"Hounslow\\",\\"number\\":\\" 15\\"},{\\"location\\":\\"Isle of Wight\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Islington\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":\\" 49\\"},{\\"location\\":\\"Kent\\",\\"number\\":\\" 18\\"},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Kirklees\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Knowsley\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Lambeth\\",\\"number\\":\\" 43\\"},{\\"location\\":\\"Lancashire\\",\\"number\\":\\" 15\\"},{\\"location\\":\\"Leeds\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Leicester\\",\\"number\\":\\" 0\\"},{\\"location\\":\\"Leicestershire\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Lewisham\\",\\"number\\":\\" 18\\"},{\\"location\\":\\"Lincolnshire\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Liverpool\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Luton\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Manchester\\",\\"number\\":\\" 14\\"},{\\"location\\":\\"Medway\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Merton\\",\\"number\\":\\" 13\\"},{\\"location\\":\\"Middlesbrough\\",\\"number\\":\\" 0\\"},{\\"location\\":\\"Milton Keynes\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"Newham\\",\\"number\\":\\" 17\\"},{\\"location\\":\\"Norfolk\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":\\" 0\\"},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"North Somerset\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"North Tyneside\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"North Yorkshire\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"Northamptonshire\\",\\"number\\":\\" 12\\"},{\\"location\\":\\"Northumberland\\",\\"number\\":\\" 0\\"},{\\"location\\":\\"Nottingham\\",\\"number\\":\\" 12\\"},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":\\" 13\\"},{\\"location\\":\\"Oldham\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Oxfordshire\\",\\"number\\":\\" 25\\"},{\\"location\\":\\"Peterborough\\",\\"number\\":\\" 0\\"},{\\"location\\":\\"Plymouth\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Portsmouth\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Reading\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Redbridge\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Rochdale\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Rotherham\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Rutland\\",\\"number\\":\\" 0\\"},{\\"location\\":\\"Salford\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Sandwell\\",\\"number\\":\\" 6\\"},{\\"location\\":\\"Sefton\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Sheffield\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Shropshire\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Slough\\",\\"number\\":\\" 12\\"},{\\"location\\":\\"Solihull\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Somerset\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":\\" 6\\"},{\\"location\\":\\"South Tyneside\\",\\"number\\":\\" 0\\"},{\\"location\\":\\"Southampton\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Southwark\\",\\"number\\":\\" 58\\"},{\\"location\\":\\"St. Helens\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Staffordshire\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Stockport\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":\\" 0\\"},{\\"location\\":\\"Suffolk\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Sunderland\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Surrey\\",\\"number\\":\\" 30\\"},{\\"location\\":\\"Sutton\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Swindon\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Tameside\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":\\" 0\\"},{\\"location\\":\\"Thurrock\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Torbay\\",\\"number\\":\\" 6\\"},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":\\" 23\\"},{\\"location\\":\\"Trafford\\",\\"number\\":\\" 12\\"},{\\"location\\":\\"Wakefield\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Walsall\\",\\"number\\":\\" 13\\"},{\\"location\\":\\"Waltham Forest\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Wandsworth\\",\\"number\\":\\" 21\\"},{\\"location\\":\\"Warrington\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Warwickshire\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"West Berkshire\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"West Sussex\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Westminster\\",\\"number\\":\\" 58\\"},{\\"location\\":\\"Wigan\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Wiltshire\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":\\" 9\\"},{\\"location\\":\\"Wirral\\",\\"number\\":\\" 6\\"},{\\"location\\":\\"Wokingham\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"Wolverhampton\\",\\"number\\":\\" 18\\"},{\\"location\\":\\"Worcestershire\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"York\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Ayrshire and Arran\\",\\"number\\":6},{\\"location\\":\\"Borders\\",\\"number\\":7},{\\"location\\":\\"Dumfries and Galloway\\",\\"number\\":1},{\\"location\\":\\"Fife\\",\\"number\\":7},{\\"location\\":\\"Forth Valley\\",\\"number\\":12},{\\"location\\":\\"Grampian\\",\\"number\\":22},{\\"location\\":\\"Greater Glasgow and Clyde\\",\\"number\\":49},{\\"location\\":\\"Highland\\",\\"number\\":5},{\\"location\\":\\"Lanarkshire\\",\\"number\\":21},{\\"location\\":\\"Lothian\\",\\"number\\":30},{\\"location\\":\\"Shetland\\",\\"number\\":15},{\\"location\\":\\"Tayside\\",\\"number\\":20},{\\"location\\":\\"Wales\\",\\"number\\":136},{\\"location\\":\\"Northern Ireland\\",\\"number\\":62}]'),
(49, 1584575410000, 2626, 103, 65, 0, 53595, 0, NULL, NULL, 2182, 227, 149, 68, '[{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":\\" 14\\"},{\\"location\\":\\"Barnet\\",\\"number\\":\\" 27\\"},{\\"location\\":\\"Barnsley\\",\\"number\\":\\" 6\\"},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Bedford\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Bexley\\",\\"number\\":\\" 17\\"},{\\"location\\":\\"Birmingham\\",\\"number\\":\\" 25\\"},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Blackpool\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Bolton\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Bradford\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"Brent\\",\\"number\\":\\" 45\\"},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Bristol, City of\\",\\"number\\":\\" 12\\"},{\\"location\\":\\"Bromley\\",\\"number\\":\\" 32\\"},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":\\" 27\\"},{\\"location\\":\\"Bury\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Calderdale\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":\\" 14\\"},{\\"location\\":\\"Camden\\",\\"number\\":\\" 30\\"},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":\\" 6\\"},{\\"location\\":\\"Cheshire East\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"County Durham\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Coventry\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Croydon\\",\\"number\\":\\" 32\\"},{\\"location\\":\\"Cumbria\\",\\"number\\":\\" 34\\"},{\\"location\\":\\"Darlington\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Derby\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Derbyshire\\",\\"number\\":\\" 27\\"},{\\"location\\":\\"Devon\\",\\"number\\":\\" 25\\"},{\\"location\\":\\"Doncaster\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Dorset\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"Dudley\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Ealing\\",\\"number\\":\\" 42\\"},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"East Sussex\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"Enfield\\",\\"number\\":\\" 27\\"},{\\"location\\":\\"Essex\\",\\"number\\":\\" 27\\"},{\\"location\\":\\"Gateshead\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Gloucestershire\\",\\"number\\":\\" 12\\"},{\\"location\\":\\"Greenwich\\",\\"number\\":\\" 19\\"},{\\"location\\":\\"Hackney and City of London\\",\\"number\\":\\" 29\\"},{\\"location\\":\\"Halton\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":\\" 25\\"},{\\"location\\":\\"Hampshire\\",\\"number\\":\\" 77\\"},{\\"location\\":\\"Haringey\\",\\"number\\":\\" 29\\"},{\\"location\\":\\"Harrow\\",\\"number\\":\\" 40\\"},{\\"location\\":\\"Hartlepool\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Havering\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Hertfordshire\\",\\"number\\":\\" 50\\"},{\\"location\\":\\"Hillingdon\\",\\"number\\":\\" 21\\"},{\\"location\\":\\"Hounslow\\",\\"number\\":\\" 24\\"},{\\"location\\":\\"Isle of Wight\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Islington\\",\\"number\\":\\" 29\\"},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":\\" 55\\"},{\\"location\\":\\"Kent\\",\\"number\\":\\" 21\\"},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Kirklees\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Knowsley\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Lambeth\\",\\"number\\":\\" 61\\"},{\\"location\\":\\"Lancashire\\",\\"number\\":\\" 15\\"},{\\"location\\":\\"Leeds\\",\\"number\\":\\" 12\\"},{\\"location\\":\\"Leicester\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Leicestershire\\",\\"number\\":\\" 14\\"},{\\"location\\":\\"Lewisham\\",\\"number\\":\\" 22\\"},{\\"location\\":\\"Lincolnshire\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Liverpool\\",\\"number\\":\\" 12\\"},{\\"location\\":\\"Luton\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Manchester\\",\\"number\\":\\" 18\\"},{\\"location\\":\\"Medway\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Merton\\",\\"number\\":\\" 34\\"},{\\"location\\":\\"Middlesbrough\\",\\"number\\":\\" 0\\"},{\\"location\\":\\"Milton Keynes\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":\\" 13\\"},{\\"location\\":\\"Newham\\",\\"number\\":\\" 23\\"},{\\"location\\":\\"Norfolk\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":\\" 0\\"},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"North Somerset\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"North Tyneside\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"North Yorkshire\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Northamptonshire\\",\\"number\\":\\" 15\\"},{\\"location\\":\\"Northumberland\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Nottingham\\",\\"number\\":\\" 14\\"},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":\\" 28\\"},{\\"location\\":\\"Oldham\\",\\"number\\":\\" 12\\"},{\\"location\\":\\"Oxfordshire\\",\\"number\\":\\" 34\\"},{\\"location\\":\\"Peterborough\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Plymouth\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"Portsmouth\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Reading\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"Redbridge\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Rochdale\\",\\"number\\":\\" 6\\"},{\\"location\\":\\"Rotherham\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Rutland\\",\\"number\\":\\" 0\\"},{\\"location\\":\\"Salford\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Sandwell\\",\\"number\\":\\" 6\\"},{\\"location\\":\\"Sefton\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Sheffield\\",\\"number\\":\\" 36\\"},{\\"location\\":\\"Shropshire\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Slough\\",\\"number\\":\\" 13\\"},{\\"location\\":\\"Solihull\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Somerset\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":\\" 9\\"},{\\"location\\":\\"South Tyneside\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Southampton\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"Southwark\\",\\"number\\":\\" 70\\"},{\\"location\\":\\"St. Helens\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Staffordshire\\",\\"number\\":\\" 14\\"},{\\"location\\":\\"Stockport\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":\\" 6\\"},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Suffolk\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Sunderland\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Surrey\\",\\"number\\":\\" 39\\"},{\\"location\\":\\"Sutton\\",\\"number\\":\\" 12\\"},{\\"location\\":\\"Swindon\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Tameside\\",\\"number\\":\\" 12\\"},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":\\" 0\\"},{\\"location\\":\\"Thurrock\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Torbay\\",\\"number\\":\\" 6\\"},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":\\" 25\\"},{\\"location\\":\\"Trafford\\",\\"number\\":\\" 14\\"},{\\"location\\":\\"Wakefield\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"Walsall\\",\\"number\\":\\" 14\\"},{\\"location\\":\\"Waltham Forest\\",\\"number\\":\\" 14\\"},{\\"location\\":\\"Wandsworth\\",\\"number\\":\\" 59\\"},{\\"location\\":\\"Warrington\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Warwickshire\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"West Berkshire\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"West Sussex\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Westminster\\",\\"number\\":\\" 68\\"},{\\"location\\":\\"Wigan\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Wiltshire\\",\\"number\\":\\" 9\\"},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Wirral\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"Wokingham\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Wolverhampton\\",\\"number\\":\\" 22\\"},{\\"location\\":\\"Worcestershire\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"York\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Ayrshire and Arran\\",\\"number\\":9},{\\"location\\":\\"Borders\\",\\"number\\":7},{\\"location\\":\\"Dumfries and Galloway\\",\\"number\\":4},{\\"location\\":\\"Fife\\",\\"number\\":8},{\\"location\\":\\"Forth Valley\\",\\"number\\":15},{\\"location\\":\\"Grampian\\",\\"number\\":24},{\\"location\\":\\"Greater Glasgow and Clyde\\",\\"number\\":57},{\\"location\\":\\"Highland\\",\\"number\\":5},{\\"location\\":\\"Lanarkshire\\",\\"number\\":25},{\\"location\\":\\"Lothian\\",\\"number\\":33},{\\"location\\":\\"Shetland\\",\\"number\\":16},{\\"location\\":\\"Tayside\\",\\"number\\":24},{\\"location\\":\\"Wales\\",\\"number\\":149},{\\"location\\":\\"Northern Ireland\\",\\"number\\":68}]'),
(50, 1584661810000, 3269, 144, 65, 0, 61352, 0, NULL, NULL, 2756, 266, 170, 77, '[{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":\\" 18\\"},{\\"location\\":\\"Barnet\\",\\"number\\":\\" 28\\"},{\\"location\\":\\"Barnsley\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Bedford\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Bexley\\",\\"number\\":\\" 22\\"},{\\"location\\":\\"Birmingham\\",\\"number\\":\\" 34\\"},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Blackpool\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Bolton\\",\\"number\\":\\" 9\\"},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":\\" 9\\"},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Bradford\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Brent\\",\\"number\\":\\" 66\\"},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":\\" 12\\"},{\\"location\\":\\"Bristol, City of\\",\\"number\\":\\" 12\\"},{\\"location\\":\\"Bromley\\",\\"number\\":\\" 40\\"},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":\\" 39\\"},{\\"location\\":\\"Bury\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"Calderdale\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":\\" 15\\"},{\\"location\\":\\"Camden\\",\\"number\\":\\" 36\\"},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Cheshire East\\",\\"number\\":\\" 9\\"},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"County Durham\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"Coventry\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Croydon\\",\\"number\\":\\" 49\\"},{\\"location\\":\\"Cumbria\\",\\"number\\":\\" 38\\"},{\\"location\\":\\"Darlington\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Derby\\",\\"number\\":\\" 9\\"},{\\"location\\":\\"Derbyshire\\",\\"number\\":\\" 40\\"},{\\"location\\":\\"Devon\\",\\"number\\":\\" 26\\"},{\\"location\\":\\"Doncaster\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Dorset\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Dudley\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Ealing\\",\\"number\\":\\" 53\\"},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"East Sussex\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"Enfield\\",\\"number\\":\\" 30\\"},{\\"location\\":\\"Essex\\",\\"number\\":\\" 31\\"},{\\"location\\":\\"Gateshead\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Gloucestershire\\",\\"number\\":\\" 15\\"},{\\"location\\":\\"Greenwich\\",\\"number\\":\\" 33\\"},{\\"location\\":\\"Hackney and City of London\\",\\"number\\":\\" 32\\"},{\\"location\\":\\"Halton\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":\\" 28\\"},{\\"location\\":\\"Hampshire\\",\\"number\\":\\" 87\\"},{\\"location\\":\\"Haringey\\",\\"number\\":\\" 32\\"},{\\"location\\":\\"Harrow\\",\\"number\\":\\" 56\\"},{\\"location\\":\\"Hartlepool\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Havering\\",\\"number\\":\\" 14\\"},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Hertfordshire\\",\\"number\\":\\" 52\\"},{\\"location\\":\\"Hillingdon\\",\\"number\\":\\" 29\\"},{\\"location\\":\\"Hounslow\\",\\"number\\":\\" 29\\"},{\\"location\\":\\"Isle of Wight\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Islington\\",\\"number\\":\\" 35\\"},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":\\" 57\\"},{\\"location\\":\\"Kent\\",\\"number\\":\\" 25\\"},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":\\" 14\\"},{\\"location\\":\\"Kirklees\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Knowsley\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Lambeth\\",\\"number\\":\\" 81\\"},{\\"location\\":\\"Lancashire\\",\\"number\\":\\" 24\\"},{\\"location\\":\\"Leeds\\",\\"number\\":\\" 15\\"},{\\"location\\":\\"Leicester\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"Leicestershire\\",\\"number\\":\\" 17\\"},{\\"location\\":\\"Lewisham\\",\\"number\\":\\" 39\\"},{\\"location\\":\\"Lincolnshire\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Liverpool\\",\\"number\\":\\" 13\\"},{\\"location\\":\\"Luton\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Manchester\\",\\"number\\":\\" 21\\"},{\\"location\\":\\"Medway\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"Merton\\",\\"number\\":\\" 39\\"},{\\"location\\":\\"Middlesbrough\\",\\"number\\":\\" 0\\"},{\\"location\\":\\"Milton Keynes\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":\\" 19\\"},{\\"location\\":\\"Newham\\",\\"number\\":\\" 32\\"},{\\"location\\":\\"Norfolk\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":\\" 0\\"},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"North Somerset\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"North Tyneside\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"North Yorkshire\\",\\"number\\":\\" 13\\"},{\\"location\\":\\"Northamptonshire\\",\\"number\\":\\" 16\\"},{\\"location\\":\\"Northumberland\\",\\"number\\":\\" 6\\"},{\\"location\\":\\"Nottingham\\",\\"number\\":\\" 14\\"},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":\\" 29\\"},{\\"location\\":\\"Oldham\\",\\"number\\":\\" 14\\"},{\\"location\\":\\"Oxfordshire\\",\\"number\\":\\" 34\\"},{\\"location\\":\\"Peterborough\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Plymouth\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Portsmouth\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"Reading\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Redbridge\\",\\"number\\":\\" 18\\"},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":\\" 12\\"},{\\"location\\":\\"Rochdale\\",\\"number\\":\\" 9\\"},{\\"location\\":\\"Rotherham\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Rutland\\",\\"number\\":\\" 0\\"},{\\"location\\":\\"Salford\\",\\"number\\":\\" 9\\"},{\\"location\\":\\"Sandwell\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Sefton\\",\\"number\\":\\" 6\\"},{\\"location\\":\\"Sheffield\\",\\"number\\":\\" 40\\"},{\\"location\\":\\"Shropshire\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Slough\\",\\"number\\":\\" 17\\"},{\\"location\\":\\"Solihull\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Somerset\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":\\" 12\\"},{\\"location\\":\\"South Tyneside\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Southampton\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Southwark\\",\\"number\\":\\" 82\\"},{\\"location\\":\\"St. Helens\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Staffordshire\\",\\"number\\":\\" 18\\"},{\\"location\\":\\"Stockport\\",\\"number\\":\\" 13\\"},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":\\" 9\\"},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Suffolk\\",\\"number\\":\\" 13\\"},{\\"location\\":\\"Sunderland\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Surrey\\",\\"number\\":\\" 45\\"},{\\"location\\":\\"Sutton\\",\\"number\\":\\" 14\\"},{\\"location\\":\\"Swindon\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Tameside\\",\\"number\\":\\" 14\\"},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":\\" 0\\"},{\\"location\\":\\"Thurrock\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Torbay\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":\\" 33\\"},{\\"location\\":\\"Trafford\\",\\"number\\":\\" 13\\"},{\\"location\\":\\"Wakefield\\",\\"number\\":\\" 6\\"},{\\"location\\":\\"Walsall\\",\\"number\\":\\" 16\\"},{\\"location\\":\\"Waltham Forest\\",\\"number\\":\\" 17\\"},{\\"location\\":\\"Wandsworth\\",\\"number\\":\\" 75\\"},{\\"location\\":\\"Warrington\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Warwickshire\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"West Berkshire\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"West Sussex\\",\\"number\\":\\" 16\\"},{\\"location\\":\\"Westminster\\",\\"number\\":\\" 78\\"},{\\"location\\":\\"Wigan\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Wiltshire\\",\\"number\\":\\" 12\\"},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":\\" 13\\"},{\\"location\\":\\"Wirral\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"Wokingham\\",\\"number\\":\\" 9\\"},{\\"location\\":\\"Wolverhampton\\",\\"number\\":\\" 28\\"},{\\"location\\":\\"Worcestershire\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"York\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"Ayrshire and Arran\\",\\"number\\":12},{\\"location\\":\\"Borders\\",\\"number\\":8},{\\"location\\":\\"Dumfries and Galloway\\",\\"number\\":6},{\\"location\\":\\"Fife\\",\\"number\\":9},{\\"location\\":\\"Forth Valley\\",\\"number\\":17},{\\"location\\":\\"Grampian\\",\\"number\\":18},{\\"location\\":\\"Greater Glasgow and Clyde\\",\\"number\\":71},{\\"location\\":\\"Highland\\",\\"number\\":6},{\\"location\\":\\"Lanarkshire\\",\\"number\\":33},{\\"location\\":\\"Lothian\\",\\"number\\":35},{\\"location\\":\\"Shetland\\",\\"number\\":24},{\\"location\\":\\"Tayside\\",\\"number\\":27},{\\"location\\":\\"Wales\\",\\"number\\":170},{\\"location\\":\\"Northern Ireland\\",\\"number\\":77}]'),
(51, 1584748210000, 3983, 177, 65, 0, 62993, 0, NULL, NULL, 3384, 322, 191, 86, '[{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":\\" 21\\"},{\\"location\\":\\"Barnet\\",\\"number\\":\\" 76\\"},{\\"location\\":\\"Barnsley\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"Bedford\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Bexley\\",\\"number\\":\\" 31\\"},{\\"location\\":\\"Birmingham\\",\\"number\\":\\" 54\\"},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Blackpool\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"Bolton\\",\\"number\\":\\" 13\\"},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Bradford\\",\\"number\\":\\" 9\\"},{\\"location\\":\\"Brent\\",\\"number\\":\\" 75\\"},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":\\" 14\\"},{\\"location\\":\\"Bristol, City of\\",\\"number\\":\\" 13\\"},{\\"location\\":\\"Bromley\\",\\"number\\":\\" 52\\"},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":\\" 39\\"},{\\"location\\":\\"Bury\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Calderdale\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":\\" 16\\"},{\\"location\\":\\"Camden\\",\\"number\\":\\" 46\\"},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"Cheshire East\\",\\"number\\":\\" 9\\"},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":\\" 16\\"},{\\"location\\":\\"County Durham\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Coventry\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Croydon\\",\\"number\\":\\" 68\\"},{\\"location\\":\\"Cumbria\\",\\"number\\":\\" 52\\"},{\\"location\\":\\"Darlington\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Derby\\",\\"number\\":\\" 12\\"},{\\"location\\":\\"Derbyshire\\",\\"number\\":\\" 50\\"},{\\"location\\":\\"Devon\\",\\"number\\":\\" 30\\"},{\\"location\\":\\"Doncaster\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Dorset\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Dudley\\",\\"number\\":\\" 18\\"},{\\"location\\":\\"Ealing\\",\\"number\\":\\" 54\\"},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":\\" 15\\"},{\\"location\\":\\"East Sussex\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"Enfield\\",\\"number\\":\\" 48\\"},{\\"location\\":\\"Essex\\",\\"number\\":\\" 43\\"},{\\"location\\":\\"Gateshead\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Gloucestershire\\",\\"number\\":\\" 22\\"},{\\"location\\":\\"Greenwich\\",\\"number\\":\\" 41\\"},{\\"location\\":\\"Hackney and City of London\\",\\"number\\":\\" 45\\"},{\\"location\\":\\"Halton\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":\\" 36\\"},{\\"location\\":\\"Hampshire\\",\\"number\\":\\" 107\\"},{\\"location\\":\\"Haringey\\",\\"number\\":\\" 44\\"},{\\"location\\":\\"Harrow\\",\\"number\\":\\" 60\\"},{\\"location\\":\\"Hartlepool\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Havering\\",\\"number\\":\\" 19\\"},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Hertfordshire\\",\\"number\\":\\" 61\\"},{\\"location\\":\\"Hillingdon\\",\\"number\\":\\" 34\\"},{\\"location\\":\\"Hounslow\\",\\"number\\":\\" 38\\"},{\\"location\\":\\"Isle of Wight\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Islington\\",\\"number\\":\\" 45\\"},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":\\" 66\\"},{\\"location\\":\\"Kent\\",\\"number\\":\\" 32\\"},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":\\" 17\\"},{\\"location\\":\\"Kirklees\\",\\"number\\":\\" 6\\"},{\\"location\\":\\"Knowsley\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Lambeth\\",\\"number\\":\\" 103\\"},{\\"location\\":\\"Lancashire\\",\\"number\\":\\" 26\\"},{\\"location\\":\\"Leeds\\",\\"number\\":\\" 17\\"},{\\"location\\":\\"Leicester\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Leicestershire\\",\\"number\\":\\" 20\\"},{\\"location\\":\\"Lewisham\\",\\"number\\":\\" 47\\"},{\\"location\\":\\"Lincolnshire\\",\\"number\\":\\" 9\\"},{\\"location\\":\\"Liverpool\\",\\"number\\":\\" 14\\"},{\\"location\\":\\"Luton\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Manchester\\",\\"number\\":\\" 26\\"},{\\"location\\":\\"Medway\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Merton\\",\\"number\\":\\" 45\\"},{\\"location\\":\\"Middlesbrough\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Milton Keynes\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":\\" 21\\"},{\\"location\\":\\"Newham\\",\\"number\\":\\" 42\\"},{\\"location\\":\\"Norfolk\\",\\"number\\":\\" 17\\"},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":\\" 0\\"},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"North Somerset\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"North Tyneside\\",\\"number\\":\\" 12\\"},{\\"location\\":\\"North Yorkshire\\",\\"number\\":\\" 14\\"},{\\"location\\":\\"Northamptonshire\\",\\"number\\":\\" 17\\"},{\\"location\\":\\"Northumberland\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Nottingham\\",\\"number\\":\\" 22\\"},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":\\" 41\\"},{\\"location\\":\\"Oldham\\",\\"number\\":\\" 14\\"},{\\"location\\":\\"Oxfordshire\\",\\"number\\":\\" 40\\"},{\\"location\\":\\"Peterborough\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Plymouth\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Portsmouth\\",\\"number\\":\\" 13\\"},{\\"location\\":\\"Reading\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Redbridge\\",\\"number\\":\\" 27\\"},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":\\" 16\\"},{\\"location\\":\\"Rochdale\\",\\"number\\":\\" 12\\"},{\\"location\\":\\"Rotherham\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Rutland\\",\\"number\\":\\" 0\\"},{\\"location\\":\\"Salford\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Sandwell\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Sefton\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Sheffield\\",\\"number\\":\\" 48\\"},{\\"location\\":\\"Shropshire\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Slough\\",\\"number\\":\\" 20\\"},{\\"location\\":\\"Solihull\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Somerset\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":\\" 13\\"},{\\"location\\":\\"South Tyneside\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Southampton\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"Southwark\\",\\"number\\":\\" 110\\"},{\\"location\\":\\"St. Helens\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Staffordshire\\",\\"number\\":\\" 25\\"},{\\"location\\":\\"Stockport\\",\\"number\\":\\" 21\\"},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":\\" 9\\"},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Suffolk\\",\\"number\\":\\" 13\\"},{\\"location\\":\\"Sunderland\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"Surrey\\",\\"number\\":\\" 57\\"},{\\"location\\":\\"Sutton\\",\\"number\\":\\" 19\\"},{\\"location\\":\\"Swindon\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"Tameside\\",\\"number\\":\\" 19\\"},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":\\" 0\\"},{\\"location\\":\\"Thurrock\\",\\"number\\":\\" 6\\"},{\\"location\\":\\"Torbay\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":\\" 43\\"},{\\"location\\":\\"Trafford\\",\\"number\\":\\" 15\\"},{\\"location\\":\\"Wakefield\\",\\"number\\":\\" 6\\"},{\\"location\\":\\"Walsall\\",\\"number\\":\\" 20\\"},{\\"location\\":\\"Waltham Forest\\",\\"number\\":\\" 23\\"},{\\"location\\":\\"Wandsworth\\",\\"number\\":\\" 98\\"},{\\"location\\":\\"Warrington\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Warwickshire\\",\\"number\\":\\" 13\\"},{\\"location\\":\\"West Berkshire\\",\\"number\\":\\" 6\\"},{\\"location\\":\\"West Sussex\\",\\"number\\":\\" 19\\"},{\\"location\\":\\"Westminster\\",\\"number\\":\\" 99\\"},{\\"location\\":\\"Wigan\\",\\"number\\":\\" 6\\"},{\\"location\\":\\"Wiltshire\\",\\"number\\":\\" 17\\"},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":\\" 13\\"},{\\"location\\":\\"Wirral\\",\\"number\\":\\" 9\\"},{\\"location\\":\\"Wokingham\\",\\"number\\":\\" 12\\"},{\\"location\\":\\"Wolverhampton\\",\\"number\\":\\" 39\\"},{\\"location\\":\\"Worcestershire\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"York\\",\\"number\\":\\" 6\\"},{\\"location\\":\\"Ayrshire and Arran\\",\\"number\\":16},{\\"location\\":\\"Borders\\",\\"number\\":9},{\\"location\\":\\"Dumfries and Galloway\\",\\"number\\":10},{\\"location\\":\\"Fife\\",\\"number\\":12},{\\"location\\":\\"Forth Valley\\",\\"number\\":23},{\\"location\\":\\"Grampian\\",\\"number\\":19},{\\"location\\":\\"Greater Glasgow and Clyde\\",\\"number\\":91},{\\"location\\":\\"Highland\\",\\"number\\":6},{\\"location\\":\\"Lanarkshire\\",\\"number\\":41},{\\"location\\":\\"Lothian\\",\\"number\\":40},{\\"location\\":\\"Shetland\\",\\"number\\":24},{\\"location\\":\\"Tayside\\",\\"number\\":31},{\\"location\\":\\"Wales\\",\\"number\\":191},{\\"location\\":\\"Northern Ireland\\",\\"number\\":86}]'),
(52, 1584834610000, 5018, 233, 93, 0, 67800, 0, NULL, NULL, 4257, 373, 280, 108, '[{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":\\" 30\\"},{\\"location\\":\\"Barnet\\",\\"number\\":\\" 81\\"},{\\"location\\":\\"Barnsley\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Bedford\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Bexley\\",\\"number\\":\\" 37\\"},{\\"location\\":\\"Birmingham\\",\\"number\\":\\" 75\\"},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Blackpool\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"Bolton\\",\\"number\\":\\" 15\\"},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Bradford\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Brent\\",\\"number\\":\\"108\\"},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":\\" 17\\"},{\\"location\\":\\"Bristol, City of\\",\\"number\\":\\" 20\\"},{\\"location\\":\\"Bromley\\",\\"number\\":\\" 63\\"},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":\\" 41\\"},{\\"location\\":\\"Bury\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Calderdale\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":\\" 17\\"},{\\"location\\":\\"Camden\\",\\"number\\":\\" 51\\"},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Cheshire East\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":\\" 20\\"},{\\"location\\":\\"County Durham\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Coventry\\",\\"number\\":\\" 9\\"},{\\"location\\":\\"Croydon\\",\\"number\\":\\" 81\\"},{\\"location\\":\\"Cumbria\\",\\"number\\":\\" 57\\"},{\\"location\\":\\"Darlington\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Derby\\",\\"number\\":\\" 18\\"},{\\"location\\":\\"Derbyshire\\",\\"number\\":\\" 64\\"},{\\"location\\":\\"Devon\\",\\"number\\":\\" 42\\"},{\\"location\\":\\"Doncaster\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"Dorset\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"Dudley\\",\\"number\\":\\" 19\\"},{\\"location\\":\\"Ealing\\",\\"number\\":\\" 80\\"},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":\\" 15\\"},{\\"location\\":\\"East Sussex\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"Enfield\\",\\"number\\":\\" 54\\"},{\\"location\\":\\"Essex\\",\\"number\\":\\" 45\\"},{\\"location\\":\\"Gateshead\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Gloucestershire\\",\\"number\\":\\" 27\\"},{\\"location\\":\\"Greenwich\\",\\"number\\":\\" 54\\"},{\\"location\\":\\"Hackney and City of London\\",\\"number\\":\\" 52\\"},{\\"location\\":\\"Halton\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":\\" 45\\"},{\\"location\\":\\"Hampshire\\",\\"number\\":\\"138\\"},{\\"location\\":\\"Haringey\\",\\"number\\":\\" 51\\"},{\\"location\\":\\"Harrow\\",\\"number\\":\\" 89\\"},{\\"location\\":\\"Hartlepool\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Havering\\",\\"number\\":\\" 30\\"},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Hertfordshire\\",\\"number\\":\\" 75\\"},{\\"location\\":\\"Hillingdon\\",\\"number\\":\\" 50\\"},{\\"location\\":\\"Hounslow\\",\\"number\\":\\" 52\\"},{\\"location\\":\\"Isle of Wight\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Islington\\",\\"number\\":\\" 48\\"},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":\\" 75\\"},{\\"location\\":\\"Kent\\",\\"number\\":\\" 45\\"},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":\\" 22\\"},{\\"location\\":\\"Kirklees\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"Knowsley\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Lambeth\\",\\"number\\":\\"118\\"},{\\"location\\":\\"Lancashire\\",\\"number\\":\\" 30\\"},{\\"location\\":\\"Leeds\\",\\"number\\":\\" 20\\"},{\\"location\\":\\"Leicester\\",\\"number\\":\\" 14\\"},{\\"location\\":\\"Leicestershire\\",\\"number\\":\\" 29\\"},{\\"location\\":\\"Lewisham\\",\\"number\\":\\" 60\\"},{\\"location\\":\\"Lincolnshire\\",\\"number\\":\\" 9\\"},{\\"location\\":\\"Liverpool\\",\\"number\\":\\" 18\\"},{\\"location\\":\\"Luton\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"Manchester\\",\\"number\\":\\" 28\\"},{\\"location\\":\\"Medway\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Merton\\",\\"number\\":\\" 56\\"},{\\"location\\":\\"Middlesbrough\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Milton Keynes\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":\\" 28\\"},{\\"location\\":\\"Newham\\",\\"number\\":\\" 51\\"},{\\"location\\":\\"Norfolk\\",\\"number\\":\\" 24\\"},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":\\" 0\\"},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"North Somerset\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"North Tyneside\\",\\"number\\":\\" 17\\"},{\\"location\\":\\"North Yorkshire\\",\\"number\\":\\" 16\\"},{\\"location\\":\\"Northamptonshire\\",\\"number\\":\\" 20\\"},{\\"location\\":\\"Northumberland\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Nottingham\\",\\"number\\":\\" 22\\"},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":\\" 45\\"},{\\"location\\":\\"Oldham\\",\\"number\\":\\" 15\\"},{\\"location\\":\\"Oxfordshire\\",\\"number\\":\\" 44\\"},{\\"location\\":\\"Peterborough\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Plymouth\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Portsmouth\\",\\"number\\":\\" 22\\"},{\\"location\\":\\"Reading\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Redbridge\\",\\"number\\":\\" 42\\"},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":\\" 22\\"},{\\"location\\":\\"Rochdale\\",\\"number\\":\\" 13\\"},{\\"location\\":\\"Rotherham\\",\\"number\\":\\" 6\\"},{\\"location\\":\\"Rutland\\",\\"number\\":\\" 0\\"},{\\"location\\":\\"Salford\\",\\"number\\":\\" 12\\"},{\\"location\\":\\"Sandwell\\",\\"number\\":\\" 15\\"},{\\"location\\":\\"Sefton\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Sheffield\\",\\"number\\":\\" 61\\"},{\\"location\\":\\"Shropshire\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Slough\\",\\"number\\":\\" 21\\"},{\\"location\\":\\"Solihull\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Somerset\\",\\"number\\":\\" 12\\"},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":\\" 14\\"},{\\"location\\":\\"South Tyneside\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"Southampton\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"Southwark\\",\\"number\\":\\"134\\"},{\\"location\\":\\"St. Helens\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Staffordshire\\",\\"number\\":\\" 35\\"},{\\"location\\":\\"Stockport\\",\\"number\\":\\" 24\\"},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Suffolk\\",\\"number\\":\\" 15\\"},{\\"location\\":\\"Sunderland\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Surrey\\",\\"number\\":\\" 65\\"},{\\"location\\":\\"Sutton\\",\\"number\\":\\" 23\\"},{\\"location\\":\\"Swindon\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"Tameside\\",\\"number\\":\\" 21\\"},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":\\" 0\\"},{\\"location\\":\\"Thurrock\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"Torbay\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":\\" 51\\"},{\\"location\\":\\"Trafford\\",\\"number\\":\\" 19\\"},{\\"location\\":\\"Wakefield\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"Walsall\\",\\"number\\":\\" 28\\"},{\\"location\\":\\"Waltham Forest\\",\\"number\\":\\" 38\\"},{\\"location\\":\\"Wandsworth\\",\\"number\\":\\"107\\"},{\\"location\\":\\"Warrington\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Warwickshire\\",\\"number\\":\\" 17\\"},{\\"location\\":\\"West Berkshire\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"West Sussex\\",\\"number\\":\\" 27\\"},{\\"location\\":\\"Westminster\\",\\"number\\":\\"110\\"},{\\"location\\":\\"Wigan\\",\\"number\\":\\" 9\\"},{\\"location\\":\\"Wiltshire\\",\\"number\\":\\" 20\\"},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":\\" 13\\"},{\\"location\\":\\"Wirral\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Wokingham\\",\\"number\\":\\" 13\\"},{\\"location\\":\\"Wolverhampton\\",\\"number\\":\\" 45\\"},{\\"location\\":\\"Worcestershire\\",\\"number\\":\\" 12\\"},{\\"location\\":\\"York\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"Ayrshire and Arran\\",\\"number\\":21},{\\"location\\":\\"Borders\\",\\"number\\":10},{\\"location\\":\\"Dumfries and Galloway\\",\\"number\\":13},{\\"location\\":\\"Fife\\",\\"number\\":13},{\\"location\\":\\"Forth Valley\\",\\"number\\":27},{\\"location\\":\\"Grampian\\",\\"number\\":20},{\\"location\\":\\"Greater Glasgow and Clyde\\",\\"number\\":110},{\\"location\\":\\"Highland\\",\\"number\\":8},{\\"location\\":\\"Lanarkshire\\",\\"number\\":49},{\\"location\\":\\"Lothian\\",\\"number\\":44},{\\"location\\":\\"Shetland\\",\\"number\\":24},{\\"location\\":\\"Tayside\\",\\"number\\":34},{\\"location\\":\\"Wales\\",\\"number\\":280},{\\"location\\":\\"Northern Ireland\\",\\"number\\":108}]');
INSERT INTO `history` (`id`, `date`, `confirmed`, `death`, `cured`, `serious`, `negative`, `suspected`, `tested`, `test_done`, `england`, `scotland`, `wales`, `nireland`, `area`) VALUES
(53, 1584921010000, 5683, 281, 93, 0, 72657, 0, NULL, NULL, 4792, 416, 347, 128, '[{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":\\" 35\\"},{\\"location\\":\\"Barnet\\",\\"number\\":\\" 88\\"},{\\"location\\":\\"Barnsley\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":\\" 13\\"},{\\"location\\":\\"Bedford\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Bexley\\",\\"number\\":\\" 39\\"},{\\"location\\":\\"Birmingham\\",\\"number\\":\\" 91\\"},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Blackpool\\",\\"number\\":\\" 6\\"},{\\"location\\":\\"Bolton\\",\\"number\\":\\" 17\\"},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":\\" 12\\"},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Bradford\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Brent\\",\\"number\\":\\"128\\"},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":\\" 17\\"},{\\"location\\":\\"Bristol, City of\\",\\"number\\":\\" 23\\"},{\\"location\\":\\"Bromley\\",\\"number\\":\\" 67\\"},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":\\" 44\\"},{\\"location\\":\\"Bury\\",\\"number\\":\\" 14\\"},{\\"location\\":\\"Calderdale\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":\\" 20\\"},{\\"location\\":\\"Camden\\",\\"number\\":\\" 53\\"},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":\\" 14\\"},{\\"location\\":\\"Cheshire East\\",\\"number\\":\\" 18\\"},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":\\" 20\\"},{\\"location\\":\\"County Durham\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Coventry\\",\\"number\\":\\" 14\\"},{\\"location\\":\\"Croydon\\",\\"number\\":\\" 84\\"},{\\"location\\":\\"Cumbria\\",\\"number\\":\\" 79\\"},{\\"location\\":\\"Darlington\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Derby\\",\\"number\\":\\" 23\\"},{\\"location\\":\\"Derbyshire\\",\\"number\\":\\" 75\\"},{\\"location\\":\\"Devon\\",\\"number\\":\\" 43\\"},{\\"location\\":\\"Doncaster\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Dorset\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Dudley\\",\\"number\\":\\" 24\\"},{\\"location\\":\\"Ealing\\",\\"number\\":\\" 97\\"},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":\\" 15\\"},{\\"location\\":\\"East Sussex\\",\\"number\\":\\" 9\\"},{\\"location\\":\\"Enfield\\",\\"number\\":\\" 68\\"},{\\"location\\":\\"Essex\\",\\"number\\":\\" 53\\"},{\\"location\\":\\"Gateshead\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Gloucestershire\\",\\"number\\":\\" 29\\"},{\\"location\\":\\"Greenwich\\",\\"number\\":\\" 61\\"},{\\"location\\":\\"Hackney and City of London\\",\\"number\\":\\" 64\\"},{\\"location\\":\\"Halton\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":\\" 51\\"},{\\"location\\":\\"Hampshire\\",\\"number\\":\\"156\\"},{\\"location\\":\\"Haringey\\",\\"number\\":\\" 57\\"},{\\"location\\":\\"Harrow\\",\\"number\\":\\"103\\"},{\\"location\\":\\"Hartlepool\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Havering\\",\\"number\\":\\" 35\\"},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Hertfordshire\\",\\"number\\":\\" 92\\"},{\\"location\\":\\"Hillingdon\\",\\"number\\":\\" 63\\"},{\\"location\\":\\"Hounslow\\",\\"number\\":\\" 64\\"},{\\"location\\":\\"Isle of Wight\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Islington\\",\\"number\\":\\" 54\\"},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":\\" 81\\"},{\\"location\\":\\"Kent\\",\\"number\\":\\" 48\\"},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":\\" 23\\"},{\\"location\\":\\"Kirklees\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Knowsley\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Lambeth\\",\\"number\\":\\"127\\"},{\\"location\\":\\"Lancashire\\",\\"number\\":\\" 44\\"},{\\"location\\":\\"Leeds\\",\\"number\\":\\" 29\\"},{\\"location\\":\\"Leicester\\",\\"number\\":\\" 19\\"},{\\"location\\":\\"Leicestershire\\",\\"number\\":\\" 43\\"},{\\"location\\":\\"Lewisham\\",\\"number\\":\\" 67\\"},{\\"location\\":\\"Lincolnshire\\",\\"number\\":\\" 14\\"},{\\"location\\":\\"Liverpool\\",\\"number\\":\\" 22\\"},{\\"location\\":\\"Luton\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"Manchester\\",\\"number\\":\\" 31\\"},{\\"location\\":\\"Medway\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Merton\\",\\"number\\":\\" 56\\"},{\\"location\\":\\"Middlesbrough\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Milton Keynes\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":\\" 34\\"},{\\"location\\":\\"Newham\\",\\"number\\":\\" 57\\"},{\\"location\\":\\"Norfolk\\",\\"number\\":\\" 34\\"},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"North Somerset\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"North Tyneside\\",\\"number\\":\\" 18\\"},{\\"location\\":\\"North Yorkshire\\",\\"number\\":\\" 20\\"},{\\"location\\":\\"Northamptonshire\\",\\"number\\":\\" 21\\"},{\\"location\\":\\"Northumberland\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Nottingham\\",\\"number\\":\\" 34\\"},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":\\" 60\\"},{\\"location\\":\\"Oldham\\",\\"number\\":\\" 23\\"},{\\"location\\":\\"Oxfordshire\\",\\"number\\":\\" 52\\"},{\\"location\\":\\"Peterborough\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Plymouth\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Portsmouth\\",\\"number\\":\\" 25\\"},{\\"location\\":\\"Reading\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"Redbridge\\",\\"number\\":\\" 45\\"},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":\\" 25\\"},{\\"location\\":\\"Rochdale\\",\\"number\\":\\" 15\\"},{\\"location\\":\\"Rotherham\\",\\"number\\":\\" 9\\"},{\\"location\\":\\"Rutland\\",\\"number\\":\\" 0\\"},{\\"location\\":\\"Salford\\",\\"number\\":\\" 23\\"},{\\"location\\":\\"Sandwell\\",\\"number\\":\\" 20\\"},{\\"location\\":\\"Sefton\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"Sheffield\\",\\"number\\":\\" 82\\"},{\\"location\\":\\"Shropshire\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Slough\\",\\"number\\":\\" 21\\"},{\\"location\\":\\"Solihull\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Somerset\\",\\"number\\":\\" 13\\"},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":\\" 17\\"},{\\"location\\":\\"South Tyneside\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"Southampton\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"Southwark\\",\\"number\\":\\"139\\"},{\\"location\\":\\"St. Helens\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Staffordshire\\",\\"number\\":\\" 41\\"},{\\"location\\":\\"Stockport\\",\\"number\\":\\" 29\\"},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Suffolk\\",\\"number\\":\\" 18\\"},{\\"location\\":\\"Sunderland\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Surrey\\",\\"number\\":\\" 68\\"},{\\"location\\":\\"Sutton\\",\\"number\\":\\" 24\\"},{\\"location\\":\\"Swindon\\",\\"number\\":\\" 6\\"},{\\"location\\":\\"Tameside\\",\\"number\\":\\" 21\\"},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Thurrock\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Torbay\\",\\"number\\":\\" 16\\"},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":\\" 57\\"},{\\"location\\":\\"Trafford\\",\\"number\\":\\" 23\\"},{\\"location\\":\\"Wakefield\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Walsall\\",\\"number\\":\\" 29\\"},{\\"location\\":\\"Waltham Forest\\",\\"number\\":\\" 50\\"},{\\"location\\":\\"Wandsworth\\",\\"number\\":\\"110\\"},{\\"location\\":\\"Warrington\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Warwickshire\\",\\"number\\":\\" 29\\"},{\\"location\\":\\"West Berkshire\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"West Sussex\\",\\"number\\":\\" 27\\"},{\\"location\\":\\"Westminster\\",\\"number\\":\\"117\\"},{\\"location\\":\\"Wigan\\",\\"number\\":\\" 9\\"},{\\"location\\":\\"Wiltshire\\",\\"number\\":\\" 23\\"},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":\\" 13\\"},{\\"location\\":\\"Wirral\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Wokingham\\",\\"number\\":\\" 13\\"},{\\"location\\":\\"Wolverhampton\\",\\"number\\":\\" 52\\"},{\\"location\\":\\"Worcestershire\\",\\"number\\":\\" 19\\"},{\\"location\\":\\"York\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Ayrshire and Arran\\",\\"number\\":25},{\\"location\\":\\"Borders\\",\\"number\\":11},{\\"location\\":\\"Dumfries and Galloway\\",\\"number\\":16},{\\"location\\":\\"Fife\\",\\"number\\":16},{\\"location\\":\\"Forth Valley\\",\\"number\\":30},{\\"location\\":\\"Grampian\\",\\"number\\":23},{\\"location\\":\\"Greater Glasgow and Clyde\\",\\"number\\":130},{\\"location\\":\\"Highland\\",\\"number\\":8},{\\"location\\":\\"Lanarkshire\\",\\"number\\":49},{\\"location\\":\\"Lothian\\",\\"number\\":46},{\\"location\\":\\"Shetland\\",\\"number\\":24},{\\"location\\":\\"Tayside\\",\\"number\\":38},{\\"location\\":\\"Wales\\",\\"number\\":347},{\\"location\\":\\"Northern Ireland\\",\\"number\\":128}]'),
(54, 1585007410000, 6650, 335, 135, 0, 77295, 0, NULL, NULL, 5585, 499, 418, 148, '[{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":\\" 42\\"},{\\"location\\":\\"Barnet\\",\\"number\\":\\" 94\\"},{\\"location\\":\\"Barnsley\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":\\" 16\\"},{\\"location\\":\\"Bedford\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Bexley\\",\\"number\\":\\" 43\\"},{\\"location\\":\\"Birmingham\\",\\"number\\":\\"137\\"},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Blackpool\\",\\"number\\":\\" 6\\"},{\\"location\\":\\"Bolton\\",\\"number\\":\\" 18\\"},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":\\" 13\\"},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Bradford\\",\\"number\\":\\" 13\\"},{\\"location\\":\\"Brent\\",\\"number\\":\\"143\\"},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":\\" 17\\"},{\\"location\\":\\"Bristol, City of\\",\\"number\\":\\" 28\\"},{\\"location\\":\\"Bromley\\",\\"number\\":\\" 76\\"},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":\\" 45\\"},{\\"location\\":\\"Bury\\",\\"number\\":\\" 15\\"},{\\"location\\":\\"Calderdale\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":\\" 30\\"},{\\"location\\":\\"Camden\\",\\"number\\":\\" 60\\"},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":\\" 19\\"},{\\"location\\":\\"Cheshire East\\",\\"number\\":\\" 18\\"},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":\\" 16\\"},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":\\" 25\\"},{\\"location\\":\\"County Durham\\",\\"number\\":\\" 14\\"},{\\"location\\":\\"Coventry\\",\\"number\\":\\" 19\\"},{\\"location\\":\\"Croydon\\",\\"number\\":\\" 85\\"},{\\"location\\":\\"Cumbria\\",\\"number\\":\\"110\\"},{\\"location\\":\\"Darlington\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Derby\\",\\"number\\":\\" 23\\"},{\\"location\\":\\"Derbyshire\\",\\"number\\":\\" 82\\"},{\\"location\\":\\"Devon\\",\\"number\\":\\" 46\\"},{\\"location\\":\\"Doncaster\\",\\"number\\":\\" 9\\"},{\\"location\\":\\"Dorset\\",\\"number\\":\\" 14\\"},{\\"location\\":\\"Dudley\\",\\"number\\":\\" 26\\"},{\\"location\\":\\"Ealing\\",\\"number\\":\\"106\\"},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":\\" 16\\"},{\\"location\\":\\"East Sussex\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Enfield\\",\\"number\\":\\" 76\\"},{\\"location\\":\\"Essex\\",\\"number\\":\\" 67\\"},{\\"location\\":\\"Gateshead\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Gloucestershire\\",\\"number\\":\\" 32\\"},{\\"location\\":\\"Greenwich\\",\\"number\\":\\" 67\\"},{\\"location\\":\\"Hackney and City of London\\",\\"number\\":\\" 72\\"},{\\"location\\":\\"Halton\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":\\" 58\\"},{\\"location\\":\\"Hampshire\\",\\"number\\":\\"171\\"},{\\"location\\":\\"Haringey\\",\\"number\\":\\" 64\\"},{\\"location\\":\\"Harrow\\",\\"number\\":\\"113\\"},{\\"location\\":\\"Hartlepool\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Havering\\",\\"number\\":\\" 39\\"},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Hertfordshire\\",\\"number\\":\\"115\\"},{\\"location\\":\\"Hillingdon\\",\\"number\\":\\" 78\\"},{\\"location\\":\\"Hounslow\\",\\"number\\":\\" 73\\"},{\\"location\\":\\"Isle of Wight\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Islington\\",\\"number\\":\\" 59\\"},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":\\" 85\\"},{\\"location\\":\\"Kent\\",\\"number\\":\\" 64\\"},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":\\" 23\\"},{\\"location\\":\\"Kirklees\\",\\"number\\":\\" 16\\"},{\\"location\\":\\"Knowsley\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"Lambeth\\",\\"number\\":\\"134\\"},{\\"location\\":\\"Lancashire\\",\\"number\\":\\" 59\\"},{\\"location\\":\\"Leeds\\",\\"number\\":\\" 35\\"},{\\"location\\":\\"Leicester\\",\\"number\\":\\" 22\\"},{\\"location\\":\\"Leicestershire\\",\\"number\\":\\" 53\\"},{\\"location\\":\\"Lewisham\\",\\"number\\":\\" 86\\"},{\\"location\\":\\"Lincolnshire\\",\\"number\\":\\" 20\\"},{\\"location\\":\\"Liverpool\\",\\"number\\":\\" 35\\"},{\\"location\\":\\"Luton\\",\\"number\\":\\" 15\\"},{\\"location\\":\\"Manchester\\",\\"number\\":\\" 37\\"},{\\"location\\":\\"Medway\\",\\"number\\":\\" 15\\"},{\\"location\\":\\"Merton\\",\\"number\\":\\" 57\\"},{\\"location\\":\\"Middlesbrough\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Milton Keynes\\",\\"number\\":\\" 17\\"},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":\\" 42\\"},{\\"location\\":\\"Newham\\",\\"number\\":\\" 70\\"},{\\"location\\":\\"Norfolk\\",\\"number\\":\\" 35\\"},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":\\" 1\\"},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"North Somerset\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"North Tyneside\\",\\"number\\":\\" 18\\"},{\\"location\\":\\"North Yorkshire\\",\\"number\\":\\" 24\\"},{\\"location\\":\\"Northamptonshire\\",\\"number\\":\\" 29\\"},{\\"location\\":\\"Northumberland\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Nottingham\\",\\"number\\":\\" 41\\"},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":\\" 71\\"},{\\"location\\":\\"Oldham\\",\\"number\\":\\" 28\\"},{\\"location\\":\\"Oxfordshire\\",\\"number\\":\\" 63\\"},{\\"location\\":\\"Peterborough\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Plymouth\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Portsmouth\\",\\"number\\":\\" 25\\"},{\\"location\\":\\"Reading\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"Redbridge\\",\\"number\\":\\" 51\\"},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":\\" 31\\"},{\\"location\\":\\"Rochdale\\",\\"number\\":\\" 19\\"},{\\"location\\":\\"Rotherham\\",\\"number\\":\\" 12\\"},{\\"location\\":\\"Rutland\\",\\"number\\":\\" 0\\"},{\\"location\\":\\"Salford\\",\\"number\\":\\" 25\\"},{\\"location\\":\\"Sandwell\\",\\"number\\":\\" 31\\"},{\\"location\\":\\"Sefton\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Sheffield\\",\\"number\\":\\"106\\"},{\\"location\\":\\"Shropshire\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Slough\\",\\"number\\":\\" 22\\"},{\\"location\\":\\"Solihull\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"Somerset\\",\\"number\\":\\" 15\\"},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":\\" 19\\"},{\\"location\\":\\"South Tyneside\\",\\"number\\":\\" 6\\"},{\\"location\\":\\"Southampton\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"Southwark\\",\\"number\\":\\"154\\"},{\\"location\\":\\"St. Helens\\",\\"number\\":\\" 6\\"},{\\"location\\":\\"Staffordshire\\",\\"number\\":\\" 54\\"},{\\"location\\":\\"Stockport\\",\\"number\\":\\" 36\\"},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":\\" 12\\"},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Suffolk\\",\\"number\\":\\" 22\\"},{\\"location\\":\\"Sunderland\\",\\"number\\":\\" 13\\"},{\\"location\\":\\"Surrey\\",\\"number\\":\\" 69\\"},{\\"location\\":\\"Sutton\\",\\"number\\":\\" 24\\"},{\\"location\\":\\"Swindon\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Tameside\\",\\"number\\":\\" 27\\"},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Thurrock\\",\\"number\\":\\" 13\\"},{\\"location\\":\\"Torbay\\",\\"number\\":\\" 17\\"},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":\\" 67\\"},{\\"location\\":\\"Trafford\\",\\"number\\":\\" 28\\"},{\\"location\\":\\"Wakefield\\",\\"number\\":\\" 12\\"},{\\"location\\":\\"Walsall\\",\\"number\\":\\" 37\\"},{\\"location\\":\\"Waltham Forest\\",\\"number\\":\\" 56\\"},{\\"location\\":\\"Wandsworth\\",\\"number\\":\\"113\\"},{\\"location\\":\\"Warrington\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Warwickshire\\",\\"number\\":\\" 35\\"},{\\"location\\":\\"West Berkshire\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"West Sussex\\",\\"number\\":\\" 28\\"},{\\"location\\":\\"Westminster\\",\\"number\\":\\"134\\"},{\\"location\\":\\"Wigan\\",\\"number\\":\\" 9\\"},{\\"location\\":\\"Wiltshire\\",\\"number\\":\\" 28\\"},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":\\" 13\\"},{\\"location\\":\\"Wirral\\",\\"number\\":\\" 12\\"},{\\"location\\":\\"Wokingham\\",\\"number\\":\\" 13\\"},{\\"location\\":\\"Wolverhampton\\",\\"number\\":\\" 69\\"},{\\"location\\":\\"Worcestershire\\",\\"number\\":\\" 28\\"},{\\"location\\":\\"York\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Ayrshire and Arran\\",\\"number\\":34},{\\"location\\":\\"Borders\\",\\"number\\":12},{\\"location\\":\\"Dumfries and Galloway\\",\\"number\\":18},{\\"location\\":\\"Fife\\",\\"number\\":19},{\\"location\\":\\"Forth Valley\\",\\"number\\":40},{\\"location\\":\\"Grampian\\",\\"number\\":24},{\\"location\\":\\"Greater Glasgow and Clyde\\",\\"number\\":152},{\\"location\\":\\"Highland\\",\\"number\\":12},{\\"location\\":\\"Lanarkshire\\",\\"number\\":58},{\\"location\\":\\"Lothian\\",\\"number\\":59},{\\"location\\":\\"Shetland\\",\\"number\\":24},{\\"location\\":\\"Tayside\\",\\"number\\":47},{\\"location\\":\\"Wales\\",\\"number\\":418},{\\"location\\":\\"Northern Ireland\\",\\"number\\":148}]'),
(55, 1585093810000, 8077, 422, 135, 0, 82359, 0, NULL, NULL, 6843, 584, 478, 172, '[{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":\\"45\\"},{\\"location\\":\\"Barnet\\",\\"number\\":\\"99\\"},{\\"location\\":\\"Barnsley\\",\\"number\\":\\"15\\"},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":\\"17\\"},{\\"location\\":\\"Bedford\\",\\"number\\":\\"7\\"},{\\"location\\":\\"Bexley\\",\\"number\\":\\"47\\"},{\\"location\\":\\"Birmingham\\",\\"number\\":\\"187\\"},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Blackpool\\",\\"number\\":\\"8\\"},{\\"location\\":\\"Bolton\\",\\"number\\":\\"19\\"},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":\\"14\\"},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Bradford\\",\\"number\\":\\"14\\"},{\\"location\\":\\"Brent\\",\\"number\\":\\"170\\"},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":\\"25\\"},{\\"location\\":\\"Bristol, City of\\",\\"number\\":\\"37\\"},{\\"location\\":\\"Bromley\\",\\"number\\":\\"93\\"},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":\\"50\\"},{\\"location\\":\\"Bury\\",\\"number\\":\\"17\\"},{\\"location\\":\\"Calderdale\\",\\"number\\":\\"7\\"},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":\\"37\\"},{\\"location\\":\\"Camden\\",\\"number\\":\\"64\\"},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":\\"22\\"},{\\"location\\":\\"Cheshire East\\",\\"number\\":\\"25\\"},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":\\"18\\"},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":\\"30\\"},{\\"location\\":\\"County Durham\\",\\"number\\":\\"18\\"},{\\"location\\":\\"Coventry\\",\\"number\\":\\"24\\"},{\\"location\\":\\"Croydon\\",\\"number\\":\\"128\\"},{\\"location\\":\\"Cumbria\\",\\"number\\":\\"129\\"},{\\"location\\":\\"Darlington\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Derby\\",\\"number\\":\\"37\\"},{\\"location\\":\\"Derbyshire\\",\\"number\\":\\"101\\"},{\\"location\\":\\"Devon\\",\\"number\\":\\"48\\"},{\\"location\\":\\"Doncaster\\",\\"number\\":\\"13\\"},{\\"location\\":\\"Dorset\\",\\"number\\":\\"15\\"},{\\"location\\":\\"Dudley\\",\\"number\\":\\"40\\"},{\\"location\\":\\"Ealing\\",\\"number\\":\\"123\\"},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":\\"16\\"},{\\"location\\":\\"East Sussex\\",\\"number\\":\\"21\\"},{\\"location\\":\\"Enfield\\",\\"number\\":\\"84\\"},{\\"location\\":\\"Essex\\",\\"number\\":\\"80\\"},{\\"location\\":\\"Gateshead\\",\\"number\\":\\"5\\"},{\\"location\\":\\"Gloucestershire\\",\\"number\\":\\"49\\"},{\\"location\\":\\"Greenwich\\",\\"number\\":\\"77\\"},{\\"location\\":\\"Hackney and City of London\\",\\"number\\":\\"74\\"},{\\"location\\":\\"Halton\\",\\"number\\":\\"8\\"},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":\\"70\\"},{\\"location\\":\\"Hampshire\\",\\"number\\":\\"207\\"},{\\"location\\":\\"Haringey\\",\\"number\\":\\"72\\"},{\\"location\\":\\"Harrow\\",\\"number\\":\\"134\\"},{\\"location\\":\\"Hartlepool\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Havering\\",\\"number\\":\\"44\\"},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":\\"15\\"},{\\"location\\":\\"Hertfordshire\\",\\"number\\":\\"139\\"},{\\"location\\":\\"Hillingdon\\",\\"number\\":\\"85\\"},{\\"location\\":\\"Hounslow\\",\\"number\\":\\"82\\"},{\\"location\\":\\"Isle of Wight\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Islington\\",\\"number\\":\\"66\\"},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":\\"91\\"},{\\"location\\":\\"Kent\\",\\"number\\":\\"72\\"},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":\\"1\\"},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":\\"36\\"},{\\"location\\":\\"Kirklees\\",\\"number\\":\\"17\\"},{\\"location\\":\\"Knowsley\\",\\"number\\":\\"8\\"},{\\"location\\":\\"Lambeth\\",\\"number\\":\\"188\\"},{\\"location\\":\\"Lancashire\\",\\"number\\":\\"71\\"},{\\"location\\":\\"Leeds\\",\\"number\\":\\"42\\"},{\\"location\\":\\"Leicester\\",\\"number\\":\\"24\\"},{\\"location\\":\\"Leicestershire\\",\\"number\\":\\"65\\"},{\\"location\\":\\"Lewisham\\",\\"number\\":\\"97\\"},{\\"location\\":\\"Lincolnshire\\",\\"number\\":\\"24\\"},{\\"location\\":\\"Liverpool\\",\\"number\\":\\"41\\"},{\\"location\\":\\"Luton\\",\\"number\\":\\"19\\"},{\\"location\\":\\"Manchester\\",\\"number\\":\\"41\\"},{\\"location\\":\\"Medway\\",\\"number\\":\\"19\\"},{\\"location\\":\\"Merton\\",\\"number\\":\\"84\\"},{\\"location\\":\\"Middlesbrough\\",\\"number\\":\\"7\\"},{\\"location\\":\\"Milton Keynes\\",\\"number\\":\\"25\\"},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":\\"49\\"},{\\"location\\":\\"Newham\\",\\"number\\":\\"76\\"},{\\"location\\":\\"Norfolk\\",\\"number\\":\\"42\\"},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":\\"3\\"},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":\\"5\\"},{\\"location\\":\\"North Somerset\\",\\"number\\":\\"21\\"},{\\"location\\":\\"North Tyneside\\",\\"number\\":\\"20\\"},{\\"location\\":\\"North Yorkshire\\",\\"number\\":\\"30\\"},{\\"location\\":\\"Northamptonshire\\",\\"number\\":\\"37\\"},{\\"location\\":\\"Northumberland\\",\\"number\\":\\"13\\"},{\\"location\\":\\"Nottingham\\",\\"number\\":\\"49\\"},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":\\"78\\"},{\\"location\\":\\"Oldham\\",\\"number\\":\\"34\\"},{\\"location\\":\\"Oxfordshire\\",\\"number\\":\\"69\\"},{\\"location\\":\\"Peterborough\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Plymouth\\",\\"number\\":\\"16\\"},{\\"location\\":\\"Portsmouth\\",\\"number\\":\\"29\\"},{\\"location\\":\\"Reading\\",\\"number\\":\\"8\\"},{\\"location\\":\\"Redbridge\\",\\"number\\":\\"57\\"},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":\\"7\\"},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":\\"36\\"},{\\"location\\":\\"Rochdale\\",\\"number\\":\\"24\\"},{\\"location\\":\\"Rotherham\\",\\"number\\":\\"16\\"},{\\"location\\":\\"Rutland\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Salford\\",\\"number\\":\\"31\\"},{\\"location\\":\\"Sandwell\\",\\"number\\":\\"47\\"},{\\"location\\":\\"Sefton\\",\\"number\\":\\"13\\"},{\\"location\\":\\"Sheffield\\",\\"number\\":\\"130\\"},{\\"location\\":\\"Shropshire\\",\\"number\\":\\"27\\"},{\\"location\\":\\"Slough\\",\\"number\\":\\"22\\"},{\\"location\\":\\"Solihull\\",\\"number\\":\\"12\\"},{\\"location\\":\\"Somerset\\",\\"number\\":\\"21\\"},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":\\"19\\"},{\\"location\\":\\"South Tyneside\\",\\"number\\":\\"8\\"},{\\"location\\":\\"Southampton\\",\\"number\\":\\"24\\"},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":\\"8\\"},{\\"location\\":\\"Southwark\\",\\"number\\":\\"181\\"},{\\"location\\":\\"St. Helens\\",\\"number\\":\\"8\\"},{\\"location\\":\\"Staffordshire\\",\\"number\\":\\"76\\"},{\\"location\\":\\"Stockport\\",\\"number\\":\\"42\\"},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":\\"12\\"},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":\\"9\\"},{\\"location\\":\\"Suffolk\\",\\"number\\":\\"28\\"},{\\"location\\":\\"Sunderland\\",\\"number\\":\\"20\\"},{\\"location\\":\\"Surrey\\",\\"number\\":\\"110\\"},{\\"location\\":\\"Sutton\\",\\"number\\":\\"40\\"},{\\"location\\":\\"Swindon\\",\\"number\\":\\"7\\"},{\\"location\\":\\"Tameside\\",\\"number\\":\\"32\\"},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":\\"9\\"},{\\"location\\":\\"Thurrock\\",\\"number\\":\\"15\\"},{\\"location\\":\\"Torbay\\",\\"number\\":\\"17\\"},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":\\"70\\"},{\\"location\\":\\"Trafford\\",\\"number\\":\\"31\\"},{\\"location\\":\\"Wakefield\\",\\"number\\":\\"13\\"},{\\"location\\":\\"Walsall\\",\\"number\\":\\"43\\"},{\\"location\\":\\"Waltham Forest\\",\\"number\\":\\"61\\"},{\\"location\\":\\"Wandsworth\\",\\"number\\":\\"155\\"},{\\"location\\":\\"Warrington\\",\\"number\\":\\"8\\"},{\\"location\\":\\"Warwickshire\\",\\"number\\":\\"52\\"},{\\"location\\":\\"West Berkshire\\",\\"number\\":\\"12\\"},{\\"location\\":\\"West Sussex\\",\\"number\\":\\"52\\"},{\\"location\\":\\"Westminster\\",\\"number\\":\\"143\\"},{\\"location\\":\\"Wigan\\",\\"number\\":\\"11\\"},{\\"location\\":\\"Wiltshire\\",\\"number\\":\\"34\\"},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":\\"13\\"},{\\"location\\":\\"Wirral\\",\\"number\\":\\"15\\"},{\\"location\\":\\"Wokingham\\",\\"number\\":\\"13\\"},{\\"location\\":\\"Wolverhampton\\",\\"number\\":\\"81\\"},{\\"location\\":\\"Worcestershire\\",\\"number\\":\\"38\\"},{\\"location\\":\\"York\\",\\"number\\":\\"11\\"},{\\"location\\":\\"Ayrshire and Arran\\",\\"number\\":41},{\\"location\\":\\"Borders\\",\\"number\\":12},{\\"location\\":\\"Dumfries and Galloway\\",\\"number\\":26},{\\"location\\":\\"Fife\\",\\"number\\":25},{\\"location\\":\\"Forth Valley\\",\\"number\\":43},{\\"location\\":\\"Grampian\\",\\"number\\":24},{\\"location\\":\\"Greater Glasgow and Clyde\\",\\"number\\":183},{\\"location\\":\\"Highland\\",\\"number\\":13},{\\"location\\":\\"Lanarkshire\\",\\"number\\":75},{\\"location\\":\\"Lothian\\",\\"number\\":70},{\\"location\\":\\"Shetland\\",\\"number\\":24},{\\"location\\":\\"Tayside\\",\\"number\\":48},{\\"location\\":\\"Wales\\",\\"number\\":478},{\\"location\\":\\"Northern Ireland\\",\\"number\\":172}]'),
(56, 1585180210000, 9529, 465, 135, 0, 87490, 0, NULL, NULL, 7973, 719, 628, 209, '[{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":\\"53\\"},{\\"location\\":\\"Barnet\\",\\"number\\":\\"100\\"},{\\"location\\":\\"Barnsley\\",\\"number\\":\\"19\\"},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":\\"20\\"},{\\"location\\":\\"Bedford\\",\\"number\\":\\"7\\"},{\\"location\\":\\"Bexley\\",\\"number\\":\\"59\\"},{\\"location\\":\\"Birmingham\\",\\"number\\":\\"228\\"},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Blackpool\\",\\"number\\":\\"8\\"},{\\"location\\":\\"Bolton\\",\\"number\\":\\"21\\"},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":\\"15\\"},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Bradford\\",\\"number\\":\\"16\\"},{\\"location\\":\\"Brent\\",\\"number\\":\\"192\\"},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":\\"25\\"},{\\"location\\":\\"Bristol, City of\\",\\"number\\":\\"41\\"},{\\"location\\":\\"Bromley\\",\\"number\\":\\"125\\"},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":\\"59\\"},{\\"location\\":\\"Bury\\",\\"number\\":\\"23\\"},{\\"location\\":\\"Calderdale\\",\\"number\\":\\"7\\"},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":\\"41\\"},{\\"location\\":\\"Camden\\",\\"number\\":\\"71\\"},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":\\"24\\"},{\\"location\\":\\"Cheshire East\\",\\"number\\":\\"30\\"},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":\\"18\\"},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":\\"37\\"},{\\"location\\":\\"County Durham\\",\\"number\\":\\"25\\"},{\\"location\\":\\"Coventry\\",\\"number\\":\\"25\\"},{\\"location\\":\\"Croydon\\",\\"number\\":\\"163\\"},{\\"location\\":\\"Cumbria\\",\\"number\\":\\"145\\"},{\\"location\\":\\"Darlington\\",\\"number\\":\\"4\\"},{\\"location\\":\\"Derby\\",\\"number\\":\\"40\\"},{\\"location\\":\\"Derbyshire\\",\\"number\\":\\"110\\"},{\\"location\\":\\"Devon\\",\\"number\\":\\"50\\"},{\\"location\\":\\"Doncaster\\",\\"number\\":\\"15\\"},{\\"location\\":\\"Dorset\\",\\"number\\":\\"23\\"},{\\"location\\":\\"Dudley\\",\\"number\\":\\"51\\"},{\\"location\\":\\"Ealing\\",\\"number\\":\\"136\\"},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":\\"19\\"},{\\"location\\":\\"East Sussex\\",\\"number\\":\\"22\\"},{\\"location\\":\\"Enfield\\",\\"number\\":\\"98\\"},{\\"location\\":\\"Essex\\",\\"number\\":\\"88\\"},{\\"location\\":\\"Gateshead\\",\\"number\\":\\"10\\"},{\\"location\\":\\"Gloucestershire\\",\\"number\\":\\"57\\"},{\\"location\\":\\"Greenwich\\",\\"number\\":\\"97\\"},{\\"location\\":\\"Hackney and City of London\\",\\"number\\":\\"85\\"},{\\"location\\":\\"Halton\\",\\"number\\":\\"8\\"},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":\\"80\\"},{\\"location\\":\\"Hampshire\\",\\"number\\":\\"251\\"},{\\"location\\":\\"Haringey\\",\\"number\\":\\"76\\"},{\\"location\\":\\"Harrow\\",\\"number\\":\\"145\\"},{\\"location\\":\\"Hartlepool\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Havering\\",\\"number\\":\\"47\\"},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":\\"15\\"},{\\"location\\":\\"Hertfordshire\\",\\"number\\":\\"147\\"},{\\"location\\":\\"Hillingdon\\",\\"number\\":\\"90\\"},{\\"location\\":\\"Hounslow\\",\\"number\\":\\"90\\"},{\\"location\\":\\"Isle of Wight\\",\\"number\\":\\"3\\"},{\\"location\\":\\"Islington\\",\\"number\\":\\"70\\"},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":\\"97\\"},{\\"location\\":\\"Kent\\",\\"number\\":\\"96\\"},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":\\"2\\"},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":\\"37\\"},{\\"location\\":\\"Kirklees\\",\\"number\\":\\"20\\"},{\\"location\\":\\"Knowsley\\",\\"number\\":\\"9\\"},{\\"location\\":\\"Lambeth\\",\\"number\\":\\"212\\"},{\\"location\\":\\"Lancashire\\",\\"number\\":\\"78\\"},{\\"location\\":\\"Leeds\\",\\"number\\":\\"53\\"},{\\"location\\":\\"Leicester\\",\\"number\\":\\"32\\"},{\\"location\\":\\"Leicestershire\\",\\"number\\":\\"80\\"},{\\"location\\":\\"Lewisham\\",\\"number\\":\\"114\\"},{\\"location\\":\\"Lincolnshire\\",\\"number\\":\\"31\\"},{\\"location\\":\\"Liverpool\\",\\"number\\":\\"57\\"},{\\"location\\":\\"Luton\\",\\"number\\":\\"29\\"},{\\"location\\":\\"Manchester\\",\\"number\\":\\"45\\"},{\\"location\\":\\"Medway\\",\\"number\\":\\"25\\"},{\\"location\\":\\"Merton\\",\\"number\\":\\"98\\"},{\\"location\\":\\"Middlesbrough\\",\\"number\\":\\"9\\"},{\\"location\\":\\"Milton Keynes\\",\\"number\\":\\"29\\"},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":\\"58\\"},{\\"location\\":\\"Newham\\",\\"number\\":\\"77\\"},{\\"location\\":\\"Norfolk\\",\\"number\\":\\"45\\"},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":\\"3\\"},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":\\"5\\"},{\\"location\\":\\"North Somerset\\",\\"number\\":\\"21\\"},{\\"location\\":\\"North Tyneside\\",\\"number\\":\\"23\\"},{\\"location\\":\\"North Yorkshire\\",\\"number\\":\\"45\\"},{\\"location\\":\\"Northamptonshire\\",\\"number\\":\\"43\\"},{\\"location\\":\\"Northumberland\\",\\"number\\":\\"19\\"},{\\"location\\":\\"Nottingham\\",\\"number\\":\\"57\\"},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":\\"92\\"},{\\"location\\":\\"Oldham\\",\\"number\\":\\"42\\"},{\\"location\\":\\"Oxfordshire\\",\\"number\\":\\"86\\"},{\\"location\\":\\"Peterborough\\",\\"number\\":\\"9\\"},{\\"location\\":\\"Plymouth\\",\\"number\\":\\"21\\"},{\\"location\\":\\"Portsmouth\\",\\"number\\":\\"33\\"},{\\"location\\":\\"Reading\\",\\"number\\":\\"9\\"},{\\"location\\":\\"Redbridge\\",\\"number\\":\\"67\\"},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":\\"10\\"},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":\\"44\\"},{\\"location\\":\\"Rochdale\\",\\"number\\":\\"29\\"},{\\"location\\":\\"Rotherham\\",\\"number\\":\\"20\\"},{\\"location\\":\\"Rutland\\",\\"number\\":\\"0\\"},{\\"location\\":\\"Salford\\",\\"number\\":\\"47\\"},{\\"location\\":\\"Sandwell\\",\\"number\\":\\"50\\"},{\\"location\\":\\"Sefton\\",\\"number\\":\\"20\\"},{\\"location\\":\\"Sheffield\\",\\"number\\":\\"174\\"},{\\"location\\":\\"Shropshire\\",\\"number\\":\\"33\\"},{\\"location\\":\\"Slough\\",\\"number\\":\\"22\\"},{\\"location\\":\\"Solihull\\",\\"number\\":\\"19\\"},{\\"location\\":\\"Somerset\\",\\"number\\":\\"22\\"},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":\\"25\\"},{\\"location\\":\\"South Tyneside\\",\\"number\\":\\"9\\"},{\\"location\\":\\"Southampton\\",\\"number\\":\\"28\\"},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":\\"9\\"},{\\"location\\":\\"Southwark\\",\\"number\\":\\"209\\"},{\\"location\\":\\"St. Helens\\",\\"number\\":\\"16\\"},{\\"location\\":\\"Staffordshire\\",\\"number\\":\\"97\\"},{\\"location\\":\\"Stockport\\",\\"number\\":\\"45\\"},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":\\"14\\"},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":\\"12\\"},{\\"location\\":\\"Suffolk\\",\\"number\\":\\"35\\"},{\\"location\\":\\"Sunderland\\",\\"number\\":\\"25\\"},{\\"location\\":\\"Surrey\\",\\"number\\":\\"117\\"},{\\"location\\":\\"Sutton\\",\\"number\\":\\"45\\"},{\\"location\\":\\"Swindon\\",\\"number\\":\\"8\\"},{\\"location\\":\\"Tameside\\",\\"number\\":\\"35\\"},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":\\"12\\"},{\\"location\\":\\"Thurrock\\",\\"number\\":\\"15\\"},{\\"location\\":\\"Torbay\\",\\"number\\":\\"18\\"},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":\\"71\\"},{\\"location\\":\\"Trafford\\",\\"number\\":\\"40\\"},{\\"location\\":\\"Wakefield\\",\\"number\\":\\"19\\"},{\\"location\\":\\"Walsall\\",\\"number\\":\\"60\\"},{\\"location\\":\\"Waltham Forest\\",\\"number\\":\\"63\\"},{\\"location\\":\\"Wandsworth\\",\\"number\\":\\"184\\"},{\\"location\\":\\"Warrington\\",\\"number\\":\\"9\\"},{\\"location\\":\\"Warwickshire\\",\\"number\\":\\"59\\"},{\\"location\\":\\"West Berkshire\\",\\"number\\":\\"16\\"},{\\"location\\":\\"West Sussex\\",\\"number\\":\\"57\\"},{\\"location\\":\\"Westminster\\",\\"number\\":\\"152\\"},{\\"location\\":\\"Wigan\\",\\"number\\":\\"14\\"},{\\"location\\":\\"Wiltshire\\",\\"number\\":\\"39\\"},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":\\"13\\"},{\\"location\\":\\"Wirral\\",\\"number\\":\\"16\\"},{\\"location\\":\\"Wokingham\\",\\"number\\":\\"13\\"},{\\"location\\":\\"Wolverhampton\\",\\"number\\":\\"98\\"},{\\"location\\":\\"Worcestershire\\",\\"number\\":\\"55\\"},{\\"location\\":\\"York\\",\\"number\\":\\"14\\"},{\\"location\\":\\"Ayrshire and Arran\\",\\"number\\":57},{\\"location\\":\\"Borders\\",\\"number\\":15},{\\"location\\":\\"Dumfries and Galloway\\",\\"number\\":31},{\\"location\\":\\"Fife\\",\\"number\\":29},{\\"location\\":\\"Forth Valley\\",\\"number\\":59},{\\"location\\":\\"Grampian\\",\\"number\\":29},{\\"location\\":\\"Greater Glasgow and Clyde\\",\\"number\\":221},{\\"location\\":\\"Highland\\",\\"number\\":22},{\\"location\\":\\"Lanarkshire\\",\\"number\\":87},{\\"location\\":\\"Lothian\\",\\"number\\":88},{\\"location\\":\\"Shetland\\",\\"number\\":24},{\\"location\\":\\"Tayside\\",\\"number\\":57},{\\"location\\":\\"Wales\\",\\"number\\":628},{\\"location\\":\\"Northern Ireland\\",\\"number\\":209}]'),
(57, 1585266610000, 11658, 578, 135, 0, 93208, 0, NULL, NULL, 9782, 894, 741, 241, '[{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":\\" 72\\"},{\\"location\\":\\"Barnet\\",\\"number\\":\\"103\\"},{\\"location\\":\\"Barnsley\\",\\"number\\":\\" 27\\"},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":\\" 23\\"},{\\"location\\":\\"Bedford\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Bexley\\",\\"number\\":\\" 77\\"},{\\"location\\":\\"Birmingham\\",\\"number\\":\\"290\\"},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":\\" 6\\"},{\\"location\\":\\"Blackpool\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"Bolton\\",\\"number\\":\\" 25\\"},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":\\" 15\\"},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Bradford\\",\\"number\\":\\" 23\\"},{\\"location\\":\\"Brent\\",\\"number\\":\\"228\\"},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":\\" 30\\"},{\\"location\\":\\"Bristol, City of\\",\\"number\\":\\" 51\\"},{\\"location\\":\\"Bromley\\",\\"number\\":\\"149\\"},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":\\" 66\\"},{\\"location\\":\\"Bury\\",\\"number\\":\\" 27\\"},{\\"location\\":\\"Calderdale\\",\\"number\\":\\" 9\\"},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":\\" 47\\"},{\\"location\\":\\"Camden\\",\\"number\\":\\" 85\\"},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":\\" 28\\"},{\\"location\\":\\"Cheshire East\\",\\"number\\":\\" 31\\"},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":\\" 24\\"},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":\\" 43\\"},{\\"location\\":\\"County Durham\\",\\"number\\":\\" 29\\"},{\\"location\\":\\"Coventry\\",\\"number\\":\\" 35\\"},{\\"location\\":\\"Croydon\\",\\"number\\":\\"181\\"},{\\"location\\":\\"Cumbria\\",\\"number\\":\\"176\\"},{\\"location\\":\\"Darlington\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"Derby\\",\\"number\\":\\" 58\\"},{\\"location\\":\\"Derbyshire\\",\\"number\\":\\"139\\"},{\\"location\\":\\"Devon\\",\\"number\\":\\" 55\\"},{\\"location\\":\\"Doncaster\\",\\"number\\":\\" 21\\"},{\\"location\\":\\"Dorset\\",\\"number\\":\\" 25\\"},{\\"location\\":\\"Dudley\\",\\"number\\":\\" 60\\"},{\\"location\\":\\"Ealing\\",\\"number\\":\\"165\\"},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":\\" 21\\"},{\\"location\\":\\"East Sussex\\",\\"number\\":\\" 26\\"},{\\"location\\":\\"Enfield\\",\\"number\\":\\"110\\"},{\\"location\\":\\"Essex\\",\\"number\\":\\"130\\"},{\\"location\\":\\"Gateshead\\",\\"number\\":\\" 12\\"},{\\"location\\":\\"Gloucestershire\\",\\"number\\":\\" 64\\"},{\\"location\\":\\"Greenwich\\",\\"number\\":\\"118\\"},{\\"location\\":\\"Hackney and City of London\\",\\"number\\":\\"119\\"},{\\"location\\":\\"Halton\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":\\" 94\\"},{\\"location\\":\\"Hampshire\\",\\"number\\":\\"267\\"},{\\"location\\":\\"Haringey\\",\\"number\\":\\" 91\\"},{\\"location\\":\\"Harrow\\",\\"number\\":\\"167\\"},{\\"location\\":\\"Hartlepool\\",\\"number\\":\\" 3\\"},{\\"location\\":\\"Havering\\",\\"number\\":\\" 70\\"},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":\\" 21\\"},{\\"location\\":\\"Hertfordshire\\",\\"number\\":\\"170\\"},{\\"location\\":\\"Hillingdon\\",\\"number\\":\\"103\\"},{\\"location\\":\\"Hounslow\\",\\"number\\":\\"112\\"},{\\"location\\":\\"Isle of Wight\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Islington\\",\\"number\\":\\" 96\\"},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":\\"110\\"},{\\"location\\":\\"Kent\\",\\"number\\":\\"112\\"},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":\\" 42\\"},{\\"location\\":\\"Kirklees\\",\\"number\\":\\" 24\\"},{\\"location\\":\\"Knowsley\\",\\"number\\":\\" 12\\"},{\\"location\\":\\"Lambeth\\",\\"number\\":\\"248\\"},{\\"location\\":\\"Lancashire\\",\\"number\\":\\"102\\"},{\\"location\\":\\"Leeds\\",\\"number\\":\\" 67\\"},{\\"location\\":\\"Leicester\\",\\"number\\":\\" 45\\"},{\\"location\\":\\"Leicestershire\\",\\"number\\":\\" 98\\"},{\\"location\\":\\"Lewisham\\",\\"number\\":\\"144\\"},{\\"location\\":\\"Lincolnshire\\",\\"number\\":\\" 32\\"},{\\"location\\":\\"Liverpool\\",\\"number\\":\\" 72\\"},{\\"location\\":\\"Luton\\",\\"number\\":\\" 30\\"},{\\"location\\":\\"Manchester\\",\\"number\\":\\" 55\\"},{\\"location\\":\\"Medway\\",\\"number\\":\\" 32\\"},{\\"location\\":\\"Merton\\",\\"number\\":\\"108\\"},{\\"location\\":\\"Middlesbrough\\",\\"number\\":\\" 9\\"},{\\"location\\":\\"Milton Keynes\\",\\"number\\":\\" 38\\"},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":\\" 80\\"},{\\"location\\":\\"Newham\\",\\"number\\":\\"109\\"},{\\"location\\":\\"Norfolk\\",\\"number\\":\\" 51\\"},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":\\" 6\\"},{\\"location\\":\\"North Somerset\\",\\"number\\":\\" 22\\"},{\\"location\\":\\"North Tyneside\\",\\"number\\":\\" 27\\"},{\\"location\\":\\"North Yorkshire\\",\\"number\\":\\" 50\\"},{\\"location\\":\\"Northamptonshire\\",\\"number\\":\\" 64\\"},{\\"location\\":\\"Northumberland\\",\\"number\\":\\" 23\\"},{\\"location\\":\\"Nottingham\\",\\"number\\":\\" 67\\"},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":\\"109\\"},{\\"location\\":\\"Oldham\\",\\"number\\":\\" 48\\"},{\\"location\\":\\"Oxfordshire\\",\\"number\\":\\" 98\\"},{\\"location\\":\\"Peterborough\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Plymouth\\",\\"number\\":\\" 26\\"},{\\"location\\":\\"Portsmouth\\",\\"number\\":\\" 42\\"},{\\"location\\":\\"Reading\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Redbridge\\",\\"number\\":\\" 89\\"},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":\\" 55\\"},{\\"location\\":\\"Rochdale\\",\\"number\\":\\" 38\\"},{\\"location\\":\\"Rotherham\\",\\"number\\":\\" 30\\"},{\\"location\\":\\"Rutland\\",\\"number\\":\\" 0\\"},{\\"location\\":\\"Salford\\",\\"number\\":\\" 52\\"},{\\"location\\":\\"Sandwell\\",\\"number\\":\\" 65\\"},{\\"location\\":\\"Sefton\\",\\"number\\":\\" 24\\"},{\\"location\\":\\"Sheffield\\",\\"number\\":\\"240\\"},{\\"location\\":\\"Shropshire\\",\\"number\\":\\" 44\\"},{\\"location\\":\\"Slough\\",\\"number\\":\\" 22\\"},{\\"location\\":\\"Solihull\\",\\"number\\":\\" 29\\"},{\\"location\\":\\"Somerset\\",\\"number\\":\\" 23\\"},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":\\" 31\\"},{\\"location\\":\\"South Tyneside\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Southampton\\",\\"number\\":\\" 32\\"},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":\\" 12\\"},{\\"location\\":\\"Southwark\\",\\"number\\":\\"253\\"},{\\"location\\":\\"St. Helens\\",\\"number\\":\\" 17\\"},{\\"location\\":\\"Staffordshire\\",\\"number\\":\\"121\\"},{\\"location\\":\\"Stockport\\",\\"number\\":\\" 48\\"},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":\\" 16\\"},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":\\" 16\\"},{\\"location\\":\\"Suffolk\\",\\"number\\":\\" 42\\"},{\\"location\\":\\"Sunderland\\",\\"number\\":\\" 27\\"},{\\"location\\":\\"Surrey\\",\\"number\\":\\"142\\"},{\\"location\\":\\"Sutton\\",\\"number\\":\\" 54\\"},{\\"location\\":\\"Swindon\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Tameside\\",\\"number\\":\\" 40\\"},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":\\" 17\\"},{\\"location\\":\\"Thurrock\\",\\"number\\":\\" 20\\"},{\\"location\\":\\"Torbay\\",\\"number\\":\\" 21\\"},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":\\" 93\\"},{\\"location\\":\\"Trafford\\",\\"number\\":\\" 46\\"},{\\"location\\":\\"Wakefield\\",\\"number\\":\\" 24\\"},{\\"location\\":\\"Walsall\\",\\"number\\":\\" 78\\"},{\\"location\\":\\"Waltham Forest\\",\\"number\\":\\" 95\\"},{\\"location\\":\\"Wandsworth\\",\\"number\\":\\"204\\"},{\\"location\\":\\"Warrington\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Warwickshire\\",\\"number\\":\\" 74\\"},{\\"location\\":\\"West Berkshire\\",\\"number\\":\\" 18\\"},{\\"location\\":\\"West Sussex\\",\\"number\\":\\" 69\\"},{\\"location\\":\\"Westminster\\",\\"number\\":\\"172\\"},{\\"location\\":\\"Wigan\\",\\"number\\":\\" 16\\"},{\\"location\\":\\"Wiltshire\\",\\"number\\":\\" 43\\"},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":\\" 14\\"},{\\"location\\":\\"Wirral\\",\\"number\\":\\" 22\\"},{\\"location\\":\\"Wokingham\\",\\"number\\":\\" 13\\"},{\\"location\\":\\"Wolverhampton\\",\\"number\\":\\"103\\"},{\\"location\\":\\"Worcestershire\\",\\"number\\":\\" 76\\"},{\\"location\\":\\"York\\",\\"number\\":\\" 14\\"},{\\"location\\":\\"Ayrshire and Arran\\",\\"number\\":74},{\\"location\\":\\"Borders\\",\\"number\\":23},{\\"location\\":\\"Dumfries and Galloway\\",\\"number\\":39},{\\"location\\":\\"Fife\\",\\"number\\":40},{\\"location\\":\\"Forth Valley\\",\\"number\\":75},{\\"location\\":\\"Grampian\\",\\"number\\":31},{\\"location\\":\\"Greater Glasgow and Clyde\\",\\"number\\":258},{\\"location\\":\\"Highland\\",\\"number\\":29},{\\"location\\":\\"Lanarkshire\\",\\"number\\":114},{\\"location\\":\\"Lothian\\",\\"number\\":111},{\\"location\\":\\"Shetland\\",\\"number\\":24},{\\"location\\":\\"Tayside\\",\\"number\\":76},{\\"location\\":\\"Wales\\",\\"number\\":741},{\\"location\\":\\"Northern Ireland\\",\\"number\\":241}]');
INSERT INTO `history` (`id`, `date`, `confirmed`, `death`, `cured`, `serious`, `negative`, `suspected`, `tested`, `test_done`, `england`, `scotland`, `wales`, `nireland`, `area`) VALUES
(58, 1585353010000, 14543, 759, 135, 0, 99234, 0, NULL, NULL, 12288, 1059, 921, 275, '[{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":\\" 82\\"},{\\"location\\":\\"Barnet\\",\\"number\\":\\"115\\"},{\\"location\\":\\"Barnsley\\",\\"number\\":\\" 42\\"},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":\\" 26\\"},{\\"location\\":\\"Bedford\\",\\"number\\":\\" 20\\"},{\\"location\\":\\"Bexley\\",\\"number\\":\\" 85\\"},{\\"location\\":\\"Birmingham\\",\\"number\\":\\"366\\"},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Blackpool\\",\\"number\\":\\" 9\\"},{\\"location\\":\\"Bolton\\",\\"number\\":\\" 27\\"},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":\\" 20\\"},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":\\" 16\\"},{\\"location\\":\\"Bradford\\",\\"number\\":\\" 29\\"},{\\"location\\":\\"Brent\\",\\"number\\":\\"265\\"},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":\\" 33\\"},{\\"location\\":\\"Bristol, City of\\",\\"number\\":\\" 56\\"},{\\"location\\":\\"Bromley\\",\\"number\\":\\"188\\"},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":\\"106\\"},{\\"location\\":\\"Bury\\",\\"number\\":\\" 30\\"},{\\"location\\":\\"Calderdale\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":\\" 68\\"},{\\"location\\":\\"Camden\\",\\"number\\":\\" 99\\"},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":\\" 42\\"},{\\"location\\":\\"Cheshire East\\",\\"number\\":\\" 35\\"},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":\\" 25\\"},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":\\" 48\\"},{\\"location\\":\\"County Durham\\",\\"number\\":\\" 56\\"},{\\"location\\":\\"Coventry\\",\\"number\\":\\" 47\\"},{\\"location\\":\\"Croydon\\",\\"number\\":\\"219\\"},{\\"location\\":\\"Cumbria\\",\\"number\\":\\"211\\"},{\\"location\\":\\"Darlington\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Derby\\",\\"number\\":\\" 77\\"},{\\"location\\":\\"Derbyshire\\",\\"number\\":\\"170\\"},{\\"location\\":\\"Devon\\",\\"number\\":\\" 65\\"},{\\"location\\":\\"Doncaster\\",\\"number\\":\\" 24\\"},{\\"location\\":\\"Dorset\\",\\"number\\":\\" 29\\"},{\\"location\\":\\"Dudley\\",\\"number\\":\\" 81\\"},{\\"location\\":\\"Ealing\\",\\"number\\":\\"209\\"},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":\\" 23\\"},{\\"location\\":\\"East Sussex\\",\\"number\\":\\" 39\\"},{\\"location\\":\\"Enfield\\",\\"number\\":\\"136\\"},{\\"location\\":\\"Essex\\",\\"number\\":\\"166\\"},{\\"location\\":\\"Gateshead\\",\\"number\\":\\" 23\\"},{\\"location\\":\\"Gloucestershire\\",\\"number\\":\\" 78\\"},{\\"location\\":\\"Greenwich\\",\\"number\\":\\"128\\"},{\\"location\\":\\"Hackney and City of London\\",\\"number\\":\\"134\\"},{\\"location\\":\\"Halton\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":\\"112\\"},{\\"location\\":\\"Hampshire\\",\\"number\\":\\"317\\"},{\\"location\\":\\"Haringey\\",\\"number\\":\\"113\\"},{\\"location\\":\\"Harrow\\",\\"number\\":\\"196\\"},{\\"location\\":\\"Hartlepool\\",\\"number\\":\\" 6\\"},{\\"location\\":\\"Havering\\",\\"number\\":\\" 82\\"},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":\\" 23\\"},{\\"location\\":\\"Hertfordshire\\",\\"number\\":\\"206\\"},{\\"location\\":\\"Hillingdon\\",\\"number\\":\\"129\\"},{\\"location\\":\\"Hounslow\\",\\"number\\":\\"126\\"},{\\"location\\":\\"Isle of Wight\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"Islington\\",\\"number\\":\\"120\\"},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":\\"116\\"},{\\"location\\":\\"Kent\\",\\"number\\":\\"182\\"},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":\\" 52\\"},{\\"location\\":\\"Kirklees\\",\\"number\\":\\" 33\\"},{\\"location\\":\\"Knowsley\\",\\"number\\":\\" 15\\"},{\\"location\\":\\"Lambeth\\",\\"number\\":\\"276\\"},{\\"location\\":\\"Lancashire\\",\\"number\\":\\"141\\"},{\\"location\\":\\"Leeds\\",\\"number\\":\\" 80\\"},{\\"location\\":\\"Leicester\\",\\"number\\":\\" 61\\"},{\\"location\\":\\"Leicestershire\\",\\"number\\":\\"128\\"},{\\"location\\":\\"Lewisham\\",\\"number\\":\\"158\\"},{\\"location\\":\\"Lincolnshire\\",\\"number\\":\\" 39\\"},{\\"location\\":\\"Liverpool\\",\\"number\\":\\"100\\"},{\\"location\\":\\"Luton\\",\\"number\\":\\" 47\\"},{\\"location\\":\\"Manchester\\",\\"number\\":\\" 63\\"},{\\"location\\":\\"Medway\\",\\"number\\":\\" 48\\"},{\\"location\\":\\"Merton\\",\\"number\\":\\"128\\"},{\\"location\\":\\"Middlesbrough\\",\\"number\\":\\" 17\\"},{\\"location\\":\\"Milton Keynes\\",\\"number\\":\\" 58\\"},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":\\"121\\"},{\\"location\\":\\"Newham\\",\\"number\\":\\"148\\"},{\\"location\\":\\"Norfolk\\",\\"number\\":\\" 70\\"},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":\\" 6\\"},{\\"location\\":\\"North Somerset\\",\\"number\\":\\" 24\\"},{\\"location\\":\\"North Tyneside\\",\\"number\\":\\" 36\\"},{\\"location\\":\\"North Yorkshire\\",\\"number\\":\\" 69\\"},{\\"location\\":\\"Northamptonshire\\",\\"number\\":\\" 86\\"},{\\"location\\":\\"Northumberland\\",\\"number\\":\\" 45\\"},{\\"location\\":\\"Nottingham\\",\\"number\\":\\" 79\\"},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":\\"135\\"},{\\"location\\":\\"Oldham\\",\\"number\\":\\" 51\\"},{\\"location\\":\\"Oxfordshire\\",\\"number\\":\\"113\\"},{\\"location\\":\\"Peterborough\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Plymouth\\",\\"number\\":\\" 32\\"},{\\"location\\":\\"Portsmouth\\",\\"number\\":\\" 50\\"},{\\"location\\":\\"Reading\\",\\"number\\":\\" 25\\"},{\\"location\\":\\"Redbridge\\",\\"number\\":\\"115\\"},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":\\" 13\\"},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":\\" 68\\"},{\\"location\\":\\"Rochdale\\",\\"number\\":\\" 40\\"},{\\"location\\":\\"Rotherham\\",\\"number\\":\\" 39\\"},{\\"location\\":\\"Rutland\\",\\"number\\":\\" 0\\"},{\\"location\\":\\"Salford\\",\\"number\\":\\" 58\\"},{\\"location\\":\\"Sandwell\\",\\"number\\":\\"103\\"},{\\"location\\":\\"Sefton\\",\\"number\\":\\" 30\\"},{\\"location\\":\\"Sheffield\\",\\"number\\":\\"286\\"},{\\"location\\":\\"Shropshire\\",\\"number\\":\\" 53\\"},{\\"location\\":\\"Slough\\",\\"number\\":\\" 59\\"},{\\"location\\":\\"Solihull\\",\\"number\\":\\" 39\\"},{\\"location\\":\\"Somerset\\",\\"number\\":\\" 25\\"},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":\\" 37\\"},{\\"location\\":\\"South Tyneside\\",\\"number\\":\\" 19\\"},{\\"location\\":\\"Southampton\\",\\"number\\":\\" 37\\"},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":\\" 17\\"},{\\"location\\":\\"Southwark\\",\\"number\\":\\"290\\"},{\\"location\\":\\"St. Helens\\",\\"number\\":\\" 32\\"},{\\"location\\":\\"Staffordshire\\",\\"number\\":\\"145\\"},{\\"location\\":\\"Stockport\\",\\"number\\":\\" 59\\"},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":\\" 24\\"},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":\\" 21\\"},{\\"location\\":\\"Suffolk\\",\\"number\\":\\" 61\\"},{\\"location\\":\\"Sunderland\\",\\"number\\":\\" 55\\"},{\\"location\\":\\"Surrey\\",\\"number\\":\\"271\\"},{\\"location\\":\\"Sutton\\",\\"number\\":\\" 69\\"},{\\"location\\":\\"Swindon\\",\\"number\\":\\" 16\\"},{\\"location\\":\\"Tameside\\",\\"number\\":\\" 43\\"},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":\\" 21\\"},{\\"location\\":\\"Thurrock\\",\\"number\\":\\" 26\\"},{\\"location\\":\\"Torbay\\",\\"number\\":\\" 23\\"},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":\\"129\\"},{\\"location\\":\\"Trafford\\",\\"number\\":\\" 53\\"},{\\"location\\":\\"Wakefield\\",\\"number\\":\\" 34\\"},{\\"location\\":\\"Walsall\\",\\"number\\":\\"100\\"},{\\"location\\":\\"Waltham Forest\\",\\"number\\":\\"130\\"},{\\"location\\":\\"Wandsworth\\",\\"number\\":\\"228\\"},{\\"location\\":\\"Warrington\\",\\"number\\":\\" 15\\"},{\\"location\\":\\"Warwickshire\\",\\"number\\":\\"101\\"},{\\"location\\":\\"West Berkshire\\",\\"number\\":\\" 32\\"},{\\"location\\":\\"West Sussex\\",\\"number\\":\\" 86\\"},{\\"location\\":\\"Westminster\\",\\"number\\":\\"189\\"},{\\"location\\":\\"Wigan\\",\\"number\\":\\" 21\\"},{\\"location\\":\\"Wiltshire\\",\\"number\\":\\" 54\\"},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":\\" 37\\"},{\\"location\\":\\"Wirral\\",\\"number\\":\\" 32\\"},{\\"location\\":\\"Wokingham\\",\\"number\\":\\" 22\\"},{\\"location\\":\\"Wolverhampton\\",\\"number\\":\\"128\\"},{\\"location\\":\\"Worcestershire\\",\\"number\\":\\" 93\\"},{\\"location\\":\\"York\\",\\"number\\":\\" 17\\"},{\\"location\\":\\"Ayrshire and Arran\\",\\"number\\":75},{\\"location\\":\\"Borders\\",\\"number\\":28},{\\"location\\":\\"Dumfries and Galloway\\",\\"number\\":47},{\\"location\\":\\"Fife\\",\\"number\\":41},{\\"location\\":\\"Forth Valley\\",\\"number\\":81},{\\"location\\":\\"Grampian\\",\\"number\\":45},{\\"location\\":\\"Greater Glasgow and Clyde\\",\\"number\\":299},{\\"location\\":\\"Highland\\",\\"number\\":33},{\\"location\\":\\"Lanarkshire\\",\\"number\\":140},{\\"location\\":\\"Lothian\\",\\"number\\":139},{\\"location\\":\\"Shetland\\",\\"number\\":24},{\\"location\\":\\"Tayside\\",\\"number\\":107},{\\"location\\":\\"Wales\\",\\"number\\":921},{\\"location\\":\\"Northern Ireland\\",\\"number\\":275}]'),
(59, 1585439410000, 17089, 1019, 135, 0, 103687, 0, NULL, NULL, 14427, 1245, 1093, 324, '[{\\"location\\":\\"Hartlepool\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"Middlesbrough\\",\\"number\\":\\" 19\\"},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":\\" 15\\"},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":\\" 29\\"},{\\"location\\":\\"Darlington\\",\\"number\\":\\" 14\\"},{\\"location\\":\\"Halton\\",\\"number\\":\\" 12\\"},{\\"location\\":\\"Warrington\\",\\"number\\":\\" 19\\"},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Blackpool\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":\\" 26\\"},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":\\" 7\\"},{\\"location\\":\\"York\\",\\"number\\":\\" 19\\"},{\\"location\\":\\"Derby\\",\\"number\\":\\"100\\"},{\\"location\\":\\"Leicester\\",\\"number\\":\\" 65\\"},{\\"location\\":\\"Rutland\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Nottingham\\",\\"number\\":\\" 91\\"},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":\\" 25\\"},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":\\" 23\\"},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":\\" 27\\"},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":\\" 32\\"},{\\"location\\":\\"Bristol, City of\\",\\"number\\":\\" 65\\"},{\\"location\\":\\"North Somerset\\",\\"number\\":\\" 31\\"},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":\\" 49\\"},{\\"location\\":\\"Plymouth\\",\\"number\\":\\" 39\\"},{\\"location\\":\\"Torbay\\",\\"number\\":\\" 25\\"},{\\"location\\":\\"Swindon\\",\\"number\\":\\" 18\\"},{\\"location\\":\\"Peterborough\\",\\"number\\":\\" 20\\"},{\\"location\\":\\"Luton\\",\\"number\\":\\" 53\\"},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":\\" 23\\"},{\\"location\\":\\"Thurrock\\",\\"number\\":\\" 33\\"},{\\"location\\":\\"Medway\\",\\"number\\":\\" 50\\"},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":\\" 17\\"},{\\"location\\":\\"West Berkshire\\",\\"number\\":\\" 36\\"},{\\"location\\":\\"Reading\\",\\"number\\":\\" 27\\"},{\\"location\\":\\"Slough\\",\\"number\\":\\" 69\\"},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":\\" 44\\"},{\\"location\\":\\"Wokingham\\",\\"number\\":\\" 23\\"},{\\"location\\":\\"Milton Keynes\\",\\"number\\":\\" 71\\"},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":\\" 33\\"},{\\"location\\":\\"Portsmouth\\",\\"number\\":\\" 64\\"},{\\"location\\":\\"Southampton\\",\\"number\\":\\" 41\\"},{\\"location\\":\\"Isle of Wight\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"County Durham\\",\\"number\\":\\" 69\\"},{\\"location\\":\\"Cheshire East\\",\\"number\\":\\" 42\\"},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":\\" 31\\"},{\\"location\\":\\"Shropshire\\",\\"number\\":\\" 56\\"},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":\\" 56\\"},{\\"location\\":\\"Wiltshire\\",\\"number\\":\\" 58\\"},{\\"location\\":\\"Bedford\\",\\"number\\":\\" 25\\"},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":\\" 48\\"},{\\"location\\":\\"Northumberland\\",\\"number\\":\\" 53\\"},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":\\" 25\\"},{\\"location\\":\\"Dorset\\",\\"number\\":\\" 30\\"},{\\"location\\":\\"Bolton\\",\\"number\\":\\" 33\\"},{\\"location\\":\\"Bury\\",\\"number\\":\\" 40\\"},{\\"location\\":\\"Manchester\\",\\"number\\":\\" 76\\"},{\\"location\\":\\"Oldham\\",\\"number\\":\\" 73\\"},{\\"location\\":\\"Rochdale\\",\\"number\\":\\" 52\\"},{\\"location\\":\\"Salford\\",\\"number\\":\\" 78\\"},{\\"location\\":\\"Stockport\\",\\"number\\":\\" 66\\"},{\\"location\\":\\"Tameside\\",\\"number\\":\\" 52\\"},{\\"location\\":\\"Trafford\\",\\"number\\":\\" 64\\"},{\\"location\\":\\"Wigan\\",\\"number\\":\\" 30\\"},{\\"location\\":\\"Knowsley\\",\\"number\\":\\" 19\\"},{\\"location\\":\\"Liverpool\\",\\"number\\":\\"132\\"},{\\"location\\":\\"St. Helens\\",\\"number\\":\\" 33\\"},{\\"location\\":\\"Sefton\\",\\"number\\":\\" 35\\"},{\\"location\\":\\"Wirral\\",\\"number\\":\\" 40\\"},{\\"location\\":\\"Barnsley\\",\\"number\\":\\" 62\\"},{\\"location\\":\\"Doncaster\\",\\"number\\":\\" 38\\"},{\\"location\\":\\"Rotherham\\",\\"number\\":\\" 57\\"},{\\"location\\":\\"Sheffield\\",\\"number\\":\\"361\\"},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":\\"135\\"},{\\"location\\":\\"North Tyneside\\",\\"number\\":\\" 46\\"},{\\"location\\":\\"South Tyneside\\",\\"number\\":\\" 22\\"},{\\"location\\":\\"Sunderland\\",\\"number\\":\\" 68\\"},{\\"location\\":\\"Birmingham\\",\\"number\\":\\"428\\"},{\\"location\\":\\"Coventry\\",\\"number\\":\\" 54\\"},{\\"location\\":\\"Dudley\\",\\"number\\":\\" 83\\"},{\\"location\\":\\"Sandwell\\",\\"number\\":\\"116\\"},{\\"location\\":\\"Solihull\\",\\"number\\":\\" 54\\"},{\\"location\\":\\"Walsall\\",\\"number\\":\\"108\\"},{\\"location\\":\\"Wolverhampton\\",\\"number\\":\\"141\\"},{\\"location\\":\\"Bradford\\",\\"number\\":\\" 37\\"},{\\"location\\":\\"Calderdale\\",\\"number\\":\\" 15\\"},{\\"location\\":\\"Kirklees\\",\\"number\\":\\" 38\\"},{\\"location\\":\\"Leeds\\",\\"number\\":\\" 95\\"},{\\"location\\":\\"Wakefield\\",\\"number\\":\\" 40\\"},{\\"location\\":\\"Gateshead\\",\\"number\\":\\" 31\\"},{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":\\" 93\\"},{\\"location\\":\\"Barnet\\",\\"number\\":\\"117\\"},{\\"location\\":\\"Bexley\\",\\"number\\":\\"102\\"},{\\"location\\":\\"Brent\\",\\"number\\":\\"295\\"},{\\"location\\":\\"Bromley\\",\\"number\\":\\"217\\"},{\\"location\\":\\"Camden\\",\\"number\\":\\"115\\"},{\\"location\\":\\"Croydon\\",\\"number\\":\\"261\\"},{\\"location\\":\\"Ealing\\",\\"number\\":\\"241\\"},{\\"location\\":\\"Enfield\\",\\"number\\":\\"144\\"},{\\"location\\":\\"Greenwich\\",\\"number\\":\\"148\\"},{\\"location\\":\\"Hackney and City of London\\",\\"number\\":\\"151\\"},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":\\"124\\"},{\\"location\\":\\"Haringey\\",\\"number\\":\\"127\\"},{\\"location\\":\\"Harrow\\",\\"number\\":\\"225\\"},{\\"location\\":\\"Havering\\",\\"number\\":\\"101\\"},{\\"location\\":\\"Hillingdon\\",\\"number\\":\\"140\\"},{\\"location\\":\\"Hounslow\\",\\"number\\":\\"139\\"},{\\"location\\":\\"Islington\\",\\"number\\":\\"131\\"},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":\\"123\\"},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":\\" 66\\"},{\\"location\\":\\"Lambeth\\",\\"number\\":\\"318\\"},{\\"location\\":\\"Lewisham\\",\\"number\\":\\"188\\"},{\\"location\\":\\"Merton\\",\\"number\\":\\"141\\"},{\\"location\\":\\"Newham\\",\\"number\\":\\"195\\"},{\\"location\\":\\"Redbridge\\",\\"number\\":\\"128\\"},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":\\" 83\\"},{\\"location\\":\\"Southwark\\",\\"number\\":\\"319\\"},{\\"location\\":\\"Sutton\\",\\"number\\":\\" 82\\"},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":\\"160\\"},{\\"location\\":\\"Waltham Forest\\",\\"number\\":\\"154\\"},{\\"location\\":\\"Wandsworth\\",\\"number\\":\\"265\\"},{\\"location\\":\\"Westminster\\",\\"number\\":\\"206\\"},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":\\"115\\"},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":\\" 85\\"},{\\"location\\":\\"Cumbria\\",\\"number\\":\\"238\\"},{\\"location\\":\\"Derbyshire\\",\\"number\\":\\"194\\"},{\\"location\\":\\"Devon\\",\\"number\\":\\" 84\\"},{\\"location\\":\\"East Sussex\\",\\"number\\":\\" 43\\"},{\\"location\\":\\"Essex\\",\\"number\\":\\"213\\"},{\\"location\\":\\"Gloucestershire\\",\\"number\\":\\"105\\"},{\\"location\\":\\"Hampshire\\",\\"number\\":\\"384\\"},{\\"location\\":\\"Hertfordshire\\",\\"number\\":\\"262\\"},{\\"location\\":\\"Kent\\",\\"number\\":\\"230\\"},{\\"location\\":\\"Lancashire\\",\\"number\\":\\"167\\"},{\\"location\\":\\"Leicestershire\\",\\"number\\":\\"136\\"},{\\"location\\":\\"Lincolnshire\\",\\"number\\":\\" 53\\"},{\\"location\\":\\"Norfolk\\",\\"number\\":\\" 90\\"},{\\"location\\":\\"Northamptonshire\\",\\"number\\":\\"106\\"},{\\"location\\":\\"North Yorkshire\\",\\"number\\":\\" 75\\"},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":\\"177\\"},{\\"location\\":\\"Oxfordshire\\",\\"number\\":\\"121\\"},{\\"location\\":\\"Somerset\\",\\"number\\":\\" 31\\"},{\\"location\\":\\"Staffordshire\\",\\"number\\":\\"186\\"},{\\"location\\":\\"Suffolk\\",\\"number\\":\\" 74\\"},{\\"location\\":\\"Surrey\\",\\"number\\":\\"314\\"},{\\"location\\":\\"Warwickshire\\",\\"number\\":\\"113\\"},{\\"location\\":\\"West Sussex\\",\\"number\\":\\"110\\"},{\\"location\\":\\"Worcestershire\\",\\"number\\":\\"108\\"},{\\"location\\":\\"Ayrshire and Arran\\",\\"number\\":90},{\\"location\\":\\"Borders\\",\\"number\\":35},{\\"location\\":\\"Dumfries and Galloway\\",\\"number\\":60},{\\"location\\":\\"Fife\\",\\"number\\":51},{\\"location\\":\\"Forth Valley\\",\\"number\\":95},{\\"location\\":\\"Grampian\\",\\"number\\":52},{\\"location\\":\\"Greater Glasgow and Clyde\\",\\"number\\":376},{\\"location\\":\\"Highland\\",\\"number\\":36},{\\"location\\":\\"Lanarkshire\\",\\"number\\":165},{\\"location\\":\\"Lothian\\",\\"number\\":151},{\\"location\\":\\"Shetland\\",\\"number\\":27},{\\"location\\":\\"Tayside\\",\\"number\\":107},{\\"location\\":\\"Wales\\",\\"number\\":1093},{\\"location\\":\\"Northern Ireland\\",\\"number\\":324}]'),
(60, 1585522210000, 19522, 1228, 135, 0, 108215, 0, NULL, NULL, 16487, 1384, 1241, 410, '[{\\"location\\":\\"Hartlepool\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"Middlesbrough\\",\\"number\\":\\" 26\\"},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":\\" 25\\"},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":\\" 34\\"},{\\"location\\":\\"Darlington\\",\\"number\\":\\" 15\\"},{\\"location\\":\\"Halton\\",\\"number\\":\\" 16\\"},{\\"location\\":\\"Warrington\\",\\"number\\":\\" 21\\"},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":\\" 12\\"},{\\"location\\":\\"Blackpool\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":\\" 9\\"},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":\\" 31\\"},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":\\" 16\\"},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":\\" 13\\"},{\\"location\\":\\"York\\",\\"number\\":\\" 21\\"},{\\"location\\":\\"Derby\\",\\"number\\":\\"105\\"},{\\"location\\":\\"Leicester\\",\\"number\\":\\" 65\\"},{\\"location\\":\\"Rutland\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Nottingham\\",\\"number\\":\\" 97\\"},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":\\" 25\\"},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":\\" 34\\"},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":\\" 28\\"},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":\\" 36\\"},{\\"location\\":\\"Bristol, City of\\",\\"number\\":\\" 78\\"},{\\"location\\":\\"North Somerset\\",\\"number\\":\\" 32\\"},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":\\" 53\\"},{\\"location\\":\\"Plymouth\\",\\"number\\":\\" 42\\"},{\\"location\\":\\"Torbay\\",\\"number\\":\\" 30\\"},{\\"location\\":\\"Swindon\\",\\"number\\":\\" 26\\"},{\\"location\\":\\"Peterborough\\",\\"number\\":\\" 21\\"},{\\"location\\":\\"Luton\\",\\"number\\":\\" 63\\"},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":\\" 24\\"},{\\"location\\":\\"Thurrock\\",\\"number\\":\\" 37\\"},{\\"location\\":\\"Medway\\",\\"number\\":\\" 57\\"},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":\\" 19\\"},{\\"location\\":\\"West Berkshire\\",\\"number\\":\\" 40\\"},{\\"location\\":\\"Reading\\",\\"number\\":\\" 27\\"},{\\"location\\":\\"Slough\\",\\"number\\":\\" 73\\"},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":\\" 48\\"},{\\"location\\":\\"Wokingham\\",\\"number\\":\\" 23\\"},{\\"location\\":\\"Milton Keynes\\",\\"number\\":\\" 82\\"},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":\\" 33\\"},{\\"location\\":\\"Portsmouth\\",\\"number\\":\\" 70\\"},{\\"location\\":\\"Southampton\\",\\"number\\":\\" 43\\"},{\\"location\\":\\"Isle of Wight\\",\\"number\\":\\" 10\\"},{\\"location\\":\\"County Durham\\",\\"number\\":\\" 81\\"},{\\"location\\":\\"Cheshire East\\",\\"number\\":\\" 54\\"},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":\\" 34\\"},{\\"location\\":\\"Shropshire\\",\\"number\\":\\" 67\\"},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":\\" 64\\"},{\\"location\\":\\"Wiltshire\\",\\"number\\":\\" 67\\"},{\\"location\\":\\"Bedford\\",\\"number\\":\\" 32\\"},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":\\" 56\\"},{\\"location\\":\\"Northumberland\\",\\"number\\":\\" 61\\"},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":\\" 34\\"},{\\"location\\":\\"Dorset\\",\\"number\\":\\" 36\\"},{\\"location\\":\\"Bolton\\",\\"number\\":\\" 42\\"},{\\"location\\":\\"Bury\\",\\"number\\":\\" 55\\"},{\\"location\\":\\"Manchester\\",\\"number\\":\\" 91\\"},{\\"location\\":\\"Oldham\\",\\"number\\":\\" 82\\"},{\\"location\\":\\"Rochdale\\",\\"number\\":\\" 65\\"},{\\"location\\":\\"Salford\\",\\"number\\":\\" 92\\"},{\\"location\\":\\"Stockport\\",\\"number\\":\\" 79\\"},{\\"location\\":\\"Tameside\\",\\"number\\":\\" 58\\"},{\\"location\\":\\"Trafford\\",\\"number\\":\\" 77\\"},{\\"location\\":\\"Wigan\\",\\"number\\":\\" 39\\"},{\\"location\\":\\"Knowsley\\",\\"number\\":\\" 26\\"},{\\"location\\":\\"Liverpool\\",\\"number\\":\\"157\\"},{\\"location\\":\\"St. Helens\\",\\"number\\":\\" 39\\"},{\\"location\\":\\"Sefton\\",\\"number\\":\\" 45\\"},{\\"location\\":\\"Wirral\\",\\"number\\":\\" 44\\"},{\\"location\\":\\"Barnsley\\",\\"number\\":\\" 70\\"},{\\"location\\":\\"Doncaster\\",\\"number\\":\\" 44\\"},{\\"location\\":\\"Rotherham\\",\\"number\\":\\" 60\\"},{\\"location\\":\\"Sheffield\\",\\"number\\":\\"387\\"},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":\\"155\\"},{\\"location\\":\\"North Tyneside\\",\\"number\\":\\" 62\\"},{\\"location\\":\\"South Tyneside\\",\\"number\\":\\" 27\\"},{\\"location\\":\\"Sunderland\\",\\"number\\":\\" 76\\"},{\\"location\\":\\"Birmingham\\",\\"number\\":\\"513\\"},{\\"location\\":\\"Coventry\\",\\"number\\":\\" 79\\"},{\\"location\\":\\"Dudley\\",\\"number\\":\\"122\\"},{\\"location\\":\\"Sandwell\\",\\"number\\":\\"138\\"},{\\"location\\":\\"Solihull\\",\\"number\\":\\" 74\\"},{\\"location\\":\\"Walsall\\",\\"number\\":\\"125\\"},{\\"location\\":\\"Wolverhampton\\",\\"number\\":\\"153\\"},{\\"location\\":\\"Bradford\\",\\"number\\":\\" 46\\"},{\\"location\\":\\"Calderdale\\",\\"number\\":\\" 29\\"},{\\"location\\":\\"Kirklees\\",\\"number\\":\\" 60\\"},{\\"location\\":\\"Leeds\\",\\"number\\":\\"113\\"},{\\"location\\":\\"Wakefield\\",\\"number\\":\\" 54\\"},{\\"location\\":\\"Gateshead\\",\\"number\\":\\" 44\\"},{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":\\"100\\"},{\\"location\\":\\"Barnet\\",\\"number\\":\\"119\\"},{\\"location\\":\\"Bexley\\",\\"number\\":\\"119\\"},{\\"location\\":\\"Brent\\",\\"number\\":\\"321\\"},{\\"location\\":\\"Bromley\\",\\"number\\":\\"268\\"},{\\"location\\":\\"Camden\\",\\"number\\":\\"119\\"},{\\"location\\":\\"Croydon\\",\\"number\\":\\"289\\"},{\\"location\\":\\"Ealing\\",\\"number\\":\\"265\\"},{\\"location\\":\\"Enfield\\",\\"number\\":\\"151\\"},{\\"location\\":\\"Greenwich\\",\\"number\\":\\"168\\"},{\\"location\\":\\"Hackney and City of London\\",\\"number\\":\\"177\\"},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":\\"144\\"},{\\"location\\":\\"Haringey\\",\\"number\\":\\"141\\"},{\\"location\\":\\"Harrow\\",\\"number\\":\\"251\\"},{\\"location\\":\\"Havering\\",\\"number\\":\\"105\\"},{\\"location\\":\\"Hillingdon\\",\\"number\\":\\"163\\"},{\\"location\\":\\"Hounslow\\",\\"number\\":\\"152\\"},{\\"location\\":\\"Islington\\",\\"number\\":\\"141\\"},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":\\"141\\"},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":\\" 82\\"},{\\"location\\":\\"Lambeth\\",\\"number\\":\\"358\\"},{\\"location\\":\\"Lewisham\\",\\"number\\":\\"218\\"},{\\"location\\":\\"Merton\\",\\"number\\":\\"161\\"},{\\"location\\":\\"Newham\\",\\"number\\":\\"230\\"},{\\"location\\":\\"Redbridge\\",\\"number\\":\\"143\\"},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":\\" 94\\"},{\\"location\\":\\"Southwark\\",\\"number\\":\\"365\\"},{\\"location\\":\\"Sutton\\",\\"number\\":\\" 93\\"},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":\\"184\\"},{\\"location\\":\\"Waltham Forest\\",\\"number\\":\\"182\\"},{\\"location\\":\\"Wandsworth\\",\\"number\\":\\"287\\"},{\\"location\\":\\"Westminster\\",\\"number\\":\\"226\\"},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":\\"128\\"},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":\\"100\\"},{\\"location\\":\\"Cumbria\\",\\"number\\":\\"292\\"},{\\"location\\":\\"Derbyshire\\",\\"number\\":\\"210\\"},{\\"location\\":\\"Devon\\",\\"number\\":\\" 91\\"},{\\"location\\":\\"East Sussex\\",\\"number\\":\\" 44\\"},{\\"location\\":\\"Essex\\",\\"number\\":\\"244\\"},{\\"location\\":\\"Gloucestershire\\",\\"number\\":\\"107\\"},{\\"location\\":\\"Hampshire\\",\\"number\\":\\"432\\"},{\\"location\\":\\"Hertfordshire\\",\\"number\\":\\"282\\"},{\\"location\\":\\"Kent\\",\\"number\\":\\"253\\"},{\\"location\\":\\"Lancashire\\",\\"number\\":\\"231\\"},{\\"location\\":\\"Leicestershire\\",\\"number\\":\\"141\\"},{\\"location\\":\\"Lincolnshire\\",\\"number\\":\\" 72\\"},{\\"location\\":\\"Norfolk\\",\\"number\\":\\"107\\"},{\\"location\\":\\"Northamptonshire\\",\\"number\\":\\"126\\"},{\\"location\\":\\"North Yorkshire\\",\\"number\\":\\" 88\\"},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":\\"193\\"},{\\"location\\":\\"Oxfordshire\\",\\"number\\":\\"140\\"},{\\"location\\":\\"Somerset\\",\\"number\\":\\" 36\\"},{\\"location\\":\\"Staffordshire\\",\\"number\\":\\"212\\"},{\\"location\\":\\"Suffolk\\",\\"number\\":\\" 87\\"},{\\"location\\":\\"Surrey\\",\\"number\\":\\"338\\"},{\\"location\\":\\"Warwickshire\\",\\"number\\":\\"127\\"},{\\"location\\":\\"West Sussex\\",\\"number\\":\\"113\\"},{\\"location\\":\\"Worcestershire\\",\\"number\\":\\"126\\"},{\\"location\\":\\" Ayrshire and Arran \\",\\"number\\":108},{\\"location\\":\\" Borders \\",\\"number\\":50},{\\"location\\":\\" Dumfries and Galloway \\",\\"number\\":63},{\\"location\\":\\" Fife \\",\\"number\\":58},{\\"location\\":\\" Forth Valley \\",\\"number\\":94},{\\"location\\":\\" Grampian \\",\\"number\\":62},{\\"location\\":\\" Greater Glasgow and Clyde \\",\\"number\\":401},{\\"location\\":\\" Highland \\",\\"number\\":42},{\\"location\\":\\" Lanarkshire \\",\\"number\\":184},{\\"location\\":\\" Lothian \\",\\"number\\":188},{\\"location\\":\\" Shetland \\",\\"number\\":27},{\\"location\\":\\" Tayside \\",\\"number\\":107},{\\"location\\":\\"Wales\\",\\"number\\":1241},{\\"location\\":\\"Northern Ireland\\",\\"number\\":410}]'),
(61, 1585608610000, 22141, 1408, 135, 0, 112805, 0, NULL, NULL, 18594, 1563, 1451, 533, '[{\\"location\\":\\"Hartlepool\\",\\"number\\":\\" 12\\"},{\\"location\\":\\"Middlesbrough\\",\\"number\\":\\" 33\\"},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":\\" 34\\"},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":\\" 43\\"},{\\"location\\":\\"Darlington\\",\\"number\\":\\" 16\\"},{\\"location\\":\\"Halton\\",\\"number\\":\\" 19\\"},{\\"location\\":\\"Warrington\\",\\"number\\":\\" 22\\"},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":\\" 14\\"},{\\"location\\":\\"Blackpool\\",\\"number\\":\\" 18\\"},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":\\" 35\\"},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":\\" 20\\"},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":\\" 15\\"},{\\"location\\":\\"York\\",\\"number\\":\\" 30\\"},{\\"location\\":\\"Derby\\",\\"number\\":\\"118\\"},{\\"location\\":\\"Leicester\\",\\"number\\":\\" 65\\"},{\\"location\\":\\"Rutland\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Nottingham\\",\\"number\\":\\" 99\\"},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":\\" 25\\"},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":\\" 40\\"},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":\\" 33\\"},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":\\" 39\\"},{\\"location\\":\\"Bristol, City of\\",\\"number\\":\\" 92\\"},{\\"location\\":\\"North Somerset\\",\\"number\\":\\" 36\\"},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":\\" 58\\"},{\\"location\\":\\"Plymouth\\",\\"number\\":\\" 44\\"},{\\"location\\":\\"Torbay\\",\\"number\\":\\" 35\\"},{\\"location\\":\\"Swindon\\",\\"number\\":\\" 28\\"},{\\"location\\":\\"Peterborough\\",\\"number\\":\\" 24\\"},{\\"location\\":\\"Luton\\",\\"number\\":\\" 69\\"},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":\\" 31\\"},{\\"location\\":\\"Thurrock\\",\\"number\\":\\" 41\\"},{\\"location\\":\\"Medway\\",\\"number\\":\\" 72\\"},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":\\" 21\\"},{\\"location\\":\\"West Berkshire\\",\\"number\\":\\" 41\\"},{\\"location\\":\\"Reading\\",\\"number\\":\\" 28\\"},{\\"location\\":\\"Slough\\",\\"number\\":\\" 73\\"},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":\\" 48\\"},{\\"location\\":\\"Wokingham\\",\\"number\\":\\" 23\\"},{\\"location\\":\\"Milton Keynes\\",\\"number\\":\\" 94\\"},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":\\" 33\\"},{\\"location\\":\\"Portsmouth\\",\\"number\\":\\" 72\\"},{\\"location\\":\\"Southampton\\",\\"number\\":\\" 68\\"},{\\"location\\":\\"Isle of Wight\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"County Durham\\",\\"number\\":\\"100\\"},{\\"location\\":\\"Cheshire East\\",\\"number\\":\\" 61\\"},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":\\" 45\\"},{\\"location\\":\\"Shropshire\\",\\"number\\":\\" 78\\"},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":\\" 69\\"},{\\"location\\":\\"Wiltshire\\",\\"number\\":\\" 76\\"},{\\"location\\":\\"Bedford\\",\\"number\\":\\" 34\\"},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":\\" 60\\"},{\\"location\\":\\"Northumberland\\",\\"number\\":\\" 67\\"},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":\\" 39\\"},{\\"location\\":\\"Dorset\\",\\"number\\":\\" 45\\"},{\\"location\\":\\"Bolton\\",\\"number\\":\\" 47\\"},{\\"location\\":\\"Bury\\",\\"number\\":\\" 59\\"},{\\"location\\":\\"Manchester\\",\\"number\\":\\"109\\"},{\\"location\\":\\"Oldham\\",\\"number\\":\\"101\\"},{\\"location\\":\\"Rochdale\\",\\"number\\":\\" 78\\"},{\\"location\\":\\"Salford\\",\\"number\\":\\"104\\"},{\\"location\\":\\"Stockport\\",\\"number\\":\\" 93\\"},{\\"location\\":\\"Tameside\\",\\"number\\":\\" 62\\"},{\\"location\\":\\"Trafford\\",\\"number\\":\\" 86\\"},{\\"location\\":\\"Wigan\\",\\"number\\":\\" 53\\"},{\\"location\\":\\"Knowsley\\",\\"number\\":\\" 34\\"},{\\"location\\":\\"Liverpool\\",\\"number\\":\\"197\\"},{\\"location\\":\\"St. Helens\\",\\"number\\":\\" 49\\"},{\\"location\\":\\"Sefton\\",\\"number\\":\\" 57\\"},{\\"location\\":\\"Wirral\\",\\"number\\":\\" 56\\"},{\\"location\\":\\"Barnsley\\",\\"number\\":\\" 79\\"},{\\"location\\":\\"Doncaster\\",\\"number\\":\\" 49\\"},{\\"location\\":\\"Rotherham\\",\\"number\\":\\" 70\\"},{\\"location\\":\\"Sheffield\\",\\"number\\":\\"428\\"},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":\\"186\\"},{\\"location\\":\\"North Tyneside\\",\\"number\\":\\" 71\\"},{\\"location\\":\\"South Tyneside\\",\\"number\\":\\" 31\\"},{\\"location\\":\\"Sunderland\\",\\"number\\":\\" 86\\"},{\\"location\\":\\"Birmingham\\",\\"number\\":\\"578\\"},{\\"location\\":\\"Coventry\\",\\"number\\":\\"101\\"},{\\"location\\":\\"Dudley\\",\\"number\\":\\"136\\"},{\\"location\\":\\"Sandwell\\",\\"number\\":\\"144\\"},{\\"location\\":\\"Solihull\\",\\"number\\":\\" 87\\"},{\\"location\\":\\"Walsall\\",\\"number\\":\\"151\\"},{\\"location\\":\\"Wolverhampton\\",\\"number\\":\\"175\\"},{\\"location\\":\\"Bradford\\",\\"number\\":\\" 63\\"},{\\"location\\":\\"Calderdale\\",\\"number\\":\\" 39\\"},{\\"location\\":\\"Kirklees\\",\\"number\\":\\" 72\\"},{\\"location\\":\\"Leeds\\",\\"number\\":\\"129\\"},{\\"location\\":\\"Wakefield\\",\\"number\\":\\" 62\\"},{\\"location\\":\\"Gateshead\\",\\"number\\":\\" 52\\"},{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":\\"115\\"},{\\"location\\":\\"Barnet\\",\\"number\\":\\"124\\"},{\\"location\\":\\"Bexley\\",\\"number\\":\\"130\\"},{\\"location\\":\\"Brent\\",\\"number\\":\\"359\\"},{\\"location\\":\\"Bromley\\",\\"number\\":\\"277\\"},{\\"location\\":\\"Camden\\",\\"number\\":\\"127\\"},{\\"location\\":\\"Croydon\\",\\"number\\":\\"313\\"},{\\"location\\":\\"Ealing\\",\\"number\\":\\"304\\"},{\\"location\\":\\"Enfield\\",\\"number\\":\\"164\\"},{\\"location\\":\\"Greenwich\\",\\"number\\":\\"185\\"},{\\"location\\":\\"Hackney and City of London\\",\\"number\\":\\"189\\"},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":\\"158\\"},{\\"location\\":\\"Haringey\\",\\"number\\":\\"151\\"},{\\"location\\":\\"Harrow\\",\\"number\\":\\"283\\"},{\\"location\\":\\"Havering\\",\\"number\\":\\"118\\"},{\\"location\\":\\"Hillingdon\\",\\"number\\":\\"192\\"},{\\"location\\":\\"Hounslow\\",\\"number\\":\\"184\\"},{\\"location\\":\\"Islington\\",\\"number\\":\\"152\\"},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":\\"170\\"},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":\\" 92\\"},{\\"location\\":\\"Lambeth\\",\\"number\\":\\"366\\"},{\\"location\\":\\"Lewisham\\",\\"number\\":\\"248\\"},{\\"location\\":\\"Merton\\",\\"number\\":\\"172\\"},{\\"location\\":\\"Newham\\",\\"number\\":\\"250\\"},{\\"location\\":\\"Redbridge\\",\\"number\\":\\"161\\"},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":\\"112\\"},{\\"location\\":\\"Southwark\\",\\"number\\":\\"368\\"},{\\"location\\":\\"Sutton\\",\\"number\\":\\"111\\"},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":\\"195\\"},{\\"location\\":\\"Waltham Forest\\",\\"number\\":\\"196\\"},{\\"location\\":\\"Wandsworth\\",\\"number\\":\\"314\\"},{\\"location\\":\\"Westminster\\",\\"number\\":\\"241\\"},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":\\"140\\"},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":\\"109\\"},{\\"location\\":\\"Cumbria\\",\\"number\\":\\"340\\"},{\\"location\\":\\"Derbyshire\\",\\"number\\":\\"225\\"},{\\"location\\":\\"Devon\\",\\"number\\":\\"101\\"},{\\"location\\":\\"East Sussex\\",\\"number\\":\\" 45\\"},{\\"location\\":\\"Essex\\",\\"number\\":\\"301\\"},{\\"location\\":\\"Gloucestershire\\",\\"number\\":\\"109\\"},{\\"location\\":\\"Hampshire\\",\\"number\\":\\"498\\"},{\\"location\\":\\"Hertfordshire\\",\\"number\\":\\"339\\"},{\\"location\\":\\"Kent\\",\\"number\\":\\"296\\"},{\\"location\\":\\"Lancashire\\",\\"number\\":\\"278\\"},{\\"location\\":\\"Leicestershire\\",\\"number\\":\\"146\\"},{\\"location\\":\\"Lincolnshire\\",\\"number\\":\\" 78\\"},{\\"location\\":\\"Norfolk\\",\\"number\\":\\"133\\"},{\\"location\\":\\"Northamptonshire\\",\\"number\\":\\"153\\"},{\\"location\\":\\"North Yorkshire\\",\\"number\\":\\"108\\"},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":\\"216\\"},{\\"location\\":\\"Oxfordshire\\",\\"number\\":\\"165\\"},{\\"location\\":\\"Somerset\\",\\"number\\":\\" 46\\"},{\\"location\\":\\"Staffordshire\\",\\"number\\":\\"256\\"},{\\"location\\":\\"Suffolk\\",\\"number\\":\\"100\\"},{\\"location\\":\\"Surrey\\",\\"number\\":\\"358\\"},{\\"location\\":\\"Warwickshire\\",\\"number\\":\\"148\\"},{\\"location\\":\\"West Sussex\\",\\"number\\":\\"113\\"},{\\"location\\":\\"Worcestershire\\",\\"number\\":\\"146\\"},{\\"location\\":\\" Ayrshire and Arran \\",\\"number\\":154},{\\"location\\":\\" Borders \\",\\"number\\":63},{\\"location\\":\\" Dumfries and Galloway \\",\\"number\\":74},{\\"location\\":\\" Fife \\",\\"number\\":70},{\\"location\\":\\" Forth Valley \\",\\"number\\":103},{\\"location\\":\\" Grampian \\",\\"number\\":66},{\\"location\\":\\" Greater Glasgow and Clyde \\",\\"number\\":449},{\\"location\\":\\" Highland \\",\\"number\\":44},{\\"location\\":\\" Lanarkshire \\",\\"number\\":197},{\\"location\\":\\" Lothian \\",\\"number\\":208},{\\"location\\":\\" Shetland \\",\\"number\\":27},{\\"location\\":\\" Tayside \\",\\"number\\":108},{\\"location\\":\\"Wales\\",\\"number\\":1451},{\\"location\\":\\"Northern Ireland\\",\\"number\\":533}]'),
(62, 1585695010000, 25150, 1789, 135, 0, 118036, 0, NULL, NULL, 18594, 1563, 1451, 533, '[{\\"location\\":\\"Hartlepool\\",\\"number\\":\\" 12\\"},{\\"location\\":\\"Middlesbrough\\",\\"number\\":\\" 33\\"},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":\\" 34\\"},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":\\" 43\\"},{\\"location\\":\\"Darlington\\",\\"number\\":\\" 16\\"},{\\"location\\":\\"Halton\\",\\"number\\":\\" 19\\"},{\\"location\\":\\"Warrington\\",\\"number\\":\\" 22\\"},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":\\" 14\\"},{\\"location\\":\\"Blackpool\\",\\"number\\":\\" 18\\"},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":\\" 35\\"},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":\\" 20\\"},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":\\" 15\\"},{\\"location\\":\\"York\\",\\"number\\":\\" 30\\"},{\\"location\\":\\"Derby\\",\\"number\\":\\"118\\"},{\\"location\\":\\"Leicester\\",\\"number\\":\\" 65\\"},{\\"location\\":\\"Rutland\\",\\"number\\":\\" 2\\"},{\\"location\\":\\"Nottingham\\",\\"number\\":\\" 99\\"},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":\\" 25\\"},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":\\" 40\\"},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":\\" 33\\"},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":\\" 39\\"},{\\"location\\":\\"Bristol, City of\\",\\"number\\":\\" 92\\"},{\\"location\\":\\"North Somerset\\",\\"number\\":\\" 36\\"},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":\\" 58\\"},{\\"location\\":\\"Plymouth\\",\\"number\\":\\" 44\\"},{\\"location\\":\\"Torbay\\",\\"number\\":\\" 35\\"},{\\"location\\":\\"Swindon\\",\\"number\\":\\" 28\\"},{\\"location\\":\\"Peterborough\\",\\"number\\":\\" 24\\"},{\\"location\\":\\"Luton\\",\\"number\\":\\" 69\\"},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":\\" 31\\"},{\\"location\\":\\"Thurrock\\",\\"number\\":\\" 41\\"},{\\"location\\":\\"Medway\\",\\"number\\":\\" 72\\"},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":\\" 21\\"},{\\"location\\":\\"West Berkshire\\",\\"number\\":\\" 41\\"},{\\"location\\":\\"Reading\\",\\"number\\":\\" 28\\"},{\\"location\\":\\"Slough\\",\\"number\\":\\" 73\\"},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":\\" 48\\"},{\\"location\\":\\"Wokingham\\",\\"number\\":\\" 23\\"},{\\"location\\":\\"Milton Keynes\\",\\"number\\":\\" 94\\"},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":\\" 33\\"},{\\"location\\":\\"Portsmouth\\",\\"number\\":\\" 72\\"},{\\"location\\":\\"Southampton\\",\\"number\\":\\" 68\\"},{\\"location\\":\\"Isle of Wight\\",\\"number\\":\\" 11\\"},{\\"location\\":\\"County Durham\\",\\"number\\":\\"100\\"},{\\"location\\":\\"Cheshire East\\",\\"number\\":\\" 61\\"},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":\\" 45\\"},{\\"location\\":\\"Shropshire\\",\\"number\\":\\" 78\\"},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":\\" 69\\"},{\\"location\\":\\"Wiltshire\\",\\"number\\":\\" 76\\"},{\\"location\\":\\"Bedford\\",\\"number\\":\\" 34\\"},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":\\" 60\\"},{\\"location\\":\\"Northumberland\\",\\"number\\":\\" 67\\"},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":\\" 39\\"},{\\"location\\":\\"Dorset\\",\\"number\\":\\" 45\\"},{\\"location\\":\\"Bolton\\",\\"number\\":\\" 47\\"},{\\"location\\":\\"Bury\\",\\"number\\":\\" 59\\"},{\\"location\\":\\"Manchester\\",\\"number\\":\\"109\\"},{\\"location\\":\\"Oldham\\",\\"number\\":\\"101\\"},{\\"location\\":\\"Rochdale\\",\\"number\\":\\" 78\\"},{\\"location\\":\\"Salford\\",\\"number\\":\\"104\\"},{\\"location\\":\\"Stockport\\",\\"number\\":\\" 93\\"},{\\"location\\":\\"Tameside\\",\\"number\\":\\" 62\\"},{\\"location\\":\\"Trafford\\",\\"number\\":\\" 86\\"},{\\"location\\":\\"Wigan\\",\\"number\\":\\" 53\\"},{\\"location\\":\\"Knowsley\\",\\"number\\":\\" 34\\"},{\\"location\\":\\"Liverpool\\",\\"number\\":\\"197\\"},{\\"location\\":\\"St. Helens\\",\\"number\\":\\" 49\\"},{\\"location\\":\\"Sefton\\",\\"number\\":\\" 57\\"},{\\"location\\":\\"Wirral\\",\\"number\\":\\" 56\\"},{\\"location\\":\\"Barnsley\\",\\"number\\":\\" 79\\"},{\\"location\\":\\"Doncaster\\",\\"number\\":\\" 49\\"},{\\"location\\":\\"Rotherham\\",\\"number\\":\\" 70\\"},{\\"location\\":\\"Sheffield\\",\\"number\\":\\"428\\"},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":\\"186\\"},{\\"location\\":\\"North Tyneside\\",\\"number\\":\\" 71\\"},{\\"location\\":\\"South Tyneside\\",\\"number\\":\\" 31\\"},{\\"location\\":\\"Sunderland\\",\\"number\\":\\" 86\\"},{\\"location\\":\\"Birmingham\\",\\"number\\":\\"578\\"},{\\"location\\":\\"Coventry\\",\\"number\\":\\"101\\"},{\\"location\\":\\"Dudley\\",\\"number\\":\\"136\\"},{\\"location\\":\\"Sandwell\\",\\"number\\":\\"144\\"},{\\"location\\":\\"Solihull\\",\\"number\\":\\" 87\\"},{\\"location\\":\\"Walsall\\",\\"number\\":\\"151\\"},{\\"location\\":\\"Wolverhampton\\",\\"number\\":\\"175\\"},{\\"location\\":\\"Bradford\\",\\"number\\":\\" 63\\"},{\\"location\\":\\"Calderdale\\",\\"number\\":\\" 39\\"},{\\"location\\":\\"Kirklees\\",\\"number\\":\\" 72\\"},{\\"location\\":\\"Leeds\\",\\"number\\":\\"129\\"},{\\"location\\":\\"Wakefield\\",\\"number\\":\\" 62\\"},{\\"location\\":\\"Gateshead\\",\\"number\\":\\" 52\\"},{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":\\"115\\"},{\\"location\\":\\"Barnet\\",\\"number\\":\\"124\\"},{\\"location\\":\\"Bexley\\",\\"number\\":\\"130\\"},{\\"location\\":\\"Brent\\",\\"number\\":\\"359\\"},{\\"location\\":\\"Bromley\\",\\"number\\":\\"277\\"},{\\"location\\":\\"Camden\\",\\"number\\":\\"127\\"},{\\"location\\":\\"Croydon\\",\\"number\\":\\"313\\"},{\\"location\\":\\"Ealing\\",\\"number\\":\\"304\\"},{\\"location\\":\\"Enfield\\",\\"number\\":\\"164\\"},{\\"location\\":\\"Greenwich\\",\\"number\\":\\"185\\"},{\\"location\\":\\"Hackney and City of London\\",\\"number\\":\\"189\\"},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":\\"158\\"},{\\"location\\":\\"Haringey\\",\\"number\\":\\"151\\"},{\\"location\\":\\"Harrow\\",\\"number\\":\\"283\\"},{\\"location\\":\\"Havering\\",\\"number\\":\\"118\\"},{\\"location\\":\\"Hillingdon\\",\\"number\\":\\"192\\"},{\\"location\\":\\"Hounslow\\",\\"number\\":\\"184\\"},{\\"location\\":\\"Islington\\",\\"number\\":\\"152\\"},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":\\"170\\"},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":\\" 92\\"},{\\"location\\":\\"Lambeth\\",\\"number\\":\\"366\\"},{\\"location\\":\\"Lewisham\\",\\"number\\":\\"248\\"},{\\"location\\":\\"Merton\\",\\"number\\":\\"172\\"},{\\"location\\":\\"Newham\\",\\"number\\":\\"250\\"},{\\"location\\":\\"Redbridge\\",\\"number\\":\\"161\\"},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":\\"112\\"},{\\"location\\":\\"Southwark\\",\\"number\\":\\"368\\"},{\\"location\\":\\"Sutton\\",\\"number\\":\\"111\\"},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":\\"195\\"},{\\"location\\":\\"Waltham Forest\\",\\"number\\":\\"196\\"},{\\"location\\":\\"Wandsworth\\",\\"number\\":\\"314\\"},{\\"location\\":\\"Westminster\\",\\"number\\":\\"241\\"},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":\\"140\\"},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":\\"109\\"},{\\"location\\":\\"Cumbria\\",\\"number\\":\\"340\\"},{\\"location\\":\\"Derbyshire\\",\\"number\\":\\"225\\"},{\\"location\\":\\"Devon\\",\\"number\\":\\"101\\"},{\\"location\\":\\"East Sussex\\",\\"number\\":\\" 45\\"},{\\"location\\":\\"Essex\\",\\"number\\":\\"301\\"},{\\"location\\":\\"Gloucestershire\\",\\"number\\":\\"109\\"},{\\"location\\":\\"Hampshire\\",\\"number\\":\\"498\\"},{\\"location\\":\\"Hertfordshire\\",\\"number\\":\\"339\\"},{\\"location\\":\\"Kent\\",\\"number\\":\\"296\\"},{\\"location\\":\\"Lancashire\\",\\"number\\":\\"278\\"},{\\"location\\":\\"Leicestershire\\",\\"number\\":\\"146\\"},{\\"location\\":\\"Lincolnshire\\",\\"number\\":\\" 78\\"},{\\"location\\":\\"Norfolk\\",\\"number\\":\\"133\\"},{\\"location\\":\\"Northamptonshire\\",\\"number\\":\\"153\\"},{\\"location\\":\\"North Yorkshire\\",\\"number\\":\\"108\\"},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":\\"216\\"},{\\"location\\":\\"Oxfordshire\\",\\"number\\":\\"165\\"},{\\"location\\":\\"Somerset\\",\\"number\\":\\" 46\\"},{\\"location\\":\\"Staffordshire\\",\\"number\\":\\"256\\"},{\\"location\\":\\"Suffolk\\",\\"number\\":\\"100\\"},{\\"location\\":\\"Surrey\\",\\"number\\":\\"358\\"},{\\"location\\":\\"Warwickshire\\",\\"number\\":\\"148\\"},{\\"location\\":\\"West Sussex\\",\\"number\\":\\"113\\"},{\\"location\\":\\"Worcestershire\\",\\"number\\":\\"146\\"},{\\"location\\":\\" Ayrshire and Arran \\",\\"number\\":177},{\\"location\\":\\" Borders \\",\\"number\\":77},{\\"location\\":\\" Dumfries and Galloway \\",\\"number\\":92},{\\"location\\":\\" Fife \\",\\"number\\":76},{\\"location\\":\\" Forth Valley \\",\\"number\\":131},{\\"location\\":\\" Grampian \\",\\"number\\":86},{\\"location\\":\\" Greater Glasgow and Clyde \\",\\"number\\":547},{\\"location\\":\\" Highland \\",\\"number\\":51},{\\"location\\":\\" Lanarkshire \\",\\"number\\":244},{\\"location\\":\\" Lothian \\",\\"number\\":269},{\\"location\\":\\" Shetland \\",\\"number\\":29},{\\"location\\":\\" Tayside \\",\\"number\\":214},{\\"location\\":\\"Wales\\",\\"number\\":1563},{\\"location\\":\\"Northern Ireland\\",\\"number\\":586}]');
INSERT INTO `history` (`id`, `date`, `confirmed`, `death`, `cured`, `serious`, `negative`, `suspected`, `tested`, `test_done`, `england`, `scotland`, `wales`, `nireland`, `area`) VALUES
(63, 1585781410000, 29474, 2352, 135, 0, 123505, 0, NULL, NULL, 24638, 2310, 1837, 689, '[{\\"location\\":\\"Hartlepool\\",\\"number\\":\\" 15\\"},{\\"location\\":\\"Middlesbrough\\",\\"number\\":\\" 59\\"},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":\\" 51\\"},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":\\" 60\\"},{\\"location\\":\\"Darlington\\",\\"number\\":\\" 24\\"},{\\"location\\":\\"Halton\\",\\"number\\":\\" 32\\"},{\\"location\\":\\"Warrington\\",\\"number\\":\\" 40\\"},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":\\" 25\\"},{\\"location\\":\\"Blackpool\\",\\"number\\":\\" 27\\"},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":\\" 14\\"},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":\\" 46\\"},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":\\" 23\\"},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":\\" 23\\"},{\\"location\\":\\"York\\",\\"number\\":\\" 35\\"},{\\"location\\":\\"Derby\\",\\"number\\":\\"143\\"},{\\"location\\":\\"Leicester\\",\\"number\\":\\"101\\"},{\\"location\\":\\"Rutland\\",\\"number\\":\\" 4\\"},{\\"location\\":\\"Nottingham\\",\\"number\\":\\"120\\"},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":\\" 40\\"},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":\\" 48\\"},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":\\" 55\\"},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":\\" 45\\"},{\\"location\\":\\"Bristol, City of\\",\\"number\\":\\"117\\"},{\\"location\\":\\"North Somerset\\",\\"number\\":\\" 42\\"},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":\\" 76\\"},{\\"location\\":\\"Plymouth\\",\\"number\\":\\" 56\\"},{\\"location\\":\\"Torbay\\",\\"number\\":\\" 42\\"},{\\"location\\":\\"Swindon\\",\\"number\\":\\" 31\\"},{\\"location\\":\\"Peterborough\\",\\"number\\":\\" 36\\"},{\\"location\\":\\"Luton\\",\\"number\\":\\" 91\\"},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":\\" 44\\"},{\\"location\\":\\"Thurrock\\",\\"number\\":\\" 62\\"},{\\"location\\":\\"Medway\\",\\"number\\":\\" 98\\"},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":\\" 35\\"},{\\"location\\":\\"West Berkshire\\",\\"number\\":\\" 63\\"},{\\"location\\":\\"Reading\\",\\"number\\":\\" 66\\"},{\\"location\\":\\"Slough\\",\\"number\\":\\"115\\"},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":\\" 75\\"},{\\"location\\":\\"Wokingham\\",\\"number\\":\\" 67\\"},{\\"location\\":\\"Milton Keynes\\",\\"number\\":\\"117\\"},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":\\" 49\\"},{\\"location\\":\\"Portsmouth\\",\\"number\\":\\" 79\\"},{\\"location\\":\\"Southampton\\",\\"number\\":\\"100\\"},{\\"location\\":\\"Isle of Wight\\",\\"number\\":\\" 14\\"},{\\"location\\":\\"County Durham\\",\\"number\\":\\"131\\"},{\\"location\\":\\"Cheshire East\\",\\"number\\":\\" 76\\"},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":\\" 65\\"},{\\"location\\":\\"Shropshire\\",\\"number\\":\\"102\\"},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":\\" 99\\"},{\\"location\\":\\"Wiltshire\\",\\"number\\":\\" 93\\"},{\\"location\\":\\"Bedford\\",\\"number\\":\\" 60\\"},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":\\" 81\\"},{\\"location\\":\\"Northumberland\\",\\"number\\":\\" 92\\"},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":\\" 58\\"},{\\"location\\":\\"Dorset\\",\\"number\\":\\" 62\\"},{\\"location\\":\\"Bolton\\",\\"number\\":\\" 51\\"},{\\"location\\":\\"Bury\\",\\"number\\":\\" 75\\"},{\\"location\\":\\"Manchester\\",\\"number\\":\\"155\\"},{\\"location\\":\\"Oldham\\",\\"number\\":\\"114\\"},{\\"location\\":\\"Rochdale\\",\\"number\\":\\" 94\\"},{\\"location\\":\\"Salford\\",\\"number\\":\\"129\\"},{\\"location\\":\\"Stockport\\",\\"number\\":\\"107\\"},{\\"location\\":\\"Tameside\\",\\"number\\":\\" 77\\"},{\\"location\\":\\"Trafford\\",\\"number\\":\\"104\\"},{\\"location\\":\\"Wigan\\",\\"number\\":\\" 67\\"},{\\"location\\":\\"Knowsley\\",\\"number\\":\\" 53\\"},{\\"location\\":\\"Liverpool\\",\\"number\\":\\"262\\"},{\\"location\\":\\"St. Helens\\",\\"number\\":\\" 72\\"},{\\"location\\":\\"Sefton\\",\\"number\\":\\" 86\\"},{\\"location\\":\\"Wirral\\",\\"number\\":\\" 83\\"},{\\"location\\":\\"Barnsley\\",\\"number\\":\\"122\\"},{\\"location\\":\\"Doncaster\\",\\"number\\":\\" 79\\"},{\\"location\\":\\"Rotherham\\",\\"number\\":\\"107\\"},{\\"location\\":\\"Sheffield\\",\\"number\\":\\"541\\"},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":\\"225\\"},{\\"location\\":\\"North Tyneside\\",\\"number\\":\\" 87\\"},{\\"location\\":\\"South Tyneside\\",\\"number\\":\\" 44\\"},{\\"location\\":\\"Sunderland\\",\\"number\\":\\"109\\"},{\\"location\\":\\"Birmingham\\",\\"number\\":\\"734\\"},{\\"location\\":\\"Coventry\\",\\"number\\":\\"127\\"},{\\"location\\":\\"Dudley\\",\\"number\\":\\"157\\"},{\\"location\\":\\"Sandwell\\",\\"number\\":\\"186\\"},{\\"location\\":\\"Solihull\\",\\"number\\":\\"126\\"},{\\"location\\":\\"Walsall\\",\\"number\\":\\"198\\"},{\\"location\\":\\"Wolverhampton\\",\\"number\\":\\"208\\"},{\\"location\\":\\"Bradford\\",\\"number\\":\\" 95\\"},{\\"location\\":\\"Calderdale\\",\\"number\\":\\" 54\\"},{\\"location\\":\\"Kirklees\\",\\"number\\":\\"101\\"},{\\"location\\":\\"Leeds\\",\\"number\\":\\"192\\"},{\\"location\\":\\"Wakefield\\",\\"number\\":\\" 79\\"},{\\"location\\":\\"Gateshead\\",\\"number\\":\\" 80\\"},{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":\\"130\\"},{\\"location\\":\\"Barnet\\",\\"number\\":\\"468\\"},{\\"location\\":\\"Bexley\\",\\"number\\":\\"147\\"},{\\"location\\":\\"Brent\\",\\"number\\":\\"506\\"},{\\"location\\":\\"Bromley\\",\\"number\\":\\"321\\"},{\\"location\\":\\"Camden\\",\\"number\\":\\"212\\"},{\\"location\\":\\"Croydon\\",\\"number\\":\\"380\\"},{\\"location\\":\\"Ealing\\",\\"number\\":\\"350\\"},{\\"location\\":\\"Enfield\\",\\"number\\":\\"240\\"},{\\"location\\":\\"Greenwich\\",\\"number\\":\\"205\\"},{\\"location\\":\\"Hackney and City of London\\",\\"number\\":\\"221\\"},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":\\"177\\"},{\\"location\\":\\"Haringey\\",\\"number\\":\\"194\\"},{\\"location\\":\\"Harrow\\",\\"number\\":\\"347\\"},{\\"location\\":\\"Havering\\",\\"number\\":\\"133\\"},{\\"location\\":\\"Hillingdon\\",\\"number\\":\\"222\\"},{\\"location\\":\\"Hounslow\\",\\"number\\":\\"214\\"},{\\"location\\":\\"Islington\\",\\"number\\":\\"174\\"},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":\\"191\\"},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":\\"108\\"},{\\"location\\":\\"Lambeth\\",\\"number\\":\\"462\\"},{\\"location\\":\\"Lewisham\\",\\"number\\":\\"285\\"},{\\"location\\":\\"Merton\\",\\"number\\":\\"208\\"},{\\"location\\":\\"Newham\\",\\"number\\":\\"330\\"},{\\"location\\":\\"Redbridge\\",\\"number\\":\\"196\\"},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":\\"142\\"},{\\"location\\":\\"Southwark\\",\\"number\\":\\"474\\"},{\\"location\\":\\"Sutton\\",\\"number\\":\\"142\\"},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":\\"241\\"},{\\"location\\":\\"Waltham Forest\\",\\"number\\":\\"260\\"},{\\"location\\":\\"Wandsworth\\",\\"number\\":\\"360\\"},{\\"location\\":\\"Westminster\\",\\"number\\":\\"301\\"},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":\\"195\\"},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":\\"141\\"},{\\"location\\":\\"Cumbria\\",\\"number\\":\\"425\\"},{\\"location\\":\\"Derbyshire\\",\\"number\\":\\"307\\"},{\\"location\\":\\"Devon\\",\\"number\\":\\"128\\"},{\\"location\\":\\"East Sussex\\",\\"number\\":\\" 84\\"},{\\"location\\":\\"Essex\\",\\"number\\":\\"420\\"},{\\"location\\":\\"Gloucestershire\\",\\"number\\":\\"172\\"},{\\"location\\":\\"Hampshire\\",\\"number\\":\\"652\\"},{\\"location\\":\\"Hertfordshire\\",\\"number\\":\\"480\\"},{\\"location\\":\\"Kent\\",\\"number\\":\\"455\\"},{\\"location\\":\\"Lancashire\\",\\"number\\":\\"368\\"},{\\"location\\":\\"Leicestershire\\",\\"number\\":\\"187\\"},{\\"location\\":\\"Lincolnshire\\",\\"number\\":\\"133\\"},{\\"location\\":\\"Norfolk\\",\\"number\\":\\"180\\"},{\\"location\\":\\"Northamptonshire\\",\\"number\\":\\"187\\"},{\\"location\\":\\"North Yorkshire\\",\\"number\\":\\"149\\"},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":\\"275\\"},{\\"location\\":\\"Oxfordshire\\",\\"number\\":\\"234\\"},{\\"location\\":\\"Somerset\\",\\"number\\":\\" 63\\"},{\\"location\\":\\"Staffordshire\\",\\"number\\":\\"329\\"},{\\"location\\":\\"Suffolk\\",\\"number\\":\\"125\\"},{\\"location\\":\\"Surrey\\",\\"number\\":\\"571\\"},{\\"location\\":\\"Warwickshire\\",\\"number\\":\\"190\\"},{\\"location\\":\\"West Sussex\\",\\"number\\":\\"160\\"},{\\"location\\":\\"Worcestershire\\",\\"number\\":\\"201\\"},{\\"location\\":\\" Ayrshire and Arran \\",\\"number\\":199},{\\"location\\":\\" Borders \\",\\"number\\":87},{\\"location\\":\\" Dumfries and Galloway \\",\\"number\\":100},{\\"location\\":\\" Fife \\",\\"number\\":96},{\\"location\\":\\" Forth Valley \\",\\"number\\":146},{\\"location\\":\\" Grampian \\",\\"number\\":108},{\\"location\\":\\" Greater Glasgow and Clyde \\",\\"number\\":632},{\\"location\\":\\" Highland \\",\\"number\\":58},{\\"location\\":\\" Lanarkshire \\",\\"number\\":284},{\\"location\\":\\" Lothian \\",\\"number\\":311},{\\"location\\":\\"Orkney\\",\\"number\\":2},{\\"location\\":\\" Shetland \\",\\"number\\":30},{\\"location\\":\\" Tayside \\",\\"number\\":254},{\\"location\\":\\"Eileanan Siar (Western Isles)\\",\\"number\\":3},{\\"location\\":\\"Wales\\",\\"number\\":1837},{\\"location\\":\\"Northern Ireland\\",\\"number\\":689}]'),
(64, 1585867810000, 33718, 2921, 135, 0, 129476, 0, NULL, NULL, 28221, 2602, 2121, 774, '[{\\"location\\":\\"Birmingham\\",\\"number\\":\\"852\\"},{\\"location\\":\\"Hertfordshire\\",\\"number\\":\\"582\\"},{\\"location\\":\\"Essex\\",\\"number\\":\\"517\\"},{\\"location\\":\\"Lancashire\\",\\"number\\":\\"463\\"},{\\"location\\":\\"Cumbria\\",\\"number\\":\\"512\\"},{\\"location\\":\\"Kent\\",\\"number\\":\\"531\\"},{\\"location\\":\\"Lewisham\\",\\"number\\":\\"346\\"},{\\"location\\":\\"Sheffield\\",\\"number\\":\\"602\\"},{\\"location\\":\\"Croydon\\",\\"number\\":\\"437\\"},{\\"location\\":\\"Brent\\",\\"number\\":\\"559\\"},{\\"location\\":\\"Liverpool\\",\\"number\\":\\"309\\"},{\\"location\\":\\"Surrey\\",\\"number\\":\\"618\\"},{\\"location\\":\\"Hampshire\\",\\"number\\":\\"699\\"},{\\"location\\":\\"Lambeth\\",\\"number\\":\\"508\\"},{\\"location\\":\\"Warwickshire\\",\\"number\\":\\"235\\"},{\\"location\\":\\"Hackney and City of London\\",\\"number\\":\\"266\\"},{\\"location\\":\\"Bromley\\",\\"number\\":\\"366\\"},{\\"location\\":\\"Bexley\\",\\"number\\":\\"190\\"},{\\"location\\":\\"Oxfordshire\\",\\"number\\":\\"277\\"},{\\"location\\":\\"Staffordshire\\",\\"number\\":\\"372\\"},{\\"location\\":\\"Greenwich\\",\\"number\\":\\"247\\"},{\\"location\\":\\"Barnet\\",\\"number\\":\\"510\\"},{\\"location\\":\\"Southwark\\",\\"number\\":\\"516\\"},{\\"location\\":\\"St. Helens\\",\\"number\\":\\"112\\"},{\\"location\\":\\"Manchester\\",\\"number\\":\\"195\\"},{\\"location\\":\\"Newham\\",\\"number\\":\\"370\\"},{\\"location\\":\\"Dudley\\",\\"number\\":\\"194\\"},{\\"location\\":\\"Wandsworth\\",\\"number\\":\\"397\\"},{\\"location\\":\\"Gloucestershire\\",\\"number\\":\\"208\\"},{\\"location\\":\\"Derbyshire\\",\\"number\\":\\"342\\"},{\\"location\\":\\"Ealing\\",\\"number\\":\\"385\\"},{\\"location\\":\\"County Durham\\",\\"number\\":\\"165\\"},{\\"location\\":\\"Sutton\\",\\"number\\":\\"176\\"},{\\"location\\":\\"Sefton\\",\\"number\\":\\"119\\"},{\\"location\\":\\"Stockport\\",\\"number\\":\\"140\\"},{\\"location\\":\\"Northamptonshire\\",\\"number\\":\\"220\\"},{\\"location\\":\\"Walsall\\",\\"number\\":\\"231\\"},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":\\" 97\\"},{\\"location\\":\\"Suffolk\\",\\"number\\":\\"157\\"},{\\"location\\":\\"Harrow\\",\\"number\\":\\"378\\"},{\\"location\\":\\"Waltham Forest\\",\\"number\\":\\"290\\"},{\\"location\\":\\"Salford\\",\\"number\\":\\"158\\"},{\\"location\\":\\"Sandwell\\",\\"number\\":\\"215\\"},{\\"location\\":\\"Wirral\\",\\"number\\":\\"111\\"},{\\"location\\":\\"Coventry\\",\\"number\\":\\"155\\"},{\\"location\\":\\"Hillingdon\\",\\"number\\":\\"250\\"},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":\\" 71\\"},{\\"location\\":\\"Northumberland\\",\\"number\\":\\"119\\"},{\\"location\\":\\"Norfolk\\",\\"number\\":\\"207\\"},{\\"location\\":\\"Merton\\",\\"number\\":\\"235\\"},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":\\"252\\"},{\\"location\\":\\"Knowsley\\",\\"number\\":\\" 79\\"},{\\"location\\":\\"Cheshire East\\",\\"number\\":\\"102\\"},{\\"location\\":\\"North Tyneside\\",\\"number\\":\\"113\\"},{\\"location\\":\\"Warrington\\",\\"number\\":\\" 65\\"},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":\\"166\\"},{\\"location\\":\\"Wigan\\",\\"number\\":\\" 91\\"},{\\"location\\":\\"Luton\\",\\"number\\":\\"115\\"},{\\"location\\":\\"Derby\\",\\"number\\":\\"167\\"},{\\"location\\":\\"Enfield\\",\\"number\\":\\"264\\"},{\\"location\\":\\"Bradford\\",\\"number\\":\\"118\\"},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":\\"298\\"},{\\"location\\":\\"Trafford\\",\\"number\\":\\"126\\"},{\\"location\\":\\"Rotherham\\",\\"number\\":\\"129\\"},{\\"location\\":\\"Sunderland\\",\\"number\\":\\"131\\"},{\\"location\\":\\"Bristol, City of\\",\\"number\\":\\"137\\"},{\\"location\\":\\"Lincolnshire\\",\\"number\\":\\"153\\"},{\\"location\\":\\"Worcestershire\\",\\"number\\":\\"221\\"},{\\"location\\":\\"Hounslow\\",\\"number\\":\\"234\\"},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":\\"127\\"},{\\"location\\":\\"Devon\\",\\"number\\":\\"147\\"},{\\"location\\":\\"Bolton\\",\\"number\\":\\" 69\\"},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":\\" 99\\"},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":\\"259\\"},{\\"location\\":\\"Thurrock\\",\\"number\\":\\" 79\\"},{\\"location\\":\\"Tameside\\",\\"number\\":\\" 94\\"},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":\\"208\\"},{\\"location\\":\\"Haringey\\",\\"number\\":\\"211\\"},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":\\"212\\"},{\\"location\\":\\"Doncaster\\",\\"number\\":\\" 95\\"},{\\"location\\":\\"Wakefield\\",\\"number\\":\\" 95\\"},{\\"location\\":\\"Redbridge\\",\\"number\\":\\"212\\"},{\\"location\\":\\"Middlesbrough\\",\\"number\\":\\" 74\\"},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":\\" 91\\"},{\\"location\\":\\"Gateshead\\",\\"number\\":\\" 95\\"},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":\\"114\\"},{\\"location\\":\\"Solihull\\",\\"number\\":\\"141\\"},{\\"location\\":\\"North Yorkshire\\",\\"number\\":\\"163\\"},{\\"location\\":\\"Islington\\",\\"number\\":\\"188\\"},{\\"location\\":\\"Leicestershire\\",\\"number\\":\\"201\\"},{\\"location\\":\\"Wolverhampton\\",\\"number\\":\\"222\\"},{\\"location\\":\\"Kirklees\\",\\"number\\":\\"114\\"},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":\\"155\\"},{\\"location\\":\\"Camden\\",\\"number\\":\\"225\\"},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":\\" 37\\"},{\\"location\\":\\"Bedford\\",\\"number\\":\\" 72\\"},{\\"location\\":\\"Bury\\",\\"number\\":\\" 87\\"},{\\"location\\":\\"Wiltshire\\",\\"number\\":\\"105\\"},{\\"location\\":\\"Medway\\",\\"number\\":\\"110\\"},{\\"location\\":\\"Barnsley\\",\\"number\\":\\"134\\"},{\\"location\\":\\"West Sussex\\",\\"number\\":\\"172\\"},{\\"location\\":\\"Dorset\\",\\"number\\":\\" 73\\"},{\\"location\\":\\"East Sussex\\",\\"number\\":\\" 95\\"},{\\"location\\":\\"Rochdale\\",\\"number\\":\\"105\\"},{\\"location\\":\\"Oldham\\",\\"number\\":\\"125\\"},{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":\\"141\\"},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":\\"188\\"},{\\"location\\":\\"Leeds\\",\\"number\\":\\"203\\"},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":\\" 56\\"},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":\\" 70\\"},{\\"location\\":\\"Milton Keynes\\",\\"number\\":\\"127\\"},{\\"location\\":\\"Westminster\\",\\"number\\":\\"311\\"},{\\"location\\":\\"Swindon\\",\\"number\\":\\" 40\\"},{\\"location\\":\\"Halton\\",\\"number\\":\\" 41\\"},{\\"location\\":\\"South Tyneside\\",\\"number\\":\\" 53\\"},{\\"location\\":\\"Havering\\",\\"number\\":\\"142\\"},{\\"location\\":\\"North Somerset\\",\\"number\\":\\" 50\\"},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":\\" 47\\"},{\\"location\\":\\"Torbay\\",\\"number\\":\\" 49\\"},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":\\" 52\\"},{\\"location\\":\\"Darlington\\",\\"number\\":\\" 30\\"},{\\"location\\":\\"Calderdale\\",\\"number\\":\\" 60\\"},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":\\" 61\\"},{\\"location\\":\\"Leicester\\",\\"number\\":\\"107\\"},{\\"location\\":\\"Somerset\\",\\"number\\":\\" 68\\"},{\\"location\\":\\"Southampton\\",\\"number\\":\\"105\\"},{\\"location\\":\\"Nottingham\\",\\"number\\":\\"125\\"},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":\\" 18\\"},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":\\" 55\\"},{\\"location\\":\\"Plymouth\\",\\"number\\":\\" 60\\"},{\\"location\\":\\"Portsmouth\\",\\"number\\":\\" 83\\"},{\\"location\\":\\"Shropshire\\",\\"number\\":\\"106\\"},{\\"location\\":\\"Isle of Wight\\",\\"number\\":\\" 17\\"},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":\\" 51\\"},{\\"location\\":\\"West Berkshire\\",\\"number\\":\\" 66\\"},{\\"location\\":\\"Hartlepool\\",\\"number\\":\\" 17\\"},{\\"location\\":\\"Slough\\",\\"number\\":\\"117\\"},{\\"location\\":\\"Rutland\\",\\"number\\":\\" 5\\"},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":\\" 24\\"},{\\"location\\":\\"Blackpool\\",\\"number\\":\\" 28\\"},{\\"location\\":\\"York\\",\\"number\\":\\" 36\\"},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":\\" 36\\"},{\\"location\\":\\"Peterborough\\",\\"number\\":\\" 37\\"},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":\\" 50\\"},{\\"location\\":\\"Reading\\",\\"number\\":\\" 67\\"},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":\\" 23\\"},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":\\" 75\\"},{\\"location\\":\\"Wokingham\\",\\"number\\":\\" 67\\"},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":\\" 58\\"},{\\"location\\":\\" Ayrshire and Arran \\",\\"number\\":221},{\\"location\\":\\" Borders \\",\\"number\\":93},{\\"location\\":\\" Dumfries and Galloway \\",\\"number\\":104},{\\"location\\":\\" Fife \\",\\"number\\":119},{\\"location\\":\\" Forth Valley \\",\\"number\\":172},{\\"location\\":\\" Grampian \\",\\"number\\":128},{\\"location\\":\\" Greater Glasgow and Clyde \\",\\"number\\":682},{\\"location\\":\\" Highland \\",\\"number\\":65},{\\"location\\":\\" Lanarkshire \\",\\"number\\":320},{\\"location\\":\\" Lothian \\",\\"number\\":356},{\\"location\\":\\"Orkney\\",\\"number\\":2},{\\"location\\":\\" Shetland \\",\\"number\\":30},{\\"location\\":\\" Tayside \\",\\"number\\":307},{\\"location\\":\\"Eileanan Siar (Western Isles)\\",\\"number\\":3},{\\"location\\":\\"Wales\\",\\"number\\":2121},{\\"location\\":\\"Northern Ireland\\",\\"number\\":774}]'),
(65, 1585954210000, 38168, 3605, 135, 0, 135616, 0, NULL, NULL, 31797, 3001, 2466, 904, '[{\\"location\\":\\"Hartlepool\\",\\"number\\":\\"23\\"},{\\"location\\":\\"Middlesbrough\\",\\"number\\":\\"92\\"},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":\\"64\\"},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":\\"77\\"},{\\"location\\":\\"Darlington\\",\\"number\\":\\"32\\"},{\\"location\\":\\"Halton\\",\\"number\\":\\"51\\"},{\\"location\\":\\"Warrington\\",\\"number\\":\\"82\\"},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":\\"43\\"},{\\"location\\":\\"Blackpool\\",\\"number\\":\\"41\\"},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":\\"21\\"},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":\\"72\\"},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":\\"29\\"},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":\\"29\\"},{\\"location\\":\\"York\\",\\"number\\":\\"57\\"},{\\"location\\":\\"Derby\\",\\"number\\":\\"187\\"},{\\"location\\":\\"Leicester\\",\\"number\\":\\"149\\"},{\\"location\\":\\"Rutland\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Nottingham\\",\\"number\\":\\"161\\"},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":\\"51\\"},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":\\"62\\"},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":\\"76\\"},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":\\"52\\"},{\\"location\\":\\"Bristol, City of\\",\\"number\\":\\"156\\"},{\\"location\\":\\"North Somerset\\",\\"number\\":\\"58\\"},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":\\"104\\"},{\\"location\\":\\"Plymouth\\",\\"number\\":\\"71\\"},{\\"location\\":\\"Torbay\\",\\"number\\":\\"51\\"},{\\"location\\":\\"Swindon\\",\\"number\\":\\"44\\"},{\\"location\\":\\"Peterborough\\",\\"number\\":\\"48\\"},{\\"location\\":\\"Luton\\",\\"number\\":\\"116\\"},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":\\"76\\"},{\\"location\\":\\"Thurrock\\",\\"number\\":\\"83\\"},{\\"location\\":\\"Medway\\",\\"number\\":\\"116\\"},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":\\"36\\"},{\\"location\\":\\"West Berkshire\\",\\"number\\":\\"69\\"},{\\"location\\":\\"Reading\\",\\"number\\":\\"67\\"},{\\"location\\":\\"Slough\\",\\"number\\":\\"117\\"},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":\\"76\\"},{\\"location\\":\\"Wokingham\\",\\"number\\":\\"69\\"},{\\"location\\":\\"Milton Keynes\\",\\"number\\":\\"141\\"},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":\\"71\\"},{\\"location\\":\\"Portsmouth\\",\\"number\\":\\"85\\"},{\\"location\\":\\"Southampton\\",\\"number\\":\\"128\\"},{\\"location\\":\\"Isle of Wight\\",\\"number\\":\\"19\\"},{\\"location\\":\\"County Durham\\",\\"number\\":\\"198\\"},{\\"location\\":\\"Cheshire East\\",\\"number\\":\\"111\\"},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":\\"116\\"},{\\"location\\":\\"Shropshire\\",\\"number\\":\\"120\\"},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":\\"125\\"},{\\"location\\":\\"Wiltshire\\",\\"number\\":\\"110\\"},{\\"location\\":\\"Bedford\\",\\"number\\":\\"74\\"},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":\\"99\\"},{\\"location\\":\\"Northumberland\\",\\"number\\":\\"142\\"},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":\\"74\\"},{\\"location\\":\\"Dorset\\",\\"number\\":\\"80\\"},{\\"location\\":\\"Bolton\\",\\"number\\":\\"80\\"},{\\"location\\":\\"Bury\\",\\"number\\":\\"102\\"},{\\"location\\":\\"Manchester\\",\\"number\\":\\"224\\"},{\\"location\\":\\"Oldham\\",\\"number\\":\\"149\\"},{\\"location\\":\\"Rochdale\\",\\"number\\":\\"126\\"},{\\"location\\":\\"Salford\\",\\"number\\":\\"190\\"},{\\"location\\":\\"Stockport\\",\\"number\\":\\"156\\"},{\\"location\\":\\"Tameside\\",\\"number\\":\\"109\\"},{\\"location\\":\\"Trafford\\",\\"number\\":\\"139\\"},{\\"location\\":\\"Wigan\\",\\"number\\":\\"110\\"},{\\"location\\":\\"Knowsley\\",\\"number\\":\\"89\\"},{\\"location\\":\\"Liverpool\\",\\"number\\":\\"342\\"},{\\"location\\":\\"St. Helens\\",\\"number\\":\\"122\\"},{\\"location\\":\\"Sefton\\",\\"number\\":\\"142\\"},{\\"location\\":\\"Wirral\\",\\"number\\":\\"130\\"},{\\"location\\":\\"Barnsley\\",\\"number\\":\\"154\\"},{\\"location\\":\\"Doncaster\\",\\"number\\":\\"116\\"},{\\"location\\":\\"Rotherham\\",\\"number\\":\\"154\\"},{\\"location\\":\\"Sheffield\\",\\"number\\":\\"715\\"},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":\\"284\\"},{\\"location\\":\\"North Tyneside\\",\\"number\\":\\"133\\"},{\\"location\\":\\"South Tyneside\\",\\"number\\":\\"56\\"},{\\"location\\":\\"Sunderland\\",\\"number\\":\\"152\\"},{\\"location\\":\\"Birmingham\\",\\"number\\":\\"984\\"},{\\"location\\":\\"Coventry\\",\\"number\\":\\"188\\"},{\\"location\\":\\"Dudley\\",\\"number\\":\\"226\\"},{\\"location\\":\\"Sandwell\\",\\"number\\":\\"252\\"},{\\"location\\":\\"Solihull\\",\\"number\\":\\"164\\"},{\\"location\\":\\"Walsall\\",\\"number\\":\\"270\\"},{\\"location\\":\\"Wolverhampton\\",\\"number\\":\\"251\\"},{\\"location\\":\\"Bradford\\",\\"number\\":\\"135\\"},{\\"location\\":\\"Calderdale\\",\\"number\\":\\"69\\"},{\\"location\\":\\"Kirklees\\",\\"number\\":\\"142\\"},{\\"location\\":\\"Leeds\\",\\"number\\":\\"219\\"},{\\"location\\":\\"Wakefield\\",\\"number\\":\\"105\\"},{\\"location\\":\\"Gateshead\\",\\"number\\":\\"108\\"},{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":\\"178\\"},{\\"location\\":\\"Barnet\\",\\"number\\":\\"547\\"},{\\"location\\":\\"Bexley\\",\\"number\\":\\"217\\"},{\\"location\\":\\"Brent\\",\\"number\\":\\"601\\"},{\\"location\\":\\"Bromley\\",\\"number\\":\\"405\\"},{\\"location\\":\\"Camden\\",\\"number\\":\\"244\\"},{\\"location\\":\\"Croydon\\",\\"number\\":\\"497\\"},{\\"location\\":\\"Ealing\\",\\"number\\":\\"414\\"},{\\"location\\":\\"Enfield\\",\\"number\\":\\"282\\"},{\\"location\\":\\"Greenwich\\",\\"number\\":\\"277\\"},{\\"location\\":\\"Hackney and City of London\\",\\"number\\":\\"298\\"},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":\\"207\\"},{\\"location\\":\\"Haringey\\",\\"number\\":\\"233\\"},{\\"location\\":\\"Harrow\\",\\"number\\":\\"401\\"},{\\"location\\":\\"Havering\\",\\"number\\":\\"183\\"},{\\"location\\":\\"Hillingdon\\",\\"number\\":\\"274\\"},{\\"location\\":\\"Hounslow\\",\\"number\\":\\"253\\"},{\\"location\\":\\"Islington\\",\\"number\\":\\"210\\"},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":\\"222\\"},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":\\"140\\"},{\\"location\\":\\"Lambeth\\",\\"number\\":\\"563\\"},{\\"location\\":\\"Lewisham\\",\\"number\\":\\"401\\"},{\\"location\\":\\"Merton\\",\\"number\\":\\"262\\"},{\\"location\\":\\"Newham\\",\\"number\\":\\"409\\"},{\\"location\\":\\"Redbridge\\",\\"number\\":\\"247\\"},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":\\"167\\"},{\\"location\\":\\"Southwark\\",\\"number\\":\\"566\\"},{\\"location\\":\\"Sutton\\",\\"number\\":\\"197\\"},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":\\"287\\"},{\\"location\\":\\"Waltham Forest\\",\\"number\\":\\"309\\"},{\\"location\\":\\"Wandsworth\\",\\"number\\":\\"434\\"},{\\"location\\":\\"Westminster\\",\\"number\\":\\"322\\"},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":\\"222\\"},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":\\"172\\"},{\\"location\\":\\"Cumbria\\",\\"number\\":\\"564\\"},{\\"location\\":\\"Derbyshire\\",\\"number\\":\\"383\\"},{\\"location\\":\\"Devon\\",\\"number\\":\\"163\\"},{\\"location\\":\\"East Sussex\\",\\"number\\":\\"129\\"},{\\"location\\":\\"Essex\\",\\"number\\":\\"547\\"},{\\"location\\":\\"Gloucestershire\\",\\"number\\":\\"224\\"},{\\"location\\":\\"Hampshire\\",\\"number\\":\\"749\\"},{\\"location\\":\\"Hertfordshire\\",\\"number\\":\\"637\\"},{\\"location\\":\\"Kent\\",\\"number\\":\\"621\\"},{\\"location\\":\\"Lancashire\\",\\"number\\":\\"536\\"},{\\"location\\":\\"Leicestershire\\",\\"number\\":\\"267\\"},{\\"location\\":\\"Lincolnshire\\",\\"number\\":\\"182\\"},{\\"location\\":\\"Norfolk\\",\\"number\\":\\"225\\"},{\\"location\\":\\"Northamptonshire\\",\\"number\\":\\"264\\"},{\\"location\\":\\"North Yorkshire\\",\\"number\\":\\"193\\"},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":\\"336\\"},{\\"location\\":\\"Oxfordshire\\",\\"number\\":\\"315\\"},{\\"location\\":\\"Somerset\\",\\"number\\":\\"72\\"},{\\"location\\":\\"Staffordshire\\",\\"number\\":\\"439\\"},{\\"location\\":\\"Suffolk\\",\\"number\\":\\"161\\"},{\\"location\\":\\"Surrey\\",\\"number\\":\\"649\\"},{\\"location\\":\\"Warwickshire\\",\\"number\\":\\"279\\"},{\\"location\\":\\"West Sussex\\",\\"number\\":\\"199\\"},{\\"location\\":\\"Worcestershire\\",\\"number\\":\\"277\\"},{\\"location\\":\\" Ayrshire and Arran \\",\\"number\\":240},{\\"location\\":\\" Borders \\",\\"number\\":100},{\\"location\\":\\" Dumfries and Galloway \\",\\"number\\":122},{\\"location\\":\\" Fife \\",\\"number\\":147},{\\"location\\":\\" Forth Valley \\",\\"number\\":189},{\\"location\\":\\" Grampian \\",\\"number\\":173},{\\"location\\":\\" Greater Glasgow and Clyde \\",\\"number\\":779},{\\"location\\":\\" Highland \\",\\"number\\":72},{\\"location\\":\\" Lanarkshire \\",\\"number\\":377},{\\"location\\":\\" Lothian \\",\\"number\\":408},{\\"location\\":\\"Orkney\\",\\"number\\":2},{\\"location\\":\\" Shetland \\",\\"number\\":36},{\\"location\\":\\" Tayside \\",\\"number\\":353},{\\"location\\":\\"Eileanan Siar (Western Isles)\\",\\"number\\":3},{\\"location\\":\\"Wales\\",\\"number\\":2466},{\\"location\\":\\"Northern Ireland\\",\\"number\\":904}]'),
(66, 1586040610000, 41903, 4313, 135, 0, 141287, 0, NULL, NULL, 31797, 3001, 2466, 904, '[{\\"location\\":\\"Hartlepool\\",\\"number\\":\\"23\\"},{\\"location\\":\\"Middlesbrough\\",\\"number\\":\\"92\\"},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":\\"64\\"},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":\\"77\\"},{\\"location\\":\\"Darlington\\",\\"number\\":\\"32\\"},{\\"location\\":\\"Halton\\",\\"number\\":\\"51\\"},{\\"location\\":\\"Warrington\\",\\"number\\":\\"82\\"},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":\\"43\\"},{\\"location\\":\\"Blackpool\\",\\"number\\":\\"41\\"},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":\\"21\\"},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":\\"72\\"},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":\\"29\\"},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":\\"29\\"},{\\"location\\":\\"York\\",\\"number\\":\\"57\\"},{\\"location\\":\\"Derby\\",\\"number\\":\\"187\\"},{\\"location\\":\\"Leicester\\",\\"number\\":\\"149\\"},{\\"location\\":\\"Rutland\\",\\"number\\":\\"6\\"},{\\"location\\":\\"Nottingham\\",\\"number\\":\\"161\\"},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":\\"51\\"},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":\\"62\\"},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":\\"76\\"},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":\\"52\\"},{\\"location\\":\\"Bristol, City of\\",\\"number\\":\\"156\\"},{\\"location\\":\\"North Somerset\\",\\"number\\":\\"58\\"},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":\\"104\\"},{\\"location\\":\\"Plymouth\\",\\"number\\":\\"71\\"},{\\"location\\":\\"Torbay\\",\\"number\\":\\"51\\"},{\\"location\\":\\"Swindon\\",\\"number\\":\\"44\\"},{\\"location\\":\\"Peterborough\\",\\"number\\":\\"48\\"},{\\"location\\":\\"Luton\\",\\"number\\":\\"116\\"},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":\\"76\\"},{\\"location\\":\\"Thurrock\\",\\"number\\":\\"83\\"},{\\"location\\":\\"Medway\\",\\"number\\":\\"116\\"},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":\\"36\\"},{\\"location\\":\\"West Berkshire\\",\\"number\\":\\"69\\"},{\\"location\\":\\"Reading\\",\\"number\\":\\"67\\"},{\\"location\\":\\"Slough\\",\\"number\\":\\"117\\"},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":\\"76\\"},{\\"location\\":\\"Wokingham\\",\\"number\\":\\"69\\"},{\\"location\\":\\"Milton Keynes\\",\\"number\\":\\"141\\"},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":\\"71\\"},{\\"location\\":\\"Portsmouth\\",\\"number\\":\\"85\\"},{\\"location\\":\\"Southampton\\",\\"number\\":\\"128\\"},{\\"location\\":\\"Isle of Wight\\",\\"number\\":\\"19\\"},{\\"location\\":\\"County Durham\\",\\"number\\":\\"198\\"},{\\"location\\":\\"Cheshire East\\",\\"number\\":\\"111\\"},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":\\"116\\"},{\\"location\\":\\"Shropshire\\",\\"number\\":\\"120\\"},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":\\"125\\"},{\\"location\\":\\"Wiltshire\\",\\"number\\":\\"110\\"},{\\"location\\":\\"Bedford\\",\\"number\\":\\"74\\"},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":\\"99\\"},{\\"location\\":\\"Northumberland\\",\\"number\\":\\"142\\"},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":\\"74\\"},{\\"location\\":\\"Dorset\\",\\"number\\":\\"80\\"},{\\"location\\":\\"Bolton\\",\\"number\\":\\"80\\"},{\\"location\\":\\"Bury\\",\\"number\\":\\"102\\"},{\\"location\\":\\"Manchester\\",\\"number\\":\\"224\\"},{\\"location\\":\\"Oldham\\",\\"number\\":\\"149\\"},{\\"location\\":\\"Rochdale\\",\\"number\\":\\"126\\"},{\\"location\\":\\"Salford\\",\\"number\\":\\"190\\"},{\\"location\\":\\"Stockport\\",\\"number\\":\\"156\\"},{\\"location\\":\\"Tameside\\",\\"number\\":\\"109\\"},{\\"location\\":\\"Trafford\\",\\"number\\":\\"139\\"},{\\"location\\":\\"Wigan\\",\\"number\\":\\"110\\"},{\\"location\\":\\"Knowsley\\",\\"number\\":\\"89\\"},{\\"location\\":\\"Liverpool\\",\\"number\\":\\"342\\"},{\\"location\\":\\"St. Helens\\",\\"number\\":\\"122\\"},{\\"location\\":\\"Sefton\\",\\"number\\":\\"142\\"},{\\"location\\":\\"Wirral\\",\\"number\\":\\"130\\"},{\\"location\\":\\"Barnsley\\",\\"number\\":\\"154\\"},{\\"location\\":\\"Doncaster\\",\\"number\\":\\"116\\"},{\\"location\\":\\"Rotherham\\",\\"number\\":\\"154\\"},{\\"location\\":\\"Sheffield\\",\\"number\\":\\"715\\"},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":\\"284\\"},{\\"location\\":\\"North Tyneside\\",\\"number\\":\\"133\\"},{\\"location\\":\\"South Tyneside\\",\\"number\\":\\"56\\"},{\\"location\\":\\"Sunderland\\",\\"number\\":\\"152\\"},{\\"location\\":\\"Birmingham\\",\\"number\\":\\"984\\"},{\\"location\\":\\"Coventry\\",\\"number\\":\\"188\\"},{\\"location\\":\\"Dudley\\",\\"number\\":\\"226\\"},{\\"location\\":\\"Sandwell\\",\\"number\\":\\"252\\"},{\\"location\\":\\"Solihull\\",\\"number\\":\\"164\\"},{\\"location\\":\\"Walsall\\",\\"number\\":\\"270\\"},{\\"location\\":\\"Wolverhampton\\",\\"number\\":\\"251\\"},{\\"location\\":\\"Bradford\\",\\"number\\":\\"135\\"},{\\"location\\":\\"Calderdale\\",\\"number\\":\\"69\\"},{\\"location\\":\\"Kirklees\\",\\"number\\":\\"142\\"},{\\"location\\":\\"Leeds\\",\\"number\\":\\"219\\"},{\\"location\\":\\"Wakefield\\",\\"number\\":\\"105\\"},{\\"location\\":\\"Gateshead\\",\\"number\\":\\"108\\"},{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":\\"178\\"},{\\"location\\":\\"Barnet\\",\\"number\\":\\"547\\"},{\\"location\\":\\"Bexley\\",\\"number\\":\\"217\\"},{\\"location\\":\\"Brent\\",\\"number\\":\\"601\\"},{\\"location\\":\\"Bromley\\",\\"number\\":\\"405\\"},{\\"location\\":\\"Camden\\",\\"number\\":\\"244\\"},{\\"location\\":\\"Croydon\\",\\"number\\":\\"497\\"},{\\"location\\":\\"Ealing\\",\\"number\\":\\"414\\"},{\\"location\\":\\"Enfield\\",\\"number\\":\\"282\\"},{\\"location\\":\\"Greenwich\\",\\"number\\":\\"277\\"},{\\"location\\":\\"Hackney and City of London\\",\\"number\\":\\"298\\"},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":\\"207\\"},{\\"location\\":\\"Haringey\\",\\"number\\":\\"233\\"},{\\"location\\":\\"Harrow\\",\\"number\\":\\"401\\"},{\\"location\\":\\"Havering\\",\\"number\\":\\"183\\"},{\\"location\\":\\"Hillingdon\\",\\"number\\":\\"274\\"},{\\"location\\":\\"Hounslow\\",\\"number\\":\\"253\\"},{\\"location\\":\\"Islington\\",\\"number\\":\\"210\\"},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":\\"222\\"},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":\\"140\\"},{\\"location\\":\\"Lambeth\\",\\"number\\":\\"563\\"},{\\"location\\":\\"Lewisham\\",\\"number\\":\\"401\\"},{\\"location\\":\\"Merton\\",\\"number\\":\\"262\\"},{\\"location\\":\\"Newham\\",\\"number\\":\\"409\\"},{\\"location\\":\\"Redbridge\\",\\"number\\":\\"247\\"},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":\\"167\\"},{\\"location\\":\\"Southwark\\",\\"number\\":\\"566\\"},{\\"location\\":\\"Sutton\\",\\"number\\":\\"197\\"},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":\\"287\\"},{\\"location\\":\\"Waltham Forest\\",\\"number\\":\\"309\\"},{\\"location\\":\\"Wandsworth\\",\\"number\\":\\"434\\"},{\\"location\\":\\"Westminster\\",\\"number\\":\\"322\\"},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":\\"222\\"},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":\\"172\\"},{\\"location\\":\\"Cumbria\\",\\"number\\":\\"564\\"},{\\"location\\":\\"Derbyshire\\",\\"number\\":\\"383\\"},{\\"location\\":\\"Devon\\",\\"number\\":\\"163\\"},{\\"location\\":\\"East Sussex\\",\\"number\\":\\"129\\"},{\\"location\\":\\"Essex\\",\\"number\\":\\"547\\"},{\\"location\\":\\"Gloucestershire\\",\\"number\\":\\"224\\"},{\\"location\\":\\"Hampshire\\",\\"number\\":\\"749\\"},{\\"location\\":\\"Hertfordshire\\",\\"number\\":\\"637\\"},{\\"location\\":\\"Kent\\",\\"number\\":\\"621\\"},{\\"location\\":\\"Lancashire\\",\\"number\\":\\"536\\"},{\\"location\\":\\"Leicestershire\\",\\"number\\":\\"267\\"},{\\"location\\":\\"Lincolnshire\\",\\"number\\":\\"182\\"},{\\"location\\":\\"Norfolk\\",\\"number\\":\\"225\\"},{\\"location\\":\\"Northamptonshire\\",\\"number\\":\\"264\\"},{\\"location\\":\\"North Yorkshire\\",\\"number\\":\\"193\\"},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":\\"336\\"},{\\"location\\":\\"Oxfordshire\\",\\"number\\":\\"315\\"},{\\"location\\":\\"Somerset\\",\\"number\\":\\"72\\"},{\\"location\\":\\"Staffordshire\\",\\"number\\":\\"439\\"},{\\"location\\":\\"Suffolk\\",\\"number\\":\\"161\\"},{\\"location\\":\\"Surrey\\",\\"number\\":\\"649\\"},{\\"location\\":\\"Warwickshire\\",\\"number\\":\\"279\\"},{\\"location\\":\\"West Sussex\\",\\"number\\":\\"199\\"},{\\"location\\":\\"Worcestershire\\",\\"number\\":\\"277\\"},{\\"location\\":\\" Ayrshire and Arran \\",\\"number\\":254},{\\"location\\":\\" Borders \\",\\"number\\":110},{\\"location\\":\\" Dumfries and Galloway \\",\\"number\\":127},{\\"location\\":\\" Fife \\",\\"number\\":173},{\\"location\\":\\" Forth Valley \\",\\"number\\":208},{\\"location\\":\\" Grampian \\",\\"number\\":177},{\\"location\\":\\" Greater Glasgow and Clyde \\",\\"number\\":851},{\\"location\\":\\" Highland \\",\\"number\\":85},{\\"location\\":\\" Lanarkshire \\",\\"number\\":427},{\\"location\\":\\" Lothian \\",\\"number\\":476},{\\"location\\":\\"Orkney\\",\\"number\\":4},{\\"location\\":\\" Shetland \\",\\"number\\":40},{\\"location\\":\\" Tayside \\",\\"number\\":410},{\\"location\\":\\"Eileanan Siar (Western Isles)\\",\\"number\\":3},{\\"location\\":\\"Wales\\",\\"number\\":2466},{\\"location\\":\\"Northern Ireland\\",\\"number\\":904}]'),
(67, 1586127010000, 47806, 4934, 135, 0, 147718, 0, NULL, NULL, 39814, 3706, 3197, 1089, '[{\\"location\\":\\"Hartlepool\\",\\"number\\":\\" 29\\"},{\\"location\\":\\"Middlesbrough\\",\\"number\\":\\" 126\\"},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":\\" 84\\"},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":\\" 108\\"},{\\"location\\":\\"Darlington\\",\\"number\\":\\" 45\\"},{\\"location\\":\\"Halton\\",\\"number\\":\\" 75\\"},{\\"location\\":\\"Warrington\\",\\"number\\":\\" 122\\"},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":\\" 63\\"},{\\"location\\":\\"Blackpool\\",\\"number\\":\\" 66\\"},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":\\" 31\\"},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":\\" 88\\"},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":\\" 43\\"},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":\\" 51\\"},{\\"location\\":\\"York\\",\\"number\\":\\" 71\\"},{\\"location\\":\\"Derby\\",\\"number\\":\\" 239\\"},{\\"location\\":\\"Leicester\\",\\"number\\":\\" 195\\"},{\\"location\\":\\"Rutland\\",\\"number\\":\\" 6\\"},{\\"location\\":\\"Nottingham\\",\\"number\\":\\" 191\\"},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":\\" 62\\"},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":\\" 73\\"},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":\\" 106\\"},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":\\" 58\\"},{\\"location\\":\\"Bristol, City of\\",\\"number\\":\\" 167\\"},{\\"location\\":\\"North Somerset\\",\\"number\\":\\" 66\\"},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":\\" 113\\"},{\\"location\\":\\"Plymouth\\",\\"number\\":\\" 97\\"},{\\"location\\":\\"Torbay\\",\\"number\\":\\" 54\\"},{\\"location\\":\\"Swindon\\",\\"number\\":\\" 50\\"},{\\"location\\":\\"Peterborough\\",\\"number\\":\\" 48\\"},{\\"location\\":\\"Luton\\",\\"number\\":\\" 163\\"},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":\\" 97\\"},{\\"location\\":\\"Thurrock\\",\\"number\\":\\" 105\\"},{\\"location\\":\\"Medway\\",\\"number\\":\\" 153\\"},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":\\" 57\\"},{\\"location\\":\\"West Berkshire\\",\\"number\\":\\" 80\\"},{\\"location\\":\\"Reading\\",\\"number\\":\\" 89\\"},{\\"location\\":\\"Slough\\",\\"number\\":\\" 143\\"},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":\\" 99\\"},{\\"location\\":\\"Wokingham\\",\\"number\\":\\" 101\\"},{\\"location\\":\\"Milton Keynes\\",\\"number\\":\\" 155\\"},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":\\" 84\\"},{\\"location\\":\\"Portsmouth\\",\\"number\\":\\" 96\\"},{\\"location\\":\\"Southampton\\",\\"number\\":\\" 147\\"},{\\"location\\":\\"Isle of Wight\\",\\"number\\":\\" 32\\"},{\\"location\\":\\"County Durham\\",\\"number\\":\\" 260\\"},{\\"location\\":\\"Cheshire East\\",\\"number\\":\\" 171\\"},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":\\" 167\\"},{\\"location\\":\\"Shropshire\\",\\"number\\":\\" 143\\"},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":\\" 187\\"},{\\"location\\":\\"Wiltshire\\",\\"number\\":\\" 120\\"},{\\"location\\":\\"Bedford\\",\\"number\\":\\" 97\\"},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":\\" 132\\"},{\\"location\\":\\"Northumberland\\",\\"number\\":\\" 188\\"},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":\\" 85\\"},{\\"location\\":\\"Dorset\\",\\"number\\":\\" 95\\"},{\\"location\\":\\"Bolton\\",\\"number\\":\\" 133\\"},{\\"location\\":\\"Bury\\",\\"number\\":\\" 124\\"},{\\"location\\":\\"Manchester\\",\\"number\\":\\" 293\\"},{\\"location\\":\\"Oldham\\",\\"number\\":\\" 194\\"},{\\"location\\":\\"Rochdale\\",\\"number\\":\\" 155\\"},{\\"location\\":\\"Salford\\",\\"number\\":\\" 226\\"},{\\"location\\":\\"Stockport\\",\\"number\\":\\" 225\\"},{\\"location\\":\\"Tameside\\",\\"number\\":\\" 145\\"},{\\"location\\":\\"Trafford\\",\\"number\\":\\" 201\\"},{\\"location\\":\\"Wigan\\",\\"number\\":\\" 156\\"},{\\"location\\":\\"Knowsley\\",\\"number\\":\\" 133\\"},{\\"location\\":\\"Liverpool\\",\\"number\\":\\" 455\\"},{\\"location\\":\\"St. Helens\\",\\"number\\":\\" 184\\"},{\\"location\\":\\"Sefton\\",\\"number\\":\\" 219\\"},{\\"location\\":\\"Wirral\\",\\"number\\":\\" 168\\"},{\\"location\\":\\"Barnsley\\",\\"number\\":\\" 200\\"},{\\"location\\":\\"Doncaster\\",\\"number\\":\\" 137\\"},{\\"location\\":\\"Rotherham\\",\\"number\\":\\" 202\\"},{\\"location\\":\\"Sheffield\\",\\"number\\":\\" 833\\"},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":\\" 348\\"},{\\"location\\":\\"North Tyneside\\",\\"number\\":\\" 160\\"},{\\"location\\":\\"South Tyneside\\",\\"number\\":\\" 84\\"},{\\"location\\":\\"Sunderland\\",\\"number\\":\\" 236\\"},{\\"location\\":\\"Birmingham\\",\\"number\\":\\"1246\\"},{\\"location\\":\\"Coventry\\",\\"number\\":\\" 246\\"},{\\"location\\":\\"Dudley\\",\\"number\\":\\" 283\\"},{\\"location\\":\\"Sandwell\\",\\"number\\":\\" 316\\"},{\\"location\\":\\"Solihull\\",\\"number\\":\\" 204\\"},{\\"location\\":\\"Walsall\\",\\"number\\":\\" 340\\"},{\\"location\\":\\"Wolverhampton\\",\\"number\\":\\" 294\\"},{\\"location\\":\\"Bradford\\",\\"number\\":\\" 185\\"},{\\"location\\":\\"Calderdale\\",\\"number\\":\\" 89\\"},{\\"location\\":\\"Kirklees\\",\\"number\\":\\" 185\\"},{\\"location\\":\\"Leeds\\",\\"number\\":\\" 296\\"},{\\"location\\":\\"Wakefield\\",\\"number\\":\\" 153\\"},{\\"location\\":\\"Gateshead\\",\\"number\\":\\" 168\\"},{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":\\" 209\\"},{\\"location\\":\\"Barnet\\",\\"number\\":\\" 645\\"},{\\"location\\":\\"Bexley\\",\\"number\\":\\" 242\\"},{\\"location\\":\\"Brent\\",\\"number\\":\\" 728\\"},{\\"location\\":\\"Bromley\\",\\"number\\":\\" 489\\"},{\\"location\\":\\"Camden\\",\\"number\\":\\" 289\\"},{\\"location\\":\\"Croydon\\",\\"number\\":\\" 558\\"},{\\"location\\":\\"Ealing\\",\\"number\\":\\" 489\\"},{\\"location\\":\\"Enfield\\",\\"number\\":\\" 333\\"},{\\"location\\":\\"Greenwich\\",\\"number\\":\\" 318\\"},{\\"location\\":\\"Hackney and City of London\\",\\"number\\":\\" 345\\"},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":\\" 252\\"},{\\"location\\":\\"Haringey\\",\\"number\\":\\" 277\\"},{\\"location\\":\\"Harrow\\",\\"number\\":\\" 450\\"},{\\"location\\":\\"Havering\\",\\"number\\":\\" 232\\"},{\\"location\\":\\"Hillingdon\\",\\"number\\":\\" 317\\"},{\\"location\\":\\"Hounslow\\",\\"number\\":\\" 323\\"},{\\"location\\":\\"Islington\\",\\"number\\":\\" 248\\"},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":\\" 258\\"},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":\\" 156\\"},{\\"location\\":\\"Lambeth\\",\\"number\\":\\" 631\\"},{\\"location\\":\\"Lewisham\\",\\"number\\":\\" 477\\"},{\\"location\\":\\"Merton\\",\\"number\\":\\" 293\\"},{\\"location\\":\\"Newham\\",\\"number\\":\\" 493\\"},{\\"location\\":\\"Redbridge\\",\\"number\\":\\" 299\\"},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":\\" 189\\"},{\\"location\\":\\"Southwark\\",\\"number\\":\\" 648\\"},{\\"location\\":\\"Sutton\\",\\"number\\":\\" 232\\"},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":\\" 339\\"},{\\"location\\":\\"Waltham Forest\\",\\"number\\":\\" 364\\"},{\\"location\\":\\"Wandsworth\\",\\"number\\":\\" 492\\"},{\\"location\\":\\"Westminster\\",\\"number\\":\\" 363\\"},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":\\" 268\\"},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":\\" 212\\"},{\\"location\\":\\"Cumbria\\",\\"number\\":\\" 698\\"},{\\"location\\":\\"Derbyshire\\",\\"number\\":\\" 452\\"},{\\"location\\":\\"Devon\\",\\"number\\":\\" 207\\"},{\\"location\\":\\"East Sussex\\",\\"number\\":\\" 155\\"},{\\"location\\":\\"Essex\\",\\"number\\":\\" 792\\"},{\\"location\\":\\"Gloucestershire\\",\\"number\\":\\" 281\\"},{\\"location\\":\\"Hampshire\\",\\"number\\":\\" 876\\"},{\\"location\\":\\"Hertfordshire\\",\\"number\\":\\" 833\\"},{\\"location\\":\\"Kent\\",\\"number\\":\\" 755\\"},{\\"location\\":\\"Lancashire\\",\\"number\\":\\" 726\\"},{\\"location\\":\\"Leicestershire\\",\\"number\\":\\" 311\\"},{\\"location\\":\\"Lincolnshire\\",\\"number\\":\\" 252\\"},{\\"location\\":\\"Norfolk\\",\\"number\\":\\" 279\\"},{\\"location\\":\\"Northamptonshire\\",\\"number\\":\\" 343\\"},{\\"location\\":\\"North Yorkshire\\",\\"number\\":\\" 243\\"},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":\\" 413\\"},{\\"location\\":\\"Oxfordshire\\",\\"number\\":\\" 411\\"},{\\"location\\":\\"Somerset\\",\\"number\\":\\" 99\\"},{\\"location\\":\\"Staffordshire\\",\\"number\\":\\" 534\\"},{\\"location\\":\\"Suffolk\\",\\"number\\":\\" 231\\"},{\\"location\\":\\"Surrey\\",\\"number\\":\\" 811\\"},{\\"location\\":\\"Warwickshire\\",\\"number\\":\\" 334\\"},{\\"location\\":\\"West Sussex\\",\\"number\\":\\" 220\\"},{\\"location\\":\\"Worcestershire\\",\\"number\\":\\" 350\\"},{\\"location\\":\\" Ayrshire and Arran \\",\\"number\\":267},{\\"location\\":\\" Borders \\",\\"number\\":130},{\\"location\\":\\" Dumfries and Galloway \\",\\"number\\":141},{\\"location\\":\\" Fife \\",\\"number\\":200},{\\"location\\":\\" Forth Valley \\",\\"number\\":226},{\\"location\\":\\" Grampian \\",\\"number\\":194},{\\"location\\":\\" Greater Glasgow and Clyde \\",\\"number\\":931},{\\"location\\":\\" Highland \\",\\"number\\":99},{\\"location\\":\\" Lanarkshire \\",\\"number\\":478},{\\"location\\":\\" Lothian \\",\\"number\\":534},{\\"location\\":\\"Orkney\\",\\"number\\":4},{\\"location\\":\\" Shetland \\",\\"number\\":41},{\\"location\\":\\" Tayside \\",\\"number\\":457},{\\"location\\":\\"Eileanan Siar (Western Isles)\\",\\"number\\":4},{\\"location\\":\\"Wales\\",\\"number\\":3197},{\\"location\\":\\"Northern Ireland\\",\\"number\\":1089}]');
INSERT INTO `history` (`id`, `date`, `confirmed`, `death`, `cured`, `serious`, `negative`, `suspected`, `tested`, `test_done`, `england`, `scotland`, `wales`, `nireland`, `area`) VALUES
(68, 1586213410000, 51608, 5373, 135, 0, 157229, 0, NULL, NULL, 42990, 3961, 3499, 1158, '[{"location":"Hartlepool","number":" 33"},{"location":"Middlesbrough","number":" 151"},{"location":"Redcar and Cleveland","number":" 100"},{"location":"Stockton-on-Tees","number":" 117"},{"location":"Darlington","number":" 52"},{"location":"Halton","number":" 95"},{"location":"Warrington","number":" 138"},{"location":"Blackburn with Darwen","number":" 71"},{"location":"Blackpool","number":" 72"},{"location":"Kingston upon Hull, City of","number":" 38"},{"location":"East Riding of Yorkshire","number":" 96"},{"location":"North East Lincolnshire","number":" 49"},{"location":"North Lincolnshire","number":" 62"},{"location":"York","number":" 75"},{"location":"Derby","number":" 263"},{"location":"Leicester","number":" 211"},{"location":"Rutland","number":" 6"},{"location":"Nottingham","number":" 204"},{"location":"Herefordshire, County of","number":" 66"},{"location":"Telford and Wrekin","number":" 73"},{"location":"Stoke-on-Trent","number":" 115"},{"location":"Bath and North East Somerset","number":" 66"},{"location":"Bristol, City of","number":" 211"},{"location":"North Somerset","number":" 82"},{"location":"South Gloucestershire","number":" 139"},{"location":"Plymouth","number":" 102"},{"location":"Torbay","number":" 57"},{"location":"Swindon","number":" 74"},{"location":"Peterborough","number":" 61"},{"location":"Luton","number":" 167"},{"location":"Southend-on-Sea","number":" 118"},{"location":"Thurrock","number":" 120"},{"location":"Medway","number":" 153"},{"location":"Bracknell Forest","number":" 69"},{"location":"West Berkshire","number":" 92"},{"location":"Reading","number":" 111"},{"location":"Slough","number":" 155"},{"location":"Windsor and Maidenhead","number":" 105"},{"location":"Wokingham","number":" 114"},{"location":"Milton Keynes","number":" 181"},{"location":"Brighton and Hove","number":" 85"},{"location":"Portsmouth","number":" 104"},{"location":"Southampton","number":" 149"},{"location":"Isle of Wight","number":" 32"},{"location":"County Durham","number":" 292"},{"location":"Cheshire East","number":" 196"},{"location":"Cheshire West and Chester","number":" 200"},{"location":"Shropshire","number":" 143"},{"location":"Cornwall and Isles of Scilly","number":" 198"},{"location":"Wiltshire","number":" 154"},{"location":"Bedford","number":" 110"},{"location":"Central Bedfordshire","number":" 144"},{"location":"Northumberland","number":" 211"},{"location":"Bournemouth, Christchurch and Poole","number":" 115"},{"location":"Dorset","number":" 126"},{"location":"Bolton","number":" 170"},{"location":"Bury","number":" 138"},{"location":"Manchester","number":" 323"},{"location":"Oldham","number":" 216"},{"location":"Rochdale","number":" 167"},{"location":"Salford","number":" 242"},{"location":"Stockport","number":" 246"},{"location":"Tameside","number":" 162"},{"location":"Trafford","number":" 222"},{"location":"Wigan","number":" 185"},{"location":"Knowsley","number":" 167"},{"location":"Liverpool","number":" 510"},{"location":"St. Helens","number":" 236"},{"location":"Sefton","number":" 264"},{"location":"Wirral","number":" 220"},{"location":"Barnsley","number":" 216"},{"location":"Doncaster","number":" 144"},{"location":"Rotherham","number":" 221"},{"location":"Sheffield","number":" 882"},{"location":"Newcastle upon Tyne","number":" 359"},{"location":"North Tyneside","number":" 180"},{"location":"South Tyneside","number":" 98"},{"location":"Sunderland","number":" 278"},{"location":"Birmingham","number":"1287"},{"location":"Coventry","number":" 263"},{"location":"Dudley","number":" 296"},{"location":"Sandwell","number":" 353"},{"location":"Solihull","number":" 215"},{"location":"Walsall","number":" 359"},{"location":"Wolverhampton","number":" 304"},{"location":"Bradford","number":" 204"},{"location":"Calderdale","number":" 94"},{"location":"Kirklees","number":" 198"},{"location":"Leeds","number":" 325"},{"location":"Wakefield","number":" 162"},{"location":"Gateshead","number":" 180"},{"location":"Barking and Dagenham","number":" 211"},{"location":"Barnet","number":" 666"},{"location":"Bexley","number":" 250"},{"location":"Brent","number":" 759"},{"location":"Bromley","number":" 521"},{"location":"Camden","number":" 298"},{"location":"Croydon","number":" 620"},{"location":"Ealing","number":" 503"},{"location":"Enfield","number":" 350"},{"location":"Greenwich","number":" 322"},{"location":"Hackney and City of London","number":" 362"},{"location":"Hammersmith and Fulham","number":" 266"},{"location":"Haringey","number":" 285"},{"location":"Harrow","number":" 469"},{"location":"Havering","number":" 248"},{"location":"Hillingdon","number":" 348"},{"location":"Hounslow","number":" 338"},{"location":"Islington","number":" 257"},{"location":"Kensington and Chelsea","number":" 272"},{"location":"Kingston upon Thames","number":" 169"},{"location":"Lambeth","number":" 671"},{"location":"Lewisham","number":" 490"},{"location":"Merton","number":" 316"},{"location":"Newham","number":" 530"},{"location":"Redbridge","number":" 311"},{"location":"Richmond upon Thames","number":" 200"},{"location":"Southwark","number":" 685"},{"location":"Sutton","number":" 262"},{"location":"Tower Hamlets","number":" 359"},{"location":"Waltham Forest","number":" 389"},{"location":"Wandsworth","number":" 526"},{"location":"Westminster","number":" 383"},{"location":"Buckinghamshire","number":" 300"},{"location":"Cambridgeshire","number":" 222"},{"location":"Cumbria","number":" 753"},{"location":"Derbyshire","number":" 494"},{"location":"Devon","number":" 229"},{"location":"East Sussex","number":" 161"},{"location":"Essex","number":" 858"},{"location":"Gloucestershire","number":" 306"},{"location":"Hampshire","number":" 921"},{"location":"Hertfordshire","number":" 870"},{"location":"Kent","number":" 791"},{"location":"Lancashire","number":" 838"},{"location":"Leicestershire","number":" 338"},{"location":"Lincolnshire","number":" 275"},{"location":"Norfolk","number":" 301"},{"location":"Northamptonshire","number":" 428"},{"location":"North Yorkshire","number":" 269"},{"location":"Nottinghamshire","number":" 425"},{"location":"Oxfordshire","number":" 450"},{"location":"Somerset","number":" 114"},{"location":"Staffordshire","number":" 570"},{"location":"Suffolk","number":" 243"},{"location":"Surrey","number":" 887"},{"location":"Warwickshire","number":" 361"},{"location":"West Sussex","number":" 224"},{"location":"Worcestershire","number":" 394"},{"location":" Ayrshire and Arran ","number":288},{"location":" Borders ","number":139},{"location":" Dumfries and Galloway ","number":144},{"location":" Fife ","number":227},{"location":" Forth Valley ","number":231},{"location":" Grampian ","number":209},{"location":" Greater Glasgow and Clyde ","number":984},{"location":" Highland ","number":102},{"location":" Lanarkshire ","number":512},{"location":" Lothian ","number":577},{"location":"Orkney","number":4},{"location":" Shetland ","number":41},{"location":" Tayside ","number":499},{"location":"Eileanan Siar (Western Isles)","number":4},{"location":"Wales","number":3499},{"location":"Northern Ireland","number":1158}]'),
(69, 1586299810000, 55242, 6159, 0, 0, 157939, 0, 213181, 266694, 42990, 3961, 3499, 1158, '[{\\"location\\":\\"Hartlepool\\",\\"number\\":\\" 36\\"},{\\"location\\":\\"Middlesbrough\\",\\"number\\":\\" 169\\"},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":\\" 112\\"},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":\\" 123\\"},{\\"location\\":\\"Darlington\\",\\"number\\":\\" 55\\"},{\\"location\\":\\"Halton\\",\\"number\\":\\" 107\\"},{\\"location\\":\\"Warrington\\",\\"number\\":\\" 162\\"},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":\\" 86\\"},{\\"location\\":\\"Blackpool\\",\\"number\\":\\" 85\\"},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":\\" 38\\"},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":\\" 97\\"},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":\\" 49\\"},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":\\" 62\\"},{\\"location\\":\\"York\\",\\"number\\":\\" 75\\"},{\\"location\\":\\"Derby\\",\\"number\\":\\" 263\\"},{\\"location\\":\\"Leicester\\",\\"number\\":\\" 211\\"},{\\"location\\":\\"Rutland\\",\\"number\\":\\" 6\\"},{\\"location\\":\\"Nottingham\\",\\"number\\":\\" 204\\"},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":\\" 70\\"},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":\\" 79\\"},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":\\" 117\\"},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":\\" 67\\"},{\\"location\\":\\"Bristol, City of\\",\\"number\\":\\" 211\\"},{\\"location\\":\\"North Somerset\\",\\"number\\":\\" 82\\"},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":\\" 139\\"},{\\"location\\":\\"Plymouth\\",\\"number\\":\\" 102\\"},{\\"location\\":\\"Torbay\\",\\"number\\":\\" 57\\"},{\\"location\\":\\"Swindon\\",\\"number\\":\\" 75\\"},{\\"location\\":\\"Peterborough\\",\\"number\\":\\" 62\\"},{\\"location\\":\\"Luton\\",\\"number\\":\\" 195\\"},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":\\" 136\\"},{\\"location\\":\\"Thurrock\\",\\"number\\":\\" 125\\"},{\\"location\\":\\"Medway\\",\\"number\\":\\" 196\\"},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":\\" 79\\"},{\\"location\\":\\"West Berkshire\\",\\"number\\":\\" 107\\"},{\\"location\\":\\"Reading\\",\\"number\\":\\" 128\\"},{\\"location\\":\\"Slough\\",\\"number\\":\\" 167\\"},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":\\" 116\\"},{\\"location\\":\\"Wokingham\\",\\"number\\":\\" 129\\"},{\\"location\\":\\"Milton Keynes\\",\\"number\\":\\" 186\\"},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":\\" 86\\"},{\\"location\\":\\"Portsmouth\\",\\"number\\":\\" 115\\"},{\\"location\\":\\"Southampton\\",\\"number\\":\\" 181\\"},{\\"location\\":\\"Isle of Wight\\",\\"number\\":\\" 36\\"},{\\"location\\":\\"County Durham\\",\\"number\\":\\" 303\\"},{\\"location\\":\\"Cheshire East\\",\\"number\\":\\" 209\\"},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":\\" 227\\"},{\\"location\\":\\"Shropshire\\",\\"number\\":\\" 157\\"},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":\\" 198\\"},{\\"location\\":\\"Wiltshire\\",\\"number\\":\\" 156\\"},{\\"location\\":\\"Bedford\\",\\"number\\":\\" 120\\"},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":\\" 164\\"},{\\"location\\":\\"Northumberland\\",\\"number\\":\\" 211\\"},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":\\" 116\\"},{\\"location\\":\\"Dorset\\",\\"number\\":\\" 126\\"},{\\"location\\":\\"Bolton\\",\\"number\\":\\" 185\\"},{\\"location\\":\\"Bury\\",\\"number\\":\\" 151\\"},{\\"location\\":\\"Manchester\\",\\"number\\":\\" 361\\"},{\\"location\\":\\"Oldham\\",\\"number\\":\\" 232\\"},{\\"location\\":\\"Rochdale\\",\\"number\\":\\" 186\\"},{\\"location\\":\\"Salford\\",\\"number\\":\\" 259\\"},{\\"location\\":\\"Stockport\\",\\"number\\":\\" 270\\"},{\\"location\\":\\"Tameside\\",\\"number\\":\\" 182\\"},{\\"location\\":\\"Trafford\\",\\"number\\":\\" 240\\"},{\\"location\\":\\"Wigan\\",\\"number\\":\\" 197\\"},{\\"location\\":\\"Knowsley\\",\\"number\\":\\" 169\\"},{\\"location\\":\\"Liverpool\\",\\"number\\":\\" 552\\"},{\\"location\\":\\"St. Helens\\",\\"number\\":\\" 239\\"},{\\"location\\":\\"Sefton\\",\\"number\\":\\" 289\\"},{\\"location\\":\\"Wirral\\",\\"number\\":\\" 262\\"},{\\"location\\":\\"Barnsley\\",\\"number\\":\\" 216\\"},{\\"location\\":\\"Doncaster\\",\\"number\\":\\" 144\\"},{\\"location\\":\\"Rotherham\\",\\"number\\":\\" 223\\"},{\\"location\\":\\"Sheffield\\",\\"number\\":\\" 883\\"},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":\\" 367\\"},{\\"location\\":\\"North Tyneside\\",\\"number\\":\\" 183\\"},{\\"location\\":\\"South Tyneside\\",\\"number\\":\\" 101\\"},{\\"location\\":\\"Sunderland\\",\\"number\\":\\" 285\\"},{\\"location\\":\\"Birmingham\\",\\"number\\":\\"1372\\"},{\\"location\\":\\"Coventry\\",\\"number\\":\\" 277\\"},{\\"location\\":\\"Dudley\\",\\"number\\":\\" 309\\"},{\\"location\\":\\"Sandwell\\",\\"number\\":\\" 363\\"},{\\"location\\":\\"Solihull\\",\\"number\\":\\" 241\\"},{\\"location\\":\\"Walsall\\",\\"number\\":\\" 386\\"},{\\"location\\":\\"Wolverhampton\\",\\"number\\":\\" 335\\"},{\\"location\\":\\"Bradford\\",\\"number\\":\\" 222\\"},{\\"location\\":\\"Calderdale\\",\\"number\\":\\" 94\\"},{\\"location\\":\\"Kirklees\\",\\"number\\":\\" 203\\"},{\\"location\\":\\"Leeds\\",\\"number\\":\\" 340\\"},{\\"location\\":\\"Wakefield\\",\\"number\\":\\" 177\\"},{\\"location\\":\\"Gateshead\\",\\"number\\":\\" 188\\"},{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":\\" 222\\"},{\\"location\\":\\"Barnet\\",\\"number\\":\\" 717\\"},{\\"location\\":\\"Bexley\\",\\"number\\":\\" 274\\"},{\\"location\\":\\"Brent\\",\\"number\\":\\" 819\\"},{\\"location\\":\\"Bromley\\",\\"number\\":\\" 547\\"},{\\"location\\":\\"Camden\\",\\"number\\":\\" 321\\"},{\\"location\\":\\"Croydon\\",\\"number\\":\\" 689\\"},{\\"location\\":\\"Ealing\\",\\"number\\":\\" 533\\"},{\\"location\\":\\"Enfield\\",\\"number\\":\\" 370\\"},{\\"location\\":\\"Greenwich\\",\\"number\\":\\" 337\\"},{\\"location\\":\\"Hackney and City of London\\",\\"number\\":\\" 365\\"},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":\\" 286\\"},{\\"location\\":\\"Haringey\\",\\"number\\":\\" 308\\"},{\\"location\\":\\"Harrow\\",\\"number\\":\\" 500\\"},{\\"location\\":\\"Havering\\",\\"number\\":\\" 273\\"},{\\"location\\":\\"Hillingdon\\",\\"number\\":\\" 366\\"},{\\"location\\":\\"Hounslow\\",\\"number\\":\\" 361\\"},{\\"location\\":\\"Islington\\",\\"number\\":\\" 268\\"},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":\\" 278\\"},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":\\" 199\\"},{\\"location\\":\\"Lambeth\\",\\"number\\":\\" 698\\"},{\\"location\\":\\"Lewisham\\",\\"number\\":\\" 516\\"},{\\"location\\":\\"Merton\\",\\"number\\":\\" 358\\"},{\\"location\\":\\"Newham\\",\\"number\\":\\" 535\\"},{\\"location\\":\\"Redbridge\\",\\"number\\":\\" 319\\"},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":\\" 213\\"},{\\"location\\":\\"Southwark\\",\\"number\\":\\" 710\\"},{\\"location\\":\\"Sutton\\",\\"number\\":\\" 287\\"},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":\\" 361\\"},{\\"location\\":\\"Waltham Forest\\",\\"number\\":\\" 393\\"},{\\"location\\":\\"Wandsworth\\",\\"number\\":\\" 557\\"},{\\"location\\":\\"Westminster\\",\\"number\\":\\" 398\\"},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":\\" 329\\"},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":\\" 237\\"},{\\"location\\":\\"Cumbria\\",\\"number\\":\\" 804\\"},{\\"location\\":\\"Derbyshire\\",\\"number\\":\\" 501\\"},{\\"location\\":\\"Devon\\",\\"number\\":\\" 236\\"},{\\"location\\":\\"East Sussex\\",\\"number\\":\\" 181\\"},{\\"location\\":\\"Essex\\",\\"number\\":\\" 938\\"},{\\"location\\":\\"Gloucestershire\\",\\"number\\":\\" 364\\"},{\\"location\\":\\"Hampshire\\",\\"number\\":\\" 989\\"},{\\"location\\":\\"Hertfordshire\\",\\"number\\":\\" 933\\"},{\\"location\\":\\"Kent\\",\\"number\\":\\" 923\\"},{\\"location\\":\\"Lancashire\\",\\"number\\":\\" 923\\"},{\\"location\\":\\"Leicestershire\\",\\"number\\":\\" 339\\"},{\\"location\\":\\"Lincolnshire\\",\\"number\\":\\" 277\\"},{\\"location\\":\\"Norfolk\\",\\"number\\":\\" 341\\"},{\\"location\\":\\"Northamptonshire\\",\\"number\\":\\" 473\\"},{\\"location\\":\\"North Yorkshire\\",\\"number\\":\\" 285\\"},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":\\" 469\\"},{\\"location\\":\\"Oxfordshire\\",\\"number\\":\\" 501\\"},{\\"location\\":\\"Somerset\\",\\"number\\":\\" 114\\"},{\\"location\\":\\"Staffordshire\\",\\"number\\":\\" 597\\"},{\\"location\\":\\"Suffolk\\",\\"number\\":\\" 263\\"},{\\"location\\":\\"Surrey\\",\\"number\\":\\"1017\\"},{\\"location\\":\\"Warwickshire\\",\\"number\\":\\" 400\\"},{\\"location\\":\\"West Sussex\\",\\"number\\":\\" 266\\"},{\\"location\\":\\"Worcestershire\\",\\"number\\":\\" 419\\"},{\\"location\\":\\" Ayrshire and Arran \\",\\"number\\":296},{\\"location\\":\\" Borders \\",\\"number\\":149},{\\"location\\":\\" Dumfries and Galloway \\",\\"number\\":152},{\\"location\\":\\" Fife \\",\\"number\\":239},{\\"location\\":\\" Forth Valley \\",\\"number\\":243},{\\"location\\":\\" Grampian \\",\\"number\\":210},{\\"location\\":\\" Greater Glasgow and Clyde \\",\\"number\\":1094},{\\"location\\":\\" Highland \\",\\"number\\":112},{\\"location\\":\\" Lanarkshire \\",\\"number\\":547},{\\"location\\":\\" Lothian \\",\\"number\\":621},{\\"location\\":\\"Orkney\\",\\"number\\":4},{\\"location\\":\\" Shetland \\",\\"number\\":42},{\\"location\\":\\" Tayside \\",\\"number\\":516},{\\"location\\":\\"Eileanan Siar (Western Isles)\\",\\"number\\":4},{\\"location\\":\\"Wales\\",\\"number\\":3499},{\\"location\\":\\"Northern Ireland\\",\\"number\\":1255}]'),
(70, 1586386210000, 60733, 7097, 135, 0, 171935, 0, 232708, 282074, 50756, 4565, 4073, 1339, '[{\\"location\\":\\"Hartlepool\\",\\"number\\":\\" 49\\"},{\\"location\\":\\"Middlesbrough\\",\\"number\\":\\" 196\\"},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":\\" 119\\"},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":\\" 143\\"},{\\"location\\":\\"Darlington\\",\\"number\\":\\" 77\\"},{\\"location\\":\\"Halton\\",\\"number\\":\\" 127\\"},{\\"location\\":\\"Warrington\\",\\"number\\":\\" 182\\"},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":\\" 92\\"},{\\"location\\":\\"Blackpool\\",\\"number\\":\\" 94\\"},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":\\" 58\\"},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":\\" 123\\"},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":\\" 50\\"},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":\\" 66\\"},{\\"location\\":\\"York\\",\\"number\\":\\" 87\\"},{\\"location\\":\\"Derby\\",\\"number\\":\\" 300\\"},{\\"location\\":\\"Leicester\\",\\"number\\":\\" 250\\"},{\\"location\\":\\"Rutland\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"Nottingham\\",\\"number\\":\\" 232\\"},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":\\" 81\\"},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":\\" 96\\"},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":\\" 130\\"},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":\\" 77\\"},{\\"location\\":\\"Bristol, City of\\",\\"number\\":\\" 234\\"},{\\"location\\":\\"North Somerset\\",\\"number\\":\\" 91\\"},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":\\" 155\\"},{\\"location\\":\\"Plymouth\\",\\"number\\":\\" 110\\"},{\\"location\\":\\"Torbay\\",\\"number\\":\\" 64\\"},{\\"location\\":\\"Swindon\\",\\"number\\":\\" 88\\"},{\\"location\\":\\"Peterborough\\",\\"number\\":\\" 80\\"},{\\"location\\":\\"Luton\\",\\"number\\":\\" 205\\"},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":\\" 156\\"},{\\"location\\":\\"Thurrock\\",\\"number\\":\\" 134\\"},{\\"location\\":\\"Medway\\",\\"number\\":\\" 232\\"},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":\\" 79\\"},{\\"location\\":\\"West Berkshire\\",\\"number\\":\\" 121\\"},{\\"location\\":\\"Reading\\",\\"number\\":\\" 129\\"},{\\"location\\":\\"Slough\\",\\"number\\":\\" 169\\"},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":\\" 117\\"},{\\"location\\":\\"Wokingham\\",\\"number\\":\\" 129\\"},{\\"location\\":\\"Milton Keynes\\",\\"number\\":\\" 195\\"},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":\\" 153\\"},{\\"location\\":\\"Portsmouth\\",\\"number\\":\\" 130\\"},{\\"location\\":\\"Southampton\\",\\"number\\":\\" 191\\"},{\\"location\\":\\"Isle of Wight\\",\\"number\\":\\" 38\\"},{\\"location\\":\\"County Durham\\",\\"number\\":\\" 410\\"},{\\"location\\":\\"Cheshire East\\",\\"number\\":\\" 226\\"},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":\\" 261\\"},{\\"location\\":\\"Shropshire\\",\\"number\\":\\" 174\\"},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":\\" 224\\"},{\\"location\\":\\"Wiltshire\\",\\"number\\":\\" 180\\"},{\\"location\\":\\"Bedford\\",\\"number\\":\\" 135\\"},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":\\" 173\\"},{\\"location\\":\\"Northumberland\\",\\"number\\":\\" 272\\"},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":\\" 127\\"},{\\"location\\":\\"Dorset\\",\\"number\\":\\" 136\\"},{\\"location\\":\\"Bolton\\",\\"number\\":\\" 204\\"},{\\"location\\":\\"Bury\\",\\"number\\":\\" 166\\"},{\\"location\\":\\"Manchester\\",\\"number\\":\\" 395\\"},{\\"location\\":\\"Oldham\\",\\"number\\":\\" 248\\"},{\\"location\\":\\"Rochdale\\",\\"number\\":\\" 195\\"},{\\"location\\":\\"Salford\\",\\"number\\":\\" 273\\"},{\\"location\\":\\"Stockport\\",\\"number\\":\\" 298\\"},{\\"location\\":\\"Tameside\\",\\"number\\":\\" 191\\"},{\\"location\\":\\"Trafford\\",\\"number\\":\\" 257\\"},{\\"location\\":\\"Wigan\\",\\"number\\":\\" 209\\"},{\\"location\\":\\"Knowsley\\",\\"number\\":\\" 198\\"},{\\"location\\":\\"Liverpool\\",\\"number\\":\\" 587\\"},{\\"location\\":\\"St. Helens\\",\\"number\\":\\" 269\\"},{\\"location\\":\\"Sefton\\",\\"number\\":\\" 306\\"},{\\"location\\":\\"Wirral\\",\\"number\\":\\" 288\\"},{\\"location\\":\\"Barnsley\\",\\"number\\":\\" 238\\"},{\\"location\\":\\"Doncaster\\",\\"number\\":\\" 168\\"},{\\"location\\":\\"Rotherham\\",\\"number\\":\\" 240\\"},{\\"location\\":\\"Sheffield\\",\\"number\\":\\" 940\\"},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":\\" 432\\"},{\\"location\\":\\"North Tyneside\\",\\"number\\":\\" 242\\"},{\\"location\\":\\"South Tyneside\\",\\"number\\":\\" 118\\"},{\\"location\\":\\"Sunderland\\",\\"number\\":\\" 343\\"},{\\"location\\":\\"Birmingham\\",\\"number\\":\\"1462\\"},{\\"location\\":\\"Coventry\\",\\"number\\":\\" 295\\"},{\\"location\\":\\"Dudley\\",\\"number\\":\\" 341\\"},{\\"location\\":\\"Sandwell\\",\\"number\\":\\" 399\\"},{\\"location\\":\\"Solihull\\",\\"number\\":\\" 259\\"},{\\"location\\":\\"Walsall\\",\\"number\\":\\" 421\\"},{\\"location\\":\\"Wolverhampton\\",\\"number\\":\\" 354\\"},{\\"location\\":\\"Bradford\\",\\"number\\":\\" 258\\"},{\\"location\\":\\"Calderdale\\",\\"number\\":\\" 110\\"},{\\"location\\":\\"Kirklees\\",\\"number\\":\\" 235\\"},{\\"location\\":\\"Leeds\\",\\"number\\":\\" 389\\"},{\\"location\\":\\"Wakefield\\",\\"number\\":\\" 200\\"},{\\"location\\":\\"Gateshead\\",\\"number\\":\\" 230\\"},{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":\\" 249\\"},{\\"location\\":\\"Barnet\\",\\"number\\":\\" 752\\"},{\\"location\\":\\"Bexley\\",\\"number\\":\\" 303\\"},{\\"location\\":\\"Brent\\",\\"number\\":\\" 853\\"},{\\"location\\":\\"Bromley\\",\\"number\\":\\" 583\\"},{\\"location\\":\\"Camden\\",\\"number\\":\\" 343\\"},{\\"location\\":\\"Croydon\\",\\"number\\":\\" 763\\"},{\\"location\\":\\"Ealing\\",\\"number\\":\\" 553\\"},{\\"location\\":\\"Enfield\\",\\"number\\":\\" 392\\"},{\\"location\\":\\"Greenwich\\",\\"number\\":\\" 378\\"},{\\"location\\":\\"Hackney and City of London\\",\\"number\\":\\" 412\\"},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":\\" 295\\"},{\\"location\\":\\"Haringey\\",\\"number\\":\\" 324\\"},{\\"location\\":\\"Harrow\\",\\"number\\":\\" 530\\"},{\\"location\\":\\"Havering\\",\\"number\\":\\" 299\\"},{\\"location\\":\\"Hillingdon\\",\\"number\\":\\" 389\\"},{\\"location\\":\\"Hounslow\\",\\"number\\":\\" 380\\"},{\\"location\\":\\"Islington\\",\\"number\\":\\" 276\\"},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":\\" 286\\"},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":\\" 212\\"},{\\"location\\":\\"Lambeth\\",\\"number\\":\\" 731\\"},{\\"location\\":\\"Lewisham\\",\\"number\\":\\" 554\\"},{\\"location\\":\\"Merton\\",\\"number\\":\\" 386\\"},{\\"location\\":\\"Newham\\",\\"number\\":\\" 608\\"},{\\"location\\":\\"Redbridge\\",\\"number\\":\\" 366\\"},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":\\" 223\\"},{\\"location\\":\\"Southwark\\",\\"number\\":\\" 755\\"},{\\"location\\":\\"Sutton\\",\\"number\\":\\" 299\\"},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":\\" 406\\"},{\\"location\\":\\"Waltham Forest\\",\\"number\\":\\" 443\\"},{\\"location\\":\\"Wandsworth\\",\\"number\\":\\" 592\\"},{\\"location\\":\\"Westminster\\",\\"number\\":\\" 420\\"},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":\\" 342\\"},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":\\" 278\\"},{\\"location\\":\\"Cumbria\\",\\"number\\":\\" 864\\"},{\\"location\\":\\"Derbyshire\\",\\"number\\":\\" 555\\"},{\\"location\\":\\"Devon\\",\\"number\\":\\" 250\\"},{\\"location\\":\\"East Sussex\\",\\"number\\":\\" 229\\"},{\\"location\\":\\"Essex\\",\\"number\\":\\"1081\\"},{\\"location\\":\\"Gloucestershire\\",\\"number\\":\\" 402\\"},{\\"location\\":\\"Hampshire\\",\\"number\\":\\"1241\\"},{\\"location\\":\\"Hertfordshire\\",\\"number\\":\\"1032\\"},{\\"location\\":\\"Kent\\",\\"number\\":\\"1033\\"},{\\"location\\":\\"Lancashire\\",\\"number\\":\\"1026\\"},{\\"location\\":\\"Leicestershire\\",\\"number\\":\\" 386\\"},{\\"location\\":\\"Lincolnshire\\",\\"number\\":\\" 319\\"},{\\"location\\":\\"Norfolk\\",\\"number\\":\\" 386\\"},{\\"location\\":\\"Northamptonshire\\",\\"number\\":\\" 536\\"},{\\"location\\":\\"North Yorkshire\\",\\"number\\":\\" 328\\"},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":\\" 509\\"},{\\"location\\":\\"Oxfordshire\\",\\"number\\":\\" 533\\"},{\\"location\\":\\"Somerset\\",\\"number\\":\\" 135\\"},{\\"location\\":\\"Staffordshire\\",\\"number\\":\\" 673\\"},{\\"location\\":\\"Suffolk\\",\\"number\\":\\" 302\\"},{\\"location\\":\\"Surrey\\",\\"number\\":\\"1059\\"},{\\"location\\":\\"Warwickshire\\",\\"number\\":\\" 439\\"},{\\"location\\":\\"West Sussex\\",\\"number\\":\\" 320\\"},{\\"location\\":\\"Worcestershire\\",\\"number\\":\\" 439\\"},{\\"location\\":\\" Borders \\",\\"number\\":160},{\\"location\\":\\" Dumfries and Galloway \\",\\"number\\":155},{\\"location\\":\\" Fife \\",\\"number\\":255},{\\"location\\":\\" Forth Valley \\",\\"number\\":259},{\\"location\\":\\" Grampian \\",\\"number\\":223},{\\"location\\":\\" Greater Glasgow and Clyde \\",\\"number\\":1166},{\\"location\\":\\" Highland \\",\\"number\\":122},{\\"location\\":\\" Lanarkshire \\",\\"number\\":575},{\\"location\\":\\" Lothian \\",\\"number\\":700},{\\"location\\":\\" Orkney \\",\\"number\\":0},{\\"location\\":\\" Shetland \\",\\"number\\":43},{\\"location\\":\\" Tayside \\",\\"number\\":586},{\\"location\\":\\" Eileanan Siar (Western Isles) \\",\\"number\\":0},{\\"location\\":\\"Wales\\",\\"number\\":4073},{\\"location\\":\\"Northern Ireland\\",\\"number\\":1339}]'),
(71, 1586472610000, 65077, 7978, 135, 0, 178344, 0, 243421, 298169, 54554, 4957, 4089, 1477, '[{\\"location\\":\\"Hartlepool\\",\\"number\\":\\" 55\\"},{\\"location\\":\\"Middlesbrough\\",\\"number\\":\\" 213\\"},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":\\" 128\\"},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":\\" 152\\"},{\\"location\\":\\"Darlington\\",\\"number\\":\\" 95\\"},{\\"location\\":\\"Halton\\",\\"number\\":\\" 148\\"},{\\"location\\":\\"Warrington\\",\\"number\\":\\" 211\\"},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":\\" 95\\"},{\\"location\\":\\"Blackpool\\",\\"number\\":\\" 98\\"},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":\\" 74\\"},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":\\" 150\\"},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":\\" 58\\"},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":\\" 71\\"},{\\"location\\":\\"York\\",\\"number\\":\\" 101\\"},{\\"location\\":\\"Derby\\",\\"number\\":\\" 303\\"},{\\"location\\":\\"Leicester\\",\\"number\\":\\" 287\\"},{\\"location\\":\\"Rutland\\",\\"number\\":\\" 8\\"},{\\"location\\":\\"Nottingham\\",\\"number\\":\\" 261\\"},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":\\" 84\\"},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":\\" 102\\"},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":\\" 136\\"},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":\\" 84\\"},{\\"location\\":\\"Bristol, City of\\",\\"number\\":\\" 245\\"},{\\"location\\":\\"North Somerset\\",\\"number\\":\\" 96\\"},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":\\" 165\\"},{\\"location\\":\\"Plymouth\\",\\"number\\":\\" 112\\"},{\\"location\\":\\"Torbay\\",\\"number\\":\\" 66\\"},{\\"location\\":\\"Swindon\\",\\"number\\":\\" 111\\"},{\\"location\\":\\"Peterborough\\",\\"number\\":\\" 85\\"},{\\"location\\":\\"Luton\\",\\"number\\":\\" 218\\"},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":\\" 160\\"},{\\"location\\":\\"Thurrock\\",\\"number\\":\\" 145\\"},{\\"location\\":\\"Medway\\",\\"number\\":\\" 236\\"},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":\\" 90\\"},{\\"location\\":\\"West Berkshire\\",\\"number\\":\\" 131\\"},{\\"location\\":\\"Reading\\",\\"number\\":\\" 141\\"},{\\"location\\":\\"Slough\\",\\"number\\":\\" 194\\"},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":\\" 126\\"},{\\"location\\":\\"Wokingham\\",\\"number\\":\\" 142\\"},{\\"location\\":\\"Milton Keynes\\",\\"number\\":\\" 221\\"},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":\\" 165\\"},{\\"location\\":\\"Portsmouth\\",\\"number\\":\\" 136\\"},{\\"location\\":\\"Southampton\\",\\"number\\":\\" 192\\"},{\\"location\\":\\"Isle of Wight\\",\\"number\\":\\" 41\\"},{\\"location\\":\\"County Durham\\",\\"number\\":\\" 450\\"},{\\"location\\":\\"Cheshire East\\",\\"number\\":\\" 257\\"},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":\\" 289\\"},{\\"location\\":\\"Shropshire\\",\\"number\\":\\" 184\\"},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":\\" 246\\"},{\\"location\\":\\"Wiltshire\\",\\"number\\":\\" 195\\"},{\\"location\\":\\"Bedford\\",\\"number\\":\\" 139\\"},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":\\" 190\\"},{\\"location\\":\\"Northumberland\\",\\"number\\":\\" 298\\"},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":\\" 131\\"},{\\"location\\":\\"Dorset\\",\\"number\\":\\" 142\\"},{\\"location\\":\\"Bolton\\",\\"number\\":\\" 223\\"},{\\"location\\":\\"Bury\\",\\"number\\":\\" 177\\"},{\\"location\\":\\"Manchester\\",\\"number\\":\\" 454\\"},{\\"location\\":\\"Oldham\\",\\"number\\":\\" 267\\"},{\\"location\\":\\"Rochdale\\",\\"number\\":\\" 209\\"},{\\"location\\":\\"Salford\\",\\"number\\":\\" 285\\"},{\\"location\\":\\"Stockport\\",\\"number\\":\\" 338\\"},{\\"location\\":\\"Tameside\\",\\"number\\":\\" 217\\"},{\\"location\\":\\"Trafford\\",\\"number\\":\\" 272\\"},{\\"location\\":\\"Wigan\\",\\"number\\":\\" 223\\"},{\\"location\\":\\"Knowsley\\",\\"number\\":\\" 227\\"},{\\"location\\":\\"Liverpool\\",\\"number\\":\\" 634\\"},{\\"location\\":\\"St. Helens\\",\\"number\\":\\" 306\\"},{\\"location\\":\\"Sefton\\",\\"number\\":\\" 351\\"},{\\"location\\":\\"Wirral\\",\\"number\\":\\" 353\\"},{\\"location\\":\\"Barnsley\\",\\"number\\":\\" 248\\"},{\\"location\\":\\"Doncaster\\",\\"number\\":\\" 170\\"},{\\"location\\":\\"Rotherham\\",\\"number\\":\\" 262\\"},{\\"location\\":\\"Sheffield\\",\\"number\\":\\"1020\\"},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":\\" 464\\"},{\\"location\\":\\"North Tyneside\\",\\"number\\":\\" 262\\"},{\\"location\\":\\"South Tyneside\\",\\"number\\":\\" 120\\"},{\\"location\\":\\"Sunderland\\",\\"number\\":\\" 349\\"},{\\"location\\":\\"Birmingham\\",\\"number\\":\\"1524\\"},{\\"location\\":\\"Coventry\\",\\"number\\":\\" 299\\"},{\\"location\\":\\"Dudley\\",\\"number\\":\\" 358\\"},{\\"location\\":\\"Sandwell\\",\\"number\\":\\" 435\\"},{\\"location\\":\\"Solihull\\",\\"number\\":\\" 268\\"},{\\"location\\":\\"Walsall\\",\\"number\\":\\" 436\\"},{\\"location\\":\\"Wolverhampton\\",\\"number\\":\\" 368\\"},{\\"location\\":\\"Bradford\\",\\"number\\":\\" 278\\"},{\\"location\\":\\"Calderdale\\",\\"number\\":\\" 119\\"},{\\"location\\":\\"Kirklees\\",\\"number\\":\\" 255\\"},{\\"location\\":\\"Leeds\\",\\"number\\":\\" 437\\"},{\\"location\\":\\"Wakefield\\",\\"number\\":\\" 229\\"},{\\"location\\":\\"Gateshead\\",\\"number\\":\\" 240\\"},{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":\\" 269\\"},{\\"location\\":\\"Barnet\\",\\"number\\":\\" 788\\"},{\\"location\\":\\"Bexley\\",\\"number\\":\\" 343\\"},{\\"location\\":\\"Brent\\",\\"number\\":\\" 880\\"},{\\"location\\":\\"Bromley\\",\\"number\\":\\" 620\\"},{\\"location\\":\\"Camden\\",\\"number\\":\\" 356\\"},{\\"location\\":\\"Croydon\\",\\"number\\":\\" 813\\"},{\\"location\\":\\"Ealing\\",\\"number\\":\\" 589\\"},{\\"location\\":\\"Enfield\\",\\"number\\":\\" 414\\"},{\\"location\\":\\"Greenwich\\",\\"number\\":\\" 410\\"},{\\"location\\":\\"Hackney and City of London\\",\\"number\\":\\" 444\\"},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":\\" 313\\"},{\\"location\\":\\"Haringey\\",\\"number\\":\\" 333\\"},{\\"location\\":\\"Harrow\\",\\"number\\":\\" 549\\"},{\\"location\\":\\"Havering\\",\\"number\\":\\" 342\\"},{\\"location\\":\\"Hillingdon\\",\\"number\\":\\" 410\\"},{\\"location\\":\\"Hounslow\\",\\"number\\":\\" 396\\"},{\\"location\\":\\"Islington\\",\\"number\\":\\" 279\\"},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":\\" 301\\"},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":\\" 229\\"},{\\"location\\":\\"Lambeth\\",\\"number\\":\\" 766\\"},{\\"location\\":\\"Lewisham\\",\\"number\\":\\" 617\\"},{\\"location\\":\\"Merton\\",\\"number\\":\\" 417\\"},{\\"location\\":\\"Newham\\",\\"number\\":\\" 642\\"},{\\"location\\":\\"Redbridge\\",\\"number\\":\\" 400\\"},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":\\" 235\\"},{\\"location\\":\\"Southwark\\",\\"number\\":\\" 794\\"},{\\"location\\":\\"Sutton\\",\\"number\\":\\" 324\\"},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":\\" 428\\"},{\\"location\\":\\"Waltham Forest\\",\\"number\\":\\" 463\\"},{\\"location\\":\\"Wandsworth\\",\\"number\\":\\" 625\\"},{\\"location\\":\\"Westminster\\",\\"number\\":\\" 428\\"},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":\\" 364\\"},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":\\" 290\\"},{\\"location\\":\\"Cumbria\\",\\"number\\":\\" 936\\"},{\\"location\\":\\"Derbyshire\\",\\"number\\":\\" 575\\"},{\\"location\\":\\"Devon\\",\\"number\\":\\" 294\\"},{\\"location\\":\\"East Sussex\\",\\"number\\":\\" 279\\"},{\\"location\\":\\"Essex\\",\\"number\\":\\"1139\\"},{\\"location\\":\\"Gloucestershire\\",\\"number\\":\\" 429\\"},{\\"location\\":\\"Hampshire\\",\\"number\\":\\"1317\\"},{\\"location\\":\\"Hertfordshire\\",\\"number\\":\\"1090\\"},{\\"location\\":\\"Kent\\",\\"number\\":\\"1105\\"},{\\"location\\":\\"Lancashire\\",\\"number\\":\\"1111\\"},{\\"location\\":\\"Leicestershire\\",\\"number\\":\\" 433\\"},{\\"location\\":\\"Lincolnshire\\",\\"number\\":\\" 363\\"},{\\"location\\":\\"Norfolk\\",\\"number\\":\\" 438\\"},{\\"location\\":\\"Northamptonshire\\",\\"number\\":\\" 547\\"},{\\"location\\":\\"North Yorkshire\\",\\"number\\":\\" 352\\"},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":\\" 536\\"},{\\"location\\":\\"Oxfordshire\\",\\"number\\":\\" 583\\"},{\\"location\\":\\"Somerset\\",\\"number\\":\\" 152\\"},{\\"location\\":\\"Staffordshire\\",\\"number\\":\\" 701\\"},{\\"location\\":\\"Suffolk\\",\\"number\\":\\" 314\\"},{\\"location\\":\\"Surrey\\",\\"number\\":\\"1175\\"},{\\"location\\":\\"Warwickshire\\",\\"number\\":\\" 458\\"},{\\"location\\":\\"West Sussex\\",\\"number\\":\\" 330\\"},{\\"location\\":\\"Worcestershire\\",\\"number\\":\\" 471\\"},{\\"location\\":\\" Borders \\",\\"number\\":167},{\\"location\\":\\" Dumfries and Galloway \\",\\"number\\":163},{\\"location\\":\\" Fife \\",\\"number\\":288},{\\"location\\":\\" Forth Valley \\",\\"number\\":280},{\\"location\\":\\" Grampian \\",\\"number\\":236},{\\"location\\":\\" Greater Glasgow and Clyde \\",\\"number\\":1251},{\\"location\\":\\" Highland \\",\\"number\\":137},{\\"location\\":\\" Lanarkshire \\",\\"number\\":607},{\\"location\\":\\" Lothian \\",\\"number\\":747},{\\"location\\":\\" Orkney \\",\\"number\\":0},{\\"location\\":\\" Shetland \\",\\"number\\":43},{\\"location\\":\\" Tayside \\",\\"number\\":667},{\\"location\\":\\" Eileanan Siar (Western Isles) \\",\\"number\\":5},{\\"location\\":\\"Golden Jubilee National Hospital\\",\\"number\\":0},{\\"location\\":\\"Wales\\",\\"number\\":4089},{\\"location\\":\\"Northern Ireland\\",\\"number\\":1477}]'),
(72, 1586559010000, 73758, 8958, 135, 0, 182847, 0, 256605, 316836, 58817, 5275, 4591, 1589, '[{\\"location\\":\\"Hartlepool\\",\\"number\\":64},{\\"location\\":\\"Middlesbrough\\",\\"number\\":235},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":139},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":173},{\\"location\\":\\"Darlington\\",\\"number\\":109},{\\"location\\":\\"Halton\\",\\"number\\":159},{\\"location\\":\\"Warrington\\",\\"number\\":241},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":106},{\\"location\\":\\"Blackpool\\",\\"number\\":108},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":85},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":174},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":61},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":77},{\\"location\\":\\"York\\",\\"number\\":111},{\\"location\\":\\"Derby\\",\\"number\\":313},{\\"location\\":\\"Leicester\\",\\"number\\":305},{\\"location\\":\\"Rutland\\",\\"number\\":9},{\\"location\\":\\"Nottingham\\",\\"number\\":276},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":86},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":118},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":157},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":97},{\\"location\\":\\"Bristol, City of\\",\\"number\\":269},{\\"location\\":\\"North Somerset\\",\\"number\\":100},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":191},{\\"location\\":\\"Plymouth\\",\\"number\\":119},{\\"location\\":\\"Torbay\\",\\"number\\":74},{\\"location\\":\\"Swindon\\",\\"number\\":125},{\\"location\\":\\"Peterborough\\",\\"number\\":99},{\\"location\\":\\"Luton\\",\\"number\\":249},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":180},{\\"location\\":\\"Thurrock\\",\\"number\\":155},{\\"location\\":\\"Medway\\",\\"number\\":285},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":90},{\\"location\\":\\"West Berkshire\\",\\"number\\":132},{\\"location\\":\\"Reading\\",\\"number\\":141},{\\"location\\":\\"Slough\\",\\"number\\":196},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":126},{\\"location\\":\\"Wokingham\\",\\"number\\":142},{\\"location\\":\\"Milton Keynes\\",\\"number\\":239},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":182},{\\"location\\":\\"Portsmouth\\",\\"number\\":151},{\\"location\\":\\"Southampton\\",\\"number\\":212},{\\"location\\":\\"Isle of Wight\\",\\"number\\":41},{\\"location\\":\\"County Durham\\",\\"number\\":482},{\\"location\\":\\"Cheshire East\\",\\"number\\":278},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":311},{\\"location\\":\\"Shropshire\\",\\"number\\":205},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":259},{\\"location\\":\\"Wiltshire\\",\\"number\\":210},{\\"location\\":\\"Bedford\\",\\"number\\":158},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":206},{\\"location\\":\\"Northumberland\\",\\"number\\":331},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":164},{\\"location\\":\\"Dorset\\",\\"number\\":159},{\\"location\\":\\"Bolton\\",\\"number\\":249},{\\"location\\":\\"Bury\\",\\"number\\":198},{\\"location\\":\\"Manchester\\",\\"number\\":512},{\\"location\\":\\"Oldham\\",\\"number\\":284},{\\"location\\":\\"Rochdale\\",\\"number\\":222},{\\"location\\":\\"Salford\\",\\"number\\":310},{\\"location\\":\\"Stockport\\",\\"number\\":368},{\\"location\\":\\"Tameside\\",\\"number\\":227},{\\"location\\":\\"Trafford\\",\\"number\\":297},{\\"location\\":\\"Wigan\\",\\"number\\":253},{\\"location\\":\\"Knowsley\\",\\"number\\":245},{\\"location\\":\\"Liverpool\\",\\"number\\":702},{\\"location\\":\\"St. Helens\\",\\"number\\":329},{\\"location\\":\\"Sefton\\",\\"number\\":387},{\\"location\\":\\"Wirral\\",\\"number\\":385},{\\"location\\":\\"Barnsley\\",\\"number\\":267},{\\"location\\":\\"Doncaster\\",\\"number\\":183},{\\"location\\":\\"Rotherham\\",\\"number\\":279},{\\"location\\":\\"Sheffield\\",\\"number\\":1095},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":493},{\\"location\\":\\"North Tyneside\\",\\"number\\":276},{\\"location\\":\\"South Tyneside\\",\\"number\\":123},{\\"location\\":\\"Sunderland\\",\\"number\\":354},{\\"location\\":\\"Birmingham\\",\\"number\\":1604},{\\"location\\":\\"Coventry\\",\\"number\\":335},{\\"location\\":\\"Dudley\\",\\"number\\":379},{\\"location\\":\\"Sandwell\\",\\"number\\":448},{\\"location\\":\\"Solihull\\",\\"number\\":284},{\\"location\\":\\"Walsall\\",\\"number\\":461},{\\"location\\":\\"Wolverhampton\\",\\"number\\":388},{\\"location\\":\\"Bradford\\",\\"number\\":331},{\\"location\\":\\"Calderdale\\",\\"number\\":122},{\\"location\\":\\"Kirklees\\",\\"number\\":278},{\\"location\\":\\"Leeds\\",\\"number\\":504},{\\"location\\":\\"Wakefield\\",\\"number\\":245},{\\"location\\":\\"Gateshead\\",\\"number\\":247},{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":279},{\\"location\\":\\"Barnet\\",\\"number\\":837},{\\"location\\":\\"Bexley\\",\\"number\\":374},{\\"location\\":\\"Brent\\",\\"number\\":912},{\\"location\\":\\"Bromley\\",\\"number\\":658},{\\"location\\":\\"Camden\\",\\"number\\":373},{\\"location\\":\\"Croydon\\",\\"number\\":853},{\\"location\\":\\"Ealing\\",\\"number\\":624},{\\"location\\":\\"Enfield\\",\\"number\\":434},{\\"location\\":\\"Greenwich\\",\\"number\\":432},{\\"location\\":\\"Hackney and City of London\\",\\"number\\":470},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":332},{\\"location\\":\\"Haringey\\",\\"number\\":349},{\\"location\\":\\"Harrow\\",\\"number\\":574},{\\"location\\":\\"Havering\\",\\"number\\":372},{\\"location\\":\\"Hillingdon\\",\\"number\\":434},{\\"location\\":\\"Hounslow\\",\\"number\\":416},{\\"location\\":\\"Islington\\",\\"number\\":290},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":314},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":244},{\\"location\\":\\"Lambeth\\",\\"number\\":794},{\\"location\\":\\"Lewisham\\",\\"number\\":644},{\\"location\\":\\"Merton\\",\\"number\\":440},{\\"location\\":\\"Newham\\",\\"number\\":684},{\\"location\\":\\"Redbridge\\",\\"number\\":436},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":247},{\\"location\\":\\"Southwark\\",\\"number\\":826},{\\"location\\":\\"Sutton\\",\\"number\\":349},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":448},{\\"location\\":\\"Waltham Forest\\",\\"number\\":478},{\\"location\\":\\"Wandsworth\\",\\"number\\":650},{\\"location\\":\\"Westminster\\",\\"number\\":444},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":391},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":320},{\\"location\\":\\"Cumbria\\",\\"number\\":1023},{\\"location\\":\\"Derbyshire\\",\\"number\\":603},{\\"location\\":\\"Devon\\",\\"number\\":312},{\\"location\\":\\"East Sussex\\",\\"number\\":301},{\\"location\\":\\"Essex\\",\\"number\\":1232},{\\"location\\":\\"Gloucestershire\\",\\"number\\":496},{\\"location\\":\\"Hampshire\\",\\"number\\":1416},{\\"location\\":\\"Hertfordshire\\",\\"number\\":1179},{\\"location\\":\\"Kent\\",\\"number\\":1252},{\\"location\\":\\"Lancashire\\",\\"number\\":1226},{\\"location\\":\\"Leicestershire\\",\\"number\\":449},{\\"location\\":\\"Lincolnshire\\",\\"number\\":392},{\\"location\\":\\"Norfolk\\",\\"number\\":486},{\\"location\\":\\"Northamptonshire\\",\\"number\\":626},{\\"location\\":\\"North Yorkshire\\",\\"number\\":390},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":566},{\\"location\\":\\"Oxfordshire\\",\\"number\\":653},{\\"location\\":\\"Somerset\\",\\"number\\":168},{\\"location\\":\\"Staffordshire\\",\\"number\\":760},{\\"location\\":\\"Suffolk\\",\\"number\\":360},{\\"location\\":\\"Surrey\\",\\"number\\":1238},{\\"location\\":\\"Warwickshire\\",\\"number\\":513},{\\"location\\":\\"West Sussex\\",\\"number\\":363},{\\"location\\":\\"Worcestershire\\",\\"number\\":508},{\\"location\\":\\" Borders \\",\\"number\\":177},{\\"location\\":\\" Dumfries and Galloway \\",\\"number\\":164},{\\"location\\":\\" Fife \\",\\"number\\":333},{\\"location\\":\\" Forth Valley \\",\\"number\\":302},{\\"location\\":\\" Grampian \\",\\"number\\":251},{\\"location\\":\\" Greater Glasgow and Clyde \\",\\"number\\":1314},{\\"location\\":\\" Highland \\",\\"number\\":144},{\\"location\\":\\" Lanarkshire \\",\\"number\\":662},{\\"location\\":\\" Lothian \\",\\"number\\":799},{\\"location\\":\\" Orkney \\",\\"number\\":0},{\\"location\\":\\" Shetland \\",\\"number\\":43},{\\"location\\":\\" Tayside \\",\\"number\\":712},{\\"location\\":\\" Eileanan Siar (Western Isles) \\",\\"number\\":6},{\\"location\\":\\"Golden Jubilee National Hospital\\",\\"number\\":0},{\\"location\\":\\"Wales\\",\\"number\\":4591},{\\"location\\":\\"Northern Ireland\\",\\"number\\":1589}]');
INSERT INTO `history` (`id`, `date`, `confirmed`, `death`, `cured`, `serious`, `negative`, `suspected`, `tested`, `test_done`, `england`, `scotland`, `wales`, `nireland`, `area`) VALUES
(73, 1586645410000, 78991, 9875, 344, 0, 190607, 0, 269598, 334974, 62658, 5590, 4930, 1717, '[{\\"location\\":\\"Hartlepool\\",\\"number\\":64},{\\"location\\":\\"Middlesbrough\\",\\"number\\":237},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":140},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":177},{\\"location\\":\\"Darlington\\",\\"number\\":120},{\\"location\\":\\"Halton\\",\\"number\\":164},{\\"location\\":\\"Warrington\\",\\"number\\":259},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":124},{\\"location\\":\\"Blackpool\\",\\"number\\":119},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":97},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":187},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":64},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":91},{\\"location\\":\\"York\\",\\"number\\":119},{\\"location\\":\\"Derby\\",\\"number\\":321},{\\"location\\":\\"Leicester\\",\\"number\\":331},{\\"location\\":\\"Rutland\\",\\"number\\":9},{\\"location\\":\\"Nottingham\\",\\"number\\":287},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":93},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":122},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":181},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":105},{\\"location\\":\\"Bristol, City of\\",\\"number\\":291},{\\"location\\":\\"North Somerset\\",\\"number\\":106},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":199},{\\"location\\":\\"Plymouth\\",\\"number\\":132},{\\"location\\":\\"Torbay\\",\\"number\\":87},{\\"location\\":\\"Swindon\\",\\"number\\":144},{\\"location\\":\\"Peterborough\\",\\"number\\":101},{\\"location\\":\\"Luton\\",\\"number\\":290},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":194},{\\"location\\":\\"Thurrock\\",\\"number\\":172},{\\"location\\":\\"Medway\\",\\"number\\":317},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":103},{\\"location\\":\\"West Berkshire\\",\\"number\\":143},{\\"location\\":\\"Reading\\",\\"number\\":159},{\\"location\\":\\"Slough\\",\\"number\\":207},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":133},{\\"location\\":\\"Wokingham\\",\\"number\\":156},{\\"location\\":\\"Milton Keynes\\",\\"number\\":263},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":199},{\\"location\\":\\"Portsmouth\\",\\"number\\":155},{\\"location\\":\\"Southampton\\",\\"number\\":221},{\\"location\\":\\"Isle of Wight\\",\\"number\\":45},{\\"location\\":\\"County Durham\\",\\"number\\":519},{\\"location\\":\\"Cheshire East\\",\\"number\\":316},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":342},{\\"location\\":\\"Shropshire\\",\\"number\\":227},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":274},{\\"location\\":\\"Wiltshire\\",\\"number\\":213},{\\"location\\":\\"Bedford\\",\\"number\\":174},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":227},{\\"location\\":\\"Northumberland\\",\\"number\\":344},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":184},{\\"location\\":\\"Dorset\\",\\"number\\":174},{\\"location\\":\\"Bolton\\",\\"number\\":272},{\\"location\\":\\"Bury\\",\\"number\\":207},{\\"location\\":\\"Manchester\\",\\"number\\":556},{\\"location\\":\\"Oldham\\",\\"number\\":296},{\\"location\\":\\"Rochdale\\",\\"number\\":240},{\\"location\\":\\"Salford\\",\\"number\\":321},{\\"location\\":\\"Stockport\\",\\"number\\":388},{\\"location\\":\\"Tameside\\",\\"number\\":241},{\\"location\\":\\"Trafford\\",\\"number\\":326},{\\"location\\":\\"Wigan\\",\\"number\\":266},{\\"location\\":\\"Knowsley\\",\\"number\\":248},{\\"location\\":\\"Liverpool\\",\\"number\\":765},{\\"location\\":\\"St. Helens\\",\\"number\\":330},{\\"location\\":\\"Sefton\\",\\"number\\":404},{\\"location\\":\\"Wirral\\",\\"number\\":437},{\\"location\\":\\"Barnsley\\",\\"number\\":297},{\\"location\\":\\"Doncaster\\",\\"number\\":192},{\\"location\\":\\"Rotherham\\",\\"number\\":321},{\\"location\\":\\"Sheffield\\",\\"number\\":1137},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":518},{\\"location\\":\\"North Tyneside\\",\\"number\\":284},{\\"location\\":\\"South Tyneside\\",\\"number\\":123},{\\"location\\":\\"Sunderland\\",\\"number\\":356},{\\"location\\":\\"Birmingham\\",\\"number\\":1712},{\\"location\\":\\"Coventry\\",\\"number\\":357},{\\"location\\":\\"Dudley\\",\\"number\\":403},{\\"location\\":\\"Sandwell\\",\\"number\\":491},{\\"location\\":\\"Solihull\\",\\"number\\":302},{\\"location\\":\\"Walsall\\",\\"number\\":478},{\\"location\\":\\"Wolverhampton\\",\\"number\\":410},{\\"location\\":\\"Bradford\\",\\"number\\":359},{\\"location\\":\\"Calderdale\\",\\"number\\":135},{\\"location\\":\\"Kirklees\\",\\"number\\":295},{\\"location\\":\\"Leeds\\",\\"number\\":544},{\\"location\\":\\"Wakefield\\",\\"number\\":274},{\\"location\\":\\"Gateshead\\",\\"number\\":253},{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":291},{\\"location\\":\\"Barnet\\",\\"number\\":871},{\\"location\\":\\"Bexley\\",\\"number\\":386},{\\"location\\":\\"Brent\\",\\"number\\":958},{\\"location\\":\\"Bromley\\",\\"number\\":697},{\\"location\\":\\"Camden\\",\\"number\\":388},{\\"location\\":\\"Croydon\\",\\"number\\":893},{\\"location\\":\\"Ealing\\",\\"number\\":660},{\\"location\\":\\"Enfield\\",\\"number\\":459},{\\"location\\":\\"Greenwich\\",\\"number\\":443},{\\"location\\":\\"Hackney and City of London\\",\\"number\\":475},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":351},{\\"location\\":\\"Haringey\\",\\"number\\":364},{\\"location\\":\\"Harrow\\",\\"number\\":610},{\\"location\\":\\"Havering\\",\\"number\\":398},{\\"location\\":\\"Hillingdon\\",\\"number\\":465},{\\"location\\":\\"Hounslow\\",\\"number\\":439},{\\"location\\":\\"Islington\\",\\"number\\":300},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":332},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":260},{\\"location\\":\\"Lambeth\\",\\"number\\":829},{\\"location\\":\\"Lewisham\\",\\"number\\":663},{\\"location\\":\\"Merton\\",\\"number\\":453},{\\"location\\":\\"Newham\\",\\"number\\":702},{\\"location\\":\\"Redbridge\\",\\"number\\":465},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":257},{\\"location\\":\\"Southwark\\",\\"number\\":867},{\\"location\\":\\"Sutton\\",\\"number\\":382},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":452},{\\"location\\":\\"Waltham Forest\\",\\"number\\":488},{\\"location\\":\\"Wandsworth\\",\\"number\\":669},{\\"location\\":\\"Westminster\\",\\"number\\":454},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":421},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":340},{\\"location\\":\\"Cumbria\\",\\"number\\":1109},{\\"location\\":\\"Derbyshire\\",\\"number\\":653},{\\"location\\":\\"Devon\\",\\"number\\":324},{\\"location\\":\\"East Sussex\\",\\"number\\":316},{\\"location\\":\\"Essex\\",\\"number\\":1331},{\\"location\\":\\"Gloucestershire\\",\\"number\\":549},{\\"location\\":\\"Hampshire\\",\\"number\\":1518},{\\"location\\":\\"Hertfordshire\\",\\"number\\":1267},{\\"location\\":\\"Kent\\",\\"number\\":1374},{\\"location\\":\\"Lancashire\\",\\"number\\":1314},{\\"location\\":\\"Leicestershire\\",\\"number\\":469},{\\"location\\":\\"Lincolnshire\\",\\"number\\":412},{\\"location\\":\\"Norfolk\\",\\"number\\":539},{\\"location\\":\\"Northamptonshire\\",\\"number\\":656},{\\"location\\":\\"North Yorkshire\\",\\"number\\":410},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":612},{\\"location\\":\\"Oxfordshire\\",\\"number\\":730},{\\"location\\":\\"Somerset\\",\\"number\\":177},{\\"location\\":\\"Staffordshire\\",\\"number\\":829},{\\"location\\":\\"Suffolk\\",\\"number\\":395},{\\"location\\":\\"Surrey\\",\\"number\\":1310},{\\"location\\":\\"Warwickshire\\",\\"number\\":554},{\\"location\\":\\"West Sussex\\",\\"number\\":373},{\\"location\\":\\"Worcestershire\\",\\"number\\":548},{\\"location\\":\\" Borders \\",\\"number\\":189},{\\"location\\":\\" Dumfries and Galloway \\",\\"number\\":179},{\\"location\\":\\" Fife \\",\\"number\\":356},{\\"location\\":\\" Forth Valley \\",\\"number\\":324},{\\"location\\":\\" Grampian \\",\\"number\\":261},{\\"location\\":\\" Greater Glasgow and Clyde \\",\\"number\\":1387},{\\"location\\":\\" Highland \\",\\"number\\":148},{\\"location\\":\\" Lanarkshire \\",\\"number\\":707},{\\"location\\":\\" Lothian \\",\\"number\\":856},{\\"location\\":\\" Orkney \\",\\"number\\":5},{\\"location\\":\\" Shetland \\",\\"number\\":43},{\\"location\\":\\" Tayside \\",\\"number\\":753},{\\"location\\":\\" Eileanan Siar (Western Isles) \\",\\"number\\":6},{\\"location\\":\\"Golden Jubilee National Hospital\\",\\"number\\":0},{\\"location\\":\\"Wales\\",\\"number\\":4930},{\\"location\\":\\"Northern Ireland\\",\\"number\\":1717}]'),
(74, 1586731810000, 84279, 10612, 344, 0, 198095, 0, 282374, 350575, 66330, 5912, 5297, 1806, '[{\\"location\\":\\"Hartlepool\\",\\"number\\":69},{\\"location\\":\\"Middlesbrough\\",\\"number\\":258},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":149},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":189},{\\"location\\":\\"Darlington\\",\\"number\\":130},{\\"location\\":\\"Halton\\",\\"number\\":183},{\\"location\\":\\"Warrington\\",\\"number\\":301},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":139},{\\"location\\":\\"Blackpool\\",\\"number\\":131},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":112},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":204},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":64},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":95},{\\"location\\":\\"York\\",\\"number\\":125},{\\"location\\":\\"Derby\\",\\"number\\":343},{\\"location\\":\\"Leicester\\",\\"number\\":363},{\\"location\\":\\"Rutland\\",\\"number\\":9},{\\"location\\":\\"Nottingham\\",\\"number\\":299},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":98},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":125},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":190},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":115},{\\"location\\":\\"Bristol, City of\\",\\"number\\":304},{\\"location\\":\\"North Somerset\\",\\"number\\":112},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":211},{\\"location\\":\\"Plymouth\\",\\"number\\":142},{\\"location\\":\\"Torbay\\",\\"number\\":96},{\\"location\\":\\"Swindon\\",\\"number\\":160},{\\"location\\":\\"Peterborough\\",\\"number\\":101},{\\"location\\":\\"Luton\\",\\"number\\":313},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":208},{\\"location\\":\\"Thurrock\\",\\"number\\":186},{\\"location\\":\\"Medway\\",\\"number\\":338},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":103},{\\"location\\":\\"West Berkshire\\",\\"number\\":144},{\\"location\\":\\"Reading\\",\\"number\\":159},{\\"location\\":\\"Slough\\",\\"number\\":207},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":135},{\\"location\\":\\"Wokingham\\",\\"number\\":156},{\\"location\\":\\"Milton Keynes\\",\\"number\\":273},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":204},{\\"location\\":\\"Portsmouth\\",\\"number\\":169},{\\"location\\":\\"Southampton\\",\\"number\\":228},{\\"location\\":\\"Isle of Wight\\",\\"number\\":53},{\\"location\\":\\"County Durham\\",\\"number\\":566},{\\"location\\":\\"Cheshire East\\",\\"number\\":368},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":383},{\\"location\\":\\"Shropshire\\",\\"number\\":234},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":290},{\\"location\\":\\"Wiltshire\\",\\"number\\":227},{\\"location\\":\\"Bedford\\",\\"number\\":185},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":239},{\\"location\\":\\"Northumberland\\",\\"number\\":363},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":203},{\\"location\\":\\"Dorset\\",\\"number\\":192},{\\"location\\":\\"Bolton\\",\\"number\\":321},{\\"location\\":\\"Bury\\",\\"number\\":213},{\\"location\\":\\"Manchester\\",\\"number\\":611},{\\"location\\":\\"Oldham\\",\\"number\\":306},{\\"location\\":\\"Rochdale\\",\\"number\\":251},{\\"location\\":\\"Salford\\",\\"number\\":327},{\\"location\\":\\"Stockport\\",\\"number\\":429},{\\"location\\":\\"Tameside\\",\\"number\\":263},{\\"location\\":\\"Trafford\\",\\"number\\":342},{\\"location\\":\\"Wigan\\",\\"number\\":281},{\\"location\\":\\"Knowsley\\",\\"number\\":285},{\\"location\\":\\"Liverpool\\",\\"number\\":849},{\\"location\\":\\"St. Helens\\",\\"number\\":361},{\\"location\\":\\"Sefton\\",\\"number\\":453},{\\"location\\":\\"Wirral\\",\\"number\\":489},{\\"location\\":\\"Barnsley\\",\\"number\\":309},{\\"location\\":\\"Doncaster\\",\\"number\\":198},{\\"location\\":\\"Rotherham\\",\\"number\\":338},{\\"location\\":\\"Sheffield\\",\\"number\\":1201},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":536},{\\"location\\":\\"North Tyneside\\",\\"number\\":294},{\\"location\\":\\"South Tyneside\\",\\"number\\":125},{\\"location\\":\\"Sunderland\\",\\"number\\":365},{\\"location\\":\\"Birmingham\\",\\"number\\":1774},{\\"location\\":\\"Coventry\\",\\"number\\":370},{\\"location\\":\\"Dudley\\",\\"number\\":411},{\\"location\\":\\"Sandwell\\",\\"number\\":503},{\\"location\\":\\"Solihull\\",\\"number\\":313},{\\"location\\":\\"Walsall\\",\\"number\\":481},{\\"location\\":\\"Wolverhampton\\",\\"number\\":431},{\\"location\\":\\"Bradford\\",\\"number\\":377},{\\"location\\":\\"Calderdale\\",\\"number\\":140},{\\"location\\":\\"Kirklees\\",\\"number\\":318},{\\"location\\":\\"Leeds\\",\\"number\\":628},{\\"location\\":\\"Wakefield\\",\\"number\\":300},{\\"location\\":\\"Gateshead\\",\\"number\\":264},{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":307},{\\"location\\":\\"Barnet\\",\\"number\\":913},{\\"location\\":\\"Bexley\\",\\"number\\":402},{\\"location\\":\\"Brent\\",\\"number\\":987},{\\"location\\":\\"Bromley\\",\\"number\\":724},{\\"location\\":\\"Camden\\",\\"number\\":414},{\\"location\\":\\"Croydon\\",\\"number\\":937},{\\"location\\":\\"Ealing\\",\\"number\\":689},{\\"location\\":\\"Enfield\\",\\"number\\":498},{\\"location\\":\\"Greenwich\\",\\"number\\":460},{\\"location\\":\\"Hackney and City of London\\",\\"number\\":498},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":370},{\\"location\\":\\"Haringey\\",\\"number\\":380},{\\"location\\":\\"Harrow\\",\\"number\\":633},{\\"location\\":\\"Havering\\",\\"number\\":424},{\\"location\\":\\"Hillingdon\\",\\"number\\":487},{\\"location\\":\\"Hounslow\\",\\"number\\":460},{\\"location\\":\\"Islington\\",\\"number\\":316},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":352},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":277},{\\"location\\":\\"Lambeth\\",\\"number\\":848},{\\"location\\":\\"Lewisham\\",\\"number\\":674},{\\"location\\":\\"Merton\\",\\"number\\":471},{\\"location\\":\\"Newham\\",\\"number\\":736},{\\"location\\":\\"Redbridge\\",\\"number\\":493},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":267},{\\"location\\":\\"Southwark\\",\\"number\\":895},{\\"location\\":\\"Sutton\\",\\"number\\":413},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":473},{\\"location\\":\\"Waltham Forest\\",\\"number\\":518},{\\"location\\":\\"Wandsworth\\",\\"number\\":690},{\\"location\\":\\"Westminster\\",\\"number\\":473},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":454},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":357},{\\"location\\":\\"Cumbria\\",\\"number\\":1165},{\\"location\\":\\"Derbyshire\\",\\"number\\":696},{\\"location\\":\\"Devon\\",\\"number\\":355},{\\"location\\":\\"East Sussex\\",\\"number\\":335},{\\"location\\":\\"Essex\\",\\"number\\":1418},{\\"location\\":\\"Gloucestershire\\",\\"number\\":598},{\\"location\\":\\"Hampshire\\",\\"number\\":1573},{\\"location\\":\\"Hertfordshire\\",\\"number\\":1344},{\\"location\\":\\"Kent\\",\\"number\\":1490},{\\"location\\":\\"Lancashire\\",\\"number\\":1453},{\\"location\\":\\"Leicestershire\\",\\"number\\":507},{\\"location\\":\\"Lincolnshire\\",\\"number\\":413},{\\"location\\":\\"Norfolk\\",\\"number\\":595},{\\"location\\":\\"Northamptonshire\\",\\"number\\":688},{\\"location\\":\\"North Yorkshire\\",\\"number\\":436},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":635},{\\"location\\":\\"Oxfordshire\\",\\"number\\":784},{\\"location\\":\\"Somerset\\",\\"number\\":184},{\\"location\\":\\"Staffordshire\\",\\"number\\":876},{\\"location\\":\\"Suffolk\\",\\"number\\":422},{\\"location\\":\\"Surrey\\",\\"number\\":1334},{\\"location\\":\\"Warwickshire\\",\\"number\\":573},{\\"location\\":\\"West Sussex\\",\\"number\\":387},{\\"location\\":\\"Worcestershire\\",\\"number\\":578},{\\"location\\":\\"Borders\\",\\"number\\":199},{\\"location\\":\\"Dumfries and Galloway\\",\\"number\\":186},{\\"location\\":\\"Fife\\",\\"number\\":379},{\\"location\\":\\"Forth Valley\\",\\"number\\":337},{\\"location\\":\\"Grampian\\",\\"number\\":291},{\\"location\\":\\"Greater Glasgow and Clyde\\",\\"number\\":1449},{\\"location\\":\\"Highland\\",\\"number\\":151},{\\"location\\":\\"Lanarkshire\\",\\"number\\":758},{\\"location\\":\\"Lothian\\",\\"number\\":915},{\\"location\\":\\"Orkney\\",\\"number\\":5},{\\"location\\":\\"Shetland\\",\\"number\\":43},{\\"location\\":\\"Tayside\\",\\"number\\":803},{\\"location\\":\\"Eileanan Siar (Western Isles)\\",\\"number\\":6},{\\"location\\":\\"Golden Jubilee National Hospital\\",\\"number\\":0},{\\"location\\":\\"Wales\\",\\"number\\":5297},{\\"location\\":\\"Northern Ireland\\",\\"number\\":1806}]'),
(75, 1586818210000, 88621, 11329, 344, 0, 202099, 0, 290720, 367667, 69329, 6067, 5610, 1882, '[{\\"location\\":\\"Hartlepool\\",\\"number\\":69},{\\"location\\":\\"Middlesbrough\\",\\"number\\":274},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":157},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":192},{\\"location\\":\\"Darlington\\",\\"number\\":130},{\\"location\\":\\"Halton\\",\\"number\\":194},{\\"location\\":\\"Warrington\\",\\"number\\":326},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":152},{\\"location\\":\\"Blackpool\\",\\"number\\":149},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":135},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":220},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":75},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":125},{\\"location\\":\\"York\\",\\"number\\":127},{\\"location\\":\\"Derby\\",\\"number\\":354},{\\"location\\":\\"Leicester\\",\\"number\\":384},{\\"location\\":\\"Rutland\\",\\"number\\":9},{\\"location\\":\\"Nottingham\\",\\"number\\":313},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":104},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":129},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":200},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":130},{\\"location\\":\\"Bristol, City of\\",\\"number\\":333},{\\"location\\":\\"North Somerset\\",\\"number\\":115},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":220},{\\"location\\":\\"Plymouth\\",\\"number\\":142},{\\"location\\":\\"Torbay\\",\\"number\\":98},{\\"location\\":\\"Swindon\\",\\"number\\":177},{\\"location\\":\\"Peterborough\\",\\"number\\":102},{\\"location\\":\\"Luton\\",\\"number\\":334},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":214},{\\"location\\":\\"Thurrock\\",\\"number\\":189},{\\"location\\":\\"Medway\\",\\"number\\":352},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":104},{\\"location\\":\\"West Berkshire\\",\\"number\\":146},{\\"location\\":\\"Reading\\",\\"number\\":161},{\\"location\\":\\"Slough\\",\\"number\\":207},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":138},{\\"location\\":\\"Wokingham\\",\\"number\\":157},{\\"location\\":\\"Milton Keynes\\",\\"number\\":286},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":213},{\\"location\\":\\"Portsmouth\\",\\"number\\":182},{\\"location\\":\\"Southampton\\",\\"number\\":230},{\\"location\\":\\"Isle of Wight\\",\\"number\\":56},{\\"location\\":\\"County Durham\\",\\"number\\":573},{\\"location\\":\\"Cheshire East\\",\\"number\\":386},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":410},{\\"location\\":\\"Shropshire\\",\\"number\\":240},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":301},{\\"location\\":\\"Wiltshire\\",\\"number\\":234},{\\"location\\":\\"Bedford\\",\\"number\\":208},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":256},{\\"location\\":\\"Northumberland\\",\\"number\\":366},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":216},{\\"location\\":\\"Dorset\\",\\"number\\":198},{\\"location\\":\\"Bolton\\",\\"number\\":364},{\\"location\\":\\"Bury\\",\\"number\\":233},{\\"location\\":\\"Manchester\\",\\"number\\":643},{\\"location\\":\\"Oldham\\",\\"number\\":332},{\\"location\\":\\"Rochdale\\",\\"number\\":267},{\\"location\\":\\"Salford\\",\\"number\\":345},{\\"location\\":\\"Stockport\\",\\"number\\":464},{\\"location\\":\\"Tameside\\",\\"number\\":276},{\\"location\\":\\"Trafford\\",\\"number\\":365},{\\"location\\":\\"Wigan\\",\\"number\\":296},{\\"location\\":\\"Knowsley\\",\\"number\\":293},{\\"location\\":\\"Liverpool\\",\\"number\\":882},{\\"location\\":\\"St. Helens\\",\\"number\\":369},{\\"location\\":\\"Sefton\\",\\"number\\":469},{\\"location\\":\\"Wirral\\",\\"number\\":526},{\\"location\\":\\"Barnsley\\",\\"number\\":335},{\\"location\\":\\"Doncaster\\",\\"number\\":202},{\\"location\\":\\"Rotherham\\",\\"number\\":351},{\\"location\\":\\"Sheffield\\",\\"number\\":1237},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":545},{\\"location\\":\\"North Tyneside\\",\\"number\\":297},{\\"location\\":\\"South Tyneside\\",\\"number\\":126},{\\"location\\":\\"Sunderland\\",\\"number\\":365},{\\"location\\":\\"Birmingham\\",\\"number\\":1853},{\\"location\\":\\"Coventry\\",\\"number\\":393},{\\"location\\":\\"Dudley\\",\\"number\\":418},{\\"location\\":\\"Sandwell\\",\\"number\\":535},{\\"location\\":\\"Solihull\\",\\"number\\":344},{\\"location\\":\\"Walsall\\",\\"number\\":486},{\\"location\\":\\"Wolverhampton\\",\\"number\\":447},{\\"location\\":\\"Bradford\\",\\"number\\":408},{\\"location\\":\\"Calderdale\\",\\"number\\":150},{\\"location\\":\\"Kirklees\\",\\"number\\":327},{\\"location\\":\\"Leeds\\",\\"number\\":677},{\\"location\\":\\"Wakefield\\",\\"number\\":319},{\\"location\\":\\"Gateshead\\",\\"number\\":265},{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":316},{\\"location\\":\\"Barnet\\",\\"number\\":937},{\\"location\\":\\"Bexley\\",\\"number\\":415},{\\"location\\":\\"Brent\\",\\"number\\":1018},{\\"location\\":\\"Bromley\\",\\"number\\":740},{\\"location\\":\\"Camden\\",\\"number\\":421},{\\"location\\":\\"Croydon\\",\\"number\\":961},{\\"location\\":\\"Ealing\\",\\"number\\":730},{\\"location\\":\\"Enfield\\",\\"number\\":521},{\\"location\\":\\"Greenwich\\",\\"number\\":470},{\\"location\\":\\"Hackney and City of London\\",\\"number\\":509},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":376},{\\"location\\":\\"Haringey\\",\\"number\\":393},{\\"location\\":\\"Harrow\\",\\"number\\":658},{\\"location\\":\\"Havering\\",\\"number\\":442},{\\"location\\":\\"Hillingdon\\",\\"number\\":504},{\\"location\\":\\"Hounslow\\",\\"number\\":477},{\\"location\\":\\"Islington\\",\\"number\\":320},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":358},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":289},{\\"location\\":\\"Lambeth\\",\\"number\\":877},{\\"location\\":\\"Lewisham\\",\\"number\\":689},{\\"location\\":\\"Merton\\",\\"number\\":479},{\\"location\\":\\"Newham\\",\\"number\\":762},{\\"location\\":\\"Redbridge\\",\\"number\\":498},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":273},{\\"location\\":\\"Southwark\\",\\"number\\":934},{\\"location\\":\\"Sutton\\",\\"number\\":417},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":483},{\\"location\\":\\"Waltham Forest\\",\\"number\\":536},{\\"location\\":\\"Wandsworth\\",\\"number\\":714},{\\"location\\":\\"Westminster\\",\\"number\\":483},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":478},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":373},{\\"location\\":\\"Cumbria\\",\\"number\\":1218},{\\"location\\":\\"Derbyshire\\",\\"number\\":722},{\\"location\\":\\"Devon\\",\\"number\\":374},{\\"location\\":\\"East Sussex\\",\\"number\\":351},{\\"location\\":\\"Essex\\",\\"number\\":1484},{\\"location\\":\\"Gloucestershire\\",\\"number\\":644},{\\"location\\":\\"Hampshire\\",\\"number\\":1600},{\\"location\\":\\"Hertfordshire\\",\\"number\\":1441},{\\"location\\":\\"Kent\\",\\"number\\":1552},{\\"location\\":\\"Lancashire\\",\\"number\\":1532},{\\"location\\":\\"Leicestershire\\",\\"number\\":540},{\\"location\\":\\"Lincolnshire\\",\\"number\\":464},{\\"location\\":\\"Norfolk\\",\\"number\\":647},{\\"location\\":\\"Northamptonshire\\",\\"number\\":715},{\\"location\\":\\"North Yorkshire\\",\\"number\\":456},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":659},{\\"location\\":\\"Oxfordshire\\",\\"number\\":857},{\\"location\\":\\"Somerset\\",\\"number\\":206},{\\"location\\":\\"Staffordshire\\",\\"number\\":925},{\\"location\\":\\"Suffolk\\",\\"number\\":458},{\\"location\\":\\"Surrey\\",\\"number\\":1344},{\\"location\\":\\"Warwickshire\\",\\"number\\":626},{\\"location\\":\\"West Sussex\\",\\"number\\":398},{\\"location\\":\\"Worcestershire\\",\\"number\\":605},{\\"location\\":\\"Ayrshire and Arran\\",\\"number\\":0},{\\"location\\":\\"Borders\\",\\"number\\":204},{\\"location\\":\\"Dumfries and Galloway\\",\\"number\\":192},{\\"location\\":\\"Fife\\",\\"number\\":383},{\\"location\\":\\"Forth Valley\\",\\"number\\":352},{\\"location\\":\\"Grampian\\",\\"number\\":313},{\\"location\\":\\"Greater Glasgow and Clyde\\",\\"number\\":1486},{\\"location\\":\\"Highland\\",\\"number\\":163},{\\"location\\":\\"Lanarkshire\\",\\"number\\":784},{\\"location\\":\\"Lothian\\",\\"number\\":932},{\\"location\\":\\"Orkney\\",\\"number\\":5},{\\"location\\":\\"Shetland\\",\\"number\\":45},{\\"location\\":\\"Tayside\\",\\"number\\":0},{\\"location\\":\\"Eileanan Siar (Western Isles)\\",\\"number\\":6},{\\"location\\":\\"Golden Jubilee National Hospital\\",\\"number\\":0},{\\"location\\":\\"Wales\\",\\"number\\":5610},{\\"location\\":\\"Northern Ireland\\",\\"number\\":1882}]'),
(76, 1586904610000, 93873, 12107, 344, 0, 208726, 0, 302599, 382650, 73183, 5848, 5610, 1967, '[{\\"location\\":\\"Barnet\\",\\"number\\":961},{\\"location\\":\\"Barnsley\\",\\"number\\":372},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":131},{\\"location\\":\\"Bedford\\",\\"number\\":239},{\\"location\\":\\"Bexley\\",\\"number\\":431},{\\"location\\":\\"Birmingham\\",\\"number\\":1884},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":164},{\\"location\\":\\"Blackpool\\",\\"number\\":162},{\\"location\\":\\"Bolton\\",\\"number\\":400},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":238},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":107},{\\"location\\":\\"Bradford\\",\\"number\\":467},{\\"location\\":\\"Brent\\",\\"number\\":1037},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":218},{\\"location\\":\\"Bristol, City of\\",\\"number\\":354},{\\"location\\":\\"Bromley\\",\\"number\\":766},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":492},{\\"location\\":\\"Bury\\",\\"number\\":253},{\\"location\\":\\"Calderdale\\",\\"number\\":155},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":399},{\\"location\\":\\"Camden\\",\\"number\\":435},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":289},{\\"location\\":\\"Cheshire East\\",\\"number\\":433},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":423},{\\"location\\":\\"City of London\\",\\"number\\":13},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":321},{\\"location\\":\\"County Durham\\",\\"number\\":690},{\\"location\\":\\"Coventry\\",\\"number\\":399},{\\"location\\":\\"Croydon\\",\\"number\\":982},{\\"location\\":\\"Cumbria\\",\\"number\\":1236},{\\"location\\":\\"Darlington\\",\\"number\\":143},{\\"location\\":\\"Derby\\",\\"number\\":367},{\\"location\\":\\"Derbyshire\\",\\"number\\":755},{\\"location\\":\\"Devon\\",\\"number\\":396},{\\"location\\":\\"Doncaster\\",\\"number\\":208},{\\"location\\":\\"Dorset\\",\\"number\\":203},{\\"location\\":\\"Dudley\\",\\"number\\":459},{\\"location\\":\\"Ealing\\",\\"number\\":750},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":223},{\\"location\\":\\"East Sussex\\",\\"number\\":359},{\\"location\\":\\"Enfield\\",\\"number\\":552},{\\"location\\":\\"Essex\\",\\"number\\":1562},{\\"location\\":\\"Gateshead\\",\\"number\\":445},{\\"location\\":\\"Gloucestershire\\",\\"number\\":701},{\\"location\\":\\"Greenwich\\",\\"number\\":480},{\\"location\\":\\"Hackney\\",\\"number\\":503},{\\"location\\":\\"Halton\\",\\"number\\":207},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":387},{\\"location\\":\\"Hampshire\\",\\"number\\":1678},{\\"location\\":\\"Haringey\\",\\"number\\":410},{\\"location\\":\\"Harrow\\",\\"number\\":666},{\\"location\\":\\"Hartlepool\\",\\"number\\":74},{\\"location\\":\\"Havering\\",\\"number\\":465},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":113},{\\"location\\":\\"Hertfordshire\\",\\"number\\":1523},{\\"location\\":\\"Hillingdon\\",\\"number\\":520},{\\"location\\":\\"Hounslow\\",\\"number\\":485},{\\"location\\":\\"Isle of Wight\\",\\"number\\":53},{\\"location\\":\\"Islington\\",\\"number\\":326},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":363},{\\"location\\":\\"Kent\\",\\"number\\":1689},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":135},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":294},{\\"location\\":\\"Kirklees\\",\\"number\\":354},{\\"location\\":\\"Knowsley\\",\\"number\\":316},{\\"location\\":\\"Lambeth\\",\\"number\\":908},{\\"location\\":\\"Lancashire\\",\\"number\\":1632},{\\"location\\":\\"Leeds\\",\\"number\\":734},{\\"location\\":\\"Leicester\\",\\"number\\":409},{\\"location\\":\\"Leicestershire\\",\\"number\\":553},{\\"location\\":\\"Lewisham\\",\\"number\\":700},{\\"location\\":\\"Lincolnshire\\",\\"number\\":480},{\\"location\\":\\"Liverpool\\",\\"number\\":946},{\\"location\\":\\"Luton\\",\\"number\\":367},{\\"location\\":\\"Manchester\\",\\"number\\":694},{\\"location\\":\\"Medway\\",\\"number\\":389},{\\"location\\":\\"Merton\\",\\"number\\":488},{\\"location\\":\\"Middlesbrough\\",\\"number\\":291},{\\"location\\":\\"Milton Keynes\\",\\"number\\":292},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":592},{\\"location\\":\\"Newham\\",\\"number\\":775},{\\"location\\":\\"Norfolk\\",\\"number\\":699},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":79},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":124},{\\"location\\":\\"North Somerset\\",\\"number\\":120},{\\"location\\":\\"North Tyneside\\",\\"number\\":312},{\\"location\\":\\"North Yorkshire\\",\\"number\\":486},{\\"location\\":\\"Northamptonshire\\",\\"number\\":748},{\\"location\\":\\"Northumberland\\",\\"number\\":420},{\\"location\\":\\"Nottingham\\",\\"number\\":330},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":678},{\\"location\\":\\"Oldham\\",\\"number\\":359},{\\"location\\":\\"Oxfordshire\\",\\"number\\":890},{\\"location\\":\\"Peterborough\\",\\"number\\":103},{\\"location\\":\\"Plymouth\\",\\"number\\":150},{\\"location\\":\\"Portsmouth\\",\\"number\\":189},{\\"location\\":\\"Reading\\",\\"number\\":163},{\\"location\\":\\"Redbridge\\",\\"number\\":512},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":173},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":281},{\\"location\\":\\"Rochdale\\",\\"number\\":271},{\\"location\\":\\"Rotherham\\",\\"number\\":364},{\\"location\\":\\"Rutland\\",\\"number\\":11},{\\"location\\":\\"Salford\\",\\"number\\":362},{\\"location\\":\\"Sandwell\\",\\"number\\":555},{\\"location\\":\\"Sefton\\",\\"number\\":508},{\\"location\\":\\"Sheffield\\",\\"number\\":1316},{\\"location\\":\\"Shropshire\\",\\"number\\":252},{\\"location\\":\\"Slough\\",\\"number\\":209},{\\"location\\":\\"Solihull\\",\\"number\\":358},{\\"location\\":\\"Somerset\\",\\"number\\":212},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":219},{\\"location\\":\\"South Tyneside\\",\\"number\\":217},{\\"location\\":\\"Southampton\\",\\"number\\":261},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":220},{\\"location\\":\\"Southwark\\",\\"number\\":957},{\\"location\\":\\"St. Helens\\",\\"number\\":389},{\\"location\\":\\"Staffordshire\\",\\"number\\":970},{\\"location\\":\\"Stockport\\",\\"number\\":491},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":201},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":210},{\\"location\\":\\"Suffolk\\",\\"number\\":493},{\\"location\\":\\"Sunderland\\",\\"number\\":647},{\\"location\\":\\"Surrey\\",\\"number\\":1441},{\\"location\\":\\"Sutton\\",\\"number\\":427},{\\"location\\":\\"Swindon\\",\\"number\\":187},{\\"location\\":\\"Tameside\\",\\"number\\":285},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":137},{\\"location\\":\\"Thurrock\\",\\"number\\":195},{\\"location\\":\\"Torbay\\",\\"number\\":101},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":496},{\\"location\\":\\"Trafford\\",\\"number\\":382},{\\"location\\":\\"Wakefield\\",\\"number\\":335},{\\"location\\":\\"Walsall\\",\\"number\\":574},{\\"location\\":\\"Waltham Forest\\",\\"number\\":553},{\\"location\\":\\"Wandsworth\\",\\"number\\":730},{\\"location\\":\\"Warrington\\",\\"number\\":343},{\\"location\\":\\"Warwickshire\\",\\"number\\":649},{\\"location\\":\\"West Berkshire\\",\\"number\\":148},{\\"location\\":\\"West Sussex\\",\\"number\\":459},{\\"location\\":\\"Westminster\\",\\"number\\":491},{\\"location\\":\\"Wigan\\",\\"number\\":320},{\\"location\\":\\"Wiltshire\\",\\"number\\":245},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":142},{\\"location\\":\\"Wirral\\",\\"number\\":560},{\\"location\\":\\"Wokingham\\",\\"number\\":155},{\\"location\\":\\"Wolverhampton\\",\\"number\\":462},{\\"location\\":\\"Worcestershire\\",\\"number\\":634},{\\"location\\":\\"York\\",\\"number\\":129},{\\"location\\":\\"Ayrshire and Arran\\",\\"number\\":416},{\\"location\\":\\"Borders\\",\\"number\\":208},{\\"location\\":\\"Dumfries and Galloway\\",\\"number\\":199},{\\"location\\":\\"Fife\\",\\"number\\":397},{\\"location\\":\\"Forth Valley\\",\\"number\\":367},{\\"location\\":\\"Grampian\\",\\"number\\":335},{\\"location\\":\\"Greater Glasgow and Clyde\\",\\"number\\":1575},{\\"location\\":\\"Highland\\",\\"number\\":168},{\\"location\\":\\"Lanarkshire\\",\\"number\\":822},{\\"location\\":\\"Lothian\\",\\"number\\":989},{\\"location\\":\\"Orkney\\",\\"number\\":5},{\\"location\\":\\"Shetland\\",\\"number\\":45},{\\"location\\":\\"Tayside\\",\\"number\\":826},{\\"location\\":\\"Eileanan Siar (Western Isles)\\",\\"number\\":6},{\\"location\\":\\"Golden Jubilee National Hospital\\",\\"number\\":0},{\\"location\\":\\"Wales\\",\\"number\\":5610},{\\"location\\":\\"Northern Ireland\\",\\"number\\":1882}]'),
(77, 1586991010000, 98476, 12868, 344, 0, 215293, 0, 313769, 398916, 76371, 6748, 6118, 2088, '[{\\"location\\":\\"Barking and Dagenham\\",\\"number\\":347},{\\"location\\":\\"Barnet\\",\\"number\\":977},{\\"location\\":\\"Barnsley\\",\\"number\\":379},{\\"location\\":\\"Bath and North East Somerset\\",\\"number\\":139},{\\"location\\":\\"Bedford\\",\\"number\\":239},{\\"location\\":\\"Bexley\\",\\"number\\":446},{\\"location\\":\\"Birmingham\\",\\"number\\":1931},{\\"location\\":\\"Blackburn with Darwen\\",\\"number\\":173},{\\"location\\":\\"Blackpool\\",\\"number\\":174},{\\"location\\":\\"Bolton\\",\\"number\\":424},{\\"location\\":\\"Bournemouth, Christchurch and Poole\\",\\"number\\":255},{\\"location\\":\\"Bracknell Forest\\",\\"number\\":134},{\\"location\\":\\"Bradford\\",\\"number\\":493},{\\"location\\":\\"Brent\\",\\"number\\":1063},{\\"location\\":\\"Brighton and Hove\\",\\"number\\":227},{\\"location\\":\\"Bristol, City of\\",\\"number\\":369},{\\"location\\":\\"Bromley\\",\\"number\\":785},{\\"location\\":\\"Buckinghamshire\\",\\"number\\":521},{\\"location\\":\\"Bury\\",\\"number\\":256},{\\"location\\":\\"Calderdale\\",\\"number\\":160},{\\"location\\":\\"Cambridgeshire\\",\\"number\\":408},{\\"location\\":\\"Camden\\",\\"number\\":443},{\\"location\\":\\"Central Bedfordshire\\",\\"number\\":291},{\\"location\\":\\"Cheshire East\\",\\"number\\":449},{\\"location\\":\\"Cheshire West and Chester\\",\\"number\\":461},{\\"location\\":\\"City of London\\",\\"number\\":13},{\\"location\\":\\"Cornwall and Isles of Scilly\\",\\"number\\":339},{\\"location\\":\\"County Durham\\",\\"number\\":728},{\\"location\\":\\"Coventry\\",\\"number\\":408},{\\"location\\":\\"Croydon\\",\\"number\\":1006},{\\"location\\":\\"Cumbria\\",\\"number\\":1278},{\\"location\\":\\"Darlington\\",\\"number\\":151},{\\"location\\":\\"Derby\\",\\"number\\":374},{\\"location\\":\\"Derbyshire\\",\\"number\\":777},{\\"location\\":\\"Devon\\",\\"number\\":426},{\\"location\\":\\"Doncaster\\",\\"number\\":210},{\\"location\\":\\"Dorset\\",\\"number\\":209},{\\"location\\":\\"Dudley\\",\\"number\\":475},{\\"location\\":\\"Ealing\\",\\"number\\":772},{\\"location\\":\\"East Riding of Yorkshire\\",\\"number\\":248},{\\"location\\":\\"East Sussex\\",\\"number\\":373},{\\"location\\":\\"Enfield\\",\\"number\\":562},{\\"location\\":\\"Essex\\",\\"number\\":1589},{\\"location\\":\\"Gateshead\\",\\"number\\":466},{\\"location\\":\\"Gloucestershire\\",\\"number\\":737},{\\"location\\":\\"Greenwich\\",\\"number\\":503},{\\"location\\":\\"Hackney\\",\\"number\\":516},{\\"location\\":\\"Halton\\",\\"number\\":215},{\\"location\\":\\"Hammersmith and Fulham\\",\\"number\\":395},{\\"location\\":\\"Hampshire\\",\\"number\\":1802},{\\"location\\":\\"Haringey\\",\\"number\\":419},{\\"location\\":\\"Harrow\\",\\"number\\":684},{\\"location\\":\\"Hartlepool\\",\\"number\\":75},{\\"location\\":\\"Havering\\",\\"number\\":491},{\\"location\\":\\"Herefordshire, County of\\",\\"number\\":122},{\\"location\\":\\"Hertfordshire\\",\\"number\\":1552},{\\"location\\":\\"Hillingdon\\",\\"number\\":530},{\\"location\\":\\"Hounslow\\",\\"number\\":495},{\\"location\\":\\"Isle of Wight\\",\\"number\\":55},{\\"location\\":\\"Islington\\",\\"number\\":331},{\\"location\\":\\"Kensington and Chelsea\\",\\"number\\":367},{\\"location\\":\\"Kent\\",\\"number\\":1802},{\\"location\\":\\"Kingston upon Hull, City of\\",\\"number\\":150},{\\"location\\":\\"Kingston upon Thames\\",\\"number\\":301},{\\"location\\":\\"Kirklees\\",\\"number\\":369},{\\"location\\":\\"Knowsley\\",\\"number\\":329},{\\"location\\":\\"Lambeth\\",\\"number\\":926},{\\"location\\":\\"Lancashire\\",\\"number\\":1692},{\\"location\\":\\"Leeds\\",\\"number\\":779},{\\"location\\":\\"Leicester\\",\\"number\\":416},{\\"location\\":\\"Leicestershire\\",\\"number\\":564},{\\"location\\":\\"Lewisham\\",\\"number\\":721},{\\"location\\":\\"Lincolnshire\\",\\"number\\":503},{\\"location\\":\\"Liverpool\\",\\"number\\":979},{\\"location\\":\\"Luton\\",\\"number\\":367},{\\"location\\":\\"Manchester\\",\\"number\\":724},{\\"location\\":\\"Medway\\",\\"number\\":409},{\\"location\\":\\"Merton\\",\\"number\\":504},{\\"location\\":\\"Middlesbrough\\",\\"number\\":302},{\\"location\\":\\"Milton Keynes\\",\\"number\\":316},{\\"location\\":\\"Newcastle upon Tyne\\",\\"number\\":611},{\\"location\\":\\"Newham\\",\\"number\\":796},{\\"location\\":\\"Norfolk\\",\\"number\\":754},{\\"location\\":\\"North East Lincolnshire\\",\\"number\\":84},{\\"location\\":\\"North Lincolnshire\\",\\"number\\":136},{\\"location\\":\\"North Somerset\\",\\"number\\":124},{\\"location\\":\\"North Tyneside\\",\\"number\\":321},{\\"location\\":\\"North Yorkshire\\",\\"number\\":532},{\\"location\\":\\"Northamptonshire\\",\\"number\\":767},{\\"location\\":\\"Northumberland\\",\\"number\\":450},{\\"location\\":\\"Nottingham\\",\\"number\\":334},{\\"location\\":\\"Nottinghamshire\\",\\"number\\":693},{\\"location\\":\\"Oldham\\",\\"number\\":370},{\\"location\\":\\"Oxfordshire\\",\\"number\\":948},{\\"location\\":\\"Peterborough\\",\\"number\\":108},{\\"location\\":\\"Plymouth\\",\\"number\\":163},{\\"location\\":\\"Portsmouth\\",\\"number\\":193},{\\"location\\":\\"Reading\\",\\"number\\":224},{\\"location\\":\\"Redbridge\\",\\"number\\":534},{\\"location\\":\\"Redcar and Cleveland\\",\\"number\\":184},{\\"location\\":\\"Richmond upon Thames\\",\\"number\\":286},{\\"location\\":\\"Rochdale\\",\\"number\\":275},{\\"location\\":\\"Rotherham\\",\\"number\\":383},{\\"location\\":\\"Rutland\\",\\"number\\":12},{\\"location\\":\\"Salford\\",\\"number\\":368},{\\"location\\":\\"Sandwell\\",\\"number\\":593},{\\"location\\":\\"Sefton\\",\\"number\\":532},{\\"location\\":\\"Sheffield\\",\\"number\\":1365},{\\"location\\":\\"Shropshire\\",\\"number\\":265},{\\"location\\":\\"Slough\\",\\"number\\":256},{\\"location\\":\\"Solihull\\",\\"number\\":364},{\\"location\\":\\"Somerset\\",\\"number\\":233},{\\"location\\":\\"South Gloucestershire\\",\\"number\\":222},{\\"location\\":\\"South Tyneside\\",\\"number\\":233},{\\"location\\":\\"Southampton\\",\\"number\\":283},{\\"location\\":\\"Southend-on-Sea\\",\\"number\\":224},{\\"location\\":\\"Southwark\\",\\"number\\":972},{\\"location\\":\\"St. Helens\\",\\"number\\":399},{\\"location\\":\\"Staffordshire\\",\\"number\\":1008},{\\"location\\":\\"Stockport\\",\\"number\\":511},{\\"location\\":\\"Stockton-on-Tees\\",\\"number\\":209},{\\"location\\":\\"Stoke-on-Trent\\",\\"number\\":230},{\\"location\\":\\"Suffolk\\",\\"number\\":499},{\\"location\\":\\"Sunderland\\",\\"number\\":690},{\\"location\\":\\"Surrey\\",\\"number\\":1649},{\\"location\\":\\"Sutton\\",\\"number\\":436},{\\"location\\":\\"Swindon\\",\\"number\\":199},{\\"location\\":\\"Tameside\\",\\"number\\":308},{\\"location\\":\\"Telford and Wrekin\\",\\"number\\":139},{\\"location\\":\\"Thurrock\\",\\"number\\":201},{\\"location\\":\\"Torbay\\",\\"number\\":103},{\\"location\\":\\"Tower Hamlets\\",\\"number\\":509},{\\"location\\":\\"Trafford\\",\\"number\\":388},{\\"location\\":\\"Wakefield\\",\\"number\\":353},{\\"location\\":\\"Walsall\\",\\"number\\":582},{\\"location\\":\\"Waltham Forest\\",\\"number\\":574},{\\"location\\":\\"Wandsworth\\",\\"number\\":748},{\\"location\\":\\"Warrington\\",\\"number\\":363},{\\"location\\":\\"Warwickshire\\",\\"number\\":673},{\\"location\\":\\"West Berkshire\\",\\"number\\":180},{\\"location\\":\\"West Sussex\\",\\"number\\":487},{\\"location\\":\\"Westminster\\",\\"number\\":499},{\\"location\\":\\"Wigan\\",\\"number\\":330},{\\"location\\":\\"Wiltshire\\",\\"number\\":256},{\\"location\\":\\"Windsor and Maidenhead\\",\\"number\\":162},{\\"location\\":\\"Wirral\\",\\"number\\":593},{\\"location\\":\\"Wokingham\\",\\"number\\":193},{\\"location\\":\\"Wolverhampton\\",\\"number\\":473},{\\"location\\":\\"Worcestershire\\",\\"number\\":693},{\\"location\\":\\"York\\",\\"number\\":149},{\\"location\\":\\"Ayrshire and Arran\\",\\"number\\":457},{\\"location\\":\\"Borders\\",\\"number\\":215},{\\"location\\":\\"Dumfries and Galloway\\",\\"number\\":207},{\\"location\\":\\"Fife\\",\\"number\\":424},{\\"location\\":\\"Forth Valley\\",\\"number\\":380},{\\"location\\":\\"Grampian\\",\\"number\\":357},{\\"location\\":\\"Greater Glasgow and Clyde\\",\\"number\\":1661},{\\"location\\":\\"Highland\\",\\"number\\":180},{\\"location\\":\\"Lanarkshire\\",\\"number\\":873},{\\"location\\":\\"Lothian\\",\\"number\\":1040},{\\"location\\":\\"Orkney\\",\\"number\\":5},{\\"location\\":\\"Shetland\\",\\"number\\":45},{\\"location\\":\\"Tayside\\",\\"number\\":898},{\\"location\\":\\"Eileanan Siar (Western Isles)\\",\\"number\\":6},{\\"location\\":\\"Golden Jubilee National Hospital\\",\\"number\\":0},{\\"location\\":\\"Cardiff\\",\\"number\\":1129},{\\"location\\":\\"Rhondda Cynon Taff\\",\\"number\\":623},{\\"location\\":\\"Swansea\\",\\"number\\":610},{\\"location\\":\\"Newport\\",\\"number\\":554},{\\"location\\":\\"Caerphilly\\",\\"number\\":417},{\\"location\\":\\"Vale of Glamorgan\\",\\"number\\":342},{\\"location\\":\\"Neath Port Talbot\\",\\"number\\":286},{\\"location\\":\\"Carmarthenshire\\",\\"number\\":285},{\\"location\\":\\"Bridgend\\",\\"number\\":233},{\\"location\\":\\"Torfaen\\",\\"number\\":231},{\\"location\\":\\"Monmouthshire\\",\\"number\\":185},{\\"location\\":\\"Blaenau Gwent\\",\\"number\\":183},{\\"location\\":\\"Merthyr Tydfil\\",\\"number\\":132},{\\"location\\":\\"Flintshire\\",\\"number\\":129},{\\"location\\":\\"Pembrokeshire\\",\\"number\\":128},{\\"location\\":\\"Denbighshire\\",\\"number\\":124},{\\"location\\":\\"Wrexham\\",\\"number\\":104},{\\"location\\":\\"Powys\\",\\"number\\":96},{\\"location\\":\\"Gwynedd\\",\\"number\\":82},{\\"location\\":\\"Conwy\\",\\"number\\":74},{\\"location\\":\\"Ceredigion\\",\\"number\\":30},{\\"location\\":\\"Northern Ireland\\",\\"number\\":2088}]');
-- --------------------------------------------------------
--
-- Table structure for table `user`
--
CREATE TABLE IF NOT EXISTS `user` (
`id` int(11) NOT NULL,
`name` varchar(128) DEFAULT NULL,
`psw` varchar(512) DEFAULT NULL,
`token` varchar(512) DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `user`
--
INSERT INTO `user` (`id`, `name`, `psw`, `token`) VALUES
(1, 'jeff', '<PSW_MD5>', '<TOKEN_MD5>');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `current`
--
ALTER TABLE `current`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `current_shadow`
--
ALTER TABLE `current_shadow`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `err`
--
ALTER TABLE `err`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `geo`
--
ALTER TABLE `geo`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `history`
--
ALTER TABLE `history`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `user`
--
ALTER TABLE `user`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `current`
--
ALTER TABLE `current`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `current_shadow`
--
ALTER TABLE `current_shadow`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `err`
--
ALTER TABLE `err`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=289;
--
-- AUTO_INCREMENT for table `geo`
--
ALTER TABLE `geo`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=221;
--
-- AUTO_INCREMENT for table `history`
--
ALTER TABLE `history`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=78;
--
-- AUTO_INCREMENT for table `user`
--
ALTER TABLE `user`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;