-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathiso14819-2-events.h
12433 lines (12429 loc) · 519 KB
/
iso14819-2-events.h
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
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* ISO 14819-2 header file: event list entries
* DO NOT EDIT: automatically generated by gentables.py from CSV files
*/
#ifndef _ISO14819_2_EVENTS_H_INCLUDED
#define _ISO14819_2_EVENTS_H_INCLUDED
#ifdef WITH_RDS_TMC_EVENTS
#if defined(WITH_RDS_TMC_EVENT_STRINGS_FLASH)
const char Event_S_0001[] PROGMEM = "traffic problem";
const char Event_S_0002[] PROGMEM = "queuing traffic (with average speeds %s). Danger of stationary traffic";
const char Event_S_000B[] PROGMEM = "overheight warning system triggered";
const char Event_S_000C[] PROGMEM = "(%s) accident(s), traffic being directed around accident area";
const char Event_S_0010[] PROGMEM = "closed, rescue and recovery work in progress";
const char Event_S_0014[] PROGMEM = "service area overcrowded, drive to another service area";
const char Event_S_0016[] PROGMEM = "service area, fuel station closed";
const char Event_S_0017[] PROGMEM = "service area, restaurant closed";
const char Event_S_0018[] PROGMEM = "bridge closed";
const char Event_S_0019[] PROGMEM = "tunnel closed";
const char Event_S_001A[] PROGMEM = "bridge blocked";
const char Event_S_001B[] PROGMEM = "tunnel blocked";
const char Event_S_001C[] PROGMEM = "road closed intermittently";
const char Event_S_0024[] PROGMEM = "fuel station reopened";
const char Event_S_0025[] PROGMEM = "restaurant reopened";
const char Event_S_0027[] PROGMEM = "reopening of bridge expected (%s)";
const char Event_S_0028[] PROGMEM = "smog alert ended";
const char Event_S_0029[] PROGMEM = "(%s) overtaking lane(s) closed";
const char Event_S_002A[] PROGMEM = "(%s) overtaking lane(s) blocked";
const char Event_S_0033[] PROGMEM = "roadworks, (%s) overtaking lane(s) closed";
const char Event_S_0034[] PROGMEM = "(%s sets of) roadworks on the hard shoulder";
const char Event_S_0035[] PROGMEM = "(%s sets of) roadworks in the emergency lane";
const char Event_S_0037[] PROGMEM = "traffic problem expected";
const char Event_S_0038[] PROGMEM = "traffic congestion expected";
const char Event_S_0039[] PROGMEM = "normal traffic expected";
const char Event_S_003D[] PROGMEM = "(%s) object(s) on roadway";
const char Event_S_003E[] PROGMEM = "(%s) burst pipe(s)";
const char Event_S_003F[] PROGMEM = "(%s) object(s) on the road. Danger";
const char Event_S_0040[] PROGMEM = "burst pipe. Danger";
const char Event_S_0046[] PROGMEM = "traffic congestion, average speed of 10 km/h";
const char Event_S_0047[] PROGMEM = "traffic congestion, average speed of 20 km/h";
const char Event_S_0048[] PROGMEM = "traffic congestion, average speed of 30 km/h";
const char Event_S_0049[] PROGMEM = "traffic congestion, average speed of 40 km/h";
const char Event_S_004A[] PROGMEM = "traffic congestion, average speed of 50 km/h";
const char Event_S_004B[] PROGMEM = "traffic congestion, average speed of 60 km/h";
const char Event_S_004C[] PROGMEM = "traffic congestion, average speed of 70 km/h";
const char Event_S_0050[] PROGMEM = "heavy traffic has to be expected";
const char Event_S_0051[] PROGMEM = "traffic congestion has to be expected";
const char Event_S_0052[] PROGMEM = "(%s sets of) roadworks. Heavy traffic has to be expected";
const char Event_S_0053[] PROGMEM = "closed ahead. Heavy traffic expected";
const char Event_S_0054[] PROGMEM = "major event. Heavy traffic has to be expected";
const char Event_S_0055[] PROGMEM = "sports meeting. Heavy traffic has to be expected";
const char Event_S_0056[] PROGMEM = "fair. Heavy traffic has to be expected";
const char Event_S_0057[] PROGMEM = "evacuation. Heavy traffic has to be expected";
const char Event_S_0058[] PROGMEM = "traffic congestion forecast withdrawn";
const char Event_S_0059[] PROGMEM = "message cancelled";
const char Event_S_005B[] PROGMEM = "delays (%s) for cars";
const char Event_S_0065[] PROGMEM = "stationary traffic";
const char Event_S_0066[] PROGMEM = "stationary traffic for 1 km";
const char Event_S_0067[] PROGMEM = "stationary traffic for 2 km";
const char Event_S_0068[] PROGMEM = "stationary traffic for 4 km";
const char Event_S_0069[] PROGMEM = "stationary traffic for 6 km";
const char Event_S_006A[] PROGMEM = "stationary traffic for 10 km";
const char Event_S_006B[] PROGMEM = "stationary traffic expected";
const char Event_S_006C[] PROGMEM = "queuing traffic (with average speeds %s)";
const char Event_S_006D[] PROGMEM = "queuing traffic for 1 km (with average speeds %s)";
const char Event_S_006E[] PROGMEM = "queuing traffic for 2 km (with average speeds %s)";
const char Event_S_006F[] PROGMEM = "queuing traffic for 4 km (with average speeds %s)";
const char Event_S_0070[] PROGMEM = "queuing traffic for 6 km (with average speeds %s)";
const char Event_S_0071[] PROGMEM = "queuing traffic for 10 km (with average speeds %s)";
const char Event_S_0072[] PROGMEM = "queuing traffic expected";
const char Event_S_0073[] PROGMEM = "slow traffic (with average speeds %s)";
const char Event_S_0074[] PROGMEM = "slow traffic for 1 km (with average speeds %s)";
const char Event_S_0075[] PROGMEM = "slow traffic for 2 km (with average speeds %s)";
const char Event_S_0076[] PROGMEM = "slow traffic for 4 km (with average speeds %s)";
const char Event_S_0077[] PROGMEM = "slow traffic for 6 km (with average speeds %s)";
const char Event_S_0078[] PROGMEM = "slow traffic for 10 km (with average speeds %s)";
const char Event_S_0079[] PROGMEM = "slow traffic expected";
const char Event_S_007A[] PROGMEM = "heavy traffic (with average speeds %s)";
const char Event_S_007B[] PROGMEM = "heavy traffic expected";
const char Event_S_007C[] PROGMEM = "traffic flowing freely (with average speeds %s)";
const char Event_S_007D[] PROGMEM = "traffic building up (with average speeds %s)";
const char Event_S_007E[] PROGMEM = "no problems to report";
const char Event_S_007F[] PROGMEM = "traffic congestion cleared";
const char Event_S_0080[] PROGMEM = "message cancelled";
const char Event_S_0081[] PROGMEM = "stationary traffic for 3 km";
const char Event_S_0082[] PROGMEM = "danger of stationary traffic";
const char Event_S_0083[] PROGMEM = "queuing traffic for 3 km (with average speeds %s)";
const char Event_S_0084[] PROGMEM = "danger of queuing traffic (with average speeds %s)";
const char Event_S_0085[] PROGMEM = "long queues (with average speeds %s)";
const char Event_S_0086[] PROGMEM = "slow traffic for 3 km (with average speeds %s)";
const char Event_S_0087[] PROGMEM = "traffic easing";
const char Event_S_0088[] PROGMEM = "traffic congestion (with average speeds %s)";
const char Event_S_0089[] PROGMEM = "traffic lighter than normal (with average speeds %s)";
const char Event_S_008A[] PROGMEM = "queuing traffic (with average speeds %s). Approach with care";
const char Event_S_008B[] PROGMEM = "queuing traffic around a bend in the road";
const char Event_S_008C[] PROGMEM = "queuing traffic over the crest of a hill";
const char Event_S_008D[] PROGMEM = "all accidents cleared, no problems to report";
const char Event_S_008E[] PROGMEM = "traffic heavier than normal (with average speeds %s)";
const char Event_S_008F[] PROGMEM = "traffic very much heavier than normal (with average speeds %s)";
const char Event_S_00C8[] PROGMEM = "multi vehicle pile up. Delays (%s)";
const char Event_S_00C9[] PROGMEM = "(%s) accident(s)";
const char Event_S_00CA[] PROGMEM = "(%s) serious accident(s)";
const char Event_S_00CB[] PROGMEM = "multi-vehicle accident (involving %s vehicles)";
const char Event_S_00CC[] PROGMEM = "accident involving (a/%s) heavy lorr(y/ies)";
const char Event_S_00CD[] PROGMEM = "(%s) accident(s) involving hazardous materials";
const char Event_S_00CE[] PROGMEM = "(%s) fuel spillage accident(s)";
const char Event_S_00CF[] PROGMEM = "(%s) chemical spillage accident(s)";
const char Event_S_00D0[] PROGMEM = "vehicles slowing to look at (%s) accident(s)";
const char Event_S_00D1[] PROGMEM = "(%s) accident(s) in the opposing lanes";
const char Event_S_00D2[] PROGMEM = "(%s) shed load(s)";
const char Event_S_00D3[] PROGMEM = "(%s) broken down vehicle(s)";
const char Event_S_00D4[] PROGMEM = "(%s) broken down heavy lorr(y/ies)";
const char Event_S_00D5[] PROGMEM = "(%s) vehicle fire(s)";
const char Event_S_00D6[] PROGMEM = "(%s) incident(s)";
const char Event_S_00D7[] PROGMEM = "(%s) accident(s). Stationary traffic";
const char Event_S_00D8[] PROGMEM = "(%s) accident(s). Stationary traffic for 1 km";
const char Event_S_00D9[] PROGMEM = "(%s) accident(s). Stationary traffic for 2 km";
const char Event_S_00DA[] PROGMEM = "(%s) accident(s). Stationary traffic for 4 km";
const char Event_S_00DB[] PROGMEM = "(%s) accident(s). Stationary traffic for 6 km";
const char Event_S_00DC[] PROGMEM = "(%s) accident(s). Stationary traffic for 10 km";
const char Event_S_00DD[] PROGMEM = "(%s) accident(s). Danger of stationary traffic";
const char Event_S_00DE[] PROGMEM = "(%s) accident(s). Queuing traffic";
const char Event_S_00DF[] PROGMEM = "(%s) accident(s). Queuing traffic for 1 km";
const char Event_S_00E0[] PROGMEM = "(%s) accident(s). Queuing traffic for 2 km";
const char Event_S_00E1[] PROGMEM = "(%s) accident(s). Queuing traffic for 4 km";
const char Event_S_00E2[] PROGMEM = "(%s) accident(s). Queuing traffic for 6 km";
const char Event_S_00E3[] PROGMEM = "(%s) accident(s). Queuing traffic for 10 km";
const char Event_S_00E4[] PROGMEM = "(%s) accident(s). Danger of queuing traffic";
const char Event_S_00E5[] PROGMEM = "(%s) accident(s). Slow traffic";
const char Event_S_00E6[] PROGMEM = "(%s) accident(s). Slow traffic for 1 km";
const char Event_S_00E7[] PROGMEM = "(%s) accident(s). Slow traffic for 2 km";
const char Event_S_00E8[] PROGMEM = "(%s) accident(s). Slow traffic for 4 km";
const char Event_S_00E9[] PROGMEM = "(%s) accident(s). Slow traffic for 6 km";
const char Event_S_00EA[] PROGMEM = "(%s) accident(s). Slow traffic for 10 km";
const char Event_S_00EB[] PROGMEM = "(%s) accident(s). Slow traffic expected";
const char Event_S_00EC[] PROGMEM = "(%s) accident(s). Heavy traffic";
const char Event_S_00ED[] PROGMEM = "(%s) accident(s). Heavy traffic expected";
const char Event_S_00EE[] PROGMEM = "(%s) accident(s). Traffic flowing freely";
const char Event_S_00EF[] PROGMEM = "(%s) accident(s). Traffic building up";
const char Event_S_00F0[] PROGMEM = "road closed due to (%s) accident(s)";
const char Event_S_00F1[] PROGMEM = "(%s) accident(s). Right lane blocked";
const char Event_S_00F2[] PROGMEM = "(%s) accident(s). Centre lane blocked";
const char Event_S_00F3[] PROGMEM = "(%s) accident(s). Left lane blocked";
const char Event_S_00F4[] PROGMEM = "(%s) accident(s). Hard shoulder blocked";
const char Event_S_00F5[] PROGMEM = "(%s) accident(s). Two lanes blocked";
const char Event_S_00F6[] PROGMEM = "(%s) accident(s). Three lanes blocked";
const char Event_S_00F7[] PROGMEM = "accident. Delays (%s)";
const char Event_S_00F8[] PROGMEM = "accident. Delays (%s) expected";
const char Event_S_00F9[] PROGMEM = "accident. Long delays (%s)";
const char Event_S_00FA[] PROGMEM = "vehicles slowing to look at (%s) accident(s). Stationary traffic";
const char Event_S_00FB[] PROGMEM = "vehicles slowing to look at (%s) accident(s). Stationary traffic for 1 km";
const char Event_S_00FC[] PROGMEM = "vehicles slowing to look at (%s) accident(s). Stationary traffic for 2 km";
const char Event_S_00FD[] PROGMEM = "vehicles slowing to look at (%s) accident(s). Stationary traffic for 4 km";
const char Event_S_00FE[] PROGMEM = "vehicles slowing to look at (%s) accident(s). Stationary traffic for 6 km";
const char Event_S_00FF[] PROGMEM = "vehicles slowing to look at (%s) accident(s). Stationary traffic for 10 km";
const char Event_S_0100[] PROGMEM = "vehicles slowing to look at (%s) accident(s). Danger of stationary traffic";
const char Event_S_0101[] PROGMEM = "vehicles slowing to look at (%s) accident(s). Queuing traffic";
const char Event_S_0102[] PROGMEM = "vehicles slowing to look at (%s) accident(s). Queuing traffic for 1 km";
const char Event_S_0103[] PROGMEM = "vehicles slowing to look at (%s) accident(s). Queuing traffic for 2 km";
const char Event_S_0104[] PROGMEM = "vehicles slowing to look at (%s) accident(s). Queuing traffic for 4 km";
const char Event_S_0105[] PROGMEM = "vehicles slowing to look at (%s) accident(s). Queuing traffic for 6 km";
const char Event_S_0106[] PROGMEM = "vehicles slowing to look at (%s) accident(s). Queuing traffic for 10 km";
const char Event_S_0107[] PROGMEM = "vehicles slowing to look at (%s) accident(s). Danger of queuing traffic";
const char Event_S_0108[] PROGMEM = "vehicles slowing to look at (%s) accident(s). Slow traffic";
const char Event_S_0109[] PROGMEM = "vehicles slowing to look at (%s) accident(s). Slow traffic for 1 km";
const char Event_S_010A[] PROGMEM = "vehicles slowing to look at (%s) accident(s). Slow traffic for 2 km";
const char Event_S_010B[] PROGMEM = "vehicles slowing to look at (%s) accident(s). Slow traffic for 4 km";
const char Event_S_010C[] PROGMEM = "vehicles slowing to look at (%s) accident(s). Slow traffic for 6 km";
const char Event_S_010D[] PROGMEM = "vehicles slowing to look at (%s) accident(s). Slow traffic for 10 km";
const char Event_S_010E[] PROGMEM = "vehicles slowing to look at (%s) accident(s). Slow traffic expected";
const char Event_S_010F[] PROGMEM = "vehicles slowing to look at (%s) accident(s). Heavy traffic";
const char Event_S_0110[] PROGMEM = "vehicles slowing to look at (%s) accident(s). Heavy traffic expected";
const char Event_S_0112[] PROGMEM = "vehicles slowing to look at (%s) accident(s). Traffic building up";
const char Event_S_0113[] PROGMEM = "vehicles slowing to look at accident. Delays (%s)";
const char Event_S_0114[] PROGMEM = "vehicles slowing to look at accident. Delays (%s) expected";
const char Event_S_0115[] PROGMEM = "vehicles slowing to look at accident. Long delays (%s)";
const char Event_S_0116[] PROGMEM = "(%s) shed load(s). Stationary traffic";
const char Event_S_0117[] PROGMEM = "(%s) shed load(s). Stationary traffic for 1 km";
const char Event_S_0118[] PROGMEM = "(%s) shed load(s). Stationary traffic for 2 km";
const char Event_S_0119[] PROGMEM = "(%s) shed load(s). Stationary traffic for 4 km";
const char Event_S_011A[] PROGMEM = "(%s) shed load(s). Stationary traffic for 6 km";
const char Event_S_011B[] PROGMEM = "(%s) shed load(s). Stationary traffic for 10 km";
const char Event_S_011C[] PROGMEM = "(%s) shed load(s). Danger of stationary traffic";
const char Event_S_011D[] PROGMEM = "(%s) shed load(s). Queuing traffic";
const char Event_S_011E[] PROGMEM = "(%s) shed load(s). Queuing traffic for 1 km";
const char Event_S_011F[] PROGMEM = "(%s) shed load(s). Queuing traffic for 2 km";
const char Event_S_0120[] PROGMEM = "(%s) shed load(s). Queuing traffic for 4 km";
const char Event_S_0121[] PROGMEM = "(%s) shed load(s). Queuing traffic for 6 km";
const char Event_S_0122[] PROGMEM = "(%s) shed load(s). Queuing traffic for 10 km";
const char Event_S_0123[] PROGMEM = "(%s) shed load(s). Danger of queuing traffic";
const char Event_S_0124[] PROGMEM = "(%s) shed load(s). Slow traffic";
const char Event_S_0125[] PROGMEM = "(%s) shed load(s). Slow traffic for 1 km";
const char Event_S_0126[] PROGMEM = "(%s) shed load(s). Slow traffic for 2 km";
const char Event_S_0127[] PROGMEM = "(%s) shed load(s). Slow traffic for 4 km";
const char Event_S_0128[] PROGMEM = "(%s) shed load(s). Slow traffic for 6 km";
const char Event_S_0129[] PROGMEM = "(%s) shed load(s). Slow traffic for 10 km";
const char Event_S_012A[] PROGMEM = "(%s) shed load(s). Slow traffic expected";
const char Event_S_012B[] PROGMEM = "(%s) shed load(s). Heavy traffic";
const char Event_S_012C[] PROGMEM = "(%s) shed load(s). Heavy traffic expected";
const char Event_S_012D[] PROGMEM = "(%s) shed load(s). Traffic flowing freely";
const char Event_S_012E[] PROGMEM = "(%s) shed load(s). Traffic building up";
const char Event_S_012F[] PROGMEM = "blocked by (%s) shed load(s)";
const char Event_S_0130[] PROGMEM = "(%s) shed load(s). Right lane blocked";
const char Event_S_0131[] PROGMEM = "(%s) shed load(s). Centre lane blocked";
const char Event_S_0132[] PROGMEM = "(%s) shed load(s). Left lane blocked";
const char Event_S_0133[] PROGMEM = "(%s) shed load(s). Hard shoulder blocked";
const char Event_S_0134[] PROGMEM = "(%s) shed load(s). Two lanes blocked";
const char Event_S_0135[] PROGMEM = "(%s) shed load(s). Three lanes blocked";
const char Event_S_0136[] PROGMEM = "shed load. Delays (%s)";
const char Event_S_0137[] PROGMEM = "shed load. Delays (%s) expected";
const char Event_S_0138[] PROGMEM = "shed load. Long delays (%s)";
const char Event_S_0139[] PROGMEM = "(%s) broken down vehicle(s). Stationary traffic";
const char Event_S_013A[] PROGMEM = "(%s) broken down vehicle(s). Danger of stationary traffic";
const char Event_S_013B[] PROGMEM = "(%s) broken down vehicle(s). Queuing traffic";
const char Event_S_013C[] PROGMEM = "(%s) broken down vehicle(s). Danger of queuing traffic";
const char Event_S_013D[] PROGMEM = "(%s) broken down vehicle(s). Slow traffic";
const char Event_S_013E[] PROGMEM = "(%s) broken down vehicle(s). Slow traffic expected";
const char Event_S_013F[] PROGMEM = "(%s) broken down vehicle(s). Heavy traffic";
const char Event_S_0140[] PROGMEM = "(%s) broken down vehicle(s). Heavy traffic expected";
const char Event_S_0141[] PROGMEM = "(%s) broken down vehicle(s). Traffic flowing freely";
const char Event_S_0142[] PROGMEM = "(%s) broken down vehicle(s).Traffic building up";
const char Event_S_0143[] PROGMEM = "blocked by (%s) broken down vehicle(s).";
const char Event_S_0144[] PROGMEM = "(%s) broken down vehicle(s). Right lane blocked";
const char Event_S_0145[] PROGMEM = "(%s) broken down vehicle(s). Centre lane blocked";
const char Event_S_0146[] PROGMEM = "(%s) broken down vehicle(s). Left lane blocked";
const char Event_S_0147[] PROGMEM = "(%s) broken down vehicle(s). Hard shoulder blocked";
const char Event_S_0148[] PROGMEM = "(%s) broken down vehicle(s). Two lanes blocked";
const char Event_S_0149[] PROGMEM = "(%s) broken down vehicle(s). Three lanes blocked";
const char Event_S_014A[] PROGMEM = "broken down vehicle. Delays (%s)";
const char Event_S_014B[] PROGMEM = "broken down vehicle. Delays (%s) expected";
const char Event_S_014C[] PROGMEM = "broken down vehicle. Long delays (%s)";
const char Event_S_014D[] PROGMEM = "accident cleared";
const char Event_S_014E[] PROGMEM = "message cancelled";
const char Event_S_014F[] PROGMEM = "accident involving (a/%s) bus(es)";
const char Event_S_0150[] PROGMEM = "(%s) oil spillage accident(s)";
const char Event_S_0151[] PROGMEM = "(%s) overturned vehicle(s)";
const char Event_S_0152[] PROGMEM = "(%s) overturned heavy lorr(y/ies)";
const char Event_S_0153[] PROGMEM = "(%s) jackknifed trailer(s)";
const char Event_S_0154[] PROGMEM = "(%s) jackknifed caravan(s)";
const char Event_S_0155[] PROGMEM = "(%s) jackknifed articulated lorr(y/ies)";
const char Event_S_0156[] PROGMEM = "(%s) vehicle(s) spun around";
const char Event_S_0157[] PROGMEM = "(%s) earlier accident(s)";
const char Event_S_0158[] PROGMEM = "accident investigation work";
const char Event_S_0159[] PROGMEM = "(%s) secondary accident(s)";
const char Event_S_015A[] PROGMEM = "(%s) broken down bus(es)";
const char Event_S_015B[] PROGMEM = "(%s) overheight vehicle(s)";
const char Event_S_015C[] PROGMEM = "(%s) accident(s). Stationary traffic for 3 km";
const char Event_S_015D[] PROGMEM = "(%s) accident(s). Queuing traffic for 3 km";
const char Event_S_015E[] PROGMEM = "(%s) accident(s). Slow traffic for 3 km";
const char Event_S_015F[] PROGMEM = "(%s) accident(s) in roadworks area";
const char Event_S_0160[] PROGMEM = "vehicles slowing to look at (%s) accident(s). Stationary traffic for 3 km";
const char Event_S_0161[] PROGMEM = "vehicles slowing to look at (%s) accident(s). Queuing traffic for 3 km";
const char Event_S_0162[] PROGMEM = "vehicles slowing to look at (%s) accident(s). Slow traffic for 3 km";
const char Event_S_0163[] PROGMEM = "vehicles slowing to look at (%s) accident(s). Danger";
const char Event_S_0164[] PROGMEM = "(%s) shed load(s). Stationary traffic for 3 km";
const char Event_S_0165[] PROGMEM = "(%s) shed load(s). Queuing traffic for 3 km";
const char Event_S_0166[] PROGMEM = "(%s) shed load(s). Slow traffic for 3 km";
const char Event_S_0167[] PROGMEM = "(%s) shed load(s). Danger";
const char Event_S_0168[] PROGMEM = "(%s) overturned vehicle(s). Stationary traffic";
const char Event_S_0169[] PROGMEM = "(%s) overturned vehicle(s). Danger of stationary traffic";
const char Event_S_016A[] PROGMEM = "(%s) overturned vehicle(s). Queuing traffic";
const char Event_S_016B[] PROGMEM = "(%s) overturned vehicle(s). Danger of queuing traffic";
const char Event_S_016C[] PROGMEM = "(%s) overturned vehicle(s). Slow traffic";
const char Event_S_016D[] PROGMEM = "(%s) overturned vehicle(s). Slow traffic expected";
const char Event_S_016E[] PROGMEM = "(%s) overturned vehicle(s). Heavy traffic";
const char Event_S_016F[] PROGMEM = "(%s) overturned vehicle(s). Heavy traffic expected";
const char Event_S_0170[] PROGMEM = "(%s) overturned vehicle(s). Traffic building up";
const char Event_S_0171[] PROGMEM = "blocked by (%s) overturned vehicle(s)";
const char Event_S_0172[] PROGMEM = "(%s) overturned vehicle(s). Right lane blocked";
const char Event_S_0173[] PROGMEM = "(%s) overturned vehicle(s). Centre lane blocked";
const char Event_S_0174[] PROGMEM = "(%s) overturned vehicle(s). Left lane blocked";
const char Event_S_0175[] PROGMEM = "(%s) overturned vehicle(s). Two lanes blocked";
const char Event_S_0176[] PROGMEM = "(%s) overturned vehicle(s). Three lanes blocked";
const char Event_S_0177[] PROGMEM = "overturned vehicle. Delays (%s)";
const char Event_S_0178[] PROGMEM = "overturned vehicle. Delays (%s) expected";
const char Event_S_0179[] PROGMEM = "overturned vehicle. Long delays (%s)";
const char Event_S_017A[] PROGMEM = "(%s) overturned vehicle(s). Danger";
const char Event_S_017B[] PROGMEM = "Stationary traffic due to (%s) earlier accident(s)";
const char Event_S_017C[] PROGMEM = "Danger of stationary traffic due to (%s) earlier accident(s)";
const char Event_S_017D[] PROGMEM = "Queuing traffic due to (%s) earlier accident(s)";
const char Event_S_017E[] PROGMEM = "Danger of queuing traffic due to (%s) earlier accident(s)";
const char Event_S_017F[] PROGMEM = "Slow traffic due to (%s) earlier accident(s)";
const char Event_S_0181[] PROGMEM = "Heavy traffic due to (%s) earlier accident(s)";
const char Event_S_0183[] PROGMEM = "Traffic building up due to (%s) earlier accident(s)";
const char Event_S_0184[] PROGMEM = "Delays (%s) due to earlier accident";
const char Event_S_0186[] PROGMEM = "Long delays (%s) due to earlier accident";
const char Event_S_0187[] PROGMEM = "accident investigation work. Danger";
const char Event_S_0188[] PROGMEM = "(%s) secondary accident(s). Danger";
const char Event_S_0189[] PROGMEM = "(%s) broken down vehicle(s). Danger";
const char Event_S_018A[] PROGMEM = "(%s) broken down heavy lorr(y/ies). Danger";
const char Event_S_018B[] PROGMEM = "road cleared";
const char Event_S_018C[] PROGMEM = "incident cleared";
const char Event_S_018D[] PROGMEM = "rescue and recovery work in progress";
const char Event_S_018F[] PROGMEM = "message cancelled";
const char Event_S_0191[] PROGMEM = "closed";
const char Event_S_0192[] PROGMEM = "blocked";
const char Event_S_0193[] PROGMEM = "closed for heavy vehicles (over %s)";
const char Event_S_0194[] PROGMEM = "no through traffic for heavy lorries (over %s)";
const char Event_S_0195[] PROGMEM = "no through traffic";
const char Event_S_0196[] PROGMEM = "(%s th) entry slip road closed";
const char Event_S_0197[] PROGMEM = "(%s th) exit slip road closed";
const char Event_S_0198[] PROGMEM = "slip roads closed";
const char Event_S_0199[] PROGMEM = "slip road restrictions";
const char Event_S_019A[] PROGMEM = "closed ahead. Stationary traffic";
const char Event_S_019B[] PROGMEM = "closed ahead. Stationary traffic for 1 km";
const char Event_S_019C[] PROGMEM = "closed ahead. Stationary traffic for 2 km";
const char Event_S_019D[] PROGMEM = "closed ahead. Stationary traffic for 4 km";
const char Event_S_019E[] PROGMEM = "closed ahead. Stationary traffic for 6 km";
const char Event_S_019F[] PROGMEM = "closed ahead. Stationary traffic for 10 km";
const char Event_S_01A0[] PROGMEM = "closed ahead. Danger of stationary traffic";
const char Event_S_01A1[] PROGMEM = "closed ahead. Queuing traffic";
const char Event_S_01A2[] PROGMEM = "closed ahead. Queuing traffic for 1 km";
const char Event_S_01A3[] PROGMEM = "closed ahead. Queuing traffic for 2 km";
const char Event_S_01A4[] PROGMEM = "closed ahead. Queuing traffic for 4 km";
const char Event_S_01A5[] PROGMEM = "closed ahead. Queuing traffic for 6 km";
const char Event_S_01A6[] PROGMEM = "closed ahead. Queuing traffic for 10 km";
const char Event_S_01A7[] PROGMEM = "closed ahead. Danger of queuing traffic";
const char Event_S_01A8[] PROGMEM = "closed ahead. Slow traffic";
const char Event_S_01A9[] PROGMEM = "closed ahead. Slow traffic for 1 km";
const char Event_S_01AA[] PROGMEM = "closed ahead. Slow traffic for 2 km";
const char Event_S_01AB[] PROGMEM = "closed ahead. Slow traffic for 4 km";
const char Event_S_01AC[] PROGMEM = "closed ahead. Slow traffic for 6 km";
const char Event_S_01AD[] PROGMEM = "closed ahead. Slow traffic for 10 km";
const char Event_S_01AE[] PROGMEM = "closed ahead. Slow traffic expected";
const char Event_S_01AF[] PROGMEM = "closed ahead. Heavy traffic";
const char Event_S_01B0[] PROGMEM = "closed ahead. Heavy traffic expected";
const char Event_S_01B1[] PROGMEM = "closed ahead. Traffic flowing freely";
const char Event_S_01B2[] PROGMEM = "closed ahead. Traffic building up";
const char Event_S_01B3[] PROGMEM = "closed ahead. Delays (%s)";
const char Event_S_01B4[] PROGMEM = "closed ahead. Delays (%s) expected";
const char Event_S_01B5[] PROGMEM = "closed ahead. Long delays (%s)";
const char Event_S_01B6[] PROGMEM = "blocked ahead. Stationary traffic";
const char Event_S_01B7[] PROGMEM = "blocked ahead. Stationary traffic for 1 km";
const char Event_S_01B8[] PROGMEM = "blocked ahead. Stationary traffic for 2 km";
const char Event_S_01B9[] PROGMEM = "blocked ahead. Stationary traffic for 4 km";
const char Event_S_01BA[] PROGMEM = "blocked ahead. Stationary traffic for 6 km";
const char Event_S_01BB[] PROGMEM = "blocked ahead. Stationary traffic for 10 km";
const char Event_S_01BC[] PROGMEM = "blocked ahead. Danger of stationary traffic";
const char Event_S_01BD[] PROGMEM = "blocked ahead. Queuing traffic";
const char Event_S_01BE[] PROGMEM = "blocked ahead. Queuing traffic for 1 km";
const char Event_S_01BF[] PROGMEM = "blocked ahead. Queuing traffic for 2 km";
const char Event_S_01C0[] PROGMEM = "blocked ahead. Queuing traffic for 4 km";
const char Event_S_01C1[] PROGMEM = "blocked ahead. Queuing traffic for 6 km";
const char Event_S_01C2[] PROGMEM = "blocked ahead. Queuing traffic for 10 km";
const char Event_S_01C3[] PROGMEM = "blocked ahead. Danger of queuing traffic";
const char Event_S_01C4[] PROGMEM = "blocked ahead. Slow traffic";
const char Event_S_01C5[] PROGMEM = "blocked ahead. Slow traffic for 1 km";
const char Event_S_01C6[] PROGMEM = "blocked ahead. Slow traffic for 2 km";
const char Event_S_01C7[] PROGMEM = "blocked ahead. Slow traffic for 4 km";
const char Event_S_01C8[] PROGMEM = "blocked ahead. Slow traffic for 6 km";
const char Event_S_01C9[] PROGMEM = "blocked ahead. Slow traffic for 10 km";
const char Event_S_01CA[] PROGMEM = "blocked ahead. Slow traffic expected";
const char Event_S_01CB[] PROGMEM = "blocked ahead. Heavy traffic";
const char Event_S_01CC[] PROGMEM = "blocked ahead. Heavy traffic expected";
const char Event_S_01CD[] PROGMEM = "blocked ahead. Traffic flowing freely";
const char Event_S_01CE[] PROGMEM = "blocked ahead. Traffic building up";
const char Event_S_01CF[] PROGMEM = "blocked ahead. Delays (%s)";
const char Event_S_01D0[] PROGMEM = "blocked ahead. Delays (%s) expected";
const char Event_S_01D1[] PROGMEM = "blocked ahead. Long delays (%s)";
const char Event_S_01D2[] PROGMEM = "slip roads reopened";
const char Event_S_01D3[] PROGMEM = "reopened";
const char Event_S_01D4[] PROGMEM = "message cancelled";
const char Event_S_01D5[] PROGMEM = "closed ahead";
const char Event_S_01D6[] PROGMEM = "blocked ahead";
const char Event_S_01D7[] PROGMEM = "(%s) entry slip road(s) closed";
const char Event_S_01D8[] PROGMEM = "(%s th) entry slip road blocked";
const char Event_S_01D9[] PROGMEM = "entry blocked";
const char Event_S_01DA[] PROGMEM = "(%s) exit slip road(s) closed";
const char Event_S_01DB[] PROGMEM = "(%s th) exit slip road blocked";
const char Event_S_01DC[] PROGMEM = "exit blocked";
const char Event_S_01DD[] PROGMEM = "slip roads blocked";
const char Event_S_01DE[] PROGMEM = "connecting carriageway closed";
const char Event_S_01DF[] PROGMEM = "parallel carriageway closed";
const char Event_S_01E0[] PROGMEM = "right-hand parallel carriageway closed";
const char Event_S_01E1[] PROGMEM = "left-hand parallel carriageway closed";
const char Event_S_01E2[] PROGMEM = "express lanes closed";
const char Event_S_01E3[] PROGMEM = "through traffic lanes closed";
const char Event_S_01E4[] PROGMEM = "local lanes closed";
const char Event_S_01E5[] PROGMEM = "connecting carriageway blocked";
const char Event_S_01E6[] PROGMEM = "parallel carriageway blocked";
const char Event_S_01E7[] PROGMEM = "right-hand parallel carriageway blocked";
const char Event_S_01E8[] PROGMEM = "left-hand parallel carriageway blocked";
const char Event_S_01E9[] PROGMEM = "express lanes blocked";
const char Event_S_01EA[] PROGMEM = "through traffic lanes blocked";
const char Event_S_01EB[] PROGMEM = "local lanes blocked";
const char Event_S_01EC[] PROGMEM = "no motor vehicles";
const char Event_S_01ED[] PROGMEM = "restrictions";
const char Event_S_01EE[] PROGMEM = "closed for heavy lorries (over %s)";
const char Event_S_01EF[] PROGMEM = "closed ahead. Stationary traffic for 3 km";
const char Event_S_01F0[] PROGMEM = "closed ahead. Queuing traffic for 3 km";
const char Event_S_01F1[] PROGMEM = "closed ahead. Slow traffic for 3 km";
const char Event_S_01F2[] PROGMEM = "blocked ahead. Stationary traffic for 3 km";
const char Event_S_01F3[] PROGMEM = "blocked ahead. Queuing traffic for 3 km";
const char Event_S_01F4[] PROGMEM = "(%s) lane(s) closed";
const char Event_S_01F5[] PROGMEM = "(%s) right lane(s) closed";
const char Event_S_01F6[] PROGMEM = "(%s) centre lane(s) closed";
const char Event_S_01F7[] PROGMEM = "(%s) left lane(s) closed";
const char Event_S_01F8[] PROGMEM = "hard shoulder closed";
const char Event_S_01F9[] PROGMEM = "two lanes closed";
const char Event_S_01FA[] PROGMEM = "three lanes closed";
const char Event_S_01FB[] PROGMEM = "(%s) right lane(s) blocked";
const char Event_S_01FC[] PROGMEM = "(%s) centre lane(s) blocked";
const char Event_S_01FD[] PROGMEM = "(%s) left lane(s) blocked";
const char Event_S_01FE[] PROGMEM = "hard shoulder blocked";
const char Event_S_01FF[] PROGMEM = "two lanes blocked";
const char Event_S_0200[] PROGMEM = "three lanes blocked";
const char Event_S_0201[] PROGMEM = "single alternate line traffic";
const char Event_S_0202[] PROGMEM = "carriageway reduced (from %s lanes) to one lane";
const char Event_S_0203[] PROGMEM = "carriageway reduced (from %s lanes) to two lanes";
const char Event_S_0204[] PROGMEM = "carriageway reduced (from %s lanes) to three lanes";
const char Event_S_0205[] PROGMEM = "contraflow";
const char Event_S_0206[] PROGMEM = "narrow lanes";
const char Event_S_0207[] PROGMEM = "contraflow with narrow lanes";
const char Event_S_0208[] PROGMEM = "(%s) lane(s) blocked";
const char Event_S_0209[] PROGMEM = "(%s) lanes closed. Stationary traffic";
const char Event_S_020A[] PROGMEM = "(%s) lanes closed. Stationary traffic for 1 km";
const char Event_S_020B[] PROGMEM = "(%s) lanes closed. Stationary traffic for 2 km";
const char Event_S_020C[] PROGMEM = "(%s) lanes closed. Stationary traffic for 4 km";
const char Event_S_020D[] PROGMEM = "(%s) lanes closed. Stationary traffic for 6 km";
const char Event_S_020E[] PROGMEM = "(%s) lanes closed. Stationary traffic for 10 km";
const char Event_S_020F[] PROGMEM = "(%s) lanes closed. Danger of stationary traffic";
const char Event_S_0210[] PROGMEM = "(%s) lanes closed. Queuing traffic";
const char Event_S_0211[] PROGMEM = "(%s) lanes closed. Queuing traffic for 1 km";
const char Event_S_0212[] PROGMEM = "(%s) lanes closed. Queuing traffic for 2 km";
const char Event_S_0213[] PROGMEM = "(%s) lanes closed. Queuing traffic for 4 km";
const char Event_S_0214[] PROGMEM = "(%s) lanes closed. Queuing traffic for 6 km";
const char Event_S_0215[] PROGMEM = "(%s) lanes closed. Queuing traffic for 10 km";
const char Event_S_0216[] PROGMEM = "(%s) lanes closed. Danger of queuing traffic";
const char Event_S_0217[] PROGMEM = "(%s) lanes closed. Slow traffic";
const char Event_S_0218[] PROGMEM = "(%s) lanes closed. Slow traffic for 1 km";
const char Event_S_0219[] PROGMEM = "(%s) lanes closed. Slow traffic for 2 km";
const char Event_S_021A[] PROGMEM = "(%s) lanes closed. Slow traffic for 4 km";
const char Event_S_021B[] PROGMEM = "(%s) lanes closed. Slow traffic for 6 km";
const char Event_S_021C[] PROGMEM = "(%s) lanes closed. Slow traffic for 10 km";
const char Event_S_021D[] PROGMEM = "(%s) lanes closed. Slow traffic expected";
const char Event_S_021E[] PROGMEM = "(%s) lanes closed. Heavy traffic";
const char Event_S_021F[] PROGMEM = "(%s) lanes closed. Heavy traffic expected";
const char Event_S_0220[] PROGMEM = "(%s)lanes closed. Traffic flowing freely";
const char Event_S_0221[] PROGMEM = "(%s)lanes closed. Traffic building up";
const char Event_S_0222[] PROGMEM = "carriageway reduced (from %s lanes) to one lane. Stationary traffic";
const char Event_S_0223[] PROGMEM = "carriageway reduced (from %s lanes) to one lane. Danger of stationary traffic";
const char Event_S_0224[] PROGMEM = "carriageway reduced (from %s lanes) to one lane. Queuing traffic";
const char Event_S_0225[] PROGMEM = "carriageway reduced (from %s lanes) to one lane. Danger of queuing traffic";
const char Event_S_0226[] PROGMEM = "carriageway reduced (from %s lanes) to one lane. Slow traffic";
const char Event_S_0227[] PROGMEM = "carriageway reduced (from %s lanes) to one lane. Slow traffic expected";
const char Event_S_0228[] PROGMEM = "carriageway reduced (from %s lanes) to one lane. Heavy traffic";
const char Event_S_0229[] PROGMEM = "carriageway reduced (from %s lanes) to one lane. Heavy traffic expected";
const char Event_S_022A[] PROGMEM = "carriageway reduced (from %s lanes) to one lane. Traffic flowing freely";
const char Event_S_022B[] PROGMEM = "carriageway reduced (from %s lanes) to one lane. Traffic building up";
const char Event_S_022C[] PROGMEM = "carriageway reduced (from %s lanes) to two lanes. Stationary traffic";
const char Event_S_022D[] PROGMEM = "carriageway reduced (from %s lanes) to two lanes. Danger of stationary traffic";
const char Event_S_022E[] PROGMEM = "carriageway reduced (from %s lanes) to two lanes. Queuing traffic";
const char Event_S_022F[] PROGMEM = "carriageway reduced (from %s lanes) to two lanes. Danger of queuing traffic";
const char Event_S_0230[] PROGMEM = "carriageway reduced (from %s lanes) to two lanes. Slow traffic";
const char Event_S_0231[] PROGMEM = "carriageway reduced (from %s lanes) to two lanes. Slow traffic expected";
const char Event_S_0232[] PROGMEM = "carriageway reduced (from %s lanes) to two lanes. Heavy traffic";
const char Event_S_0233[] PROGMEM = "carriageway reduced (from %s lanes) to two lanes. Heavy traffic expected";
const char Event_S_0234[] PROGMEM = "carriageway reduced (from %s lanes) to two lanes. Traffic flowing freely";
const char Event_S_0235[] PROGMEM = "carriageway reduced (from %s lanes) to two lanes. Traffic building up";
const char Event_S_0236[] PROGMEM = "carriageway reduced (from %s lanes) to three lanes. Stationary traffic";
const char Event_S_0237[] PROGMEM = "carriageway reduced (from %s lanes) to three lanes. Danger of stationary traffic";
const char Event_S_0238[] PROGMEM = "carriageway reduced (from %s lanes) to three lanes. Queuing traffic";
const char Event_S_0239[] PROGMEM = "carriageway reduced (from %s lanes) to three lanes. Danger of queuing traffic";
const char Event_S_023A[] PROGMEM = "carriageway reduced (from %s lanes) to three lanes. Slow traffic";
const char Event_S_023B[] PROGMEM = "carriageway reduced (from %s lanes) to three lanes. Slow traffic expected";
const char Event_S_023C[] PROGMEM = "carriageway reduced (from %s lanes) to three lanes. Heavy traffic";
const char Event_S_023D[] PROGMEM = "carriageway reduced (from %s lanes) to three lanes. Heavy traffic expected";
const char Event_S_023E[] PROGMEM = "carriageway reduced (from %s lanes) to three lanes. Traffic flowing freely";
const char Event_S_023F[] PROGMEM = "carriageway reduced (from %s lanes) to three lanes. Traffic building up";
const char Event_S_0240[] PROGMEM = "contraflow. Stationary traffic";
const char Event_S_0241[] PROGMEM = "contraflow. Stationary traffic for 1 km";
const char Event_S_0242[] PROGMEM = "contraflow. Stationary traffic for 2 km";
const char Event_S_0243[] PROGMEM = "contraflow. Stationary traffic for 4 km";
const char Event_S_0244[] PROGMEM = "contraflow. Stationary traffic for 6 km";
const char Event_S_0245[] PROGMEM = "contraflow. Stationary traffic for 10 km";
const char Event_S_0246[] PROGMEM = "contraflow. Danger of stationary traffic";
const char Event_S_0247[] PROGMEM = "contraflow. Queuing traffic";
const char Event_S_0248[] PROGMEM = "contraflow. Queuing traffic for 1 km";
const char Event_S_0249[] PROGMEM = "contraflow. Queuing traffic for 2 km";
const char Event_S_024A[] PROGMEM = "contraflow. Queuing traffic for 4 km";
const char Event_S_024B[] PROGMEM = "contraflow. Queuing traffic for 6 km";
const char Event_S_024C[] PROGMEM = "contraflow. Queuing traffic for 10 km";
const char Event_S_024D[] PROGMEM = "contraflow. Danger of queuing traffic";
const char Event_S_024E[] PROGMEM = "contraflow. Slow traffic";
const char Event_S_024F[] PROGMEM = "contraflow. Slow traffic for 1 km";
const char Event_S_0250[] PROGMEM = "contraflow. Slow traffic for 2 km";
const char Event_S_0251[] PROGMEM = "contraflow. Slow traffic for 4 km";
const char Event_S_0252[] PROGMEM = "contraflow. Slow traffic for 6 km";
const char Event_S_0253[] PROGMEM = "contraflow. Slow traffic for 10 km";
const char Event_S_0254[] PROGMEM = "contraflow. Slow traffic expected";
const char Event_S_0255[] PROGMEM = "contraflow. Heavy traffic";
const char Event_S_0256[] PROGMEM = "contraflow. Heavy traffic expected";
const char Event_S_0257[] PROGMEM = "contraflow. Traffic flowing freely";
const char Event_S_0258[] PROGMEM = "contraflow. Traffic building up";
const char Event_S_0259[] PROGMEM = "contraflow. Carriageway reduced (from %s lanes) to one lane";
const char Event_S_025A[] PROGMEM = "contraflow. Carriageway reduced (from %s lanes) to two lanes";
const char Event_S_025B[] PROGMEM = "contraflow. Carriageway reduced (from %s lanes) to three lanes";
const char Event_S_025C[] PROGMEM = "narrow lanes. Stationary traffic";
const char Event_S_025D[] PROGMEM = "narrow lanes. Danger of stationary traffic";
const char Event_S_025E[] PROGMEM = "narrow lanes. Queuing traffic";
const char Event_S_025F[] PROGMEM = "narrow lanes. Danger of queuing traffic";
const char Event_S_0260[] PROGMEM = "narrow lanes. Slow traffic";
const char Event_S_0261[] PROGMEM = "narrow lanes. Slow traffic expected";
const char Event_S_0262[] PROGMEM = "narrow lanes. Heavy traffic";
const char Event_S_0263[] PROGMEM = "narrow lanes. Heavy traffic expected";
const char Event_S_0264[] PROGMEM = "narrow lanes. Traffic flowing freely";
const char Event_S_0265[] PROGMEM = "narrow lanes. Traffic building up";
const char Event_S_0266[] PROGMEM = "contraflow with narrow lanes. Stationary traffic";
const char Event_S_0267[] PROGMEM = "contraflow with narrow lanes. Stationary traffic. Danger of stationary traffic";
const char Event_S_0268[] PROGMEM = "contraflow with narrow lanes. Queuing traffic";
const char Event_S_0269[] PROGMEM = "contraflow with narrow lanes. Danger of queuing traffic";
const char Event_S_026A[] PROGMEM = "contraflow with narrow lanes. Slow traffic";
const char Event_S_026B[] PROGMEM = "contraflow with narrow lanes. Slow traffic expected";
const char Event_S_026C[] PROGMEM = "contraflow with narrow lanes. Heavy traffic";
const char Event_S_026D[] PROGMEM = "contraflow with narrow lanes. Heavy traffic expected";
const char Event_S_026E[] PROGMEM = "contraflow with narrow lanes. Traffic flowing freely";
const char Event_S_026F[] PROGMEM = "contraflow with narrow lanes. Traffic building up";
const char Event_S_0270[] PROGMEM = "lane closures removed";
const char Event_S_0271[] PROGMEM = "message cancelled";
const char Event_S_0272[] PROGMEM = "blocked ahead. Slow traffic for 3 km";
const char Event_S_0273[] PROGMEM = "no motor vehicles without catalytic converters";
const char Event_S_0274[] PROGMEM = "no motor vehicles with even-numbered registration plates";
const char Event_S_0275[] PROGMEM = "no motor vehicles with odd-numbered registration plates";
const char Event_S_0276[] PROGMEM = "open";
const char Event_S_0277[] PROGMEM = "road cleared";
const char Event_S_0278[] PROGMEM = "entry reopened";
const char Event_S_0279[] PROGMEM = "exit reopened";
const char Event_S_027A[] PROGMEM = "all carriageways reopened";
const char Event_S_027B[] PROGMEM = "motor vehicle restrictions lifted";
const char Event_S_027C[] PROGMEM = "traffic restrictions lifted";
const char Event_S_027D[] PROGMEM = "emergency lane closed";
const char Event_S_027E[] PROGMEM = "turning lane closed";
const char Event_S_027F[] PROGMEM = "crawler lane closed";
const char Event_S_0280[] PROGMEM = "slow vehicle lane closed";
const char Event_S_0281[] PROGMEM = "one lane closed";
const char Event_S_0282[] PROGMEM = "emergency lane blocked";
const char Event_S_0283[] PROGMEM = "turning lane blocked";
const char Event_S_0284[] PROGMEM = "crawler lane blocked";
const char Event_S_0285[] PROGMEM = "slow vehicle lane blocked";
const char Event_S_0286[] PROGMEM = "one lane blocked";
const char Event_S_0287[] PROGMEM = "(%s person) carpool lane in operation";
const char Event_S_0288[] PROGMEM = "(%s person) carpool lane closed";
const char Event_S_0289[] PROGMEM = "(%s person) carpool lane blocked";
const char Event_S_028A[] PROGMEM = "carpool restrictions changed (to %s persons per vehicle)";
const char Event_S_028B[] PROGMEM = "(%s) lanes closed. Stationary traffic for 3 km";
const char Event_S_028C[] PROGMEM = "(%s) lanes closed. Queuing traffic for 3 km";
const char Event_S_028D[] PROGMEM = "(%s) lanes closed. Slow traffic for 3 km";
const char Event_S_028E[] PROGMEM = "contraflow. Stationary traffic for 3 km";
const char Event_S_028F[] PROGMEM = "contraflow. Queuing traffic for 3 km";
const char Event_S_0290[] PROGMEM = "contraflow. Slow traffic for 3 km";
const char Event_S_0291[] PROGMEM = "lane blockages cleared";
const char Event_S_0292[] PROGMEM = "contraflow removed";
const char Event_S_0293[] PROGMEM = "(%s person) carpool restrictions lifted";
const char Event_S_0294[] PROGMEM = "lane restrictions lifted";
const char Event_S_0295[] PROGMEM = "use of hard shoulder allowed";
const char Event_S_0296[] PROGMEM = "normal lane regulations restored";
const char Event_S_0297[] PROGMEM = "all carriageways cleared";
const char Event_S_0298[] PROGMEM = "carriageway closed";
const char Event_S_0299[] PROGMEM = "both directions closed";
const char Event_S_029A[] PROGMEM = "intermittent short term closures";
const char Event_S_029F[] PROGMEM = "bus lane available for carpools (with at least %s occupants)";
const char Event_S_02A0[] PROGMEM = "message cancelled";
const char Event_S_02A1[] PROGMEM = "message cancelled";
const char Event_S_02A3[] PROGMEM = "(%s) salting vehicles";
const char Event_S_02A4[] PROGMEM = "bus lane blocked";
const char Event_S_02A6[] PROGMEM = "heavy vehicle lane closed";
const char Event_S_02A7[] PROGMEM = "heavy vehicle lane blocked";
const char Event_S_02A8[] PROGMEM = "reopened for through traffic";
const char Event_S_02A9[] PROGMEM = "(%s) snowploughs";
const char Event_S_02BD[] PROGMEM = "(%s sets of) roadworks";
const char Event_S_02BE[] PROGMEM = "(%s sets of) major roadworks";
const char Event_S_02BF[] PROGMEM = "(%s sets of) maintenance work";
const char Event_S_02C0[] PROGMEM = "(%s sections of) resurfacing work";
const char Event_S_02C1[] PROGMEM = "(%s sets of) central reservation work";
const char Event_S_02C2[] PROGMEM = "(%s sets of) road marking work";
const char Event_S_02C3[] PROGMEM = "bridge maintenance work (at %s bridges)";
const char Event_S_02C4[] PROGMEM = "(%s sets of) temporary traffic lights";
const char Event_S_02C5[] PROGMEM = "(%s sections of) blasting work";
const char Event_S_02C6[] PROGMEM = "(%s sets of) roadworks. Stationary traffic";
const char Event_S_02C7[] PROGMEM = "(%s sets of) roadworks. Stationary traffic for 1 km";
const char Event_S_02C8[] PROGMEM = "(%s sets of) roadworks. Stationary traffic for 2 km";
const char Event_S_02C9[] PROGMEM = "(%s sets of) roadworks. Stationary traffic for 4 km";
const char Event_S_02CA[] PROGMEM = "(%s sets of) roadworks. Stationary traffic for 6 km";
const char Event_S_02CB[] PROGMEM = "(%s sets of) roadworks. Stationary traffic for 10 km";
const char Event_S_02CC[] PROGMEM = "(%s sets of) roadworks. Danger of stationary traffic";
const char Event_S_02CD[] PROGMEM = "(%s sets of) roadworks. Queuing traffic";
const char Event_S_02CE[] PROGMEM = "(%s sets of) roadworks. Queuing traffic for 1 km";
const char Event_S_02CF[] PROGMEM = "(%s sets of) roadworks. Queuing traffic for 2 km";
const char Event_S_02D0[] PROGMEM = "(%s sets of) roadworks. Queuing traffic for 4 km";
const char Event_S_02D1[] PROGMEM = "(%s sets of) roadworks. Queuing traffic for 6 km";
const char Event_S_02D2[] PROGMEM = "(%s sets of) roadworks. Queuing traffic for 10 km";
const char Event_S_02D3[] PROGMEM = "(%s sets of) roadworks. Danger of queuing traffic";
const char Event_S_02D4[] PROGMEM = "(%s sets of) roadworks. Slow traffic";
const char Event_S_02D5[] PROGMEM = "(%s sets of) roadworks. Slow traffic for 1 km";
const char Event_S_02D6[] PROGMEM = "(%s sets of) roadworks. Slow traffic for 2 km";
const char Event_S_02D7[] PROGMEM = "(%s sets of) roadworks. Slow traffic for 4 km";
const char Event_S_02D8[] PROGMEM = "(%s sets of) roadworks. Slow traffic for 6 km";
const char Event_S_02D9[] PROGMEM = "(%s sets of) roadworks. Slow traffic for 10 km";
const char Event_S_02DA[] PROGMEM = "(%s sets of) roadworks. Slow traffic expected";
const char Event_S_02DB[] PROGMEM = "(%s sets of) roadworks. Heavy traffic";
const char Event_S_02DC[] PROGMEM = "(%s sets of) roadworks. Heavy traffic expected";
const char Event_S_02DD[] PROGMEM = "(%s sets of) roadworks. Traffic flowing freely";
const char Event_S_02DE[] PROGMEM = "(%s sets of) roadworks. Traffic building up";
const char Event_S_02DF[] PROGMEM = "closed due to (%s sets of) roadworks";
const char Event_S_02E0[] PROGMEM = "(%s sets of) roadworks. Right lane closed";
const char Event_S_02E1[] PROGMEM = "(%s sets of) roadworks. Centre lane closed";
const char Event_S_02E2[] PROGMEM = "(%s sets of) roadworks. Left lane closed";
const char Event_S_02E3[] PROGMEM = "(%s sets of) roadworks. Hard shoulder closed";
const char Event_S_02E4[] PROGMEM = "(%s sets of) roadworks. Two lanes closed";
const char Event_S_02E5[] PROGMEM = "(%s sets of) roadworks. Three lanes closed";
const char Event_S_02E6[] PROGMEM = "(%s sets of) roadworks. Single alternate line traffic";
const char Event_S_02E7[] PROGMEM = "roadworks. Carriageway reduced (from %s lanes) to one lane";
const char Event_S_02E8[] PROGMEM = "roadworks. Carriageway reduced (from %s lanes) to two lanes";
const char Event_S_02E9[] PROGMEM = "roadworks. Carriageway reduced (from %s lanes) to three lanes";
const char Event_S_02EA[] PROGMEM = "(%s sets of) roadworks. Contraflow";
const char Event_S_02EB[] PROGMEM = "roadworks. Delays (%s)";
const char Event_S_02EC[] PROGMEM = "roadworks. Delays (%s) expected";
const char Event_S_02ED[] PROGMEM = "roadworks. Long delays (%s)";
const char Event_S_02EE[] PROGMEM = "(%s sections of) resurfacing work. Stationary traffic";
const char Event_S_02EF[] PROGMEM = "(%s sections of) resurfacing work. Stationary traffic for 1 km";
const char Event_S_02F0[] PROGMEM = "(%s sections of) resurfacing work. Stationary traffic for 2 km";
const char Event_S_02F1[] PROGMEM = "(%s sections of) resurfacing work. Stationary traffic for 4 km";
const char Event_S_02F2[] PROGMEM = "(%s sections of) resurfacing work. Stationary traffic for 6 km";
const char Event_S_02F3[] PROGMEM = "(%s sections of) resurfacing work. Stationary traffic for 10 km";
const char Event_S_02F4[] PROGMEM = "(%s sections of) resurfacing work. Danger of stationary traffic";
const char Event_S_02F5[] PROGMEM = "(%s sections of) resurfacing work. Queuing traffic";
const char Event_S_02F6[] PROGMEM = "(%s sections of) resurfacing work. Queuing traffic for 1 km";
const char Event_S_02F7[] PROGMEM = "(%s sections of) resurfacing work. Queuing traffic for 2 km";
const char Event_S_02F8[] PROGMEM = "(%s sections of) resurfacing work. Queuing traffic for 4 km";
const char Event_S_02F9[] PROGMEM = "(%s sections of) resurfacing work. Queuing traffic for 6 km";
const char Event_S_02FA[] PROGMEM = "(%s sections of) resurfacing work. Queuing traffic for 10 km";
const char Event_S_02FB[] PROGMEM = "(%s sections of) resurfacing work. Danger of queuing traffic";
const char Event_S_02FC[] PROGMEM = "(%s sections of) resurfacing work. Slow traffic";
const char Event_S_02FD[] PROGMEM = "(%s sections of) resurfacing work. Slow traffic for 1 km";
const char Event_S_02FE[] PROGMEM = "(%s sections of) resurfacing work. Slow traffic for 2 km";
const char Event_S_02FF[] PROGMEM = "(%s sections of) resurfacing work. Slow traffic for 4 km";
const char Event_S_0300[] PROGMEM = "(%s sections of) resurfacing work. Slow traffic for 6 km";
const char Event_S_0301[] PROGMEM = "(%s sections of) resurfacing work. Slow traffic for 10 km";
const char Event_S_0302[] PROGMEM = "(%s sections of) resurfacing work. Slow traffic expected";
const char Event_S_0303[] PROGMEM = "(%s sections of) resurfacing work. Heavy traffic";
const char Event_S_0304[] PROGMEM = "(%s sections of) resurfacing work. Heavy traffic expected";
const char Event_S_0305[] PROGMEM = "(%s sections of) resurfacing work. Traffic flowing freely";
const char Event_S_0306[] PROGMEM = "(%s sections of) resurfacing work. Traffic building up";
const char Event_S_0307[] PROGMEM = "(%s sections of) resurfacing work. Single alternate line traffic";
const char Event_S_0308[] PROGMEM = "resurfacing work. Carriageway reduced (from %s lanes) to one lane";
const char Event_S_0309[] PROGMEM = "resurfacing work. Carriageway reduced (from %s lanes) to two lanes";
const char Event_S_030A[] PROGMEM = "resurfacing work. Carriageway reduced (from %s lanes) to three lanes";
const char Event_S_030B[] PROGMEM = "(%s sections of) resurfacing work. Contraflow";
const char Event_S_030C[] PROGMEM = "resurfacing work. Delays (%s)";
const char Event_S_030D[] PROGMEM = "resurfacing work. Delays (%s) expected";
const char Event_S_030E[] PROGMEM = "resurfacing work. Long delays (%s)";
const char Event_S_030F[] PROGMEM = "(%s sets of) road marking work. Stationary traffic";
const char Event_S_0310[] PROGMEM = "(%s sets of) road marking work. Danger of stationary traffic";
const char Event_S_0311[] PROGMEM = "(%s sets of) road marking work. Queuing traffic";
const char Event_S_0312[] PROGMEM = "(%s sets of) road marking work. Danger of queuing traffic";
const char Event_S_0313[] PROGMEM = "(%s sets of) road marking work. Slow traffic";
const char Event_S_0314[] PROGMEM = "(%s sets of) road marking work. Slow traffic expected";
const char Event_S_0315[] PROGMEM = "(%s sets of) road marking work. Heavy traffic";
const char Event_S_0316[] PROGMEM = "(%s sets of) road marking work. Heavy traffic expected";
const char Event_S_0317[] PROGMEM = "(%s sets of) road marking work. Traffic flowing freely";
const char Event_S_0318[] PROGMEM = "(%s sets of) road marking work. Traffic building up";
const char Event_S_0319[] PROGMEM = "(%s sets of) road marking work. Right lane closed";
const char Event_S_031A[] PROGMEM = "(%s sets of) road marking work. Centre lane closed";
const char Event_S_031B[] PROGMEM = "(%s sets of) road marking work. Left lane closed";
const char Event_S_031C[] PROGMEM = "(%s sets of) road marking work. Hard shoulder closed";
const char Event_S_031D[] PROGMEM = "(%s sets of) road marking work. Two lanes closed";
const char Event_S_031E[] PROGMEM = "(%s sets of) road marking work. Three lanes closed";
const char Event_S_031F[] PROGMEM = "closed for bridge demolition work (at %s bridges)";
const char Event_S_0320[] PROGMEM = "roadworks cleared";
const char Event_S_0321[] PROGMEM = "message cancelled";
const char Event_S_0322[] PROGMEM = "(%s sets of) long-term roadworks";
const char Event_S_0323[] PROGMEM = "(%s sets of) construction work";
const char Event_S_0324[] PROGMEM = "(%s sets of) slow moving maintenance vehicles";
const char Event_S_0325[] PROGMEM = "bridge demolition work (at %s bridges)";
const char Event_S_0326[] PROGMEM = "(%s sets of) water main work";
const char Event_S_0327[] PROGMEM = "(%s sets of) gas main work";
const char Event_S_0328[] PROGMEM = "(%s sets of) work on buried cables";
const char Event_S_0329[] PROGMEM = "(%s sets of) work on buried services";
const char Event_S_032A[] PROGMEM = "new roadworks layout";
const char Event_S_032B[] PROGMEM = "new road layout";
const char Event_S_032C[] PROGMEM = "(%s sets of) roadworks. Stationary traffic for 3 km";
const char Event_S_032D[] PROGMEM = "(%s sets of) roadworks. Queuing traffic for 3 km";
const char Event_S_032E[] PROGMEM = "(%s sets of) roadworks. Slow traffic for 3 km";
const char Event_S_032F[] PROGMEM = "(%s sets of) roadworks during the day time";
const char Event_S_0330[] PROGMEM = "(%s sets of) roadworks during off-peak periods";
const char Event_S_0331[] PROGMEM = "(%s sets of) roadworks during the night";
const char Event_S_0332[] PROGMEM = "(%s sections of) resurfacing work. Stationary traffic for 3 km";
const char Event_S_0333[] PROGMEM = "(%s sections of) resurfacing work. Queuing traffic for 3 km";
const char Event_S_0334[] PROGMEM = "(%s sections of) resurfacing work. Slow traffic for 3 km";
const char Event_S_0335[] PROGMEM = "(%s sets of) resurfacing work during the day time";
const char Event_S_0336[] PROGMEM = "(%s sets of) resurfacing work during off-peak periods";
const char Event_S_0337[] PROGMEM = "(%s sets of) resurfacing work during the night";
const char Event_S_0338[] PROGMEM = "(%s sets of) road marking work. Danger";
const char Event_S_0339[] PROGMEM = "(%s sets of) slow moving maintenance vehicles. Stationary traffic";
const char Event_S_033A[] PROGMEM = "(%s sets of) slow moving maintenance vehicles. Danger of stationary traffic";
const char Event_S_033B[] PROGMEM = "(%s sets of) slow moving maintenance vehicles. Queuing traffic";
const char Event_S_033C[] PROGMEM = "(%s sets of) slow moving maintenance vehicles. Danger of queuing traffic";
const char Event_S_033D[] PROGMEM = "(%s sets of) slow moving maintenance vehicles. Slow traffic";
const char Event_S_033E[] PROGMEM = "(%s sets of) slow moving maintenance vehicles. Slow traffic expected";
const char Event_S_033F[] PROGMEM = "(%s sets of) slow moving maintenance vehicles. Heavy traffic";
const char Event_S_0340[] PROGMEM = "(%s sets of) slow moving maintenance vehicles. Heavy traffic expected";
const char Event_S_0341[] PROGMEM = "(%s sets of) slow moving maintenance vehicles. Traffic flowing freely";
const char Event_S_0342[] PROGMEM = "(%s sets of) slow moving maintenance vehicles. Traffic building up";
const char Event_S_0343[] PROGMEM = "(%s sets of) slow moving maintenance vehicles. Right lane closed";
const char Event_S_0344[] PROGMEM = "(%s sets of) slow moving maintenance vehicles. Centre lane closed";
const char Event_S_0345[] PROGMEM = "(%s sets of) slow moving maintenance vehicles. Left lane closed";
const char Event_S_0346[] PROGMEM = "(%s sets of) slow moving maintenance vehicles. Two lanes closed";
const char Event_S_0347[] PROGMEM = "(%s sets of) slow moving maintenance vehicles. Three lanes closed";
const char Event_S_0348[] PROGMEM = "water main work. Delays (%s)";
const char Event_S_0349[] PROGMEM = "water main work. Delays (%s) expected";
const char Event_S_034A[] PROGMEM = "water main work. Long delays (%s)";
const char Event_S_034B[] PROGMEM = "gas main work. Delays (%s)";
const char Event_S_034C[] PROGMEM = "gas main work. Delays (%s) expected";
const char Event_S_034D[] PROGMEM = "gas main work. Long delays (%s)";
const char Event_S_034E[] PROGMEM = "work on buried cables. Delays (%s)";
const char Event_S_034F[] PROGMEM = "work on buried cables. Delays (%s) expected";
const char Event_S_0350[] PROGMEM = "work on buried cables. Long delays (%s)";
const char Event_S_0351[] PROGMEM = "work on buried services. Delays (%s)";
const char Event_S_0352[] PROGMEM = "work on buried services. Delays (%s) expected";
const char Event_S_0353[] PROGMEM = "work on buried services. Long delays (%s)";
const char Event_S_0354[] PROGMEM = "construction traffic merging";
const char Event_S_0355[] PROGMEM = "roadwork clearance in progress";
const char Event_S_0356[] PROGMEM = "maintenance work cleared";
const char Event_S_0357[] PROGMEM = "road layout unchanged";
const char Event_S_0358[] PROGMEM = "construction traffic merging. Danger";
const char Event_S_0359[] PROGMEM = "(%s) unprotected accident area(s)";
const char Event_S_035A[] PROGMEM = "danger of(%s) unprotected accident area(s)";
const char Event_S_035B[] PROGMEM = "(%s) unlit vehicle(s) on the road";
const char Event_S_035C[] PROGMEM = "danger of (%s) unlit vehicle(s) on the road";
const char Event_S_035D[] PROGMEM = "snow and ice debris";
const char Event_S_035E[] PROGMEM = "danger of snow and ice debris";
const char Event_S_0381[] PROGMEM = "people throwing objects onto the road. Danger";
const char Event_S_0382[] PROGMEM = "obstruction warning withdrawn";
const char Event_S_0383[] PROGMEM = "clearance work in progress, road free again";
const char Event_S_0384[] PROGMEM = "flooding expected";
const char Event_S_0385[] PROGMEM = "(%s) obstruction(s) on roadway";
const char Event_S_0386[] PROGMEM = "(%s) obstructions on the road. Danger";
const char Event_S_0387[] PROGMEM = "spillage on the road";
const char Event_S_0388[] PROGMEM = "storm damage";
const char Event_S_0389[] PROGMEM = "(%s) fallen trees";
const char Event_S_038A[] PROGMEM = "(%s) fallen trees. Danger";
const char Event_S_038B[] PROGMEM = "flooding";
const char Event_S_038C[] PROGMEM = "flooding. Danger";
const char Event_S_038D[] PROGMEM = "flash floods";
const char Event_S_038E[] PROGMEM = "danger of flash floods";
const char Event_S_038F[] PROGMEM = "avalanches";
const char Event_S_0390[] PROGMEM = "avalanche risk";
const char Event_S_0391[] PROGMEM = "rockfalls";
const char Event_S_0392[] PROGMEM = "landslips";
const char Event_S_0393[] PROGMEM = "earthquake damage";
const char Event_S_0394[] PROGMEM = "road surface in poor condition";
const char Event_S_0395[] PROGMEM = "subsidence";
const char Event_S_0396[] PROGMEM = "(%s) collapsed sewer(s)";
const char Event_S_0397[] PROGMEM = "burst water main";
const char Event_S_0398[] PROGMEM = "gas leak";
const char Event_S_0399[] PROGMEM = "serious fire";
const char Event_S_039A[] PROGMEM = "animals on roadway";
const char Event_S_039B[] PROGMEM = "animals on the road. Danger";
const char Event_S_039C[] PROGMEM = "clearance work";
const char Event_S_039D[] PROGMEM = "blocked by storm damage";
const char Event_S_039E[] PROGMEM = "blocked by (%s) fallen trees";
const char Event_S_039F[] PROGMEM = "(%s) fallen tree(s). Passable with care";
const char Event_S_03A0[] PROGMEM = "flooding. Stationary traffic";
const char Event_S_03A1[] PROGMEM = "flooding. Danger of stationary traffic";
const char Event_S_03A2[] PROGMEM = "flooding. Queuing traffic";
const char Event_S_03A3[] PROGMEM = "flooding. Danger of queuing traffic";
const char Event_S_03A4[] PROGMEM = "flooding. Slow traffic";
const char Event_S_03A5[] PROGMEM = "flooding. Slow traffic expected";
const char Event_S_03A6[] PROGMEM = "flooding. Heavy traffic";
const char Event_S_03A7[] PROGMEM = "flooding. Heavy traffic expected";
const char Event_S_03A8[] PROGMEM = "flooding. Traffic flowing freely";
const char Event_S_03A9[] PROGMEM = "flooding. Traffic building up";
const char Event_S_03AA[] PROGMEM = "closed due to flooding";
const char Event_S_03AB[] PROGMEM = "flooding. Delays (%s)";
const char Event_S_03AC[] PROGMEM = "flooding. Delays (%s) expected";
const char Event_S_03AD[] PROGMEM = "flooding. Long delays (%s)";
const char Event_S_03AE[] PROGMEM = "flooding. Passable with care";
const char Event_S_03AF[] PROGMEM = "closed due to avalanches";
const char Event_S_03B0[] PROGMEM = "avalanches. Passable with care (above %s hundred metres)";
const char Event_S_03B1[] PROGMEM = "closed due to rockfalls";
const char Event_S_03B2[] PROGMEM = "rockfalls. Passable with care";
const char Event_S_03B3[] PROGMEM = "road closed due to landslips";
const char Event_S_03B4[] PROGMEM = "landslips. Passable with care";
const char Event_S_03B5[] PROGMEM = "closed due to subsidence";
const char Event_S_03B6[] PROGMEM = "subsidence. Single alternate line traffic";
const char Event_S_03B7[] PROGMEM = "subsidence. Carriageway reduced (from %s lanes) to one lane";
const char Event_S_03B8[] PROGMEM = "subsidence. Carriageway reduced (from %s lanes) to two lanes";
const char Event_S_03B9[] PROGMEM = "subsidence. Carriageway reduced (from %s lanes) to three lanes";
const char Event_S_03BA[] PROGMEM = "subsidence. Contraflow in operation";
const char Event_S_03BB[] PROGMEM = "subsidence. Passable with care";
const char Event_S_03BC[] PROGMEM = "closed due to sewer collapse";
const char Event_S_03BD[] PROGMEM = "road closed due to burst water main";
const char Event_S_03BE[] PROGMEM = "burst water main. Delays (%s)";
const char Event_S_03BF[] PROGMEM = "burst water main. Delays (%s) expected";
const char Event_S_03C0[] PROGMEM = "burst water main. Long delays (%s)";
const char Event_S_03C1[] PROGMEM = "closed due to gas leak";
const char Event_S_03C2[] PROGMEM = "gas leak. Delays (%s)";
const char Event_S_03C3[] PROGMEM = "gas leak. Delays (%s) expected";
const char Event_S_03C4[] PROGMEM = "gas leak. Long delays (%s)";
const char Event_S_03C5[] PROGMEM = "closed due to serious fire";
const char Event_S_03C6[] PROGMEM = "serious fire. Delays (%s)";
const char Event_S_03C7[] PROGMEM = "serious fire. Delays (%s) expected";
const char Event_S_03C8[] PROGMEM = "serious fire. Long delays (%s)";
const char Event_S_03C9[] PROGMEM = "closed for clearance work";
const char Event_S_03CA[] PROGMEM = "road free again";
const char Event_S_03CB[] PROGMEM = "message cancelled";
const char Event_S_03CC[] PROGMEM = "storm damage expected";
const char Event_S_03CD[] PROGMEM = "fallen power cables";
const char Event_S_03CE[] PROGMEM = "sewer overflow";
const char Event_S_03CF[] PROGMEM = "ice build-up";
const char Event_S_03D0[] PROGMEM = "mud slide";
const char Event_S_03D1[] PROGMEM = "grass fire";
const char Event_S_03D2[] PROGMEM = "air crash";
const char Event_S_03D3[] PROGMEM = "rail crash";
const char Event_S_03D4[] PROGMEM = "blocked by (%s) obstruction(s) on the road";
const char Event_S_03D5[] PROGMEM = "(%s) obstructions on the road. Passable with care";
const char Event_S_03D6[] PROGMEM = "blocked due to spillage on roadway";
const char Event_S_03D7[] PROGMEM = "spillage on the road. Passable with care";
const char Event_S_03D8[] PROGMEM = "spillage on the road. Danger";
const char Event_S_03D9[] PROGMEM = "storm damage. Passable with care";
const char Event_S_03DA[] PROGMEM = "storm damage. Danger";
const char Event_S_03DB[] PROGMEM = "blocked by fallen power cables";
const char Event_S_03DC[] PROGMEM = "fallen power cables. Passable with care";
const char Event_S_03DD[] PROGMEM = "fallen power cables. Danger";
const char Event_S_03DE[] PROGMEM = "sewer overflow. Danger";
const char Event_S_03DF[] PROGMEM = "flash floods. Danger";
const char Event_S_03E0[] PROGMEM = "avalanches. Danger";
const char Event_S_03E1[] PROGMEM = "closed due to avalanche risk";
const char Event_S_03E2[] PROGMEM = "avalanche risk. Danger";
const char Event_S_03E3[] PROGMEM = "closed due to ice build-up";
const char Event_S_03E4[] PROGMEM = "ice build-up. Passable with care (above %s hundred metres)";
const char Event_S_03E5[] PROGMEM = "ice build-up. Single alternate traffic";
const char Event_S_03E6[] PROGMEM = "rockfalls. Danger";
const char Event_S_03E7[] PROGMEM = "landslips. Danger";
const char Event_S_03E8[] PROGMEM = "earthquake damage. Danger";
const char Event_S_03E9[] PROGMEM = "hazardous driving conditions (above %s hundred metres)";
const char Event_S_03EA[] PROGMEM = "danger of aquaplaning";
const char Event_S_03EB[] PROGMEM = "slippery road (above %s hundred metres)";
const char Event_S_03EC[] PROGMEM = "mud on road";
const char Event_S_03ED[] PROGMEM = "leaves on road";
const char Event_S_03EE[] PROGMEM = "ice (above %s hundred metres)";
const char Event_S_03EF[] PROGMEM = "danger of ice (above %s hundred metres)";
const char Event_S_03F0[] PROGMEM = "black ice (above %s hundred metres)";
const char Event_S_03F1[] PROGMEM = "freezing rain (above %s hundred metres)";
const char Event_S_03F2[] PROGMEM = "wet and icy roads (above %s hundred metres)";
const char Event_S_03F3[] PROGMEM = "slush (above %s hundred metres)";
const char Event_S_03F4[] PROGMEM = "snow on the road (above %s hundred metres)";
const char Event_S_03F5[] PROGMEM = "packed snow (above %s hundred metres)";
const char Event_S_03F6[] PROGMEM = "fresh snow (above %s hundred metres)";
const char Event_S_03F7[] PROGMEM = "deep snow (above %s hundred metres)";
const char Event_S_03F8[] PROGMEM = "snow drifts (above %s hundred metres)";
const char Event_S_03F9[] PROGMEM = "slippery due to spillage on roadway";
const char Event_S_03FA[] PROGMEM = "slippery road (above %s hundred metres) due to snow";
const char Event_S_03FB[] PROGMEM = "slippery road (above %s hundred metres) due to frost";
const char Event_S_03FC[] PROGMEM = "road blocked by snow (above %s hundred metres)";
const char Event_S_03FD[] PROGMEM = "snow on the road. Carriageway reduced (from %s lanes) to one lane";
const char Event_S_03FE[] PROGMEM = "snow on the road. Carriageway reduced (from %s lanes) to two lanes";
const char Event_S_03FF[] PROGMEM = "snow on the road. Carriageway reduced (from %s lanes) to three lanes";
const char Event_S_0400[] PROGMEM = "conditions of road surface improved";
const char Event_S_0401[] PROGMEM = "message cancelled";
const char Event_S_0402[] PROGMEM = "subsidence. Danger";
const char Event_S_0403[] PROGMEM = "sewer collapse. Delays (%s)";
const char Event_S_0404[] PROGMEM = "sewer collapse. Delays (%s) expected";
const char Event_S_0405[] PROGMEM = "sewer collapse. Long delays (%s)";
const char Event_S_0406[] PROGMEM = "sewer collapse. Danger";
const char Event_S_0407[] PROGMEM = "burst water main. Danger";
const char Event_S_0408[] PROGMEM = "gas leak. Danger";
const char Event_S_0409[] PROGMEM = "serious fire. Danger";
const char Event_S_040A[] PROGMEM = "clearance work. Danger";
const char Event_S_040B[] PROGMEM = "impassable (above %s hundred metres)";
const char Event_S_040C[] PROGMEM = "almost impassable (above %s hundred metres)";
const char Event_S_040D[] PROGMEM = "extremely hazardous driving conditions (above %s hundred metres)";
const char Event_S_040E[] PROGMEM = "difficult driving conditions (above %s hundred metres)";
const char Event_S_040F[] PROGMEM = "passable with care (up to %s hundred metres)";
const char Event_S_0410[] PROGMEM = "passable (up to %s hundred metres)";
const char Event_S_0411[] PROGMEM = "surface water hazard";
const char Event_S_0412[] PROGMEM = "loose sand on road";
const char Event_S_0413[] PROGMEM = "loose chippings";
const char Event_S_0414[] PROGMEM = "oil on road";
const char Event_S_0415[] PROGMEM = "petrol on road";
const char Event_S_0416[] PROGMEM = "ice expected (above %s hundred metres)";
const char Event_S_0417[] PROGMEM = "icy patches (above %s hundred metres)";
const char Event_S_0418[] PROGMEM = "danger of icy patches (above %s hundred metres)";
const char Event_S_0419[] PROGMEM = "icy patches expected (above %s hundred metres)";
const char Event_S_041A[] PROGMEM = "danger of black ice (above %s hundred metres)";
const char Event_S_041B[] PROGMEM = "black ice expected (above %s hundred metres)";
const char Event_S_041C[] PROGMEM = "freezing rain expected (above %s hundred metres)";
const char Event_S_041D[] PROGMEM = "snow drifts expected (above %s hundred metres)";
const char Event_S_041E[] PROGMEM = "slippery due to loose sand on roadway";
const char Event_S_041F[] PROGMEM = "mud on road. Danger";
const char Event_S_0420[] PROGMEM = "loose chippings. Danger";
const char Event_S_0421[] PROGMEM = "oil on road. Danger";
const char Event_S_0422[] PROGMEM = "petrol on road. Danger";
const char Event_S_0423[] PROGMEM = "road surface in poor condition. Danger";
const char Event_S_0424[] PROGMEM = "icy patches (above %s hundred metres) on bridges";
const char Event_S_0425[] PROGMEM = "danger of icy patches (above %s hundred metres) on bridges";
const char Event_S_0426[] PROGMEM = "icy patches (above %s hundred metres) on bridges, in shaded areas and on slip roads";
const char Event_S_0427[] PROGMEM = "impassable for heavy vehicles (over %s)";
const char Event_S_0428[] PROGMEM = "impassable (above %s hundred metres) for vehicles with trailers";
const char Event_S_0429[] PROGMEM = "driving conditions improved";
const char Event_S_042A[] PROGMEM = "rescue and recovery work in progress. Danger";
const char Event_S_042B[] PROGMEM = "large animals on roadway";
const char Event_S_042C[] PROGMEM = "herds of animals on roadway";
const char Event_S_042D[] PROGMEM = "skid hazard reduced";
const char Event_S_042E[] PROGMEM = "snow cleared";
const char Event_S_042F[] PROGMEM = "road conditions forecast withdrawn";
const char Event_S_0430[] PROGMEM = "message cancelled";
const char Event_S_0431[] PROGMEM = "extremely hazardous driving conditions expected (above %s hundred meters)";
const char Event_S_0432[] PROGMEM = "freezing rain expected (above %s hundred metres)";
const char Event_S_0433[] PROGMEM = "danger of road being blocked by snow (above %s hundred metres)";
const char Event_S_0437[] PROGMEM = "temperature falling rapidly (to %s)";
const char Event_S_0438[] PROGMEM = "extreme heat (up to %s)";
const char Event_S_0439[] PROGMEM = "extreme cold (of %s)";
const char Event_S_043A[] PROGMEM = "less extreme temperatures";
const char Event_S_043B[] PROGMEM = "current temperature (%s)";
const char Event_S_043C[] PROGMEM = "house fire";
const char Event_S_043D[] PROGMEM = "forest fire";
const char Event_S_043E[] PROGMEM = "vehicle stuck under bridge";
const char Event_S_0442[] PROGMEM = "volcano eruption warning";
const char Event_S_044D[] PROGMEM = "heavy snowfall (%s)";
const char Event_S_044E[] PROGMEM = "heavy snowfall (%s). Visibility reduced to <30 m";
const char Event_S_044F[] PROGMEM = "heavy snowfall (%s). Visibility reduced to <50 m";
const char Event_S_0450[] PROGMEM = "snowfall (%s)";
const char Event_S_0451[] PROGMEM = "snowfall (%s). Visibility reduced to <100 m";
const char Event_S_0452[] PROGMEM = "hail (visibility reduced to %s)";
const char Event_S_0453[] PROGMEM = "sleet (visibility reduced to %s)";
const char Event_S_0454[] PROGMEM = "thunderstorms (visibility reduced to %s)";
const char Event_S_0455[] PROGMEM = "heavy rain (%s)";
const char Event_S_0456[] PROGMEM = "heavy rain (%s). Visibility reduced to <30 m";
const char Event_S_0457[] PROGMEM = "heavy rain (%s). Visibility reduced to <50 m";
const char Event_S_0458[] PROGMEM = "rain (%s)";
const char Event_S_0459[] PROGMEM = "rain (%s). Visibility reduced to <100 m";
const char Event_S_045A[] PROGMEM = "showers (visibility reduced to %s)";
const char Event_S_045B[] PROGMEM = "heavy frost";
const char Event_S_045C[] PROGMEM = "frost";
const char Event_S_045D[] PROGMEM = "(%s probability of) overcast weather";
const char Event_S_045E[] PROGMEM = "(%s probability of) mostly cloudy";
const char Event_S_045F[] PROGMEM = "(%s probability of) partly cloudy";
const char Event_S_0460[] PROGMEM = "(%s probability of) sunny periods";
const char Event_S_0461[] PROGMEM = "(%s probability of) clear weather";
const char Event_S_0462[] PROGMEM = "(%s probability of) sunny weather";
const char Event_S_0463[] PROGMEM = "(%s probability of) mostly dry weather";
const char Event_S_0464[] PROGMEM = "(%s probability of) dry weather";
const char Event_S_0465[] PROGMEM = "sunny periods and with (%s probability of) showers";
const char Event_S_0466[] PROGMEM = "weather situation improved";
const char Event_S_0467[] PROGMEM = "message cancelled";
const char Event_S_0468[] PROGMEM = "winter storm (visibility reduced to %s)";
const char Event_S_0469[] PROGMEM = "(%s probability of) winter storm";
const char Event_S_046A[] PROGMEM = "blizzard (visibility reduced to %s)";
const char Event_S_046B[] PROGMEM = "(%s probability of) blizzard";
const char Event_S_046C[] PROGMEM = "damaging hail (visibility reduced to %s)";
const char Event_S_046D[] PROGMEM = "(%s probability of) damaging hail";
const char Event_S_046E[] PROGMEM = "heavy snowfall. Visibility reduced (to %s)";
const char Event_S_046F[] PROGMEM = "snowfall. Visibility reduced (to %s)";
const char Event_S_0470[] PROGMEM = "heavy rain. Visibility reduced (to %s)";
const char Event_S_0471[] PROGMEM = "rain. Visibility reduced (to %s)";
const char Event_S_0472[] PROGMEM = "severe weather warnings cancelled";
const char Event_S_0473[] PROGMEM = "message cancelled";
const char Event_S_0474[] PROGMEM = "weather forecast withdrawn";
const char Event_S_0475[] PROGMEM = "fog forecast withdrawn";
const char Event_S_0477[] PROGMEM = "slippery road expected (above %s hundred metres)";
const char Event_S_047F[] PROGMEM = "(%s probability of) heavy snowfall";
const char Event_S_0480[] PROGMEM = "(%s probability of) snowfall";
const char Event_S_0481[] PROGMEM = "(%s probability of) hail";
const char Event_S_0482[] PROGMEM = "(%s probability of) sleet";
const char Event_S_0483[] PROGMEM = "(%s probability of) thunderstorms";
const char Event_S_0484[] PROGMEM = "(%s probability of) heavy rain";
const char Event_S_0485[] PROGMEM = "(%s probability of) rain";
const char Event_S_0486[] PROGMEM = "(%s probability of) showers";
const char Event_S_0487[] PROGMEM = "(%s probability of) heavy frost";
const char Event_S_0488[] PROGMEM = "(%s probability of) frost";
const char Event_S_048D[] PROGMEM = "rain changing to snow";
const char Event_S_048E[] PROGMEM = "snow changing to rain";
const char Event_S_0492[] PROGMEM = "heavy snowfall (%s) expected";
const char Event_S_0493[] PROGMEM = "heavy rain (%s) expected";
const char Event_S_0494[] PROGMEM = "weather expected to improve";
const char Event_S_0495[] PROGMEM = "blizzard (with visibility reduced to %s) expected";
const char Event_S_0496[] PROGMEM = "damaging hail (with visibility reduced to %s) expected";
const char Event_S_0497[] PROGMEM = "reduced visibility (to %s) expected";
const char Event_S_0498[] PROGMEM = "freezing fog expected (with visibility reduced to %s). Danger of slippery roads";
const char Event_S_0499[] PROGMEM = "dense fog (with visibility reduced to %s) expected";
const char Event_S_049A[] PROGMEM = "patchy fog (with visibility reduced to %s) expected";
const char Event_S_049B[] PROGMEM = "visibility expected to improve";
const char Event_S_049C[] PROGMEM = "adverse weather warning withdrawn";
const char Event_S_04A6[] PROGMEM = "severe smog";
const char Event_S_04A7[] PROGMEM = "severe exhaust pollution";
const char Event_S_04B1[] PROGMEM = "tornadoes";
const char Event_S_04B2[] PROGMEM = "hurricane force winds (%s)";
const char Event_S_04B3[] PROGMEM = "gales (%s)";
const char Event_S_04B4[] PROGMEM = "storm force winds (%s)";
const char Event_S_04B5[] PROGMEM = "strong winds (%s)";
const char Event_S_04B6[] PROGMEM = "moderate winds (%s)";
const char Event_S_04B7[] PROGMEM = "light winds (%s)";
const char Event_S_04B8[] PROGMEM = "calm weather";
const char Event_S_04B9[] PROGMEM = "gusty winds (%s)";
const char Event_S_04BA[] PROGMEM = "crosswinds (%s)";
const char Event_S_04BB[] PROGMEM = "strong winds (%s) affecting high-sided vehicles";
const char Event_S_04BC[] PROGMEM = "closed for high-sided vehicles due to strong winds (%s)";
const char Event_S_04BD[] PROGMEM = "strong winds easing";