-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path05a586a4be326c12c885a616fb8b2d65.html
More file actions
1487 lines (1217 loc) · 169 KB
/
05a586a4be326c12c885a616fb8b2d65.html
File metadata and controls
1487 lines (1217 loc) · 169 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
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
<!DOCTYPE html><html class="no-js" lang="en-us"><head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1" name="viewport">
<title>As Israel expands ground war against Hamas, Gaza death toll exceeds 20,000 | PBS NewsHour</title>
<meta name="description" content="That figure was released Friday. It is the latest indication of the staggering cost of the war as Israel expands its ground offensive and ordered tens of thousands more people to leave their homes.">
<meta property="og:locale" content="en_US">
<meta property="og:type" content="article">
<meta property="og:site_name" content="PBS NewsHour">
<meta property="og:title" content="As Israel expands ground war against Hamas, Gaza death toll exceeds 20,000">
<meta property="og:description" content="That figure was released Friday. It is the latest indication of the staggering cost of the war as Israel expands its ground offensive and ordered tens of thousands more people to leave their homes.">
<meta property="og:image" content="https://d3i6fh83elv35t.cloudfront.net/static/2023/12/2023-12-19T121153Z_383532813_RC2505AFN3QR_RTRMADP_3_ISRAEL-PALESTINIANS-1024x683.jpg">
<meta property="og:image:height" content="683">
<meta property="og:image:width" content="1024">
<meta property="og:url" content="https://www.pbs.org/newshour/world/as-israel-expands-ground-war-against-hamas-gaza-death-toll-exceeds-20000">
<meta property="article:publisher" content="https://www.facebook.com/newshour/">
<meta property="article:published_time" content="2023-12-22T10:59:26-05:00">
<meta property="article:section" content="World">
<meta property="article:tag" content="death toll, gaza, gaza strip, hamas, israel">
<meta property="fb:app_id" content="114150878604116">
<meta property="fb:pages" content="6491828674">
<meta name="twitter:site" content="@newshour">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="As Israel expands ground war against Hamas, Gaza death toll exceeds 20,000">
<meta name="twitter:description" content="That figure was released Friday. It is the latest indication of the staggering cost of the war as Israel expands its ground offensive and ordered tens of thousands more people to leave their homes.">
<meta name="twitter:image" content="https://d3i6fh83elv35t.cloudfront.net/static/2023/12/2023-12-19T121153Z_383532813_RC2505AFN3QR_RTRMADP_3_ISRAEL-PALESTINIANS-1024x683.jpg">
<meta name="news_keywords" content="death toll, gaza, gaza strip, hamas, israel, world">
<link rel="canonical" href="https://www.pbs.org/newshour/world/as-israel-expands-ground-war-against-hamas-gaza-death-toll-exceeds-20000">
<link rel="amphtml" href="https://www.pbs.org/newshour/amp/world/as-israel-expands-ground-war-against-hamas-gaza-death-toll-exceeds-20000">
<link rel="preconnect" href="https://d3i6fh83elv35t.cloudfront.net" crossorigin="">
<link rel="preconnect" href="https://www-tc.pbs.org" crossorigin="">
<link rel="dns-prefetch" href="//static.chartbeat.com">
<link rel="dns-prefetch" href="//googletagmanager.com">
<link rel="dns-prefetch" href="//googletagservices.com">
<link rel="dns-prefetch" href="//image.pbs.org">
<link rel="dns-prefetch" href="//jaws.pbs.org">
<link rel="dns-prefetch" href="//jaws-prod.cdn.pbs.org">
<link href="https://d3i6fh83elv35t.cloudfront.net/static/assets/images/ios/AppIcon57x57.png" sizes="57x57" rel="apple-touch-icon">
<link href="https://d3i6fh83elv35t.cloudfront.net/static/assets/images/ios/AppIcon72x72.png" sizes="72x72" rel="apple-touch-icon">
<link href="https://d3i6fh83elv35t.cloudfront.net/static/assets/images/ios/AppIcon57x57@2x.png" sizes="114x114" rel="apple-touch-icon">
<link href="https://d3i6fh83elv35t.cloudfront.net/static/assets/images/ios/AppIcon72x72@2x.png" sizes="144x144" rel="apple-touch-icon">
<link rel="apple-touch-icon" sizes="180x180" href="https://d3i6fh83elv35t.cloudfront.net/static/assets/images/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://d3i6fh83elv35t.cloudfront.net/static/assets/images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="https://d3i6fh83elv35t.cloudfront.net/static/assets/images/favicon/favicon-16x16.png">
<link rel="manifest" href="https://d3i6fh83elv35t.cloudfront.net/static/assets/images/favicon/manifest.json">
<link rel="mask-icon" href="https://d3i6fh83elv35t.cloudfront.net/static/assets/images/favicon/safari-pinned-tab.svg" color="#e20015">
<link rel="shortcut icon" href="https://d3i6fh83elv35t.cloudfront.net/static/assets/images/favicon/favicon.ico">
<meta name="msapplication-config" content="https://d3i6fh83elv35t.cloudfront.net/static/assets/images/favicon/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" id="newshour-theme-css" href="https://d3i6fh83elv35t.cloudfront.net/newshour/app/themes/pbs-newshour/assets/dist/app.css?v=1703092396" type="text/css" media="all">
<script type="text/javascript">document.createElement("picture");</script>
<script type="text/javascript" src="https://d3i6fh83elv35t.cloudfront.net/static/assets/js/lazysizes/lazysizes.js" async=""></script>
<script type="text/javascript">
var GTMDataLayer = window.GTMDataLayer = window.GTMDataLayer || [];
GTMDataLayer.push({"customDimension2":"Najib Jobain, Associated Press | Samy Magdy, Associated Press","customDimension4":"20231222","customDimension5":"death toll, Gaza, Gaza Strip, Hamas, Israel","customDimension6":"World"});
</script>
<script type="text/javascript">(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','GTMDataLayer','GTM-TWTDGH');</script>
<script type="text/javascript">
(function() {
var _sf_async_config = window._sf_async_config = (window._sf_async_config || {});
_sf_async_config.uid = 7166;
_sf_async_config.domain = 'pbs.org';
_sf_async_config.flickerControl = false;
_sf_async_config.useCanonical = true;
_sf_async_config.useCanonicalDomain = true;
_sf_async_config.articleBlockSelector = "article, .home__hero"
_sf_async_config.section = 'World';
_sf_async_config.authors = 'Najib Jobain - Associated Press,Samy Magdy - Associated Press';
function loadChartbeat() {
var e = document.createElement('script');
var n = document.getElementsByTagName('script')[0];
e.type = 'text/javascript';
e.async = true;
e.src = '//static.chartbeat.com/js/chartbeat.js';
n.parentNode.insertBefore(e, n);
}
loadChartbeat();
})();
</script>
<script async="" src="//static.chartbeat.com/js/chartbeat_mab.js"></script>
</head>
<body class="post-template-default single single-post postid-466955 single-format-standard">
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-TWTDGH" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<svg display="none" width="0" height="0" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<symbol id="icon-dots" viewBox="0 0 16 4">
<circle cx="2" cy="2" r="2"></circle>
<circle cx="8" cy="2" r="2"></circle>
<circle cx="14" cy="2" r="2"></circle>
</symbol>
<symbol id="icon-audio" viewBox="0 0 10 14">
<path fill-rule="evenodd" d="M4,3.41060513e-13 L6,3.41060513e-13 L6,13 L4,13 L4,3.41060513e-13 Z M8,3 L10,3 L10,13 L8,13 L8,3 Z M0,6 L2,6 L2,13 L0,13 L0,6 Z" transform="translate(0 .1)"></path>
</symbol>
<symbol id="icon-email" viewBox="0 0 24 24">
<path d="M12 12.713l-11.985-9.713h23.97l-11.985 9.713zm0 2.574l-12-9.725v15.438h24v-15.438l-12 9.725z"></path>
</symbol>
<symbol id="icon-read" viewBox="0 0 16 10">
<path d="M9.33333333,5 C9.33333333,5.78785714 8.73533333,6.42857143 8,6.42857143 C7.26466667,6.42857143 6.66666667,5.78785714 6.66666667,5 C6.66666667,4.21214286 7.26466667,3.57142857 8,3.57142857 C8.73533333,3.57142857 9.33333333,4.21214286 9.33333333,5 Z M16,4.67928571 C16,4.67928571 13.1653333,10 8.01,10 C3.22333333,10 0,4.67928571 0,4.67928571 C0,4.67928571 2.964,0 8.01,0 C13.1393333,0 16,4.67928571 16,4.67928571 Z M10.6666667,5 C10.6666667,3.42285714 9.47266667,2.14285714 8,2.14285714 C6.528,2.14285714 5.33333333,3.42285714 5.33333333,5 C5.33333333,6.57785714 6.528,7.85714286 8,7.85714286 C9.47266667,7.85714286 10.6666667,6.57785714 10.6666667,5 Z"></path>
</symbol>
<symbol id="arrow-left" viewBox="0 0 8 13">
<polygon points="0 1.625 1.63 0 8 6.5 1.63 13 0 11.375 4.8 6.5" transform="rotate(-180 4 6.5)"></polygon>
</symbol>
<symbol id="arrow-up" viewBox="0 0 14 9">
<polygon points="3 1.625 4.63 0 11 6.5 4.63 13 3 11.375 7.8 6.5" transform="rotate(-90 6 5.5)"></polygon>
</symbol>
<symbol id="arrow-right" viewBox="0 0 8 13">
<polygon points="3 1.625 4.63 0 11 6.5 4.63 13 3 11.375 7.8 6.5" transform="rotate(0 6 5.5)"></polygon>
</symbol>
<symbol id="arrow-double-right" viewBox="0 0 27 24">
<path d="M0,3 L3.057,0 L15,12 L3.057,24 L0,21 L9,12 L0,3 Z M12,3 L15.057,0 L27,12 L15.057,24 L12,21 L21,12 L12,3 Z"></path>
</symbol>
<symbol id="arrow-double-left" viewBox="0 0 27 24">
<path d="M0,3 L3.057,0 L15,12 L3.057,24 L0,21 L9,12 L0,3 Z M12,3 L15.057,0 L27,12 L15.057,24 L12,21 L21,12 L12,3 Z" transform="matrix(-1 0 0 1 27 0)"></path>
</symbol>
<symbol id="arrow-long-left" viewBox="0 0 16 13">
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.37 13L8 11.375L4.28305 7.59998L15.4563 7.59998V5.39998L4.2831 5.39998L8 1.625L6.37 0L0 6.5L6.37 13Z"></path>
</symbol>
<symbol id="arrow-long-right" viewBox="0 0 16 13">
<path d="M9.5426 0L7.9126 1.625L11.6295 5.40002L0.456299 5.40003L0.456299 7.60003L11.6295 7.60002L7.9126 11.375L9.5426 13L15.9126 6.5L9.5426 0Z"></path>
</symbol>
<symbol id="arrow-long-up" viewBox="0 0 14 16">
<path d="M0.912598 6.37L2.5376 8L6.31262 4.28305L6.31262 15.4563H8.51262L8.51262 4.2831L12.2876 8L13.9126 6.37L7.4126 0L0.912598 6.37Z"></path>
</symbol>
<symbol id="arrow-long-down" viewBox="0 0 14 16">
<path d="M13.9126 9.0863L12.2876 7.4563L8.51257 11.1732L8.51257 0L6.31257 9.6165e-08L6.31257 11.1732L2.5376 7.4563L0.912598 9.0863L7.4126 15.4563L13.9126 9.0863Z"></path>
</symbol>
<symbol id="icon-facebook" viewBox="0 0 16 32">
<path d="M9.959 32h-6.641v-16.002h-3.318v-5.514h3.318v-3.31c0-4.498 1.873-7.174 7.197-7.174h4.431v5.516h-2.77c-2.073 0-2.21 0.771-2.21 2.209l-0.009 2.76h5.019l-0.587 5.514h-4.431v16.002h0.001z"></path>
</symbol>
<symbol id="icon-youtube" viewBox="0 0 24 24">
<path d="M19.615 3.184c-3.604-.246-11.631-.245-15.23 0-3.897.266-4.356 2.62-4.385 8.816.029 6.185.484 8.549 4.385 8.816 3.6.245 11.626.246 15.23 0 3.897-.266 4.356-2.62 4.385-8.816-.029-6.185-.484-8.549-4.385-8.816zm-10.615 12.816v-8l8 3.993-8 4.007z"></path>
</symbol>
<symbol id="icon-google-plus" viewBox="0 0 24 24">
<path d="M7 11v2.4h3.97c-.16 1.029-1.2 3.02-3.97 3.02-2.39 0-4.34-1.979-4.34-4.42 0-2.44 1.95-4.42 4.34-4.42 1.36 0 2.27.58 2.79 1.08l1.9-1.83c-1.22-1.14-2.8-1.83-4.69-1.83-3.87 0-7 3.13-7 7s3.13 7 7 7c4.04 0 6.721-2.84 6.721-6.84 0-.46-.051-.81-.111-1.16h-6.61zm0 0 17 2h-3v3h-2v-3h-3v-2h3v-3h2v3h3v2z" fill-rule="evenodd" clip-rule="evenodd"></path>
</symbol>
<symbol id="icon-linkedin" viewBox="0 0 24 24">
<path d="M4.98 3.5c0 1.381-1.11 2.5-2.48 2.5s-2.48-1.119-2.48-2.5c0-1.38 1.11-2.5 2.48-2.5s2.48 1.12 2.48 2.5zm.02 4.5h-5v16h5v-16zm7.982 0h-4.968v16h4.969v-8.399c0-4.67 6.029-5.052 6.029 0v8.399h4.988v-10.131c0-7.88-8.922-7.593-11.018-3.714v-2.155z"></path>
</symbol>
<symbol id="icon-pinterest" viewBox="0 0 24 24">
<path d="M12 0c-6.627 0-12 5.372-12 12 0 5.084 3.163 9.426 7.627 11.174-.105-.949-.2-2.405.042-3.441.218-.937 1.407-5.965 1.407-5.965s-.359-.719-.359-1.782c0-1.668.967-2.914 2.171-2.914 1.023 0 1.518.769 1.518 1.69 0 1.029-.655 2.568-.994 3.995-.283 1.194.599 2.169 1.777 2.169 2.133 0 3.772-2.249 3.772-5.495 0-2.873-2.064-4.882-5.012-4.882-3.414 0-5.418 2.561-5.418 5.207 0 1.031.397 2.138.893 2.738.098.119.112.224.083.345l-.333 1.36c-.053.22-.174.267-.402.161-1.499-.698-2.436-2.889-2.436-4.649 0-3.785 2.75-7.262 7.929-7.262 4.163 0 7.398 2.967 7.398 6.931 0 4.136-2.607 7.464-6.227 7.464-1.216 0-2.359-.631-2.75-1.378l-.748 2.853c-.271 1.043-1.002 2.35-1.492 3.146 1.124.347 2.317.535 3.554.535 6.627 0 12-5.373 12-12 0-6.628-5.373-12-12-12z" fill-rule="evenodd" clip-rule="evenodd"></path>
</symbol>
<symbol id="icon-tumblr" viewBox="0 0 16 29">
<path fill-rule="evenodd" d="M72.6611309,212.720437 C72.1434721,212.972696 71.1534865,213.192176 70.4152691,213.21106 C68.1864941,213.271987 67.7539203,211.611458 67.7359617,210.407704 L67.7359617,201.552798 L73.3266425,201.552798 L73.3266425,197.245863 L67.7553151,197.245863 L67.7553151,190 L63.6783811,190 C63.6112546,190 63.4940883,190.060036 63.4775246,190.212354 C63.2390075,192.429955 62.2235662,196.322159 58,197.87847 L58,201.55262 L60.8175706,201.55262 L60.8175706,210.846129 C60.8175706,214.028409 63.114867,218.549301 69.1794436,218.44259 C71.2256694,218.406782 73.4982074,217.531713 74,216.776182 L72.6611309,212.720437" transform="translate(-58 -190)"></path>
</symbol>
<symbol id="icon-instagram" viewBox="0 0 30 32">
<path d="M24.586 0h-18.696c-3.247 0-5.89 2.656-5.89 5.922v18.799c0 3.266 2.643 5.922 5.89 5.922h18.696c3.247 0 5.89-2.656 5.89-5.922v-18.799c0-3.266-2.643-5.922-5.89-5.922v0 0 0zM26.276 3.533l0.674-0.004v5.194l-5.15 0.016-0.018-5.194 4.494-0.013zM10.889 12.176c0.975-1.358 2.559-2.248 4.349-2.248s3.374 0.89 4.349 2.248c0.636 0.886 1.016 1.971 1.016 3.146 0 2.973-2.407 5.392-5.365 5.392-2.957 0-5.363-2.42-5.363-5.392 0-1.175 0.38-2.259 1.014-3.146v0 0 0zM27.507 24.721c0 1.62-1.31 2.937-2.921 2.937h-18.696c-1.611 0-2.921-1.317-2.921-2.937v-12.545h4.551c-0.394 0.973-0.615 2.034-0.615 3.146 0 4.62 3.738 8.38 8.332 8.38 4.596 0 8.334-3.76 8.334-8.38 0-1.112-0.224-2.173-0.615-3.146h4.55v12.545z"></path>
</symbol>
<symbol id="icon-twitter" viewBox="0 0 36 32">
<path d="M35.005 0.564c-1.428 0.883-3.007 1.521-4.691 1.867-1.344-1.497-3.265-2.43-5.39-2.43-4.078 0-7.383 3.445-7.383 7.694 0 0.603 0.061 1.191 0.188 1.752-6.136-0.321-11.577-3.381-15.222-8.040-0.636 1.14-0.999 2.461-0.999 3.87 0 2.668 1.304 5.024 3.286 6.406-1.211-0.040-2.35-0.39-3.347-0.962v0.095c0 3.729 2.544 6.84 5.927 7.545-0.621 0.181-1.272 0.271-1.948 0.271-0.475 0-0.94-0.046-1.388-0.137 0.938 3.056 3.666 5.284 6.899 5.343-2.529 2.065-5.714 3.293-9.173 3.293-0.596 0-1.185-0.033-1.762-0.106 3.269 2.182 7.151 3.456 11.322 3.456 13.587 0 21.012-11.725 21.012-21.894 0-0.335-0.004-0.667-0.019-0.995 1.443-1.085 2.698-2.441 3.685-3.985-1.325 0.612-2.749 1.026-4.241 1.211 1.526-0.951 2.696-2.459 3.246-4.255z"></path>
</symbol>
<symbol id="icon-ustream" viewBox="0 0 512 512">
<path fill-rule="evenodd" d="M386.987,300.991 C386.987,340.86 376.588,371.4 354.28,392.653 C331.973,413.907 297.551,424.987 255.991,424.987 C214.432,424.987 180.026,413.907 157.719,392.653 C135.412,371.4 124.996,340.86 124.996,300.991 L124.996,115.997 L206.993,115.997 L206.993,294.491 C206.993,316.024 211.054,331.674 219.116,341.395 C227.175,351.12 240.284,356.989 255.991,356.989 C271.699,356.989 284.824,351.12 292.883,341.395 C300.945,331.674 304.99,316.024 304.99,294.491 L304.99,115.997 L386.987,115.997 L386.987,300.991 Z M423.426,0.013 L89.915,0.003 C40.478,0.12 0.093,39.99 0.001,89.432 L0,421.903 C0.02,471.479 40.552,512 90.133,512 L422.399,512 C471.992,512 512,471.459 512,421.867 L512,89.6 C512,40.35 472.542,0.561 423.426,0.013 L423.426,0.013 Z"></path>
</symbol>
<symbol id="icon-iphone" viewBox="0 0 24 24">
<path d="M19 2c0-1.104-.896-2-2-2h-10c-1.104 0-2 .896-2 2v20c0 1.104.896 2 2 2h10c1.104 0 2-.896 2-2v-20zm-8.5 0h3c.276 0 .5.224.5.5s-.224.5-.5.5h-3c-.276 0-.5-.224-.5-.5s.224-.5.5-.5zm1.5 20c-.553 0-1-.448-1-1s.447-1 1-1c.552 0 .999.448.999 1s-.447 1-.999 1zm5-3h-10v-14.024h10v14.024z"></path>
</symbol>
<symbol id="icon-ipad" viewBox="0 0 18 24">
<path d="M16,24 C17.104,24 18,23.104 18,22 L18,2 C18,0.896 17.104,0 16,0 L2,0 C0.896,0 0,0.896 0,2 L0,22 C0,23.104 0.896,24 2,24 L16,24 Z M2,20 L2,2 L16,2 L16,20 L2,20 Z M8,22 C8,21.448 8.448,21 9,21 C9.552,21 10,21.448 10,22 C10,22.552 9.552,23 9,23 C8.448,23 8,22.552 8,22 Z"></path>
</symbol>
<symbol id="icon-apple" viewBox="0 0 18 22">
<path d="M17.959125,16.0780714 C17.472,17.2098929 17.238375,17.7147143 16.611,18.7145357 C15.73575,20.1115357 14.501625,21.8491429 12.972375,21.8648571 C11.613,21.8778214 11.2635,20.9388929 9.41925,20.9487143 C7.575375,20.9589286 7.190625,21.8809643 5.832,21.868 C4.30275,21.8534643 3.133125,20.2836071 2.257125,18.8877857 C-0.190875,14.9835714 -0.447,10.4020714 1.062375,7.96675 C2.13525,6.23660714 3.828375,5.22382143 5.420625,5.22382143 C7.04175,5.22382143 8.060625,6.1545 9.400125,6.1545 C10.70025,6.1545 11.491875,5.22225 13.366125,5.22225 C14.782125,5.22225 16.282875,6.03114286 17.35275,7.42578571 C13.8495,9.43682143 14.419125,14.6763571 17.959125,16.0780714 L17.959125,16.0780714 Z M11.94525,3.66103571 L11.94525,3.66103571 C11.21625,4.64160714 9.96,5.40139286 8.745375,5.3625 C8.5245,4.09789286 9.093375,2.79714286 9.782625,1.92028571 C10.541625,0.95425 11.842875,0.212928571 12.9555,0.132392857 C13.143,1.45357143 12.625875,2.74567857 11.94525,3.66103571 Z"></path>
</symbol>
<symbol id="icon-rss" viewBox="0 0 17 17">
<path d="M4.60629167,14.6993333 C4.60629167,15.9700833 3.57495833,17 2.3035,17 C1.03133333,17 4.4408921e-16,15.9700833 4.4408921e-16,14.6993333 C4.4408921e-16,13.4285833 1.03133333,12.3986667 2.3035,12.3986667 C3.57495833,12.399375 4.60629167,13.4285833 4.60629167,14.6993333 Z M0,5.79416667 L0,9.20195833 C4.28541667,9.245875 7.76333333,12.7195417 7.80725,17 L11.2192917,17 C11.175375,10.8304167 6.177375,5.83808333 0,5.79416667 Z M0,3.4085 C7.49416667,3.44108333 13.566,9.49591667 13.5879583,17 L17,17 C16.97875,7.62804167 9.381875,0.0325833333 0,0 L0,3.4085 L0,3.4085 Z"></path>
</symbol>
<symbol id="icon-phead" viewBox="0 0 25 25">
<path d="M12.5,0 C19.4033311,0 25,5.59440316 25,12.4998257 C25,19.4012396 19.4035053,24.9977342 12.5,24.9977342 C5.59649465,24.9977342 0,19.4012396 0,12.4998257 C0,5.59440316 5.59666894,0 12.5,0 Z M19.6670338,12.58854 L21.0181402,12.58854 L17.9826824,5.66603689 L15.9948898,5.66603689 L19.0408051,12.58854 L17.6537947,12.58854 L17.6537947,14.4266164 C17.6579777,15.5396408 17.1900054,16.015979 15.6764595,15.9948898 L15.6764595,19.5404983 L17.6473459,19.5404983 L17.6473459,15.9948898 L18.2986726,15.9948898 C18.8741826,16.011796 19.6562278,15.5438238 19.6666853,14.6331516 L19.6666853,12.58854 L19.6670338,12.58854 Z M10.1181347,5.66603689 C7.07431085,5.66603689 4.56800151,7.79082252 4.56800151,10.9442756 C4.56800151,13.5959439 6.16573014,15.488922 8.54776977,15.8512737 L8.54776977,19.540324 L13.505661,19.540324 L13.505661,15.9947155 L14.1949832,15.9947155 C15.0002091,15.9187245 15.5439981,15.3876588 15.5525384,14.6392518 L15.5525384,12.58854 L16.9036448,12.58854 L13.8301914,5.66603689 L10.1181347,5.66603689 Z M12.8562515,11.6715933 C13.56248,11.6715933 14.1336326,11.1002663 14.1336326,10.3919463 C14.1336326,9.68589216 13.56248,9.11456518 12.8562515,9.11456518 C12.150023,9.11456518 11.5767788,9.68571787 11.5767788,10.3919463 C11.5767788,11.1002663 12.150023,11.6715933 12.8562515,11.6715933 L12.8562515,11.6715933 Z"></path>
</symbol>
<symbol id="icon-close" viewBox="0 0 24 24">
<path d="M24 20.188l-8.315-8.209 8.2-8.282-3.697-3.697-8.212 8.318-8.31-8.203-3.666 3.666 8.321 8.24-8.206 8.313 3.666 3.666 8.237-8.318 8.285 8.203z"></path>
</symbol>
<symbol id="icon-plus" viewBox="0 0 24 24">
<g id="g114" transform="matrix(0.52866927,0,0,0.52859943,-0.00158515,0)"> <path d="M 41.267,18.557 H 26.832 V 4.134 C 26.832,1.851 24.99,0 22.707,0 20.424,0 18.583,1.851 18.583,4.135 V 18.567 H 4.141 c -2.283,0 -4.139,1.851 -4.138,4.135 -0.001,1.141 0.46,2.187 1.207,2.934 0.748,0.749 1.78,1.222 2.92,1.222 H 18.583 V 41.27 c 0,1.142 0.453,2.176 1.201,2.922 0.748,0.748 1.777,1.211 2.919,1.211 2.282,0 4.129,-1.851 4.129,-4.133 V 26.857 h 14.435 c 2.283,0 4.134,-1.867 4.133,-4.15 -10e-4,-2.282 -1.852,-4.15 -4.133,-4.15 z" id="path112"></path></g><g id="g116"></g><g id="g118"></g><g id="g120"></g><g id="g122"></g><g id="g124"></g><g id="g126"></g><g id="g128"></g><g id="g130"></g><g id="g132"></g><g id="g134"></g><g id="g136"></g><g id="g138"></g><g id="g140"></g><g id="g142"></g><g id="g144"></g>
</symbol>
<symbol id="icon-play" viewBox="0 0 8 10">
<polygon points="0 10 0 0 8 5.146"></polygon>
</symbol>
<symbol id="logo" viewBox="0 0 85 76">
<g fill="none" fill-rule="evenodd">
<g fill="#000000">
<path d="M74.4581741 5.95765656C75.4618037 8.26056153 76.4972296 10.5751596 77.4781926 12.872376L76.1056 12.872376C76.0366556 13.7528334 76.2409704 14.7780323 75.9969889 15.4609714 75.7561556 16.1366419 75.0613593 16.2956046 74.1336 16.2883359L74.1336 19.8367121 76.0967852 19.8367121 76.0967852 16.2883359C77.1174148 16.3742959 77.7051741 16.1081993 77.9935444 15.478037 78.1459148 15.1452582 78.1100259 14.7037654 78.1100259 14.2335139L78.1100259 12.872376 79.4577481 12.872376C78.4516 10.5561978 77.4407296 8.24412801 76.4295444 5.93300628L74.4581741 5.93300628C74.4452667 5.93521848 74.4525074 5.95133597 74.4581741 5.95765656L74.4581741 5.95765656zM70.3155259 5.93300628C69.2338222 5.93300628 68.1061556 5.88338969 67.2375815 6.0749034 66.2528407 6.29169945 65.4421926 6.70822597 64.7917852 7.27739461 63.9339148 8.02891211 63.2866556 9.04589415 63.0952481 10.4509601 62.8808593 12.0206773 63.2942111 13.4001448 63.9685444 14.3257944 64.6608222 15.2751462 65.6125074 15.9021482 67.0131185 16.1451747L67.0131185 19.8367121 71.962637 19.8367121 71.962637 16.2883359C72.9527296 16.3553341 73.5977852 16.1167321 73.8842667 15.4862538 74.0369519 15.1499987 74.0086185 14.7167226 74.0086185 14.2420467L74.0086185 12.872376 75.3481556 12.872376C74.3360259 10.5511414 73.3031185 8.25076462 72.2868963 5.93300628L70.3155259 5.93300628zM70.6231.254593145L71.2886185.254593145C74.2356.378160572 76.4197852 1.29938577 78.2265074 2.60079412 80.0266185 3.89777806 81.4568222 5.60907632 82.3858407 7.73658507 82.8546 8.80982032 83.2100259 10.0331695 83.3674333 11.4107409 83.5349148 12.872376 83.3910444 14.3991132 83.1011 15.6613339 82.5306556 18.1437435 81.3255444 20.0828988 79.782637 21.6323901 78.2403593 23.1799853 76.3077111 24.3695193 73.8342111 24.9728191 72.5894333 25.2765231 71.0311 25.3893456 69.5750815 25.2310149 68.2043778 25.0827972 66.9797481 24.7158873 65.9235444 24.2456358 63.8007481 23.3016565 62.101063 21.879841 60.8078037 20.0708897 59.5113963 18.256882 58.6000074 16.0443614 58.4781741 13.1059216L58.4781741 12.4549014C58.5527852 10.5287033 58.9755815 8.90210086 59.6263037 7.5109402 60.2760815 6.12199176 61.1248222 4.93719819 62.1300259 3.9284329 63.1352296 2.91935158 64.312637 2.06449252 65.6984519 1.41568452 67.0871.764664315 68.7005259.323803545 70.6231.254593145zM71.1888852 9.39861437C70.8196074 9.43274553 70.539737 9.61035396 70.3571444 9.82430574 70.1710889 10.042998 70.0231259 10.3511265 70.0410704 10.7347859 70.0590148 11.1257141 70.2107556 11.3927588 70.4235704 11.5947015 70.631663 11.7922197 70.9319963 11.9540267 71.3135519 11.9540267 71.9545148 11.9540267 72.5369222 11.4749264 72.5863481 10.7929353 72.613737 10.4143323 72.4963111 10.1169488 72.3455148 9.90805349 72.1327 9.61288219 71.7177741 9.34962984 71.1888852 9.39861437zM5.37429815 10.8304796L8.74627963 10.8304796C10.5297056 10.8304796 12.3131315 10.2120104 12.3131315 8.06364372 12.3131315 5.68741997 9.91361296 5.36190986 7.96837222 5.36190986L5.37429815 5.36190986 5.37429815 10.8304796zM.316168519 1.06549254L8.84387222 1.06549254C13.6101685 1.06549254 17.5661315 2.59507399 17.5661315 8.06364372 17.5661315 13.4667954 13.9020019 15.1272129 9.0708537 15.1272129L5.37429815 15.1272129 5.37429815 24.1106597.316168519 24.1106597.316168519 1.06549254zM24.9271 19.8141792L29.4664148 19.8141792C31.0552852 19.8141792 32.8387111 19.130608 32.8387111 17.1124453 32.8387111 14.9318437 30.4067667 14.5734665 28.7530444 14.5734665L24.9271 14.5734665 24.9271 19.8141792zM24.9271 10.2770492L28.5912296 10.2770492C30.1476741 10.2770492 31.7686556 9.62602901 31.7686556 7.77062142 31.7686556 5.85011181 29.9528037 5.36216269 28.3639333 5.36216269L24.9271 5.36216269 24.9271 10.2770492zM19.8686556 1.06542933L28.4291 1.06542933C32.4496 1.06542933 36.8271 1.9117556 36.8271 6.92429515 36.8271 9.49582496 35.2382296 11.2535795 32.871137 12.0022528L32.871137 12.0673548C35.8867481 12.4579669 37.8971556 14.7039866 37.8971556 17.6986796 37.8971556 22.515913 33.3575259 24.1109126 29.2718593 24.1109126L19.8686556 24.1109126 19.8686556 1.06542933zM52.0025593 6.69650129C51.1919111 5.65486896 49.5706148 5.1666038 48.3384296 5.1666038 46.9116889 5.1666038 44.9337074 5.81762401 44.9337074 7.54282755 44.9337074 11.7419079 55.5045593 9.04017403 55.5045593 17.1125085 55.5045593 22.2552521 51.3864667 24.6965779 46.6522815 24.6965779 43.701837 24.6965779 41.107763 23.8180167 38.9352259 21.799854L42.5345037 17.8289468C43.5721333 19.1957732 45.2582815 20.0095485 46.9441148 20.0095485 48.597837 20.0095485 50.4461148 19.2283242 50.4461148 17.6007737 50.4461148 13.3694584 39.6810222 15.6477131 39.6810222 7.96599069 39.6810222 3.05078813 43.9288185.479574351 48.4357074.479574351 51.0297815.479574351 53.5265778 1.16314557 55.4721333 2.88834911L52.0025593 6.69650129z"></path>
</g>
<g fill="#E20015" transform="translate(0 27)">
<polygon points=".299 1.216 6.742 1.216 15.89 16.226 15.951 16.226 15.951 1.216 20.693 1.216 20.693 22.817 14.492 22.817 5.101 7.439 5.04 7.439 5.04 22.817 .299 22.817"></polygon>
<polygon points="23.428 1.216 38.048 1.216 38.048 5.609 28.17 5.609 28.17 9.636 37.5 9.636 37.5 14.03 28.17 14.03 28.17 18.423 38.595 18.423 38.595 22.817 23.428 22.817"></polygon>
<polygon points="39.233 1.216 44.4 1.216 47.834 15.067 47.895 15.067 52.394 1.216 56.8 1.216 61.268 15.433 61.329 15.433 64.946 1.216 69.748 1.216 63.456 22.817 59.232 22.817 54.491 7.867 54.43 7.867 49.688 22.817 45.616 22.817"></polygon>
<path d="M81.6016056,6.49353585 C80.8416426,5.51732157 79.3220315,5.05971125 78.1672907,5.05971125 C76.8299574,5.05971125 74.976013,5.66996368 74.976013,7.28708523 C74.976013,11.2225972 84.8841796,8.690255 84.8841796,16.2569428 C84.8841796,21.0773365 81.0242352,23.3657042 76.5869204,23.3657042 C73.8209574,23.3657042 71.3896426,22.541816 69.3534204,20.6503811 L72.7269759,16.9281888 C73.6994389,18.2093713 75.2798093,18.9722659 76.8601796,18.9722659 C78.4103278,18.9722659 80.1427537,18.2400262 80.1427537,16.7145531 C80.1427537,12.7480703 70.0523093,14.8841118 70.0523093,7.68370191 C70.0523093,3.07631183 74.0337722,0.666272948 78.2582722,0.666272948 C80.6899019,0.666272948 83.0302352,1.30686419 84.8536426,2.92398574 L81.6016056,6.49353585 Z"></path>
<polygon points=".299 26.814 5.04 26.814 5.04 34.868 14.249 34.868 14.249 26.814 18.991 26.814 18.991 48.415 14.249 48.415 14.249 39.079 5.04 39.079 5.04 48.415 .299 48.415"></polygon>
<path d="M32.3332444 44.571044C36.3754667 44.571044 39.0195963 41.6417691 39.0195963 37.6146087 39.0195963 33.5871322 36.3754667 30.6584894 32.3332444 30.6584894 28.2910222 30.6584894 25.6468926 33.5871322 25.6468926 37.6146087 25.6468926 41.6417691 28.2910222 44.571044 32.3332444 44.571044M32.3332444 26.2647351C39.0501333 26.2647351 43.9433 30.6888282 43.9433 37.6146087 43.9433 44.5403892 39.0501333 48.9641663 32.3332444 48.9641663 25.6163556 48.9641663 20.7231889 44.5403892 20.7231889 37.6146087 20.7231889 30.6888282 25.6163556 26.2647351 32.3332444 26.2647351M63.7604519 40.0858308C63.7604519 45.18117 60.6604704 48.9643559 54.7032296 48.9643559 48.7157667 48.9643559 45.6157852 45.18117 45.6157852 40.0858308L45.6157852 26.8141835 50.3572111 26.8141835 50.3572111 39.9028499C50.3572111 42.5571794 52.1806185 44.5709176 54.7032296 44.5709176 57.1956185 44.5709176 59.0190259 42.5571794 59.0190259 39.9028499L59.0190259 26.8141835 63.7604519 26.8141835 63.7604519 40.0858308zM71.0553093 35.7534178L73.8514944 35.7534178C75.5839204 35.7534178 77.8329574 35.6927402 77.8329574 33.3430629 77.8329574 31.1769985 75.8877167 30.8413755 74.1552907 30.8413755L71.0553093 30.8413755 71.0553093 35.7534178zM66.3138833 26.8142151L74.6416796 26.8142151C79.0487722 26.8142151 82.7566611 28.3396882 82.7566611 33.3737177 82.7566611 36.394009 81.1457537 38.7436863 78.1065315 39.2926291L83.5770685 48.4151287 77.8937167 48.4151287 73.3956426 39.7808942 71.0553093 39.7808942 71.0553093 48.4151287 66.3138833 48.4151287 66.3138833 26.8142151z"></path>
</g>
</g>
</symbol>
<symbol id="logo-inverted" viewBox="0 0 85 76">
<g fill="none" fill-rule="evenodd">
<g fill="#ffffff">
<path d="M74.4581741 5.95765656C75.4618037 8.26056153 76.4972296 10.5751596 77.4781926 12.872376L76.1056 12.872376C76.0366556 13.7528334 76.2409704 14.7780323 75.9969889 15.4609714 75.7561556 16.1366419 75.0613593 16.2956046 74.1336 16.2883359L74.1336 19.8367121 76.0967852 19.8367121 76.0967852 16.2883359C77.1174148 16.3742959 77.7051741 16.1081993 77.9935444 15.478037 78.1459148 15.1452582 78.1100259 14.7037654 78.1100259 14.2335139L78.1100259 12.872376 79.4577481 12.872376C78.4516 10.5561978 77.4407296 8.24412801 76.4295444 5.93300628L74.4581741 5.93300628C74.4452667 5.93521848 74.4525074 5.95133597 74.4581741 5.95765656L74.4581741 5.95765656zM70.3155259 5.93300628C69.2338222 5.93300628 68.1061556 5.88338969 67.2375815 6.0749034 66.2528407 6.29169945 65.4421926 6.70822597 64.7917852 7.27739461 63.9339148 8.02891211 63.2866556 9.04589415 63.0952481 10.4509601 62.8808593 12.0206773 63.2942111 13.4001448 63.9685444 14.3257944 64.6608222 15.2751462 65.6125074 15.9021482 67.0131185 16.1451747L67.0131185 19.8367121 71.962637 19.8367121 71.962637 16.2883359C72.9527296 16.3553341 73.5977852 16.1167321 73.8842667 15.4862538 74.0369519 15.1499987 74.0086185 14.7167226 74.0086185 14.2420467L74.0086185 12.872376 75.3481556 12.872376C74.3360259 10.5511414 73.3031185 8.25076462 72.2868963 5.93300628L70.3155259 5.93300628zM70.6231.254593145L71.2886185.254593145C74.2356.378160572 76.4197852 1.29938577 78.2265074 2.60079412 80.0266185 3.89777806 81.4568222 5.60907632 82.3858407 7.73658507 82.8546 8.80982032 83.2100259 10.0331695 83.3674333 11.4107409 83.5349148 12.872376 83.3910444 14.3991132 83.1011 15.6613339 82.5306556 18.1437435 81.3255444 20.0828988 79.782637 21.6323901 78.2403593 23.1799853 76.3077111 24.3695193 73.8342111 24.9728191 72.5894333 25.2765231 71.0311 25.3893456 69.5750815 25.2310149 68.2043778 25.0827972 66.9797481 24.7158873 65.9235444 24.2456358 63.8007481 23.3016565 62.101063 21.879841 60.8078037 20.0708897 59.5113963 18.256882 58.6000074 16.0443614 58.4781741 13.1059216L58.4781741 12.4549014C58.5527852 10.5287033 58.9755815 8.90210086 59.6263037 7.5109402 60.2760815 6.12199176 61.1248222 4.93719819 62.1300259 3.9284329 63.1352296 2.91935158 64.312637 2.06449252 65.6984519 1.41568452 67.0871.764664315 68.7005259.323803545 70.6231.254593145zM71.1888852 9.39861437C70.8196074 9.43274553 70.539737 9.61035396 70.3571444 9.82430574 70.1710889 10.042998 70.0231259 10.3511265 70.0410704 10.7347859 70.0590148 11.1257141 70.2107556 11.3927588 70.4235704 11.5947015 70.631663 11.7922197 70.9319963 11.9540267 71.3135519 11.9540267 71.9545148 11.9540267 72.5369222 11.4749264 72.5863481 10.7929353 72.613737 10.4143323 72.4963111 10.1169488 72.3455148 9.90805349 72.1327 9.61288219 71.7177741 9.34962984 71.1888852 9.39861437zM5.37429815 10.8304796L8.74627963 10.8304796C10.5297056 10.8304796 12.3131315 10.2120104 12.3131315 8.06364372 12.3131315 5.68741997 9.91361296 5.36190986 7.96837222 5.36190986L5.37429815 5.36190986 5.37429815 10.8304796zM.316168519 1.06549254L8.84387222 1.06549254C13.6101685 1.06549254 17.5661315 2.59507399 17.5661315 8.06364372 17.5661315 13.4667954 13.9020019 15.1272129 9.0708537 15.1272129L5.37429815 15.1272129 5.37429815 24.1106597.316168519 24.1106597.316168519 1.06549254zM24.9271 19.8141792L29.4664148 19.8141792C31.0552852 19.8141792 32.8387111 19.130608 32.8387111 17.1124453 32.8387111 14.9318437 30.4067667 14.5734665 28.7530444 14.5734665L24.9271 14.5734665 24.9271 19.8141792zM24.9271 10.2770492L28.5912296 10.2770492C30.1476741 10.2770492 31.7686556 9.62602901 31.7686556 7.77062142 31.7686556 5.85011181 29.9528037 5.36216269 28.3639333 5.36216269L24.9271 5.36216269 24.9271 10.2770492zM19.8686556 1.06542933L28.4291 1.06542933C32.4496 1.06542933 36.8271 1.9117556 36.8271 6.92429515 36.8271 9.49582496 35.2382296 11.2535795 32.871137 12.0022528L32.871137 12.0673548C35.8867481 12.4579669 37.8971556 14.7039866 37.8971556 17.6986796 37.8971556 22.515913 33.3575259 24.1109126 29.2718593 24.1109126L19.8686556 24.1109126 19.8686556 1.06542933zM52.0025593 6.69650129C51.1919111 5.65486896 49.5706148 5.1666038 48.3384296 5.1666038 46.9116889 5.1666038 44.9337074 5.81762401 44.9337074 7.54282755 44.9337074 11.7419079 55.5045593 9.04017403 55.5045593 17.1125085 55.5045593 22.2552521 51.3864667 24.6965779 46.6522815 24.6965779 43.701837 24.6965779 41.107763 23.8180167 38.9352259 21.799854L42.5345037 17.8289468C43.5721333 19.1957732 45.2582815 20.0095485 46.9441148 20.0095485 48.597837 20.0095485 50.4461148 19.2283242 50.4461148 17.6007737 50.4461148 13.3694584 39.6810222 15.6477131 39.6810222 7.96599069 39.6810222 3.05078813 43.9288185.479574351 48.4357074.479574351 51.0297815.479574351 53.5265778 1.16314557 55.4721333 2.88834911L52.0025593 6.69650129z"></path>
</g>
<g fill="#F83036" transform="translate(0 27)">
<polygon points=".299 1.216 6.742 1.216 15.89 16.226 15.951 16.226 15.951 1.216 20.693 1.216 20.693 22.817 14.492 22.817 5.101 7.439 5.04 7.439 5.04 22.817 .299 22.817"></polygon>
<polygon points="23.428 1.216 38.048 1.216 38.048 5.609 28.17 5.609 28.17 9.636 37.5 9.636 37.5 14.03 28.17 14.03 28.17 18.423 38.595 18.423 38.595 22.817 23.428 22.817"></polygon>
<polygon points="39.233 1.216 44.4 1.216 47.834 15.067 47.895 15.067 52.394 1.216 56.8 1.216 61.268 15.433 61.329 15.433 64.946 1.216 69.748 1.216 63.456 22.817 59.232 22.817 54.491 7.867 54.43 7.867 49.688 22.817 45.616 22.817"></polygon>
<path d="M81.6016056,6.49353585 C80.8416426,5.51732157 79.3220315,5.05971125 78.1672907,5.05971125 C76.8299574,5.05971125 74.976013,5.66996368 74.976013,7.28708523 C74.976013,11.2225972 84.8841796,8.690255 84.8841796,16.2569428 C84.8841796,21.0773365 81.0242352,23.3657042 76.5869204,23.3657042 C73.8209574,23.3657042 71.3896426,22.541816 69.3534204,20.6503811 L72.7269759,16.9281888 C73.6994389,18.2093713 75.2798093,18.9722659 76.8601796,18.9722659 C78.4103278,18.9722659 80.1427537,18.2400262 80.1427537,16.7145531 C80.1427537,12.7480703 70.0523093,14.8841118 70.0523093,7.68370191 C70.0523093,3.07631183 74.0337722,0.666272948 78.2582722,0.666272948 C80.6899019,0.666272948 83.0302352,1.30686419 84.8536426,2.92398574 L81.6016056,6.49353585 Z"></path>
<polygon points=".299 26.814 5.04 26.814 5.04 34.868 14.249 34.868 14.249 26.814 18.991 26.814 18.991 48.415 14.249 48.415 14.249 39.079 5.04 39.079 5.04 48.415 .299 48.415"></polygon>
<path d="M32.3332444 44.571044C36.3754667 44.571044 39.0195963 41.6417691 39.0195963 37.6146087 39.0195963 33.5871322 36.3754667 30.6584894 32.3332444 30.6584894 28.2910222 30.6584894 25.6468926 33.5871322 25.6468926 37.6146087 25.6468926 41.6417691 28.2910222 44.571044 32.3332444 44.571044M32.3332444 26.2647351C39.0501333 26.2647351 43.9433 30.6888282 43.9433 37.6146087 43.9433 44.5403892 39.0501333 48.9641663 32.3332444 48.9641663 25.6163556 48.9641663 20.7231889 44.5403892 20.7231889 37.6146087 20.7231889 30.6888282 25.6163556 26.2647351 32.3332444 26.2647351M63.7604519 40.0858308C63.7604519 45.18117 60.6604704 48.9643559 54.7032296 48.9643559 48.7157667 48.9643559 45.6157852 45.18117 45.6157852 40.0858308L45.6157852 26.8141835 50.3572111 26.8141835 50.3572111 39.9028499C50.3572111 42.5571794 52.1806185 44.5709176 54.7032296 44.5709176 57.1956185 44.5709176 59.0190259 42.5571794 59.0190259 39.9028499L59.0190259 26.8141835 63.7604519 26.8141835 63.7604519 40.0858308zM71.0553093 35.7534178L73.8514944 35.7534178C75.5839204 35.7534178 77.8329574 35.6927402 77.8329574 33.3430629 77.8329574 31.1769985 75.8877167 30.8413755 74.1552907 30.8413755L71.0553093 30.8413755 71.0553093 35.7534178zM66.3138833 26.8142151L74.6416796 26.8142151C79.0487722 26.8142151 82.7566611 28.3396882 82.7566611 33.3737177 82.7566611 36.394009 81.1457537 38.7436863 78.1065315 39.2926291L83.5770685 48.4151287 77.8937167 48.4151287 73.3956426 39.7808942 71.0553093 39.7808942 71.0553093 48.4151287 66.3138833 48.4151287 66.3138833 26.8142151z"></path>
</g>
</g>
</symbol>
<symbol id="canvas-logo" viewBox="0 0 64.92 11.28">
<path d="M5.57.05a4.85,4.85,0,0,1,5.1,4.13H7.94a2.28,2.28,0,0,0-2.37-1.6,2.72,2.72,0,0,0-2.7,3,2.81,2.81,0,0,0,2.7,3A2.3,2.3,0,0,0,8,6.86h2.73a4.83,4.83,0,0,1-5.14,4.28A5.36,5.36,0,0,1,0,5.6,5.37,5.37,0,0,1,5.57.05Z"></path>
<path d="M19.1,9.67H14.82L14.18,11H11.47v-.4L16.35,0h1.2l4.9,10.59V11H19.73ZM16.94,4.44,15.72,7.29H18.2Z"></path>
<path d="M26.74,5.7V11H23.87V.13h1L30.37,5.5V.18H33.2V11.05h-1Z"></path>
<path d="M40,6.32h.07L42.56.18h2.67V.6l-4.6,10.55H39.45L34.8.6V.18h2.66Z"></path>
<path d="M52.13,9.67H47.85L47.21,11H44.5v-.4L49.38,0h1.2l4.9,10.59V11H52.76ZM50,4.44,48.75,7.29h2.48Z"></path>
<path d="M62.22,7.84c0-.76-.9-.93-2-1-2.35-.17-3.9-1-3.93-3.33-.1-4.68,8.34-4.68,8.27,0H61.94c0-1.44-2.92-1.32-3,0-.06.82.75,1,1.72,1.1,2.16.23,4.27.56,4.27,3.27,0,4.56-8.84,4.64-8.78-.14h2.68C58.82,9.09,62.22,9.11,62.22,7.84Z"></path>
</symbol>
<symbol id="icon-quote" viewBox="0 0 52 36">
<path fill-rule="evenodd" d="M12.18,35.28 C17.92,35.28 22.82,31.78 22.82,26.04 C22.82,20.3 19.18,16.8 14.42,16.8 C12.6,16.8 11.06,17.5 10.36,18.06 C10.22,12.46 14,7.14 22.96,3.08 L21.98,0 C7.56,3.08 0,11.06 0,22.4 C0,30.94 6.02,35.28 12.18,35.28 Z M40.46,35.28 C46.2,35.28 51.1,31.78 51.1,26.04 C51.1,20.3 47.46,16.8 42.7,16.8 C40.88,16.8 39.34,17.5 38.64,18.06 C38.5,12.46 42.28,7.14 51.24,3.08 L50.26,0 C35.84,3.08 28.28,11.06 28.28,22.4 C28.28,30.94 34.3,35.28 40.46,35.28 Z"></path>
</symbol>
<symbol id="icon-america" viewBox="0 0 18 11">
<path fill-rule="evenodd" d="M17.6672673,1.43946535 C17.6790297,1.2730099 17.5090099,1.28815842 17.473901,1.16875248 C17.4355842,0.987861386 17.3575248,0.846891089 17.3192079,0.666178218 C17.2231485,0.672237624 17.1994455,0.605405941 17.1260198,0.588831683 C17.0625743,0.712693069 16.9966337,0.687564356 16.8553069,0.666178218 C16.7966733,0.78790099 16.74,0.911762376 16.7006139,1.05273267 C16.7902574,1.16144554 16.6507129,1.27514851 16.7392871,1.40079208 C16.648396,1.44605941 16.672099,1.56047525 16.6234455,1.63265347 C16.5940396,1.67613861 16.4997624,1.67328713 16.4689307,1.71017822 C16.418495,1.77041584 16.5090297,1.88322772 16.3915842,1.86469307 C16.3145941,1.80035644 16.342396,1.86825743 16.2368911,1.86469307 C16.042099,2.01778218 15.669802,1.99372277 15.4249307,2.09673267 C15.3258416,2.19083168 15.2828911,2.34142574 15.1928911,2.44461386 C15.2276436,2.76291089 15.1239208,2.94273267 14.8836832,2.98586139 C14.6865743,2.9190297 14.4907129,2.97712871 14.3426139,3.06320792 C14.3386931,3.18314851 14.4641584,3.17352475 14.4199604,3.33392079 C14.2991287,3.49663366 14.1200198,3.60106931 13.9560594,3.72047525 C13.9006337,3.73562376 13.8908317,3.7669901 13.8400396,3.72047525 C13.7837228,3.9090297 13.5923168,3.96231683 13.4148119,4.02968317 C13.3356832,3.9669505 13.1613861,3.99956436 13.105604,3.91384158 C13.1897228,3.83043564 13.2547723,3.72813861 13.2601188,3.5659604 C13.3166139,3.53245545 13.3827327,3.5080396 13.3761386,3.41126733 C13.3987723,3.27261386 13.3312277,3.22431683 13.2987921,3.14073267 C13.2308911,3.07960396 13.2184158,2.9630495 13.1054257,2.94736634 C12.9617822,2.94540594 13.0111485,3.13663366 12.8733861,3.14073267 C12.8250891,3.02061386 12.9234653,3.00029703 12.9507327,2.94736634 C12.9876238,2.87536634 13.0047327,2.83811881 13.0280792,2.754 C13.0712079,2.56918812 12.907604,2.59093069 12.9507327,2.40611881 C12.7466733,2.40308911 12.5545545,2.18512871 12.3321386,2.32877228 C12.386495,2.33893069 12.3761584,2.41360396 12.4094851,2.44461386 C12.2610297,2.47811881 12.316099,2.53479208 12.3321386,2.67665347 C12.2107723,2.69554455 12.2300198,2.54334653 12.1389505,2.6379802 C12.0607129,2.68930693 12.0222178,2.89639604 12.100099,2.98586139 C11.9163564,3.11524752 12.0721188,3.47827723 12.1389505,3.60445545 C12.1009901,3.81154455 12.1163168,4.07156436 11.9067327,4.10685149 C11.8145941,4.00580198 11.7174653,3.90974257 11.6748713,3.7589703 C11.6561584,3.30219802 11.687703,2.89550495 11.8293861,2.59930693 C11.6843168,2.52285149 11.6987525,2.79730693 11.636198,2.67665347 C11.683604,2.51768317 11.7855446,2.41360396 11.8680594,2.29009901 C11.9919208,2.40932673 12.0045743,2.19920792 12.1389505,2.21257426 C12.3766931,2.24429703 12.5203366,2.18174257 12.6800198,2.13522772 C12.708,1.9010495 12.3467525,2.05627723 12.3708119,1.8260198 C12.2562178,1.85310891 12.2025743,1.94114851 12.0229307,1.90354455 C11.9300792,1.93936634 11.9206337,2.05877228 11.7522178,2.01938614 C11.6388713,2.01653465 11.6085743,1.9309901 11.5590297,1.86469307 C11.4629703,1.81461386 11.3713663,1.9509505 11.3656634,1.86469307 C11.4214455,1.80463366 11.4469307,1.71409901 11.481505,1.63265347 C11.281901,1.60057426 11.2972277,1.78342574 11.172297,1.8260198 C10.9669901,1.86540594 10.9053267,2.04861386 10.669901,2.05805941 C10.6820198,2.00584158 10.7249703,1.98427723 10.7085743,1.90354455 C10.5314257,1.90675248 10.4742178,2.02990099 10.2833465,2.01938614 C10.4095248,1.88786139 10.5198416,1.74065347 10.669901,1.63265347 C10.8019604,1.57152475 10.9618218,1.53819802 11.0564554,1.43946535 C10.9313465,1.47475248 10.8174653,1.40079208 10.7857426,1.40079208 C10.7543762,1.40079208 10.730495,1.4449901 10.708396,1.43946535 C10.6638416,1.42823762 10.6340792,1.35944554 10.5923762,1.36211881 C10.5378416,1.36568317 10.5200198,1.46994059 10.4378614,1.43946535 C10.2788911,1.35356436 10.1252673,1.26231683 9.93528713,1.20742574 C9.81017822,1.32790099 9.6989703,1.21865347 9.51005941,1.20742574 C9.49883168,1.08980198 9.51611881,0.943663366 9.3940396,0.936712871 C9.28906931,0.909267327 9.42184158,1.1190297 9.31669307,1.09122772 C7.94281188,1.09407921 6.53738614,0.959881188 5.37362376,0.820693069 C4.77623762,0.749405941 4.21271287,0.664039604 3.74988119,0.549980198 C3.58057426,0.508455446 3.41714851,0.492415842 3.2859802,0.395287129 C3.24784158,0.513980198 3.18279208,0.350910891 3.13128713,0.356613861 C2.90013861,0.369267327 2.62247525,0.268039604 2.35817822,0.20209901 C2.0810495,0.132772277 1.8130099,0.0572079208 1.54621782,0.00873267327 C1.4679802,0.124574257 1.56332673,0.284613861 1.50754455,0.356613861 C1.29831683,0.295306931 1.13114851,0.191940594 0.927623762,0.124752475 C0.817485149,0.405089109 0.976990099,0.871841584 0.850277228,1.05237624 C0.908019802,1.0589703 0.992851485,1.03865347 1.00479208,1.0910495 C0.915148515,1.07893069 0.856336634,1.09728713 0.811425743,1.12990099 C0.857405941,1.34340594 0.688277228,1.34162376 0.734079208,1.55512871 C0.609683168,1.68843564 0.533762376,1.87021782 0.502217822,2.09637624 C0.412752475,2.17443564 0.295663366,2.22487129 0.270178218,2.36708911 C0.317049505,2.86467327 0.141326733,3.13984158 0,3.44958416 C0.00695049505,3.53673267 0.0643366337,3.56364356 0.0773465347,3.6429505 C0.106752475,3.82241584 0.0169306931,3.9940396 0,4.14534653 C0.039029703,4.22251485 0.0965940594,4.28079208 0.154514851,4.33871287 C0.0805544554,4.3429901 0.200138614,4.46827723 0.154514851,4.57075248 C0.302970297,4.55132673 0.180178218,4.8029703 0.309207921,4.80279208 C0.252,4.80992079 0.273742574,4.896 0.270534653,4.95730693 C0.403663366,5.12554455 0.368910891,5.14443564 0.347881188,5.38271287 C0.471920792,5.65609901 0.621445545,5.87887129 0.541247525,6.2590099 C0.790930693,6.29287129 0.940990099,6.41584158 1.04364356,6.59405941 C1.09532673,6.59405941 1.14683168,6.59405941 1.19833663,6.59405941 C1.22916832,6.77227723 1.42574257,6.85407921 1.42574257,7.08362376 C1.42574257,7.17380198 1.42574257,7.26415842 1.42574257,7.35433663 C1.78217822,7.36253465 1.96912871,7.44469307 2.27851485,7.43168317 C2.37564356,7.49976238 2.32627723,7.49548515 2.37635644,7.58637624 C2.80211881,7.7920396 3.19794059,8.03780198 3.5850297,8.28213861 C3.95750495,8.32205941 4.28560396,8.41170297 4.67269307,8.43665347 C4.6669901,8.34077228 4.69514851,8.27625743 4.75253465,8.24346535 C4.92950495,8.28534653 5.13231683,8.3029901 5.33388119,8.32081188 C5.45988119,8.68437624 5.92075248,8.71378218 5.87548515,9.24861386 C6.0629703,9.38334653 6.23388119,9.5350099 6.45576238,9.63516832 C6.53025743,9.52930693 6.58906931,9.40776238 6.6879802,9.32613861 C6.81950495,9.2589505 6.91467327,9.35572277 7.11338614,9.32613861 C7.22566337,9.54873267 7.43524752,9.67437624 7.46126733,9.98340594 C7.51277228,10.0220792 7.578,10.0470297 7.6159604,10.0992475 C7.56837624,10.275505 7.75158416,10.221505 7.77047525,10.3312871 C7.68510891,10.4752871 7.91019802,10.5893465 7.88649505,10.7951881 C8.01106931,10.8251287 8.11479208,10.8759208 8.19552475,10.9498812 C8.39227723,10.9131683 8.52059406,11.089604 8.62093069,11.0272277 C8.64605941,10.8860792 8.59491089,10.8048119 8.54358416,10.7401188 C8.64837624,10.6153663 8.48655446,10.5148515 8.50508911,10.3366337 C8.54376238,10.3366337 8.58243564,10.3366337 8.62093069,10.3366337 C8.60186139,10.1584158 8.82516832,10.1452277 8.8529703,9.96665347 C8.90233663,9.96879208 8.90643564,10.024396 8.96881188,10.013703 C9.08643564,9.94544554 8.86330693,9.8980396 8.96881188,9.86293069 C9.12760396,9.95952475 9.12350495,9.79556436 9.31669307,9.82639604 C9.41239604,9.71590099 9.49277228,9.59114851 9.54873267,9.44091089 C9.756,9.56726733 9.81837624,9.36285149 9.9739604,9.32560396 C10.1208119,9.38477228 10.2633861,9.44875248 10.4765347,9.44180198 C10.5581584,9.40740594 10.5909505,9.32417822 10.7085743,9.3259604 C10.7679208,9.51540594 11.2409109,9.67491089 11.3658416,9.4419802 C11.4041584,9.53019802 11.6823564,9.62091089 11.7137228,9.48065347 C11.626396,9.43930693 11.543703,9.3929703 11.4816832,9.32613861 C11.5301584,9.31009901 11.5606337,9.27623762 11.5592079,9.21011881 C11.4692079,9.13954455 11.2838614,9.24825743 11.2111485,9.09427723 C11.2785149,9.09730693 11.3314455,9.08554455 11.3658416,9.05542574 C11.3608515,9.12493069 11.4043366,9.1459604 11.4816832,9.1329505 C11.6493861,9.0670099 11.6971485,9.00605941 11.9069109,9.05542574 C11.9728515,9.03118812 11.9705347,8.93887129 12.0229307,8.90091089 C12.0726535,8.96720792 12.1027723,9.05293069 12.216297,9.05542574 C12.2966733,9.00712871 12.3791881,8.96079208 12.4481584,8.90091089 C12.5281782,9.02708911 12.7798218,8.98164356 12.9507327,9.01675248 C13.0441188,9.0650495 13.0393069,9.21190099 13.1827723,9.21011881 C13.2877426,9.13455446 13.3586733,9.02530693 13.4919802,8.97807921 C13.7550297,9.03724752 13.8428911,9.27142574 14.071901,9.36481188 C14.1740198,9.48154455 14.0966733,9.77827723 14.2650891,9.82871287 C14.1866733,9.93742574 14.1957624,9.98750495 14.2264158,10.1379208 C14.2675842,10.2127723 14.4046337,10.1919208 14.4584554,10.2537624 C14.4696832,10.3842178 14.603703,10.3918812 14.5744752,10.5631485 C14.6475446,10.6059208 14.7569703,10.6123366 14.8450099,10.640495 C14.8409109,10.7864554 14.9207525,10.848297 15.0383762,10.8723564 C15.1114455,10.8810891 15.1237426,10.8288713 15.1928911,10.8336832 C15.2590099,10.6677624 15.3245941,10.5016634 15.3089109,10.2537624 C15.0597624,9.62679208 14.6945941,9.11566337 14.4197822,8.51417822 C14.5475644,8.45625743 14.3394059,8.41972277 14.3811089,8.32081188 C14.4605941,8.24346535 14.5242178,8.17752475 14.4584554,8.05009901 C14.566099,7.97756436 14.6019208,7.83267327 14.6518218,7.70221782 C14.7068911,7.71166337 14.7168713,7.76584158 14.7676634,7.77956436 C14.841802,7.63467327 14.971901,7.54574257 15.0768713,7.43168317 C15.0622574,7.24954455 15.1695446,7.18930693 15.2315644,7.08380198 C15.2837822,7.07168317 15.3053465,7.02873267 15.3860792,7.04512871 C15.3819802,6.86049505 15.5445149,6.84249505 15.5792673,6.69724752 C15.7034851,6.73110891 15.6594653,6.59691089 15.7339604,6.58140594 C15.8221782,6.59227723 15.8792079,6.5719604 15.8886535,6.50388119 C15.7398416,6.44328713 15.8120198,6.47590099 15.8499802,6.35168317 C15.8458812,6.27843564 15.7225545,6.23762376 15.7341386,6.23762376 C15.8373267,6.23762376 15.9403366,6.23762376 16.0433465,6.23762376 C16.0424554,6.05940594 16.11,6.12178218 16.0820198,6.00344554 C15.9066535,5.93108911 16.0294455,6.15582178 15.8888317,6.11839604 C15.8909703,6.0690297 15.938198,6.06421782 15.927505,6.0020198 C15.7968713,5.94017822 15.7624752,6.1659802 15.6954653,6.04051485 C15.7311089,5.9729703 15.8164752,5.9549703 15.927505,5.96281188 C16.0085941,5.82273267 15.9658218,5.77924752 15.9661782,5.55807921 C15.7769109,5.57964356 15.7672871,5.52475248 15.6569703,5.34653465 C15.6828119,5.34653465 15.7084752,5.34653465 15.7343168,5.34653465 C15.7097228,5.16831683 15.5634059,5.17491089 15.6569703,5.01665347 C15.4821386,4.98510891 15.5794455,4.69069307 15.463604,4.60033663 C15.5405941,4.5999802 15.5127921,4.49946535 15.618297,4.52762376 C15.5065545,4.66805941 15.7491089,4.78354455 15.618297,4.9549901 C15.6974257,4.99170297 15.8022178,5.00417822 15.8116634,5.11093069 C15.9346337,5.07778218 15.9583366,5.14514851 16.0048515,5.18881188 C16.0789901,5.09542574 16.0292673,4.87835644 16.0435248,4.72508911 C15.9390891,4.68784158 15.8569307,4.62849505 15.8503366,4.49340594 C15.9401584,4.51942574 15.953703,4.62190099 16.0435248,4.64809901 C16.0848713,4.56077228 16.1312079,4.50124752 16.1982178,4.43922772 C16.2087327,4.22233663 16.2058812,3.92079208 16.1206931,3.92079208 C16.1982178,3.92079208 16.2753861,3.92079208 16.3527327,3.92079208 C16.4095842,3.74257426 16.6394851,3.798 16.6619406,3.62726733 C16.4742772,3.57041584 16.3475644,3.76289109 16.2367129,3.65453465 C16.449505,3.55811881 16.6296832,3.42320792 16.8939802,3.37811881 C16.9005743,3.32037624 16.8802574,3.23251485 16.9326535,3.22075248 C17.0135644,3.2430297 17.0429703,3.3150297 17.1646931,3.29649505 C17.1367129,3.17815842 17.2313465,3.18190099 17.2033663,3.06374257 C17.1288713,2.97071287 16.9966337,2.93506931 16.9326535,2.83134653 C16.9677624,2.64760396 17.023901,2.4809703 17.0133861,2.25124752 C17.1828713,2.29205941 17.1089109,2.12043564 17.2871287,2.13522772 C17.2871287,2.05788119 17.2871287,1.98071287 17.2871287,1.90336634 C17.4653465,1.94310891 17.3612673,1.84312871 17.4386139,1.78734653 C17.5316436,1.77148515 17.5211287,1.85792079 17.6303762,1.8260198 C17.641604,1.66990099 17.7984356,1.66009901 17.8226733,1.51681188 C17.8167921,1.44516832 17.6909703,1.49310891 17.6672673,1.43946535 Z"></path>
</symbol>
<symbol id="icon-eye" viewBox="0 0 16 10">
<g fill-rule="evenodd">
<path d="M0,4.96911197 C1.26870944,2.11451573 4.33475725,0 7.82370821,0 C11.418385,0 14.4844328,2.00878994 15.6474164,4.96911197 C14.378707,7.82370821 11.3126592,9.93822394 7.82370821,9.93822394 C4.22903146,9.93822394 1.16298365,7.92943399 0,4.96911197 Z M7.82370821,1.48016101 C9.72677237,1.48016101 11.3126592,3.06604781 11.3126592,4.96911197 C11.3126592,6.87217613 9.72677237,8.45806293 7.82370821,8.45806293 C5.92064405,8.45806293 4.33475725,6.87217613 4.33475725,4.96911197 C4.33475725,3.06604781 5.92064405,1.48016101 7.82370821,1.48016101 Z"></path>
<path d="M7.82370821,2.85459624 C8.98669186,2.85459624 9.83249815,3.80612832 9.83249815,4.86338618 C9.83249815,6.02636983 8.88096607,6.87217613 7.82370821,6.87217613 C6.66072455,6.87217613 5.81491826,5.92064405 5.81491826,4.86338618 C5.81491826,3.70040253 6.76645034,2.85459624 7.82370821,2.85459624 Z"></path>
</g>
</symbol>
<symbol id="icon-calendar" viewBox="0 0 13 13">
<path d="M12.0951 1.50962H10.5832V0.604757C10.5832 0.270629 10.3126 0 9.97849 0H9.67611C9.34198 0 9.07135 0.270629 9.07135 0.604757V1.50962H3.77973V0.604757C3.77973 0.270629 3.5091 0 3.17497 0H2.87259C2.53847 0 2.26784 0.270629 2.26784 0.604757V1.50962H0.755946C0.338664 1.50962 0 1.84829 0 2.26557V4.07984V5.06257V12.2441C0 12.6613 0.338664 13 0.755946 13H12.0951C12.5124 13 12.8511 12.6613 12.8511 12.2441V5.06257V4.07984V2.26557C12.8511 1.84829 12.5124 1.50962 12.0951 1.50962ZM11.3392 11.4881H1.51189V5.06257H11.3392V11.4881Z"></path>
</symbol>
<symbol id="icon-speedometer" viewBox="0 0 16 13">
<g fill-rule="evenodd">
<path fill-rule="nonzero" d="M12.6167465,5.79715316 L13.0737315,3.74198423 C13.2170182,3.85443652 13.3567038,3.97188154 13.492526,4.09418543 C14.8455855,5.31257623 15.7377207,6.94525138 16,8.73740848 L14.1809069,9 C14.0048171,7.79677679 13.4551339,6.68508351 12.6167465,5.79715316 Z M7.48364074,3.84541895 C4.61102217,4.06956494 2.25440427,6.17405769 1.8155919,8.9266278 L0,8.64113407 C0.606685556,4.83553363 3.99404605,2 7.99264095,2 C8.27150887,2 8.54821633,2.01377591 8.82191891,2.0408973 L7.48364074,3.84541895 Z"></path>
<path d="M5.22950298,9.66554468 C5.64346886,8.72765783 9.52059848,3.36980514 12,2.27320385e-11 C11.1718628,4.15513162 9.81954806,10.6299011 9.40558218,11.567788 C9.08604283,12.3488368 8.37284972,12.8920027 7.54385425,12.9856748 C6.71485878,13.0793469 5.90118154,12.7087093 5.41982132,12.0181578 C4.9384611,11.3276064 4.86555371,10.4263644 5.22950298,9.66554468 Z M7.37006835,11.3516712 C7.88374482,11.3516712 8.30016188,10.9295519 8.30016188,10.4088414 C8.30016188,9.88813084 7.88374482,9.46601155 7.37006835,9.46601155 C6.85639188,9.46601155 6.43997483,9.88813084 6.43997483,10.4088414 C6.43997483,10.9295519 6.85639188,11.3516712 7.37006835,11.3516712 Z"></path>
</g>
</symbol>
<symbol id="icon-check" viewBox="0 0 28 23">
<polygon points="29.178 8.808 32.714 12.343 14.797 30.26 5.178 20.641 8.714 17.106 14.797 23.189" transform="translate(-5 -8)"></polygon>
</symbol>
<symbol id="icon-magnifier" viewBox="0 0 20 20">
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.35737 13.7397C5.1107 16.493 9.36257 16.8345 12.4876 14.7641L17.7235 20L20 17.7235L14.7641 12.4876C16.8345 9.36262 16.4931 5.11071 13.7397 2.35736C10.5966 -0.785786 5.50052 -0.785786 2.35737 2.35736C-0.785788 5.5005 -0.785789 10.5965 2.35737 13.7397ZM4.63384 11.4632C6.51973 13.3491 9.57737 13.3491 11.4633 11.4632C13.3492 9.57733 13.3492 6.51971 11.4633 4.63382C9.57737 2.74794 6.51973 2.74794 4.63384 4.63382C2.74795 6.51971 2.74795 9.57733 4.63384 11.4632Z" fill="white"></path>
</symbol>
<symbol id="icon-chat" viewBox="0 0 15 15">
<path d="M2.35211279,11.8979352 C2.90866414,11.1276589 8.11818602,6.72513423 11.4495944,3.95612082 C10.3341952,7.36723607 8.51306824,12.6827248 7.95651688,13.4530011 C7.5268655,14.0944317 6.56897273,14.54121 5.45602198,14.6192766 C4.34307124,14.6973431 3.25109577,14.3943504 2.60551597,13.8283406 C1.95993618,13.2623308 1.86286217,12.5228287 2.35211279,11.8979352 Z" id="Path" transform="translate(6.746359, 9.293761) rotate(-171.000000) translate(-6.746359, -9.293761) "></path>
<rect id="Rectangle" x="0" y="0" width="15" height="9"></rect>
</symbol>
<symbol id="icon-transcript" viewBox="0 0 11 12">
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.4412 0.172852H0.441162V2.17285H10.4412V0.172852ZM10.4412 3.17285H0.441162V5.17285H10.4412V3.17285ZM0.441162 6.17285H10.4412V8.17285H0.441162V6.17285ZM7.44116 9.17285H0.441162V11.1729H7.44116V9.17285Z"></path>
</symbol>
<symbol id="icon-bell" viewBox="0 0 11 13">
<g>
<path d="M10.9,9c-0.1-0.2-0.9-0.9-1.6-2S7.8,2.5,7.6,2C7.6,1.8,7.4,1.7,7.2,1.7H6.3V1.2c0-0.4-0.4-0.8-0.8-0.8
S4.7,0.8,4.7,1.2v0.5H3.9C3.7,1.7,3.5,1.8,3.4,2C3.2,2.5,2.5,5.9,1.8,7S0.3,8.8,0.2,9C0,9.3,0.3,9.7,0.6,9.7h9.8
C10.7,9.7,11,9.3,10.9,9z"></path>
<path d="M5.5,12.5c1,0,1.8-0.8,1.8-1.8H3.7C3.7,11.7,4.5,12.5,5.5,12.5z"></path>
</g>
</symbol>
<symbol id="vote-2020" viewBox="0 0 288 90">
<path d="M0 11.7136V24.1445C0.702961 22.23 1.05719 20.1654 1.05719 17.9454C1.05719 15.7091 0.702961 13.6309 0 11.7136Z" fill="#14202C"></path>
<path d="M45.9149 0.61908H37.3997L28.0113 25.7373L18.6257 0.61908H9.9046L24.4224 36.5373H31.3971L45.9149 0.61908Z" fill="#14202C"></path>
<path d="M82.9631 18.45V18.3491C82.9631 8.20909 75.0109 0.00817871 63.931 0.00817871C52.8511 0.00817871 44.7973 8.31272 44.7973 18.4527V18.5536C44.7973 28.6909 52.7495 36.8945 63.8294 36.8945C74.9093 36.8945 82.9631 28.59 82.9631 18.45ZM74.7061 18.5536C74.7061 24.6682 70.2933 29.6591 63.9337 29.6591C57.5741 29.6591 53.0598 24.5645 53.0598 18.45V18.3491C53.0598 12.2345 57.4725 7.24091 63.8321 7.24091C70.1945 7.24091 74.7061 12.3355 74.7061 18.45V18.5536Z" fill="#14202C"></path>
<path d="M83.7347 7.85181H94.6608V36.2836H102.561V7.85181H113.487V0.61908H83.7347V7.85181Z" fill="#14202C"></path>
<path d="M144.95 7.59817V0.61908H117.864V36.2836H145.205V29.3018H125.712V21.8127H142.641V14.8336H125.712V7.59817H144.95Z" fill="#14202C"></path>
<path d="M181.246 31.4973H165.654L174.073 22.4946C176.715 19.65 178.494 17.3918 179.412 15.7255C180.329 14.0591 180.787 12.2755 180.787 10.3718C180.787 7.66365 179.826 5.31274 177.904 3.31911C175.982 1.32547 173.467 0.330017 170.358 0.330017C167.22 0.330017 164.581 1.39365 162.444 3.5182C160.308 5.64274 159.193 8.36183 159.103 11.67H162.343C162.54 9.08456 163.356 7.07729 164.789 5.64547C166.22 4.21638 168.016 3.50183 170.177 3.50183C172.228 3.50183 173.964 4.18365 175.38 5.54456C176.797 6.9082 177.506 8.53092 177.506 10.4209C177.506 11.9127 177.11 13.3337 176.322 14.6809C175.534 16.0282 173.829 18.0955 171.212 20.88L158.301 34.7373H181.251V31.4973H181.246Z" fill="#14202C"></path>
<path d="M203.688 0.330017C200.531 0.330017 197.595 1.11002 194.885 2.67002C192.175 4.23002 190.03 6.38456 188.459 9.13911C186.889 11.8937 186.103 14.8827 186.103 18.1064C186.103 22.9446 187.828 27.0655 191.277 30.4718C194.726 33.8782 198.954 35.5827 203.966 35.5827C208.917 35.5827 213.11 33.8727 216.55 30.45C219.991 27.0273 221.713 22.86 221.713 17.9455C221.713 12.9873 219.988 8.81184 216.539 5.41911C213.091 2.02638 208.807 0.330017 203.688 0.330017ZM216.342 25.2409C215.092 27.4337 213.351 29.16 211.119 30.4227C208.886 31.6855 206.459 32.3182 203.837 32.3182C199.91 32.3182 196.554 30.9437 193.77 28.1973C190.986 25.4509 189.593 22.08 189.593 18.0927C189.593 15.3982 190.222 12.9546 191.48 10.7618C192.738 8.56911 194.487 6.82638 196.727 5.53365C198.968 4.2382 201.338 3.59184 203.837 3.59184C206.382 3.59184 208.79 4.2382 211.061 5.53365C213.332 6.82638 215.092 8.55274 216.342 10.7046C217.591 12.8591 218.217 15.2673 218.217 17.9318C218.217 20.6127 217.594 23.0482 216.342 25.2409Z" fill="#14202C"></path>
<path d="M247.678 31.4973H232.087L240.506 22.4946C243.148 19.65 244.927 17.3918 245.844 15.7255C246.761 14.0591 247.22 12.2755 247.22 10.3718C247.22 7.66365 246.259 5.31274 244.337 3.31911C242.414 1.32547 239.899 0.330017 236.791 0.330017C233.652 0.330017 231.013 1.39365 228.877 3.5182C226.741 5.64274 225.626 8.36183 225.535 11.67H228.775C228.973 9.08456 229.789 7.07729 231.222 5.64547C232.653 4.21638 234.448 3.50183 236.61 3.50183C238.661 3.50183 240.396 4.18365 241.813 5.54456C243.23 6.9082 243.938 8.53092 243.938 10.4209C243.938 11.9127 243.543 13.3337 242.755 14.6809C241.967 16.0282 240.262 18.0955 237.645 20.88L224.733 34.7373H247.684V31.4973H247.678Z" fill="#14202C"></path>
<path d="M287.5 11.8364C286.649 9.45275 285.262 7.31184 283.337 5.41911C279.888 2.02638 275.605 0.330017 270.489 0.330017C267.331 0.330017 264.396 1.11002 261.685 2.67002C258.975 4.23002 256.831 6.38456 255.26 9.13911C253.686 11.8909 252.901 14.88 252.901 18.1037C252.901 22.9418 254.626 27.0627 258.074 30.4691C261.523 33.8755 265.752 35.58 270.763 35.58C275.714 35.58 279.907 33.87 283.348 30.4473C285.268 28.5382 286.651 26.3946 287.5 24.0191V11.8364ZM283.142 25.2409C281.893 27.4337 280.152 29.16 277.919 30.4227C275.687 31.6855 273.26 32.3182 270.637 32.3182C266.71 32.3182 263.355 30.9437 260.571 28.1973C257.786 25.4509 256.394 22.08 256.394 18.0927C256.394 15.3982 257.023 12.9546 258.28 10.7618C259.538 8.56911 261.287 6.82638 263.528 5.53365C265.769 4.2382 268.138 3.59184 270.637 3.59184C273.183 3.59184 275.591 4.2382 277.862 5.53365C280.133 6.82638 281.893 8.55274 283.142 10.7046C284.392 12.8591 285.018 15.2673 285.018 17.9318C285.018 20.6127 284.392 23.0482 283.142 25.2409Z" fill="#14202C"></path>
<path d="M4.20127 56.67C4.39897 54.0845 5.21452 52.0773 6.6479 50.6454C8.07853 49.2163 9.87438 48.5018 12.0354 48.5018C14.0867 48.5018 15.8221 49.1836 17.239 50.5445C18.6559 51.9082 19.3644 53.5309 19.3644 55.4209C19.3644 56.9127 18.9689 58.3336 18.1809 59.6809C17.3928 61.0282 15.6875 63.0954 13.0707 65.88L0.159241 79.7373H23.1098V76.4973H7.51836L15.9374 67.4945C18.579 64.65 20.3584 62.3918 21.2755 60.7254C22.1927 59.0591 22.6512 57.2754 22.6512 55.3718C22.6512 52.6636 21.6902 50.3127 19.768 48.3191C17.8458 46.3254 15.3306 45.33 12.2222 45.33C9.08355 45.33 6.4447 46.3936 4.30836 48.5182C2.16927 50.6427 1.05442 53.3618 0.961056 56.67H4.20127Z" fill="#14202C"></path>
<path d="M46.1922 80.5827C51.1431 80.5827 55.3362 78.8727 58.7769 75.45C62.2175 72.0273 63.9392 67.86 63.9392 62.9454C63.9392 57.9873 62.2148 53.8118 58.7659 50.4191C55.317 47.0263 51.0333 45.33 45.9176 45.33C42.7598 45.33 39.8244 46.11 37.1141 47.67C34.4011 49.23 32.2593 51.3845 30.6886 54.1391C29.118 56.8936 28.3326 59.8827 28.3326 63.1063C28.3326 67.9445 30.0571 72.0654 33.506 75.4718C36.9494 78.8782 41.1809 80.5827 46.1922 80.5827ZM33.7092 55.7645C34.9668 53.5718 36.716 51.8291 38.9567 50.5363C41.1973 49.2409 43.5671 48.5945 46.0659 48.5945C48.6114 48.5945 51.0196 49.2409 53.2905 50.5363C55.5614 51.8291 57.3215 53.5554 58.5709 55.7073C59.8203 57.8618 60.4464 60.27 60.4464 62.9345C60.4464 65.6127 59.8203 68.0509 58.5709 70.2409C57.3215 72.4336 55.5806 74.16 53.3481 75.4227C51.1157 76.6854 48.6883 77.3182 46.0659 77.3182C42.1392 77.3182 38.7837 75.9436 35.9993 73.1973C33.2149 70.4509 31.8227 67.08 31.8227 63.0927C31.8227 60.3982 32.4515 57.9545 33.7092 55.7645Z" fill="#14202C"></path>
<path d="M72.7867 45.6191L87.3044 81.5373H94.2791L108.797 45.6191H100.282L90.8934 70.7373L81.5078 45.6191H72.7867Z" fill="#14202C"></path>
<path d="M126.711 81.8945C137.791 81.8945 145.845 73.59 145.845 63.45V63.3491C145.845 53.2091 137.893 45.0082 126.813 45.0082C115.733 45.0082 107.679 53.3127 107.679 63.4527V63.5536C107.679 73.6909 115.632 81.8945 126.711 81.8945ZM115.939 63.3491C115.939 57.2345 120.352 52.2409 126.711 52.2409C133.074 52.2409 137.585 57.3355 137.585 63.45V63.5509C137.585 69.6655 133.173 74.6564 126.813 74.6564C120.453 74.6564 115.939 69.5618 115.939 63.4473V63.3491Z" fill="#14202C"></path>
<path d="M165.443 81.2836V52.8518H176.369V45.6191H146.617V52.8518H157.543V81.2836H165.443Z" fill="#14202C"></path>
<path d="M208.087 74.3018H188.594V66.8127H205.523V59.8336H188.594V52.5982H207.832V45.6191H180.746V81.2836H208.087V74.3018Z" fill="#14202C"></path>
<path d="M227.669 50.6482C229.099 49.2191 230.895 48.5045 233.056 48.5045C235.107 48.5045 236.843 49.1863 238.26 50.5472C239.677 51.9109 240.385 53.5336 240.385 55.4236C240.385 56.9154 239.99 58.3363 239.202 59.6836C238.414 61.0309 236.708 63.0982 234.091 65.8827L221.18 79.74H244.131V76.5H228.539L236.958 67.4972C239.6 64.6527 241.379 62.3945 242.296 60.7282C243.213 59.0618 243.672 57.2782 243.672 55.3745C243.672 52.6663 242.711 50.3154 240.789 48.3218C238.867 46.3282 236.351 45.3327 233.243 45.3327C230.104 45.3327 227.466 46.3963 225.329 48.5209C223.193 50.6454 222.078 53.3645 221.987 56.6727H225.228C225.423 54.0845 226.238 52.0772 227.669 50.6482Z" fill="#14202C"></path>
<path d="M279.432 75.45C282.873 72.0273 284.595 67.86 284.595 62.9454C284.595 57.9873 282.87 53.8118 279.421 50.4191C275.973 47.0263 271.689 45.33 266.573 45.33C263.415 45.33 260.48 46.11 257.77 47.67C255.057 49.23 252.915 51.3845 251.344 54.1391C249.774 56.8936 248.988 59.8827 248.988 63.1063C248.988 67.9445 250.713 72.0654 254.162 75.4718C257.61 78.8782 261.839 80.5827 266.851 80.5827C271.796 80.5827 275.992 78.87 279.432 75.45ZM256.652 73.1973C253.868 70.4509 252.476 67.08 252.476 63.0927C252.476 60.3982 253.104 57.9545 254.362 55.7618C255.62 53.5691 257.369 51.8263 259.609 50.5336C261.85 49.2382 264.22 48.5918 266.719 48.5918C269.264 48.5918 271.672 49.2382 273.943 50.5336C276.214 51.8263 277.974 53.5527 279.224 55.7045C280.473 57.8591 281.099 60.2673 281.099 62.9318C281.099 65.61 280.473 68.0482 279.224 70.2382C277.974 72.4309 276.233 74.1573 274.001 75.42C271.769 76.6827 269.341 77.3154 266.719 77.3154C262.792 77.3209 259.436 75.9463 256.652 73.1973Z" fill="#14202C"></path>
</symbol>
<symbol id="icon-info" viewBox="0 0 14 14">
<path d="M8.60657 5.34091C8.60657 4.34985 7.78669 3.57501 6.60642 3.57501C5.40813 3.57501 4.44409 4.23272 4.44409 5.49408H5.60634C5.60634 4.90845 5.99376 4.59311 6.56137 4.59311C7.12898 4.59311 7.43531 4.9535 7.43531 5.34992C7.43531 5.63823 7.25512 5.84546 7.08393 5.99862C6.66048 6.38604 6.13792 6.62029 5.96673 7.41314C5.91267 7.67443 5.92168 8.0258 5.92168 8.28708H7.03889V8.03481C7.03889 7.35909 7.4263 7.16988 7.89481 6.77346C8.30925 6.42208 8.60657 5.97159 8.60657 5.34091ZM7.10195 10.107V8.84569H5.8496V10.107H7.10195Z"></path>
<circle cx="6.60632" cy="6.60632" r="6.10632" fill="none"></circle>
</symbol>
<symbol id="icon-info-fill" viewBox="0 0 14 14">
<circle cx="7" cy="7" r="7" fill="#F83036"></circle>
<path d="M9.69733 5.24531C9.69733 4.04753 8.70644 3.11108 7.28 3.11108C5.83178 3.11108 4.66666 3.90597 4.66666 5.43042H6.07133C6.07133 4.72264 6.53955 4.34153 7.22555 4.34153C7.91155 4.34153 8.28178 4.77708 8.28178 5.2562C8.28178 5.60464 8.064 5.85508 7.85711 6.0402C7.34533 6.50842 6.71378 6.79153 6.50689 7.74975C6.44155 8.06553 6.45244 8.4902 6.45244 8.80597H7.80266V8.50108C7.80266 7.68442 8.27089 7.45575 8.83711 6.97664C9.338 6.55197 9.69733 6.00753 9.69733 5.24531ZM7.87889 11.0055V9.48108H6.36533V11.0055H7.87889Z" fill="white"></path>
</symbol>
<symbol id="vote-2020-color" viewBox="0 0 166 22">
<g class="vote-2020-color--vote">
<path d="M0 0.362488H5.17141L10.7389 15.3419L16.3063 0.362488H21.3533L12.7418 21.7859H8.60016L0 0.362488Z" fill="white"></path>
<path d="M20.6857 11.0565V11C20.6857 4.95169 25.4611 0 32.0357 0C38.6102 0 43.3177 4.89517 43.3177 10.9435V11C43.3177 17.0483 38.5424 22 31.9678 22C25.4045 21.9887 20.6857 17.1048 20.6857 11.0565ZM38.4179 11.0565V11C38.4179 7.3484 35.736 4.3186 31.9678 4.3186C28.1995 4.3186 25.5855 7.29188 25.5855 10.9435V11C25.5855 14.6516 28.2674 17.6814 32.0357 17.6814C35.8039 17.6814 38.4179 14.6968 38.4179 11.0565Z" fill="white"></path>
<path d="M50.2547 4.66904H43.7707V0.350433H61.4123V4.66904H54.9282V21.6269H50.2434V4.66904H50.2547Z" fill="white"></path>
<path d="M64.0147 0.361816H80.072V4.52214H68.6655V8.84073H78.7028V13.0011H68.6655V17.4666H80.2192V21.6269H64.0034V0.361816H64.0147Z" fill="white"></path>
</g>
<g class="vote-2020-color--2020">
<path d="M90.3807 6.9527H88.457C88.5135 4.97428 89.1699 3.35763 90.4373 2.09145C91.7046 0.825262 93.2662 0.192169 95.1334 0.192169C96.9779 0.192169 98.4716 0.791348 99.6032 1.9784C100.746 3.16545 101.312 4.5673 101.312 6.18394C101.312 7.31447 101.04 8.38846 100.497 9.37202C99.954 10.3669 98.9016 11.7122 97.3287 13.408L92.3383 18.778H101.583V20.7112H87.993L95.6539 12.447C97.2042 10.7852 98.2226 9.5529 98.6866 8.75022C99.1505 7.94755 99.3882 7.09966 99.3882 6.20655C99.3882 5.07603 98.9695 4.11508 98.1321 3.30111C97.2947 2.48713 96.265 2.08014 95.0428 2.08014C93.7641 2.08014 92.7004 2.50974 91.8517 3.35764C90.9917 4.20553 90.5051 5.40388 90.3807 6.9527Z" fill="#F83036"></path>
<path d="M114.903 0.180817C117.936 0.180817 120.482 1.18698 122.519 3.21062C124.567 5.23426 125.585 7.72141 125.585 10.6834C125.585 13.6114 124.567 16.0986 122.53 18.1448C120.493 20.1911 118.003 21.2086 115.073 21.2086C112.096 21.2086 109.596 20.1911 107.547 18.1561C105.499 16.1212 104.481 13.668 104.481 10.7851C104.481 8.86324 104.945 7.07701 105.873 5.43775C106.801 3.79849 108.079 2.5097 109.686 1.58267C111.293 0.655643 113.036 0.180817 114.903 0.180817ZM114.993 2.13663C113.511 2.13663 112.108 2.521 110.773 3.28976C109.449 4.05851 108.407 5.0986 107.661 6.41C106.914 7.72141 106.54 9.17979 106.54 10.7851C106.54 13.1592 107.366 15.1716 109.019 16.8108C110.671 18.4501 112.662 19.2641 114.993 19.2641C116.544 19.2641 117.992 18.891 119.316 18.1335C120.64 17.3761 121.67 16.3473 122.417 15.0472C123.164 13.7358 123.526 12.2887 123.526 10.6834C123.526 9.08934 123.152 7.65358 122.417 6.37609C121.67 5.08729 120.629 4.05851 119.282 3.28976C117.936 2.521 116.498 2.13663 114.993 2.13663Z" fill="#F83036"></path>
<path d="M129.772 6.9527H127.848C127.905 4.97428 128.561 3.35763 129.829 2.09145C131.096 0.825262 132.658 0.192169 134.525 0.192169C136.369 0.192169 137.863 0.791348 138.995 1.9784C140.137 3.16545 140.703 4.5673 140.703 6.18394C140.703 7.31447 140.432 8.38846 139.888 9.37202C139.345 10.3669 138.293 11.7122 136.72 13.408L131.73 18.778H140.975V20.7112H127.362L135.023 12.447C136.573 10.7852 137.591 9.5529 138.055 8.75022C138.519 7.94755 138.757 7.09966 138.757 6.20655C138.757 5.07603 138.338 4.11508 137.501 3.30111C136.663 2.48713 135.634 2.08014 134.412 2.08014C133.133 2.08014 132.069 2.50974 131.22 3.35764C130.383 4.20553 129.896 5.40388 129.772 6.9527Z" fill="#F83036"></path>
<path d="M154.508 0.180817C157.541 0.180817 160.087 1.18698 162.124 3.21062C164.172 5.23426 165.191 7.72141 165.191 10.6834C165.191 13.6114 164.172 16.0986 162.135 18.1448C160.098 20.1911 157.609 21.2086 154.678 21.2086C151.702 21.2086 149.201 20.1911 147.153 18.1561C145.105 16.1212 144.086 13.668 144.086 10.7851C144.086 8.86324 144.55 7.07701 145.478 5.43775C146.406 3.79849 147.685 2.5097 149.292 1.58267C150.899 0.655643 152.641 0.180817 154.508 0.180817ZM154.599 2.13663C153.117 2.13663 151.713 2.521 150.378 3.28976C149.054 4.05851 148.013 5.0986 147.266 6.41C146.519 7.72141 146.146 9.17979 146.146 10.7851C146.146 13.1592 146.972 15.1716 148.624 16.8108C150.276 18.4501 152.268 19.2641 154.599 19.2641C156.149 19.2641 157.598 18.891 158.922 18.1335C160.246 17.3761 161.275 16.3473 162.022 15.0472C162.769 13.7358 163.131 12.2887 163.131 10.6834C163.131 9.08934 162.758 7.65358 162.022 6.37609C161.275 5.08729 160.234 4.05851 158.888 3.28976C157.541 2.521 156.115 2.13663 154.599 2.13663Z" fill="#F83036"></path>
</g>
</symbol>
<symbol id="vote-2020-color-dark" viewBox="0 0 166 22">
<g class="vote-2020-color--vote">
<path d="M0 0.362488H5.17141L10.7389 15.3419L16.3063 0.362488H21.3533L12.7418 21.7859H8.60016L0 0.362488Z" fill="#161F2D"></path>
<path d="M20.6857 11.0565V11C20.6857 4.95169 25.4611 0 32.0357 0C38.6102 0 43.3177 4.89517 43.3177 10.9435V11C43.3177 17.0483 38.5424 22 31.9678 22C25.4045 21.9887 20.6857 17.1048 20.6857 11.0565ZM38.4179 11.0565V11C38.4179 7.3484 35.736 4.3186 31.9678 4.3186C28.1995 4.3186 25.5855 7.29188 25.5855 10.9435V11C25.5855 14.6516 28.2674 17.6814 32.0357 17.6814C35.8039 17.6814 38.4179 14.6968 38.4179 11.0565Z" fill="#161F2D"></path>
<path d="M50.2547 4.66904H43.7707V0.350433H61.4123V4.66904H54.9282V21.6269H50.2434V4.66904H50.2547Z" fill="#161F2D"></path>
<path d="M64.0147 0.361816H80.072V4.52214H68.6655V8.84073H78.7028V13.0011H68.6655V17.4666H80.2192V21.6269H64.0034V0.361816H64.0147Z" fill="#161F2D"></path>
</g>
<g class="vote-2020-color--2020">
<path d="M90.3807 6.9527H88.457C88.5135 4.97428 89.1699 3.35763 90.4373 2.09145C91.7046 0.825262 93.2662 0.192169 95.1334 0.192169C96.9779 0.192169 98.4716 0.791348 99.6032 1.9784C100.746 3.16545 101.312 4.5673 101.312 6.18394C101.312 7.31447 101.04 8.38846 100.497 9.37202C99.954 10.3669 98.9016 11.7122 97.3287 13.408L92.3383 18.778H101.583V20.7112H87.993L95.6539 12.447C97.2042 10.7852 98.2226 9.5529 98.6866 8.75022C99.1505 7.94755 99.3882 7.09966 99.3882 6.20655C99.3882 5.07603 98.9695 4.11508 98.1321 3.30111C97.2947 2.48713 96.265 2.08014 95.0428 2.08014C93.7641 2.08014 92.7004 2.50974 91.8517 3.35764C90.9917 4.20553 90.5051 5.40388 90.3807 6.9527Z" fill="#F83036"></path>
<path d="M114.903 0.180817C117.936 0.180817 120.482 1.18698 122.519 3.21062C124.567 5.23426 125.585 7.72141 125.585 10.6834C125.585 13.6114 124.567 16.0986 122.53 18.1448C120.493 20.1911 118.003 21.2086 115.073 21.2086C112.096 21.2086 109.596 20.1911 107.547 18.1561C105.499 16.1212 104.481 13.668 104.481 10.7851C104.481 8.86324 104.945 7.07701 105.873 5.43775C106.801 3.79849 108.079 2.5097 109.686 1.58267C111.293 0.655643 113.036 0.180817 114.903 0.180817ZM114.993 2.13663C113.511 2.13663 112.108 2.521 110.773 3.28976C109.449 4.05851 108.407 5.0986 107.661 6.41C106.914 7.72141 106.54 9.17979 106.54 10.7851C106.54 13.1592 107.366 15.1716 109.019 16.8108C110.671 18.4501 112.662 19.2641 114.993 19.2641C116.544 19.2641 117.992 18.891 119.316 18.1335C120.64 17.3761 121.67 16.3473 122.417 15.0472C123.164 13.7358 123.526 12.2887 123.526 10.6834C123.526 9.08934 123.152 7.65358 122.417 6.37609C121.67 5.08729 120.629 4.05851 119.282 3.28976C117.936 2.521 116.498 2.13663 114.993 2.13663Z" fill="#F83036"></path>
<path d="M129.772 6.9527H127.848C127.905 4.97428 128.561 3.35763 129.829 2.09145C131.096 0.825262 132.658 0.192169 134.525 0.192169C136.369 0.192169 137.863 0.791348 138.995 1.9784C140.137 3.16545 140.703 4.5673 140.703 6.18394C140.703 7.31447 140.432 8.38846 139.888 9.37202C139.345 10.3669 138.293 11.7122 136.72 13.408L131.73 18.778H140.975V20.7112H127.362L135.023 12.447C136.573 10.7852 137.591 9.5529 138.055 8.75022C138.519 7.94755 138.757 7.09966 138.757 6.20655C138.757 5.07603 138.338 4.11508 137.501 3.30111C136.663 2.48713 135.634 2.08014 134.412 2.08014C133.133 2.08014 132.069 2.50974 131.22 3.35764C130.383 4.20553 129.896 5.40388 129.772 6.9527Z" fill="#F83036"></path>
<path d="M154.508 0.180817C157.541 0.180817 160.087 1.18698 162.124 3.21062C164.172 5.23426 165.191 7.72141 165.191 10.6834C165.191 13.6114 164.172 16.0986 162.135 18.1448C160.098 20.1911 157.609 21.2086 154.678 21.2086C151.702 21.2086 149.201 20.1911 147.153 18.1561C145.105 16.1212 144.086 13.668 144.086 10.7851C144.086 8.86324 144.55 7.07701 145.478 5.43775C146.406 3.79849 147.685 2.5097 149.292 1.58267C150.899 0.655643 152.641 0.180817 154.508 0.180817ZM154.599 2.13663C153.117 2.13663 151.713 2.521 150.378 3.28976C149.054 4.05851 148.013 5.0986 147.266 6.41C146.519 7.72141 146.146 9.17979 146.146 10.7851C146.146 13.1592 146.972 15.1716 148.624 16.8108C150.276 18.4501 152.268 19.2641 154.599 19.2641C156.149 19.2641 157.598 18.891 158.922 18.1335C160.246 17.3761 161.275 16.3473 162.022 15.0472C162.769 13.7358 163.131 12.2887 163.131 10.6834C163.131 9.08934 162.758 7.65358 162.022 6.37609C161.275 5.08729 160.234 4.05851 158.888 3.28976C157.541 2.521 156.115 2.13663 154.599 2.13663Z" fill="#F83036"></path>
</g>
</symbol>
<symbol id="vote-2022-color" viewBox="0 0 166 22">
<path d="M0 0.362488H5.17141L10.7389 15.3419L16.3063 0.362488H21.3533L12.7418 21.7859H8.60016L0 0.362488Z" fill="white"></path>
<path d="M20.6857 11.0565V11C20.6857 4.95169 25.4611 0 32.0357 0C38.6102 0 43.3177 4.89517 43.3177 10.9435V11C43.3177 17.0483 38.5424 22 31.9678 22C25.4045 21.9887 20.6857 17.1048 20.6857 11.0565ZM38.4179 11.0565V11C38.4179 7.3484 35.736 4.3186 31.9678 4.3186C28.1995 4.3186 25.5855 7.29188 25.5855 10.9435V11C25.5855 14.6516 28.2674 17.6814 32.0357 17.6814C35.8039 17.6814 38.4179 14.6968 38.4179 11.0565Z" fill="white"></path>
<path d="M50.2547 4.66904H43.7707V0.350433H61.4123V4.66904H54.9282V21.6269H50.2434V4.66904H50.2547Z" fill="white"></path>
<path d="M64.0147 0.361816H80.072V4.52214H68.6655V8.84073H78.7028V13.0011H68.6655V17.4666H80.2192V21.6269H64.0034V0.361816H64.0147Z" fill="white"></path>
<path d="M90.3807 6.9527H88.457C88.5135 4.97428 89.1699 3.35763 90.4373 2.09145C91.7046 0.825261 93.2662 0.192168 95.1334 0.192168C96.9779 0.192168 98.4716 0.791347 99.6032 1.9784C100.746 3.16545 101.312 4.5673 101.312 6.18394C101.312 7.31447 101.04 8.38846 100.497 9.37202C99.954 10.3669 98.9016 11.7122 97.3287 13.408L92.3383 18.778H101.583V20.7112H87.993L95.6539 12.447C97.2042 10.7852 98.2226 9.5529 98.6866 8.75022C99.1505 7.94755 99.3882 7.09966 99.3882 6.20655C99.3882 5.07603 98.9695 4.11508 98.1321 3.30111C97.2947 2.48713 96.265 2.08014 95.0428 2.08014C93.7641 2.08014 92.7004 2.50974 91.8517 3.35764C90.9917 4.20553 90.5051 5.40388 90.3807 6.9527Z" fill="#F83036"></path>
<path d="M114.903 0.180817C117.936 0.180817 120.482 1.18698 122.519 3.21062C124.567 5.23426 125.585 7.72141 125.585 10.6834C125.585 13.6114 124.567 16.0986 122.53 18.1448C120.493 20.1911 118.003 21.2086 115.073 21.2086C112.096 21.2086 109.596 20.1911 107.547 18.1561C105.499 16.1212 104.481 13.668 104.481 10.7851C104.481 8.86324 104.945 7.07701 105.873 5.43775C106.801 3.79849 108.079 2.5097 109.686 1.58267C111.293 0.655643 113.036 0.180817 114.903 0.180817ZM114.993 2.13663C113.511 2.13663 112.108 2.521 110.773 3.28976C109.449 4.05851 108.407 5.0986 107.661 6.41C106.914 7.72141 106.54 9.17979 106.54 10.7851C106.54 13.1592 107.366 15.1716 109.019 16.8108C110.671 18.4501 112.662 19.2641 114.993 19.2641C116.544 19.2641 117.992 18.891 119.316 18.1335C120.64 17.3761 121.67 16.3473 122.417 15.0472C123.164 13.7358 123.526 12.2887 123.526 10.6834C123.526 9.08934 123.152 7.65358 122.417 6.37609C121.67 5.08729 120.629 4.05851 119.282 3.28976C117.936 2.521 116.498 2.13663 114.993 2.13663Z" fill="#F83036"></path>
<path d="M146.388 6.9527H144.464C144.521 4.97428 145.177 3.35763 146.444 2.09145C147.712 0.825261 149.273 0.192168 151.14 0.192168C152.985 0.192168 154.479 0.791347 155.61 1.9784C156.753 3.16545 157.319 4.5673 157.319 6.18394C157.319 7.31447 157.047 8.38846 156.504 9.37202C155.961 10.3669 154.909 11.7122 153.336 13.408L148.345 18.778H157.59V20.7112H144L151.661 12.447C153.211 10.7852 154.23 9.5529 154.694 8.75022C155.158 7.94755 155.395 7.09966 155.395 6.20655C155.395 5.07603 154.977 4.11508 154.139 3.30111C153.302 2.48713 152.272 2.08014 151.05 2.08014C149.771 2.08014 148.707 2.50974 147.859 3.35764C146.999 4.20553 146.512 5.40388 146.388 6.9527Z" fill="#F83036"></path>
<path d="M114.903 0.180817C117.936 0.180817 120.482 1.18698 122.519 3.21062C124.567 5.23426 125.585 7.72141 125.585 10.6834C125.585 13.6114 124.567 16.0986 122.53 18.1448C120.493 20.1911 118.003 21.2086 115.073 21.2086C112.096 21.2086 109.596 20.1911 107.547 18.1561C105.499 16.1212 104.481 13.668 104.481 10.7851C104.481 8.86324 104.945 7.07701 105.873 5.43775C106.801 3.79849 108.079 2.5097 109.686 1.58267C111.293 0.655643 113.036 0.180817 114.903 0.180817ZM114.993 2.13663C113.511 2.13663 112.108 2.521 110.773 3.28976C109.449 4.05851 108.407 5.0986 107.661 6.41C106.914 7.72141 106.54 9.17979 106.54 10.7851C106.54 13.1592 107.366 15.1716 109.019 16.8108C110.671 18.4501 112.662 19.2641 114.993 19.2641C116.544 19.2641 117.992 18.891 119.316 18.1335C120.64 17.3761 121.67 16.3473 122.417 15.0472C123.164 13.7358 123.526 12.2887 123.526 10.6834C123.526 9.08934 123.152 7.65358 122.417 6.37609C121.67 5.08729 120.629 4.05851 119.282 3.28976C117.936 2.521 116.498 2.13663 114.993 2.13663Z" fill="#F83036"></path>
<path d="M129.772 6.9527H127.848C127.905 4.97428 128.561 3.35763 129.829 2.09145C131.096 0.825261 132.658 0.192168 134.525 0.192168C136.369 0.192168 137.863 0.791347 138.995 1.9784C140.137 3.16545 140.703 4.5673 140.703 6.18394C140.703 7.31447 140.432 8.38846 139.888 9.37202C139.345 10.3669 138.293 11.7122 136.72 13.408L131.73 18.778H140.975V20.7112H127.362L135.023 12.447C136.573 10.7852 137.591 9.5529 138.055 8.75022C138.519 7.94755 138.757 7.09966 138.757 6.20655C138.757 5.07603 138.338 4.11508 137.501 3.30111C136.663 2.48713 135.634 2.08014 134.412 2.08014C133.133 2.08014 132.069 2.50974 131.22 3.35764C130.383 4.20553 129.896 5.40388 129.772 6.9527Z" fill="#F83036"></path>
</symbol>
<symbol id="pbs-vote-2022" viewBox="0 0 612 191">
<path d="M2.27945 101.63H23.4802L46.3002 163.14L69.1203 101.63H89.8213L54.5267 189.63H37.5341L2.27945 101.63Z" fill="white"></path>
<path d="M86.3228 145.55V145.3C86.3228 120.47 105.904 100.13 132.832 100.13C159.761 100.13 179.102 120.22 179.102 145.05V145.3C179.102 170.12 159.521 190.46 132.583 190.46C105.644 190.46 86.3228 170.37 86.3228 145.55ZM159.021 145.55V145.3C159.021 130.3 148.026 117.85 132.583 117.85C117.139 117.85 106.404 130.08 106.404 145.05V145.3C106.404 160.3 117.399 172.74 132.832 172.74C148.266 172.74 159.021 160.52 159.021 145.55Z" fill="white"></path>
<path d="M205.281 119.35H178.722V101.63H251.051V119.35H224.493V189H205.281V119.35Z" fill="white"></path>
<path d="M260.777 101.63H326.618V118.72H279.878V136.44H321.03V153.53H279.878V171.87H327.268V189H260.777V101.63Z" fill="white"></path>
<path d="M347.549 130.36H339.392C339.632 121.973 342.438 115.083 347.809 109.69C350.402 107.051 353.509 104.973 356.937 103.583C360.365 102.193 364.042 101.522 367.74 101.61C375.57 101.61 381.901 104.137 386.732 109.19C389.068 111.541 390.914 114.333 392.161 117.405C393.409 120.476 394.034 123.765 393.999 127.08C394.017 131.825 392.823 136.496 390.53 140.65C388.224 144.877 383.746 150.597 377.096 157.81L355.905 180.64H395.148V188.86H337.373L369.839 153.72C376.423 146.653 380.711 141.413 382.703 138C384.656 134.735 385.692 131.004 385.702 127.2C385.723 124.879 385.258 122.579 384.337 120.449C383.416 118.318 382.059 116.404 380.355 114.83C376.72 111.455 371.932 109.602 366.974 109.65C362.015 109.698 357.264 111.645 353.696 115.09C350.104 118.71 348.055 123.8 347.549 130.36Z" fill="white"></path>
<path d="M443.247 101.61C456.128 101.61 466.913 105.91 475.603 114.51C484.293 123.11 488.624 133.7 488.597 146.28C488.637 152.16 487.51 157.989 485.281 163.429C483.051 168.869 479.765 173.813 475.611 177.973C471.458 182.133 466.52 185.426 461.085 187.663C455.649 189.899 449.824 191.033 443.947 191C431.326 191 420.664 186.667 411.961 178C407.761 173.944 404.44 169.067 402.205 163.672C399.969 158.277 398.867 152.479 398.966 146.64C398.913 138.671 400.957 130.828 404.894 123.9C408.722 117.102 414.294 111.45 421.034 107.524C427.774 103.599 435.438 101.544 443.237 101.57L443.247 101.61ZM443.627 109.88C437.309 109.94 431.116 111.649 425.661 114.838C420.205 118.026 415.676 122.584 412.521 128.06C409.323 133.728 407.681 140.142 407.763 146.65C407.726 151.382 408.627 156.074 410.413 160.455C412.2 164.836 414.837 168.819 418.172 172.174C421.507 175.529 425.474 178.19 429.843 180.001C434.212 181.813 438.897 182.741 443.627 182.73C450.055 182.777 456.381 181.117 461.959 177.92C467.467 174.832 472.018 170.285 475.113 164.78C478.268 159.12 479.881 152.73 479.791 146.25C479.876 139.829 478.247 133.502 475.073 127.92C471.905 122.435 467.32 117.903 461.799 114.8C456.285 111.576 450.013 109.878 443.627 109.88V109.88Z" fill="white"></path>
<path d="M501.931 130.36H493.785C494.018 121.973 496.824 115.083 502.201 109.69C504.791 107.05 507.896 104.97 511.323 103.58C514.75 102.19 518.426 101.52 522.123 101.61C529.946 101.61 536.276 104.137 541.114 109.19C543.449 111.542 545.293 114.335 546.539 117.406C547.785 120.477 548.407 123.766 548.371 127.08C548.393 131.824 547.203 136.495 544.913 140.65C542.607 144.877 538.126 150.597 531.469 157.81L510.278 180.64H549.531V188.86H491.786L524.292 153.72C530.889 146.653 535.18 141.413 537.166 138C539.114 134.733 540.149 131.004 540.165 127.2C540.179 124.875 539.706 122.573 538.776 120.443C537.846 118.312 536.481 116.4 534.767 114.83C533.041 113.136 530.993 111.805 528.744 110.915C526.495 110.025 524.091 109.595 521.673 109.65C519.16 109.578 516.659 110.024 514.326 110.959C511.992 111.895 509.876 113.301 508.109 115.09C504.49 118.71 502.431 123.8 501.931 130.36Z" fill="white"></path>
<path d="M564.904 130.358H556.758C556.991 121.971 559.797 115.081 565.174 109.688C567.764 107.048 570.869 104.968 574.296 103.578C577.723 102.188 581.399 101.518 585.096 101.608C592.919 101.608 599.249 104.135 604.087 109.188C606.422 111.54 608.266 114.333 609.512 117.404C610.758 120.475 611.38 123.764 611.344 127.078C611.366 131.822 610.176 136.493 607.886 140.648C605.58 144.875 601.099 150.595 594.442 157.808L573.251 180.638H612.504V188.858H554.759L587.265 153.718C593.862 146.651 598.153 141.411 600.139 137.998C602.087 134.731 603.122 131.002 603.138 127.198C603.152 124.873 602.679 122.572 601.749 120.441C600.819 118.31 599.454 116.398 597.74 114.828C596.014 113.134 593.966 111.803 591.717 110.913C589.468 110.023 587.064 109.593 584.646 109.648C582.133 109.576 579.632 110.022 577.299 110.957C574.965 111.893 572.849 113.299 571.082 115.088C567.463 118.708 565.404 123.798 564.904 130.358Z" fill="white"></path>
<path d="M91.3906 51.21C91.3926 60.1541 88.7433 68.8979 83.7778 76.3356C78.8124 83.7733 71.7537 89.5708 63.4946 92.995C55.2355 96.4191 46.1469 97.316 37.3783 95.5723C28.6096 93.8286 20.5548 89.5226 14.2324 83.1989C7.91003 76.8752 3.60413 68.8178 1.85925 60.0457C0.11438 51.2736 1.00891 42.1808 4.42972 33.9174C7.85053 25.6539 13.644 18.5909 21.0773 13.6216C28.5107 8.65236 37.2501 6 46.1903 6C52.1256 5.99869 58.003 7.16711 63.4869 9.43854C68.9708 11.71 73.9538 15.0399 78.1511 19.2382C82.3485 23.4364 85.6781 28.4208 87.9497 33.9066C90.2214 39.3924 91.3906 45.2721 91.3906 51.21" fill="white"></path>
<path d="M204.611 46.18C199.673 43.62 195.675 41.53 195.675 37.56C195.675 34.76 198.074 33.01 202.112 33.01C206.455 33.049 210.709 34.2543 214.427 36.5V26.29C210.528 24.6104 206.345 23.6906 202.102 23.58C190.177 23.58 184.84 30.69 184.84 38.38C184.84 47.38 190.917 51.73 197.614 55.28C204.311 58.83 206.72 60.28 206.72 64.05C206.72 67.24 203.951 69.05 199.313 69.05C194.163 68.9685 189.207 67.0702 185.32 63.69V74.57C189.497 77.1943 194.294 78.6673 199.224 78.84C210.798 78.84 218.095 72.84 218.095 63.07C218.125 53 209.559 48.74 204.611 46.18Z" fill="white"></path>
<path d="M116.36 24.09H102.056V78.34H112.731V61.08H114.88C128.244 61.08 136.541 53.97 136.541 42.53C136.541 31.09 128.994 24.09 116.36 24.09ZM112.731 33.09H115.87C122.137 33.09 126.185 36.72 126.185 42.33C126.185 48.41 122.457 51.89 115.95 51.89H112.731V33.09Z" fill="white"></path>
<path d="M170.606 49.13C174.224 46.59 175.984 42.93 175.984 37.97C175.984 29.41 169.686 24.09 159.561 24.09H143.008V78.34H160.301C173.555 78.34 179.592 69.83 179.592 61.92C179.592 55.66 176.164 50.82 170.606 49.13ZM158.801 33.22C162.979 33.22 165.668 35.83 165.668 39.85C165.668 43.87 162.749 46.57 158.221 46.57H153.683V33.22H158.801ZM153.683 69.29V55.12H160.44C165.818 55.12 169.037 57.75 169.037 62.12C169.037 66.85 165.808 69.25 159.451 69.25L153.683 69.29Z" fill="white"></path>
<path d="M79.1059 51.66L74.1081 52.66V62C74.0979 62.7563 73.9369 63.5029 73.6344 64.1961C73.3319 64.8893 72.8941 65.515 72.3466 66.0366C71.7992 66.5583 71.1531 66.9652 70.4463 67.2337C69.7395 67.5022 68.9862 67.6267 68.2307 67.6H65.6518V78.34H57.3954V67.55H59.9743C60.7246 67.574 61.4721 67.4491 62.1739 67.1827C62.8757 66.9162 63.5179 66.5134 64.0633 65.9975C64.6088 65.4815 65.0467 64.8627 65.352 64.1766C65.6572 63.4905 65.8236 62.7508 65.8417 62V52.68L70.8396 51.68C71.0933 51.6253 71.3309 51.5125 71.5337 51.3505C71.7365 51.1884 71.8991 50.9815 72.0085 50.7461C72.1179 50.5106 72.1713 50.253 72.1645 49.9934C72.1577 49.7338 72.0908 49.4794 71.9691 49.25L58.8448 24.09H67.1012L80.2554 49.25C80.3732 49.4799 80.4363 49.7339 80.4399 49.9922C80.4435 50.2505 80.3876 50.5062 80.2764 50.7394C80.1652 50.9725 80.0017 51.1769 79.7987 51.3366C79.5957 51.4962 79.3587 51.6069 79.1059 51.66V51.66ZM61.0538 51.66L56.056 52.66V62C56.0458 62.7563 55.8848 63.5029 55.5823 64.1961C55.2798 64.8893 54.842 65.515 54.2945 66.0366C53.7471 66.5583 53.101 66.9652 52.3942 67.2337C51.6874 67.5022 50.9341 67.6267 50.1786 67.6H47.5997V78.34H27.2885V65.34C18.9922 62.77 13.0448 55.85 12.8249 46.61C12.535 34.23 23.0504 24.09 35.435 24.09H49.0491L62.2033 49.25C62.321 49.4799 62.3842 49.7339 62.3878 49.9922C62.3914 50.2505 62.3355 50.5062 62.2243 50.7394C62.113 50.9725 61.9496 51.1769 61.7466 51.3366C61.5436 51.4962 61.3065 51.6069 61.0538 51.66ZM50.2485 42.66C50.2485 41.6375 49.9454 40.6379 49.3776 39.7877C48.8098 38.9375 48.0027 38.2748 47.0584 37.8835C46.1141 37.4922 45.0751 37.3899 44.0726 37.5893C43.0702 37.7888 42.1494 38.2812 41.4266 39.0043C40.7039 39.7273 40.2117 40.6485 40.0123 41.6514C39.8129 42.6543 39.9153 43.6938 40.3064 44.6385C40.6975 45.5832 41.3599 46.3906 42.2097 46.9587C43.0596 47.5268 44.0587 47.83 45.0808 47.83C45.7611 47.83 46.4347 47.6956 47.063 47.4346C47.6913 47.1735 48.2619 46.7909 48.742 46.3087C49.2222 45.8265 49.6024 45.2542 49.8609 44.6246C50.1194 43.9951 50.2512 43.3206 50.2485 42.64V42.66Z" fill="#0061AF"></path>
<path d="M554.199 24L229.9 24V34.88H550.64L554.199 24Z" fill="#C52D2F"></path>
<path d="M519.384 45.76L229.9 45.76V56.64H534.307L519.384 45.76Z" fill="#C52D2F"></path>
<path d="M229.9 67.51V78.39H536.506L540.045 67.51H229.9Z" fill="#C52D2F"></path>
<path d="M610.534 42.19L585.255 60.58L594.971 90.44L569.632 72L544.243 90.44L553.969 60.58L528.77 42.19H559.946L569.662 12.49L579.338 42.19H610.534Z" fill="white"></path>
</symbol>
<symbol id="pbs-vote-2020" viewBox="0 0 642.28 185">
<path d="M1.28,95.63H22.49l22.83,61.51L68.15,95.63H88.86l-35.31,88h-17Z" fill="#fff"></path>
<path d="M85.36,139.55v-.25c0-24.83,19.59-45.17,46.53-45.17s46.29,20.09,46.29,44.92v.25c0,24.82-19.59,45.16-46.54,45.16S85.36,164.37,85.36,139.55Zm72.73,0v-.25c0-15-11-27.45-26.45-27.45s-26.19,12.23-26.19,27.2v.25c0,15,11,27.44,26.44,27.44S158.09,154.52,158.09,139.55Z" fill="#fff"></path>
<path d="M204.37,113.35H177.8V95.63h72.36v17.72H223.59V183H204.37Z" fill="#fff"></path>
<path d="M259.89,95.63h65.87v17.09H279v17.72h41.17v17.09H279v18.34h47.41V183H259.89Z" fill="#fff"></path>
<path d="M346.7,124.36h-8.16q.36-12.58,8.42-20.67a27.06,27.06,0,0,1,19.94-8.08q11.75,0,19,7.58a25,25,0,0,1,7.27,17.89,27.85,27.85,0,0,1-3.47,13.57q-3.46,6.34-13.44,17.16l-21.2,22.83h39.26v8.22h-57.8L369,147.72q9.88-10.6,12.87-15.72a21.15,21.15,0,0,0,3-10.8,16.63,16.63,0,0,0-5.35-12.37,19.4,19.4,0,0,0-26.67.26Q347.46,114.52,346.7,124.36Z" fill="#fff"></path>
<path d="M442.44,95.61q19.33,0,32.37,12.9t13,31.77A44.42,44.42,0,0,1,443.14,185q-18.94,0-32-13a42.58,42.58,0,0,1-13-31.36,45.4,45.4,0,0,1,5.93-22.74,43.86,43.86,0,0,1,38.36-22.33Zm.38,8.27a36.32,36.32,0,0,0-31.12,18.18,36.88,36.88,0,0,0-4.76,18.59,35.8,35.8,0,0,0,35.88,36.08,36.36,36.36,0,0,0,18.34-4.81,34.39,34.39,0,0,0,13.16-13.14A37,37,0,0,0,479,140.25a36.11,36.11,0,0,0-4.72-18.33A35.31,35.31,0,0,0,461,108.8,36,36,0,0,0,442.82,103.88Z" fill="#fff"></path>
<path d="M501.15,124.36H493q.35-12.58,8.42-20.67a27,27,0,0,1,19.93-8.08q11.74,0,19,7.58a25,25,0,0,1,7.26,17.89,27.84,27.84,0,0,1-3.46,13.57q-3.46,6.34-13.45,17.16l-21.2,22.83h39.27v8.22H491l32.52-35.14q9.9-10.6,12.88-15.72a21.25,21.25,0,0,0,3-10.8A16.64,16.64,0,0,0,534,108.83a18.12,18.12,0,0,0-13.1-5.18,18.34,18.34,0,0,0-13.57,5.44Q501.9,114.52,501.15,124.36Z" fill="#fff"></path>
<path d="M596.89,95.61q19.33,0,32.36,12.9t13,31.77A44.42,44.42,0,0,1,597.58,185q-18.93,0-32-13a42.62,42.62,0,0,1-13-31.36,45.31,45.31,0,0,1,5.94-22.74,43.83,43.83,0,0,1,38.36-22.33Zm.37,8.27a35.07,35.07,0,0,0-17.9,4.92,35.42,35.42,0,0,0-13.22,13.26,36.87,36.87,0,0,0-4.75,18.59,35.8,35.8,0,0,0,35.87,36.08,36.4,36.4,0,0,0,18.35-4.81,34.37,34.37,0,0,0,13.15-13.14,36.94,36.94,0,0,0,4.72-18.53,36,36,0,0,0-4.72-18.33,35.28,35.28,0,0,0-13.3-13.12A36,36,0,0,0,597.26,103.88Z" fill="#fff"></path>
<path d="M90.43,45.21A45.22,45.22,0,1,1,45.21,0,45.21,45.21,0,0,1,90.43,45.21" fill="#fff"></path>
<path d="M203.7,40.18c-4.94-2.56-8.94-4.65-8.94-8.62,0-2.8,2.4-4.55,6.44-4.55a24.26,24.26,0,0,1,12.32,3.49V20.29a33.37,33.37,0,0,0-12.33-2.71c-11.93,0-17.27,7.11-17.27,14.8,0,9,6.08,13.35,12.78,16.9s9.11,5,9.11,8.77c0,3.19-2.77,5-7.41,5a21.87,21.87,0,0,1-14-5.36V68.57a28,28,0,0,0,13.91,4.27c11.58,0,18.88-6,18.88-15.77C217.22,47,208.65,42.74,203.7,40.18Z" fill="#fff"></path>
<path d="M115.41,18.09H101.1V72.34h10.68V55.08h2.15c13.37,0,21.67-7.11,21.67-18.55S128.05,18.09,115.41,18.09Zm-3.63,9h3.14c6.27,0,10.32,3.63,10.32,9.24,0,6.08-3.73,9.56-10.24,9.56h-3.22Z" fill="#fff"></path>
<path d="M169.68,43.13c3.62-2.54,5.38-6.2,5.38-11.16,0-8.56-6.3-13.88-16.43-13.88H142.07V72.34h17.3c13.26,0,19.3-8.51,19.3-16.42C178.67,49.66,175.24,44.82,169.68,43.13ZM157.87,27.22c4.18,0,6.87,2.61,6.87,6.63s-2.92,6.72-7.45,6.72h-4.54V27.22Zm-5.12,36.07V49.12h6.76c5.38,0,8.6,2.63,8.6,7,0,4.73-3.23,7.13-9.59,7.13Z" fill="#fff"></path>
<path class="head" d="M78.14,45.66l-5,1V56a5.68,5.68,0,0,1-5.88,5.6H64.68V72.34H56.42V61.55H59A5.69,5.69,0,0,0,64.87,56V46.68l5-1A1.68,1.68,0,0,0,71,43.25L57.87,18.09h8.26L79.29,43.25A1.68,1.68,0,0,1,78.14,45.66Zm-18.06,0-5,1V56a5.68,5.68,0,0,1-5.88,5.6H46.62V72.34H26.3v-13C18,56.77,12.05,49.85,11.83,40.61c-.29-12.38,10.23-22.52,22.62-22.52H48.07L61.23,43.25A1.68,1.68,0,0,1,60.08,45.66Zm-10.81-9a5.17,5.17,0,1,0-5.17,5.17A5.17,5.17,0,0,0,49.27,36.64Z" fill="#0061af"></path>
<polygon points="580.57 18.12 229.13 18.12 229.13 29 577.01 29 580.57 18.12" fill="#c52d2f"></polygon>
<polygon points="545.74 39.88 229.13 39.88 229.13 50.76 560.67 50.76 545.74 39.88" fill="#c52d2f"></polygon>
<polygon points="229.13 61.63 229.13 72.51 562.87 72.51 566.41 61.63 229.13 61.63" fill="#c52d2f"></polygon>
<path d="M637.8,36.19,612.51,54.58l9.72,29.86L596.88,66l-25.4,18.44,9.73-29.86L556,36.19h31.19l9.72-29.7,9.68,29.7Z" fill="#fff"></path>
</symbol>
<symbol id="pbs-vote-2020-grey" viewBox="0 0 642.28 185">
<path d="M1.28,95.63H22.49l22.83,61.51L68.15,95.63H88.86l-35.31,88h-17Z" fill="#fff"></path>
<path d="M85.36,139.55v-.25c0-24.83,19.59-45.17,46.53-45.17s46.29,20.09,46.29,44.92v.25c0,24.82-19.59,45.16-46.54,45.16S85.36,164.37,85.36,139.55Zm72.73,0v-.25c0-15-11-27.45-26.45-27.45s-26.19,12.23-26.19,27.2v.25c0,15,11,27.44,26.44,27.44S158.09,154.52,158.09,139.55Z" fill="#fff"></path>
<path d="M204.37,113.35H177.8V95.63h72.36v17.72H223.59V183H204.37Z" fill="#fff"></path>
<path d="M259.89,95.63h65.87v17.09H279v17.72h41.17v17.09H279v18.34h47.41V183H259.89Z" fill="#fff"></path>
<path d="M346.7,124.36h-8.16q.36-12.58,8.42-20.67a27.06,27.06,0,0,1,19.94-8.08q11.75,0,19,7.58a25,25,0,0,1,7.27,17.89,27.85,27.85,0,0,1-3.47,13.57q-3.46,6.34-13.44,17.16l-21.2,22.83h39.26v8.22h-57.8L369,147.72q9.88-10.6,12.87-15.72a21.15,21.15,0,0,0,3-10.8,16.63,16.63,0,0,0-5.35-12.37,19.4,19.4,0,0,0-26.67.26Q347.46,114.52,346.7,124.36Z" fill="#fff"></path>
<path d="M442.44,95.61q19.33,0,32.37,12.9t13,31.77A44.42,44.42,0,0,1,443.14,185q-18.94,0-32-13a42.58,42.58,0,0,1-13-31.36,45.4,45.4,0,0,1,5.93-22.74,43.86,43.86,0,0,1,38.36-22.33Zm.38,8.27a36.32,36.32,0,0,0-31.12,18.18,36.88,36.88,0,0,0-4.76,18.59,35.8,35.8,0,0,0,35.88,36.08,36.36,36.36,0,0,0,18.34-4.81,34.39,34.39,0,0,0,13.16-13.14A37,37,0,0,0,479,140.25a36.11,36.11,0,0,0-4.72-18.33A35.31,35.31,0,0,0,461,108.8,36,36,0,0,0,442.82,103.88Z" fill="#fff"></path>
<path d="M501.15,124.36H493q.35-12.58,8.42-20.67a27,27,0,0,1,19.93-8.08q11.74,0,19,7.58a25,25,0,0,1,7.26,17.89,27.84,27.84,0,0,1-3.46,13.57q-3.46,6.34-13.45,17.16l-21.2,22.83h39.27v8.22H491l32.52-35.14q9.9-10.6,12.88-15.72a21.25,21.25,0,0,0,3-10.8A16.64,16.64,0,0,0,534,108.83a18.12,18.12,0,0,0-13.1-5.18,18.34,18.34,0,0,0-13.57,5.44Q501.9,114.52,501.15,124.36Z" fill="#fff"></path>
<path d="M596.89,95.61q19.33,0,32.36,12.9t13,31.77A44.42,44.42,0,0,1,597.58,185q-18.93,0-32-13a42.62,42.62,0,0,1-13-31.36,45.31,45.31,0,0,1,5.94-22.74,43.83,43.83,0,0,1,38.36-22.33Zm.37,8.27a35.07,35.07,0,0,0-17.9,4.92,35.42,35.42,0,0,0-13.22,13.26,36.87,36.87,0,0,0-4.75,18.59,35.8,35.8,0,0,0,35.87,36.08,36.4,36.4,0,0,0,18.35-4.81,34.37,34.37,0,0,0,13.15-13.14,36.94,36.94,0,0,0,4.72-18.53,36,36,0,0,0-4.72-18.33,35.28,35.28,0,0,0-13.3-13.12A36,36,0,0,0,597.26,103.88Z" fill="#fff"></path>
<path d="M90.43,45.21A45.22,45.22,0,1,1,45.21,0,45.21,45.21,0,0,1,90.43,45.21" fill="#fff"></path>
<path d="M203.7,40.18c-4.94-2.56-8.94-4.65-8.94-8.62,0-2.8,2.4-4.55,6.44-4.55a24.26,24.26,0,0,1,12.32,3.49V20.29a33.37,33.37,0,0,0-12.33-2.71c-11.93,0-17.27,7.11-17.27,14.8,0,9,6.08,13.35,12.78,16.9s9.11,5,9.11,8.77c0,3.19-2.77,5-7.41,5a21.87,21.87,0,0,1-14-5.36V68.57a28,28,0,0,0,13.91,4.27c11.58,0,18.88-6,18.88-15.77C217.22,47,208.65,42.74,203.7,40.18Z" fill="#fff"></path>
<path d="M115.41,18.09H101.1V72.34h10.68V55.08h2.15c13.37,0,21.67-7.11,21.67-18.55S128.05,18.09,115.41,18.09Zm-3.63,9h3.14c6.27,0,10.32,3.63,10.32,9.24,0,6.08-3.73,9.56-10.24,9.56h-3.22Z" fill="#fff"></path>
<path d="M169.68,43.13c3.62-2.54,5.38-6.2,5.38-11.16,0-8.56-6.3-13.88-16.43-13.88H142.07V72.34h17.3c13.26,0,19.3-8.51,19.3-16.42C178.67,49.66,175.24,44.82,169.68,43.13ZM157.87,27.22c4.18,0,6.87,2.61,6.87,6.63s-2.92,6.72-7.45,6.72h-4.54V27.22Zm-5.12,36.07V49.12h6.76c5.38,0,8.6,2.63,8.6,7,0,4.73-3.23,7.13-9.59,7.13Z" fill="#fff"></path>
<path class="head" d="M78.14,45.66l-5,1V56a5.68,5.68,0,0,1-5.88,5.6H64.68V72.34H56.42V61.55H59A5.69,5.69,0,0,0,64.87,56V46.68l5-1A1.68,1.68,0,0,0,71,43.25L57.87,18.09h8.26L79.29,43.25A1.68,1.68,0,0,1,78.14,45.66Zm-18.06,0-5,1V56a5.68,5.68,0,0,1-5.88,5.6H46.62V72.34H26.3v-13C18,56.77,12.05,49.85,11.83,40.61c-.29-12.38,10.23-22.52,22.62-22.52H48.07L61.23,43.25A1.68,1.68,0,0,1,60.08,45.66Zm-10.81-9a5.17,5.17,0,1,0-5.17,5.17A5.17,5.17,0,0,0,49.27,36.64Z" fill="#989898"></path>
<polygon points="580.57 18.12 229.13 18.12 229.13 29 577.01 29 580.57 18.12" fill="#A5A5A5"></polygon>
<polygon points="545.74 39.88 229.13 39.88 229.13 50.76 560.67 50.76 545.74 39.88" fill="#A5A5A5"></polygon>
<polygon points="229.13 61.63 229.13 72.51 562.87 72.51 566.41 61.63 229.13 61.63" fill="#A5A5A5"></polygon>
<path d="M637.8,36.19,612.51,54.58l9.72,29.86L596.88,66l-25.4,18.44,9.73-29.86L556,36.19h31.19l9.72-29.7,9.68,29.7Z" fill="#fff"></path>
</symbol>
<symbol id="pbs-vote-2020-inverted" viewBox="0 0 642.28 185">
<path d="M1.28,95.63H22.49l22.83,61.51L68.15,95.63H88.86l-35.31,88h-17Z" fill="#161F2D"></path>
<path d="M85.36,139.55v-.25c0-24.83,19.59-45.17,46.53-45.17s46.29,20.09,46.29,44.92v.25c0,24.82-19.59,45.16-46.54,45.16S85.36,164.37,85.36,139.55Zm72.73,0v-.25c0-15-11-27.45-26.45-27.45s-26.19,12.23-26.19,27.2v.25c0,15,11,27.44,26.44,27.44S158.09,154.52,158.09,139.55Z" fill="#161F2D"></path>
<path d="M204.37,113.35H177.8V95.63h72.36v17.72H223.59V183H204.37Z" fill="#161F2D"></path>
<path d="M259.89,95.63h65.87v17.09H279v17.72h41.17v17.09H279v18.34h47.41V183H259.89Z" fill="#161F2D"></path>
<path d="M346.7,124.36h-8.16q.36-12.58,8.42-20.67a27.06,27.06,0,0,1,19.94-8.08q11.75,0,19,7.58a25,25,0,0,1,7.27,17.89,27.85,27.85,0,0,1-3.47,13.57q-3.46,6.34-13.44,17.16l-21.2,22.83h39.26v8.22h-57.8L369,147.72q9.88-10.6,12.87-15.72a21.15,21.15,0,0,0,3-10.8,16.63,16.63,0,0,0-5.35-12.37,19.4,19.4,0,0,0-26.67.26Q347.46,114.52,346.7,124.36Z" fill="#161F2D"></path>
<path d="M442.44,95.61q19.33,0,32.37,12.9t13,31.77A44.42,44.42,0,0,1,443.14,185q-18.94,0-32-13a42.58,42.58,0,0,1-13-31.36,45.4,45.4,0,0,1,5.93-22.74,43.86,43.86,0,0,1,38.36-22.33Zm.38,8.27a36.32,36.32,0,0,0-31.12,18.18,36.88,36.88,0,0,0-4.76,18.59,35.8,35.8,0,0,0,35.88,36.08,36.36,36.36,0,0,0,18.34-4.81,34.39,34.39,0,0,0,13.16-13.14A37,37,0,0,0,479,140.25a36.11,36.11,0,0,0-4.72-18.33A35.31,35.31,0,0,0,461,108.8,36,36,0,0,0,442.82,103.88Z" fill="#161F2D"></path>
<path d="M501.15,124.36H493q.35-12.58,8.42-20.67a27,27,0,0,1,19.93-8.08q11.74,0,19,7.58a25,25,0,0,1,7.26,17.89,27.84,27.84,0,0,1-3.46,13.57q-3.46,6.34-13.45,17.16l-21.2,22.83h39.27v8.22H491l32.52-35.14q9.9-10.6,12.88-15.72a21.25,21.25,0,0,0,3-10.8A16.64,16.64,0,0,0,534,108.83a18.12,18.12,0,0,0-13.1-5.18,18.34,18.34,0,0,0-13.57,5.44Q501.9,114.52,501.15,124.36Z" fill="#161F2D"></path>
<path d="M596.89,95.61q19.33,0,32.36,12.9t13,31.77A44.42,44.42,0,0,1,597.58,185q-18.93,0-32-13a42.62,42.62,0,0,1-13-31.36,45.31,45.31,0,0,1,5.94-22.74,43.83,43.83,0,0,1,38.36-22.33Zm.37,8.27a35.07,35.07,0,0,0-17.9,4.92,35.42,35.42,0,0,0-13.22,13.26,36.87,36.87,0,0,0-4.75,18.59,35.8,35.8,0,0,0,35.87,36.08,36.4,36.4,0,0,0,18.35-4.81,34.37,34.37,0,0,0,13.15-13.14,36.94,36.94,0,0,0,4.72-18.53,36,36,0,0,0-4.72-18.33,35.28,35.28,0,0,0-13.3-13.12A36,36,0,0,0,597.26,103.88Z" fill="#161F2D"></path>
<path d="M90.43,45.21A45.22,45.22,0,1,1,45.21,0,45.21,45.21,0,0,1,90.43,45.21" fill="#2638C4"></path>
<path d="M203.7,40.18c-4.94-2.56-8.94-4.65-8.94-8.62,0-2.8,2.4-4.55,6.44-4.55a24.26,24.26,0,0,1,12.32,3.49V20.29a33.37,33.37,0,0,0-12.33-2.71c-11.93,0-17.27,7.11-17.27,14.8,0,9,6.08,13.35,12.78,16.9s9.11,5,9.11,8.77c0,3.19-2.77,5-7.41,5a21.87,21.87,0,0,1-14-5.36V68.57a28,28,0,0,0,13.91,4.27c11.58,0,18.88-6,18.88-15.77C217.22,47,208.65,42.74,203.7,40.18Z" fill="#161F2D"></path>
<path d="M115.41,18.09H101.1V72.34h10.68V55.08h2.15c13.37,0,21.67-7.11,21.67-18.55S128.05,18.09,115.41,18.09Zm-3.63,9h3.14c6.27,0,10.32,3.63,10.32,9.24,0,6.08-3.73,9.56-10.24,9.56h-3.22Z" fill="#161F2D"></path>
<path d="M169.68,43.13c3.62-2.54,5.38-6.2,5.38-11.16,0-8.56-6.3-13.88-16.43-13.88H142.07V72.34h17.3c13.26,0,19.3-8.51,19.3-16.42C178.67,49.66,175.24,44.82,169.68,43.13ZM157.87,27.22c4.18,0,6.87,2.61,6.87,6.63s-2.92,6.72-7.45,6.72h-4.54V27.22Zm-5.12,36.07V49.12h6.76c5.38,0,8.6,2.63,8.6,7,0,4.73-3.23,7.13-9.59,7.13Z" fill="#161F2D"></path>
<path class="head" d="M78.14,45.66l-5,1V56a5.68,5.68,0,0,1-5.88,5.6H64.68V72.34H56.42V61.55H59A5.69,5.69,0,0,0,64.87,56V46.68l5-1A1.68,1.68,0,0,0,71,43.25L57.87,18.09h8.26L79.29,43.25A1.68,1.68,0,0,1,78.14,45.66Zm-18.06,0-5,1V56a5.68,5.68,0,0,1-5.88,5.6H46.62V72.34H26.3v-13C18,56.77,12.05,49.85,11.83,40.61c-.29-12.38,10.23-22.52,22.62-22.52H48.07L61.23,43.25A1.68,1.68,0,0,1,60.08,45.66Zm-10.81-9a5.17,5.17,0,1,0-5.17,5.17A5.17,5.17,0,0,0,49.27,36.64Z" fill="#fff"></path>
<polygon points="580.57 18.12 229.13 18.12 229.13 29 577.01 29 580.57 18.12" fill="#c52d2f"></polygon>
<polygon points="545.74 39.88 229.13 39.88 229.13 50.76 560.67 50.76 545.74 39.88" fill="#c52d2f"></polygon>
<polygon points="229.13 61.63 229.13 72.51 562.87 72.51 566.41 61.63 229.13 61.63" fill="#c52d2f"></polygon>
<path d="M637.8,36.19,612.51,54.58l9.72,29.86L596.88,66l-25.4,18.44,9.73-29.86L556,36.19h31.19l9.72-29.7,9.68,29.7Z" fill="#161F2D"></path>
</symbol>
<symbol id="icon-record" viewBox="0 0 8 8" fill="none">
<circle cx="4" cy="4" r="3.5" stroke="white"></circle>
<circle cx="4" cy="4" r="2" fill="white"></circle>
</symbol>
<symbol id="icon-live-blog" viewBox="0 0 30 28">
<path d="M14.3713 15.2688L11.5627 28H18.584L15.7771 15.2783C15.3111 15.3388 14.8372 15.3356 14.3713 15.2688Z"></path>
<path d="M15 13.2498C16.4101 13.2498 17.5532 12.1101 17.5532 10.7042C17.5532 9.29827 16.4101 8.15857 15 8.15857C13.5899 8.15857 12.4468 9.29827 12.4468 10.7042C12.4468 12.1101 13.5899 13.2498 15 13.2498Z"></path>
<path d="M3.19149 10.7042C3.19149 7.3886 4.575 4.39275 6.79309 2.25126L4.5367 0C1.73936 2.71743 0 6.51196 0 10.7042C0 14.8393 1.69149 18.5876 4.42181 21.2971L6.67819 19.0474C4.52553 16.9139 3.19149 13.9626 3.19149 10.7042Z"></path>
<path d="M26.8085 10.7042C26.8085 13.8814 25.5383 16.7659 23.4782 18.8867L25.7362 21.138C28.3723 18.4412 30 14.7581 30 10.7042C30 6.59306 28.3276 2.86376 25.6245 0.157471L23.3681 2.40714C25.4936 4.53749 26.8085 7.4697 26.8085 10.7042Z"></path>
<path d="M9.41488 10.7042C9.41488 9.10048 10.0995 7.65267 11.1925 6.63603L8.93615 4.38635C7.26701 5.98053 6.22339 8.22225 6.22339 10.7042C6.22339 13.1289 7.21754 15.3261 8.82126 16.9123L11.0776 14.6626C10.0516 13.6523 9.41488 12.2507 9.41488 10.7042Z"></path>
<path d="M20.5851 10.7042C20.5851 12.1711 20.0122 13.5059 19.0803 14.5003L21.3367 16.75C22.8463 15.1781 23.7766 13.0477 23.7766 10.7042C23.7766 8.30335 22.8016 6.12528 21.2266 4.54382L18.9702 6.7935C19.9676 7.79901 20.5851 9.18159 20.5851 10.7042Z"></path>
</symbol>
<symbol id="icon-live-updates-header" viewBox="0 0 142 24">
<g>
<path d="M11.9294 13.0876L9.59802 24.0001H15.4263L13.0963 13.0958C12.7095 13.1476 12.3161 13.1449 11.9294 13.0876Z"></path>
<path d="M12.4513 11.3571C13.6218 11.3571 14.5707 10.3802 14.5707 9.17513C14.5707 7.97005 13.6218 6.99316 12.4513 6.99316C11.2808 6.99316 10.3319 7.97005 10.3319 9.17513C10.3319 10.3802 11.2808 11.3571 12.4513 11.3571Z"></path>
<path d="M2.64921 9.17503C2.64921 6.33309 3.79764 3.76521 5.63884 1.92965L3.76584 0C1.44382 2.32923 0 5.58168 0 9.17503C0 12.7194 1.40408 15.9322 3.67048 18.2547L5.54346 16.3263C3.75657 14.4976 2.64921 11.9679 2.64921 9.17503Z"></path>
<path d="M22.2533 9.17506C22.2533 11.8984 21.1989 14.3708 19.4889 16.1886L21.3632 18.1183C23.5514 15.8068 24.9025 12.6498 24.9025 9.17506C24.9025 5.65123 23.5143 2.45469 21.2705 0.13501L19.3975 2.0633C21.1618 3.88931 22.2533 6.40263 22.2533 9.17506Z"></path>
<path d="M7.8151 9.17507C7.8151 7.80045 8.38339 6.55947 9.29067 5.68806L7.41771 3.75977C6.03219 5.12621 5.16589 7.04768 5.16589 9.17507C5.16589 11.2534 5.99112 13.1367 7.32235 14.4963L9.1953 12.568C8.34363 11.702 7.8151 10.5006 7.8151 9.17507Z"></path>
<path d="M17.0873 9.1751C17.0873 10.4324 16.6118 11.5766 15.8382 12.4289L17.7112 14.3572C18.9643 13.0099 19.7365 11.1838 19.7365 9.1751C19.7365 7.11723 18.9272 5.25031 17.6198 3.89478L15.7468 5.82307C16.5748 6.68494 17.0873 7.87001 17.0873 9.1751Z"></path>
</g>
<path d="M33.1962 5.25609H35.9537V15.4081H41.0621V18.0001H33.1962V5.25609Z"></path>
<path d="M42.2837 9.25209H44.9352V18.0001H42.2837V9.25209ZM42.0716 6.49809C42.0716 6.06609 42.2189 5.70009 42.5135 5.40009C42.8199 5.08809 43.1852 4.93209 43.6095 4.93209C44.0337 4.93209 44.3931 5.08809 44.6877 5.40009C44.9941 5.70009 45.1473 6.06609 45.1473 6.49809C45.1473 6.93009 44.9941 7.30209 44.6877 7.61409C44.3931 7.91409 44.0337 8.06409 43.6095 8.06409C43.1852 8.06409 42.8199 7.91409 42.5135 7.61409C42.2189 7.30209 42.0716 6.93009 42.0716 6.49809Z"></path>
<path d="M45.9386 9.25209H48.8022L50.9764 15.1921H51.0117L53.0268 9.25209H55.6959L52.3021 18.0001H49.4915L45.9386 9.25209Z"></path>
<path d="M64.7933 16.4881C64.3691 17.0401 63.8329 17.4661 63.1848 17.7661C62.5366 18.0661 61.8649 18.2161 61.1697 18.2161C60.5098 18.2161 59.8852 18.1081 59.296 17.8921C58.7186 17.6761 58.2118 17.3701 57.7758 16.9741C57.3516 16.5661 57.0157 16.0801 56.7683 15.5161C56.5208 14.9521 56.3971 14.3221 56.3971 13.6261C56.3971 12.9301 56.5208 12.3001 56.7683 11.7361C57.0157 11.1721 57.3516 10.6921 57.7758 10.2961C58.2118 9.88809 58.7186 9.57609 59.296 9.36009C59.8852 9.14409 60.5098 9.03609 61.1697 9.03609C61.7825 9.03609 62.3363 9.14409 62.8313 9.36009C63.338 9.57609 63.7622 9.88809 64.104 10.2961C64.4575 10.6921 64.7285 11.1721 64.9171 11.7361C65.1056 12.3001 65.1999 12.9301 65.1999 13.6261V14.4721H59.0485C59.1546 14.9881 59.3844 15.4021 59.7379 15.7141C60.0914 16.0141 60.5274 16.1641 61.0459 16.1641C61.482 16.1641 61.8473 16.0681 62.1419 15.8761C62.4483 15.6721 62.7134 15.4141 62.9373 15.1021L64.7933 16.4881ZM62.5484 12.6361C62.5602 12.1801 62.4129 11.7901 62.1065 11.4661C61.8001 11.1421 61.4054 10.9801 60.9222 10.9801C60.6276 10.9801 60.3683 11.0281 60.1444 11.1241C59.9205 11.2201 59.7261 11.3461 59.5611 11.5021C59.4079 11.6461 59.2842 11.8201 59.1899 12.0241C59.1074 12.2161 59.0603 12.4201 59.0485 12.6361H62.5484Z"></path>
<path d="M82.9313 13.0861C82.9313 13.8421 82.8194 14.5381 82.5955 15.1741C82.3716 15.8101 82.0357 16.3621 81.5879 16.8301C81.1519 17.2981 80.6039 17.6641 79.944 17.9281C79.2841 18.1921 78.524 18.3241 77.6638 18.3241C76.7917 18.3241 76.0258 18.1921 75.3659 17.9281C74.7059 17.6641 74.1521 17.2981 73.7043 16.8301C73.2683 16.3621 72.9383 15.8101 72.7144 15.1741C72.4905 14.5381 72.3786 13.8421 72.3786 13.0861V5.25609H75.1361V12.9781C75.1361 13.3741 75.195 13.7401 75.3128 14.0761C75.4425 14.4121 75.6192 14.7061 75.8431 14.9581C76.067 15.1981 76.3322 15.3901 76.6386 15.5341C76.9567 15.6661 77.2985 15.7321 77.6638 15.7321C78.0291 15.7321 78.3649 15.6661 78.6713 15.5341C78.9777 15.3901 79.2429 15.1981 79.4668 14.9581C79.6907 14.7061 79.8615 14.4121 79.9794 14.0761C80.109 13.7401 80.1738 13.3741 80.1738 12.9781V5.25609H82.9313V13.0861Z"></path>
<path d="M85.3921 9.25209H87.8314V10.4041H87.8668C87.9728 10.2481 88.1083 10.0921 88.2733 9.93609C88.4501 9.76809 88.6504 9.61809 88.8743 9.48609C89.11 9.35409 89.3634 9.24609 89.6344 9.16209C89.9054 9.07809 90.1941 9.03609 90.5005 9.03609C91.1369 9.03609 91.7143 9.15009 92.2328 9.37809C92.7513 9.59409 93.1932 9.90609 93.5585 10.3141C93.9356 10.7101 94.2244 11.1841 94.4247 11.7361C94.625 12.2881 94.7252 12.8941 94.7252 13.5541C94.7252 14.1661 94.6309 14.7541 94.4424 15.3181C94.2656 15.8701 94.0064 16.3621 93.6646 16.7941C93.3346 17.2261 92.9281 17.5741 92.4449 17.8381C91.9618 18.0901 91.4138 18.2161 90.801 18.2161C90.2472 18.2161 89.7287 18.1321 89.2455 17.9641C88.7742 17.7841 88.3853 17.4841 88.0789 17.0641H88.0435V22.1041H85.3921V9.25209ZM87.8314 13.6261C87.8314 14.2861 88.0141 14.8201 88.3794 15.2281C88.7565 15.6361 89.2809 15.8401 89.9526 15.8401C90.6243 15.8401 91.1428 15.6361 91.5081 15.2281C91.8852 14.8201 92.0737 14.2861 92.0737 13.6261C92.0737 12.9661 91.8852 12.4321 91.5081 12.0241C91.1428 11.6161 90.6243 11.4121 89.9526 11.4121C89.2809 11.4121 88.7565 11.6161 88.3794 12.0241C88.0141 12.4321 87.8314 12.9661 87.8314 13.6261Z"></path>
<path d="M105.294 18.0001H102.854V16.8481H102.819C102.713 17.0041 102.571 17.1661 102.395 17.3341C102.23 17.4901 102.029 17.6341 101.794 17.7661C101.57 17.8981 101.316 18.0061 101.034 18.0901C100.763 18.1741 100.48 18.2161 100.185 18.2161C99.5488 18.2161 98.9713 18.1081 98.4528 17.8921C97.9343 17.6641 97.4865 17.3521 97.1094 16.9561C96.7441 16.5481 96.4613 16.0681 96.261 15.5161C96.0606 14.9641 95.9605 14.3581 95.9605 13.6981C95.9605 13.0861 96.0488 12.5041 96.2256 11.9521C96.4142 11.3881 96.6734 10.8901 97.0034 10.4581C97.3451 10.0261 97.7576 9.68409 98.2407 9.43209C98.7239 9.16809 99.2718 9.03609 99.8846 9.03609C100.438 9.03609 100.951 9.12609 101.422 9.30609C101.906 9.47409 102.3 9.76809 102.607 10.1881H102.642V4.39209H105.294V18.0001ZM102.854 13.6261C102.854 12.9661 102.666 12.4321 102.289 12.0241C101.923 11.6161 101.405 11.4121 100.733 11.4121C100.061 11.4121 99.537 11.6161 99.1599 12.0241C98.7946 12.4321 98.6119 12.9661 98.6119 13.6261C98.6119 14.2861 98.7946 14.8201 99.1599 15.2281C99.537 15.6361 100.061 15.8401 100.733 15.8401C101.405 15.8401 101.923 15.6361 102.289 15.2281C102.666 14.8201 102.854 14.2861 102.854 13.6261Z"></path>
<path d="M112.804 16.9021H112.769C112.474 17.3701 112.079 17.7061 111.584 17.9101C111.101 18.1141 110.589 18.2161 110.046 18.2161C109.646 18.2161 109.257 18.1561 108.88 18.0361C108.514 17.9281 108.19 17.7601 107.908 17.5321C107.625 17.3041 107.401 17.0221 107.236 16.6861C107.071 16.3501 106.988 15.9601 106.988 15.5161C106.988 15.0121 107.077 14.5861 107.254 14.2381C107.442 13.8901 107.69 13.6021 107.996 13.3741C108.314 13.1461 108.674 12.9721 109.074 12.8521C109.475 12.7201 109.887 12.6241 110.312 12.5641C110.748 12.5041 111.178 12.4681 111.602 12.4561C112.038 12.4441 112.439 12.4381 112.804 12.4381C112.804 11.9581 112.633 11.5801 112.291 11.3041C111.961 11.0161 111.567 10.8721 111.107 10.8721C110.671 10.8721 110.27 10.9681 109.905 11.1601C109.552 11.3401 109.233 11.5921 108.951 11.9161L107.536 10.4401C108.031 9.97209 108.609 9.62409 109.269 9.39609C109.929 9.15609 110.612 9.03609 111.319 9.03609C112.097 9.03609 112.733 9.13809 113.228 9.34209C113.735 9.53409 114.136 9.82209 114.43 10.2061C114.737 10.5901 114.949 11.0641 115.067 11.6281C115.184 12.1801 115.243 12.8221 115.243 13.5541V18.0001H112.804V16.9021ZM112.15 14.1661C111.95 14.1661 111.696 14.1781 111.39 14.2021C111.095 14.2141 110.807 14.2621 110.524 14.3461C110.253 14.4301 110.017 14.5561 109.817 14.7241C109.628 14.8921 109.534 15.1261 109.534 15.4261C109.534 15.7501 109.669 15.9901 109.94 16.1461C110.211 16.3021 110.494 16.3801 110.789 16.3801C111.048 16.3801 111.296 16.3441 111.531 16.2721C111.779 16.2001 111.997 16.0981 112.185 15.9661C112.374 15.8341 112.521 15.6661 112.627 15.4621C112.745 15.2581 112.804 15.0181 112.804 14.7421V14.1661H112.15Z"></path>
<path d="M122.758 11.4121H120.424V14.3281C120.424 14.5681 120.436 14.7901 120.46 14.9941C120.483 15.1861 120.536 15.3541 120.619 15.4981C120.701 15.6421 120.825 15.7561 120.99 15.8401C121.167 15.9121 121.397 15.9481 121.679 15.9481C121.821 15.9481 122.003 15.9361 122.227 15.9121C122.463 15.8761 122.64 15.8041 122.758 15.6961V17.9461C122.463 18.0541 122.157 18.1261 121.838 18.1621C121.52 18.1981 121.208 18.2161 120.902 18.2161C120.454 18.2161 120.041 18.1681 119.664 18.0721C119.287 17.9761 118.957 17.8261 118.674 17.6221C118.392 17.4061 118.168 17.1301 118.003 16.7941C117.85 16.4581 117.773 16.0501 117.773 15.5701V11.4121H116.076V9.25209H117.773V6.66009H120.424V9.25209H122.758V11.4121Z"></path>
<path d="M132.236 16.4881C131.812 17.0401 131.276 17.4661 130.628 17.7661C129.98 18.0661 129.308 18.2161 128.613 18.2161C127.953 18.2161 127.328 18.1081 126.739 17.8921C126.161 17.6761 125.655 17.3701 125.219 16.9741C124.794 16.5661 124.459 16.0801 124.211 15.5161C123.964 14.9521 123.84 14.3221 123.84 13.6261C123.84 12.9301 123.964 12.3001 124.211 11.7361C124.459 11.1721 124.794 10.6921 125.219 10.2961C125.655 9.88809 126.161 9.57609 126.739 9.36009C127.328 9.14409 127.953 9.03609 128.613 9.03609C129.225 9.03609 129.779 9.14409 130.274 9.36009C130.781 9.57609 131.205 9.88809 131.547 10.2961C131.9 10.6921 132.171 11.1721 132.36 11.7361C132.548 12.3001 132.643 12.9301 132.643 13.6261V14.4721H126.491C126.597 14.9881 126.827 15.4021 127.181 15.7141C127.534 16.0141 127.97 16.1641 128.489 16.1641C128.925 16.1641 129.29 16.0681 129.585 15.8761C129.891 15.6721 130.156 15.4141 130.38 15.1021L132.236 16.4881ZM129.991 12.6361C130.003 12.1801 129.856 11.7901 129.549 11.4661C129.243 11.1421 128.848 10.9801 128.365 10.9801C128.07 10.9801 127.811 11.0281 127.587 11.1241C127.363 11.2201 127.169 11.3461 127.004 11.5021C126.851 11.6461 126.727 11.8201 126.633 12.0241C126.55 12.2161 126.503 12.4201 126.491 12.6361H129.991Z"></path>
<path d="M139.116 11.8261C138.727 11.3341 138.215 11.0881 137.578 11.0881C137.354 11.0881 137.136 11.1421 136.924 11.2501C136.712 11.3581 136.606 11.5441 136.606 11.8081C136.606 12.0241 136.712 12.1861 136.924 12.2941C137.148 12.3901 137.425 12.4801 137.755 12.5641C138.097 12.6361 138.456 12.7201 138.833 12.8161C139.222 12.9001 139.582 13.0381 139.912 13.2301C140.253 13.4221 140.53 13.6861 140.742 14.0221C140.966 14.3461 141.078 14.7841 141.078 15.3361C141.078 15.9001 140.954 16.3681 140.707 16.7401C140.471 17.1001 140.165 17.3941 139.788 17.6221C139.411 17.8381 138.987 17.9881 138.515 18.0721C138.044 18.1681 137.578 18.2161 137.119 18.2161C136.518 18.2161 135.911 18.1321 135.298 17.9641C134.685 17.7841 134.167 17.4721 133.743 17.0281L135.351 15.2101C135.599 15.5221 135.87 15.7621 136.164 15.9301C136.471 16.0861 136.824 16.1641 137.225 16.1641C137.531 16.1641 137.808 16.1221 138.056 16.0381C138.303 15.9421 138.427 15.7741 138.427 15.5341C138.427 15.3061 138.315 15.1381 138.091 15.0301C137.879 14.9101 137.602 14.8141 137.26 14.7421C136.93 14.6581 136.571 14.5741 136.182 14.4901C135.805 14.3941 135.445 14.2561 135.104 14.0761C134.774 13.8961 134.497 13.6441 134.273 13.3201C134.061 12.9841 133.955 12.5401 133.955 11.9881C133.955 11.4721 134.055 11.0281 134.255 10.6561C134.467 10.2841 134.738 9.97809 135.068 9.73809C135.41 9.49809 135.799 9.32409 136.235 9.21609C136.671 9.09609 137.113 9.03609 137.561 9.03609C138.126 9.03609 138.698 9.12009 139.275 9.28809C139.853 9.45609 140.342 9.75609 140.742 10.1881L139.116 11.8261Z"></path>
</symbol>
</defs>
</svg>
<nav class="menu js-menu">
<div class="menu__bar">
<div class="menu__bar-scroll">
<article class="episode">
<figure class="episode__figure">
<a href="https://www.pbs.org/newshour/show/december-23-2023-pbs-news-weekend-full-episode" class="episode__img">
<div class="episode__play">
<div class="episode__play-icon">
<svg class="svg"><use xlink:href="#icon-play"></use></svg>
</div>
<div class="episode__play-cta">Full Episode</div>
</div>
<div class="episode__overlay"></div>
<img class="lazyload" src="https://d3i6fh83elv35t.cloudfront.net/static/assets/images/placeholder.jpg" data-srcset="https://d3i6fh83elv35t.cloudfront.net/static/2023/12/Main-425x278.jpeg 425w, https://d3i6fh83elv35t.cloudfront.net/static/2023/12/Main-768x502.jpeg 768w, https://d3i6fh83elv35t.cloudfront.net/static/2023/12/Main-1024x669.jpeg 1024w" alt="">
</a>
</figure>
<div class="episode__body">
<div class="episode__logo">
<svg class="svg"><use xlink:href="#logo"></use></svg>
</div>
<div class="episode__info">
<a href="https://www.pbs.org/newshour/show/december-23-2023-pbs-news-weekend-full-episode" class="episode__title"><span>Saturday, Dec 23</span></a>
</div>
</div>
</article>
<div class="menu__mobile">
<button class="mobile__menu-close js-menu-close">
<svg class="svg"><use xlink:href="#icon-close"></use></svg>
<span class="aria-hidden">Close Menu</span>
</button>
<div class="menu__mobile-header">
<a href="https://www.pbs.org/newshour/" class="menu__mobile-logo" title="PBS NewsHour">
<svg class="svg"><use xlink:href="#logo"></use></svg>
<span class="aria-hidden">PBS NewsHour</span>
</a>
</div>
<ul class="mobile__menu-links">
<li class="mobile__menu-link"><a href="https://www.pbs.org/newshour/video"><svg class="svg"><use xlink:href="#icon-play"></use></svg>Episodes</a></li>
<li class="mobile__menu-link"><a href="https://www.pbs.org/newshour/podcasts"><svg class="svg"><use xlink:href="#icon-audio"></use></svg>Podcasts</a></li>
<li class="mobile__menu-link"><a href="https://www.pbs.org/newshour/newsletters"><svg class="svg"><use xlink:href="#icon-email"></use></svg>Newsletters</a></li>
</ul>
</div>
<ul class="menu__list">
<li>
<div class="menu__list-item">
<a href="https://www.pbs.org/newshour/latest">The Latest</a><svg class="svg"><use xlink:href="#arrow-right"></use></svg>
</div>
</li>
<li>
<div class="menu__list-item">
<a href="https://www.pbs.org/newshour/politics">Politics</a><svg class="svg"><use xlink:href="#arrow-right"></use></svg>
<div class="menu__sub">
<img class="lazyload" src="https://d3i6fh83elv35t.cloudfront.net/static/assets/images/placeholder.jpg" data-src="https://d3i6fh83elv35t.cloudfront.net/static/2017/10/capitol-hill_AdobeStock_31042336-335x205.jpeg" alt="Politics">
<ul class="menu__sub-list">
<li><a href="https://www.pbs.org/newshour/tag/brooks-and-capehart">Brooks and Capehart</a></li>
<li><a href="https://www.pbs.org/newshour/tag/politics-monday">Politics Monday</a></li>
<li><a href="https://www.pbs.org/newshour/tag/supreme-court">Supreme Court</a></li>
</ul>
</div>
</div>
</li>
<li>
<div class="menu__list-item">
<a href="https://www.pbs.org/newshour/arts">Arts</a><svg class="svg"><use xlink:href="#arrow-right"></use></svg>
<div class="menu__sub">
<img class="lazyload" src="https://d3i6fh83elv35t.cloudfront.net/static/assets/images/placeholder.jpg" data-src="https://d3i6fh83elv35t.cloudfront.net/static/2020/04/arts-background-335x205.jpg" alt="Arts">
<ul class="menu__sub-list">
<li><a href="https://artscanvas.org">CANVAS</a></li>
<li><a href="https://www.pbs.org/newshour/arts/poetry">Poetry</a></li>
<li><a href="https://www.pbs.org/newshour/features/now-read-this/">Now Read This</a></li>
</ul>
</div>
</div>
</li>
<li>
<div class="menu__list-item">
<a href="https://www.pbs.org/newshour/nation">Nation</a><svg class="svg"><use xlink:href="#arrow-right"></use></svg>
<div class="menu__sub">
<img class="lazyload" src="https://d3i6fh83elv35t.cloudfront.net/static/assets/images/placeholder.jpg" data-src="https://d3i6fh83elv35t.cloudfront.net/static/2017/09/irma.a2017247.1724.1500m.jpg" alt="Nation">
<ul class="menu__sub-list">
<li><a href="https://www.pbs.org/newshour/tag/supreme-court">Supreme Court</a></li>
<li><a href="https://www.pbs.org/newshour/tag/race-matters">Race Matters</a></li>
<li><a href="https://www.pbs.org/newshour/tag/essays">Essays</a></li>
<li><a href="https://www.pbs.org/newshour/brief">Brief But Spectacular</a></li>
</ul>
</div>
</div>
</li>
<li>
<div class="menu__list-item">
<a href="https://www.pbs.org/newshour/world">World</a><svg class="svg"><use xlink:href="#arrow-right"></use></svg>
<div class="menu__sub">
<img class="lazyload" src="https://d3i6fh83elv35t.cloudfront.net/static/assets/images/placeholder.jpg" data-src="https://d3i6fh83elv35t.cloudfront.net/static/2020/04/south-sudan-335x205.jpg" alt="World">
<ul class="menu__sub-list">
<li><a href="https://www.pbs.org/newshour/world/agents-for-change">Agents for Change</a></li>
</ul>
</div>
</div>
</li>
<li>
<div class="menu__list-item">
<a href="https://www.pbs.org/newshour/economy">Economy</a><svg class="svg"><use xlink:href="#arrow-right"></use></svg>
<div class="menu__sub">
<img class="lazyload" src="https://d3i6fh83elv35t.cloudfront.net/static/assets/images/placeholder.jpg" data-src="https://d3i6fh83elv35t.cloudfront.net/static/2020/04/economy-thumb-335x205.jpg" alt="Economy">
<ul class="menu__sub-list">
<li><a href="https://www.pbs.org/newshour/economy/making-sense">Making Sen$e</a></li>
<li><a href="https://www.pbs.org/newshour/author/paul-solman">Paul Solman</a></li>
</ul>
</div>
</div>
</li>
<li>
<div class="menu__list-item">
<a href="https://www.pbs.org/newshour/science">Science</a><svg class="svg"><use xlink:href="#arrow-right"></use></svg>
<div class="menu__sub">
<img class="lazyload" src="https://d3i6fh83elv35t.cloudfront.net/static/assets/images/placeholder.jpg" data-src="https://d3i6fh83elv35t.cloudfront.net/static/2017/10/opioids_brain_GettyImages-539665361-e1507588110481.jpg" alt="Science">
<ul class="menu__sub-list">
<li><a href="https://www.pbs.org/newshour/tag/the-leading-edge">The Leading Edge</a></li>
<li><a href="https://www.pbs.org/newshour/tag/sciencescope">ScienceScope</a></li>
<li><a href="https://www.pbs.org/newshour/tag/basic-research">Basic Research</a></li>
<li><a href="https://www.pbs.org/newshour/tag/invention">Innovation and Invention</a></li>
</ul>
</div>
</div>
</li>
<li>
<div class="menu__list-item">
<a href="https://www.pbs.org/newshour/health">Health</a><svg class="svg"><use xlink:href="#arrow-right"></use></svg>
<div class="menu__sub">
<img class="lazyload" src="https://d3i6fh83elv35t.cloudfront.net/static/assets/images/placeholder.jpg" data-src="https://d3i6fh83elv35t.cloudfront.net/static/2020/04/health-thumb-335x205.jpg" alt="Health">
<ul class="menu__sub-list">
<li><a href="https://www.pbs.org/newshour/tag/long-term-care">Long-Term Care</a></li>
</ul>
</div>
</div>
</li>
<li>
<div class="menu__list-item">
<a href="https://www.pbs.org/newshour/education">Education</a><svg class="svg"><use xlink:href="#arrow-right"></use></svg>
<div class="menu__sub">
<img class="lazyload" src="https://d3i6fh83elv35t.cloudfront.net/static/assets/images/placeholder.jpg" data-src="https://d3i6fh83elv35t.cloudfront.net/static/2020/04/antioch-college-students-335x205.jpg" alt="Education">
<ul class="menu__sub-list">
<!-- <li><a href="https://www.pbs.org/newshour/extra/" rel="noopener" target="_blank">Teachers</a></li> -->
<li><a href="https://www.pbs.org/newshour/tag/teachers-lounge">Teachers' Lounge</a></li>
<li><a href="https://studentreportinglabs.org/" target="_blank" rel="noopener">Student Reporting Labs</a></li>
</ul>
</div>
</div>
</li>
<li>
<div class="menu__list-item">
<a href="https://www.pbs.org/newshour/classroom/">For Teachers</a><svg class="svg"><use xlink:href="#arrow-right"></use></svg>
<div class="menu__sub">
<img class="lazyload" src="https://d3i6fh83elv35t.cloudfront.net/static/assets/images/placeholder.jpg" data-src="https://d3i6fh83elv35t.cloudfront.net/static/2021/12/20211102_094224-335x205.jpg" alt="Education">
<ul class="menu__sub-list">
<li><a href="https://www.pbs.org/newshour/classroom/">Newshour Classroom</a></li>
</ul>
</div>
</div></li>
<li>
<div class="menu__list-item">
<a href="https://shop.pbs.org/gifts/by-interest/gifts-pbs/newshour-gifts?utm_source=PBS&utm_medium=Link&utm_campaign=pbs_content_pbsnewshour_shop">NewsHour Shop</a><svg class="svg"><use xlink:href="#arrow-right"></use></svg>
</div>
</li>
<li>
<div class="menu__list-item">
<a href="https://www.pbs.org/newshour/about">About</a><svg class="svg"><use xlink:href="#arrow-right"></use></svg>
<div class="menu__sub">
<ul class="menu__sub-list">
<li><a href="https://www.pbs.org/newshour/about/contact-us">Feedback</a></li>
<li><a href="https://www.pbs.org/newshour/about/funders">Funders</a></li>
<li><a href="https://www.pbs.org/newshour/support">Support</a></li>
<li><a href="https://www.pbs.org/newshour/jobs">Jobs</a></li>
</ul>
</div>
</div>
</li>
</ul>
<div class="menu__close-wrapper">
<button class="menu__close js-menu-close">Close Menu</button>
</div>
</div>
</div>
<div class="menu__overlay js-menu-overlay js-menu-close"></div>
</nav>
<div class="popup js-popup pbs-gradient">
<div class="popup__cols">
<figure class="popup__logo">
<svg class="svg"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#logo"></use></svg>
</figure>
<div class="popup__phead">
<img src="https://d3i6fh83elv35t.cloudfront.net/static/2022/11/transparent-phead-gradient.png">
</div>
<div class="popup__text">
<h2 class="popup__text-header">PBS NewsHour needs <span>YOU</span> now!</h2>
<p class="popup__text-subheader">Give by 12/31, so we can continue to deliver intelligent, in-depth, trustworthy journalism.</p>
</div>
<div class="popup__cta">
<a class="popup__cta-button js-popup-link" href="https://give.newshour.org/page/61255/donate/1?ea.tracking.id=nh_fy24_cye_match2_web_banner&supporter.appealCode=R2312HW0201000">Donate (worth 2X!)</a>
</div>
<button class="popup__close js-popup-close">
<svg class="svg"><use xlink:href="#icon-close"></use></svg>
<span class="aria-hidden">Close Popup</span>
</button>
</div>
</div>
<div class="page__wrapper ">
<a class="logo" href="https://www.pbs.org/newshour/" title="PBS NewsHour">
<svg class="svg"><use xlink:href="#logo"></use></svg>
<span class="aria-hidden">PBS NewsHour</span>
</a>
<nav class="nav">
<div class="nav__elements">
<div class="nav__menu ">
<div class="nav__menu__wrapper">
<button class="nav__menu-button js-menu-open">
<span class="nav__hamburger">
<span class="nav__hamburger-line"></span>
<span class="nav__hamburger-line"></span>
<span class="nav__hamburger-line"></span>
</span>
<span class="nav__hamburger-label">Menu</span>
</button>
<div class="nav__notification nav__notification--hidden">
<button class="nav__menu-button nav__notification__button">
<svg class="svg"><use xlink:href="#icon-bell"></use></svg><svg class="svg"><use xlink:href="#icon-check"></use></svg><span>Notifications</span>
</button>
<div class="nav__notification__bubble">
<h4>Get news alerts from PBS NewsHour</h4>
<h5>Turn on desktop notifications?</h5>
<button>Yes</button>
<button>Not now</button>
</div>
</div>
</div>
</div>
<ul class="nav__links">
<li class="nav__link nav__link--watch"><a href="https://www.pbs.org/newshour/video"><svg class="svg"><use xlink:href="#icon-play"></use></svg>Full Episodes</a></li>
<li class="nav__link nav__link--podcasts"><a href="https://www.pbs.org/newshour/podcasts"><svg class="svg"><use xlink:href="#icon-audio"></use></svg>Podcasts</a></li>
<li class="nav__link nav__link--subscribe"><a href="https://www.pbs.org/newshour/newsletters"><svg class="svg"><use xlink:href="#icon-email"></use></svg>Newsletters</a></li>
<li><a class="nav__live" href="https://www.pbs.org/newshour/live">Live</a></li>
</ul>
</div>
</nav>
<main class="page__main">
<div class="page__body page__body--with-sidebar">
<article class="post__article">
<div class="post__hero">
<figure><img src="https://d3i6fh83elv35t.cloudfront.net/static/2023/12/2023-12-19T121153Z_383532813_RC2505AFN3QR_RTRMADP_3_ISRAEL-PALESTINIANS-1024x683.jpg" srcset="https://d3i6fh83elv35t.cloudfront.net/static/2023/12/2023-12-19T121153Z_383532813_RC2505AFN3QR_RTRMADP_3_ISRAEL-PALESTINIANS-300x200.jpg 300w, https://d3i6fh83elv35t.cloudfront.net/static/2023/12/2023-12-19T121153Z_383532813_RC2505AFN3QR_RTRMADP_3_ISRAEL-PALESTINIANS-425x283.jpg 425w, https://d3i6fh83elv35t.cloudfront.net/static/2023/12/2023-12-19T121153Z_383532813_RC2505AFN3QR_RTRMADP_3_ISRAEL-PALESTINIANS-1024x683.jpg 1024w, https://d3i6fh83elv35t.cloudfront.net/static/2023/12/2023-12-19T121153Z_383532813_RC2505AFN3QR_RTRMADP_3_ISRAEL-PALESTINIANS-1200x800.jpg 1200w" alt="A child reacts while holding a person near the bodies of Palestinians killed in Israeli strikes at a hospital in Rafah"></figure>
</div>
<div class="post__col " itemscope="" itemtype="http://schema.org/NewsArticle">
<meta itemprop="image" content="https://d3i6fh83elv35t.cloudfront.net/static/2023/12/2023-12-19T121153Z_383532813_RC2505AFN3QR_RTRMADP_3_ISRAEL-PALESTINIANS-1024x683.jpg">
<meta itemprop="thumbnailUrl" content="https://d3i6fh83elv35t.cloudfront.net/static/2023/12/2023-12-19T121153Z_383532813_RC2505AFN3QR_RTRMADP_3_ISRAEL-PALESTINIANS-1024x683.jpg">
<meta itemprop="mainEntityOfPage" content="true">
<span itemprop="publisher" itemscope="" itemtype="https://schema.org/NewsMediaOrganization">
<meta itemprop="name" content="PBS NewsHour">
<span itemprop="logo" itemscope="" itemtype="https://schema.org/ImageObject">
<meta itemprop="url" content="https://d3i6fh83elv35t.cloudfront.net/static/assets/images/logo-600x60.png">
<meta itemprop="width" content="600">
<meta itemprop="height" content="60">
</span>
</span>
<div class="post__col-left">
<section class="post__byline post__byline--side js-post__byline--side">
<address class="post__byline-address ">
<div class="post__byline-caption">
<span class="post__byline-by">By —</span>
<p class="post__byline-name">
<a class="post__byline-name-unhyphenated" href="https://www.pbs.org/newshour/author/najib-jobain-associated-press" itemscope="" itemtype="https://schema.org/Person" itemprop="author">
<span itemprop="name">Najib Jobain, Associated Press</span>
</a>
<a class="post__byline-name-hyphenated" href="https://www.pbs.org/newshour/author/najib-jobain-associated-press">
Najib Jobain, Associated Press
</a>
</p>
</div>
</address>
<address class="post__byline-address ">
<div class="post__byline-caption">
<span class="post__byline-by">By —</span>
<p class="post__byline-name">
<a class="post__byline-name-unhyphenated" href="https://www.pbs.org/newshour/author/samy-magdy-associated-press" itemscope="" itemtype="https://schema.org/Person" itemprop="author">
<span itemprop="name">Samy Magdy, Associated Press</span>
</a>
<a class="post__byline-name-hyphenated" href="https://www.pbs.org/newshour/author/samy-magdy-associated-press">
Samy Magdy, Associated Press
</a>
</p>
</div>
</address>
</section>
<div class="post__sticky-rail">
<button class="comments__btn comments__btn-feedback">
<a href="https://www.pbs.org/newshour/about/contact-us/">
<div class="comments__btn-feedback-container"><p>Leave your feedback</p></div>
</a>
</button>
<div class="share">
<div class="share__header">
<button class="share__header-btn js-share-more">
<span>Share</span>
<svg class="svg"><use xlink:href="#icon-dots"></use></svg>
</button>
<ul class="share__header-list js-share-list">
<li>
<button class="share__copy-to-clipboard" data-clipboard-target=".share__copy-to-clipboard-selector-">Copy URL</button>
<div class="share__copy-to-clipboard-selector- aria-hidden">https://www.pbs.org/newshour/world/as-israel-expands-ground-war-against-hamas-gaza-death-toll-exceeds-20000</div>
</li>
<li>
<a href="mailto:?subject=As%20Israel%20expands%20ground%20war%20against%20Hamas%2C%20Gaza%20death%20toll%20exceeds%2020%2C000&body=https%3A%2F%2Fwww.pbs.org%2Fnewshour%2Fworld%2Fas-israel-expands-ground-war-against-hamas-gaza-death-toll-exceeds-20000">
Email<svg class="svg"><use xlink:href="#icon-email"></use></svg>
</a>
</li>
<li>
<a href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fwww.pbs.org%2Fnewshour%2Fworld%2Fas-israel-expands-ground-war-against-hamas-gaza-death-toll-exceeds-20000" class="js-share">
Facebook<svg class="svg"><use xlink:href="#icon-facebook"></use></svg>
</a>
</li>
<li>
<a href="https://twitter.com/intent/tweet?url=https%3A%2F%2Fwww.pbs.org%2Fnewshour%2Fworld%2Fas-israel-expands-ground-war-against-hamas-gaza-death-toll-exceeds-20000&text=As%20Israel%20expands%20ground%20war%20against%20Hamas%2C%20Gaza%20death%20toll%20exceeds%2020%2C000" class="js-share">
Twitter<svg class="svg"><use xlink:href="#icon-twitter"></use></svg>
</a>
</li>
<li>
<a href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fwww.pbs.org%2Fnewshour%2Fworld%2Fas-israel-expands-ground-war-against-hamas-gaza-death-toll-exceeds-20000&title=As%20Israel%20expands%20ground%20war%20against%20Hamas%2C%20Gaza%20death%20toll%20exceeds%2020%2C000&summary=That%20figure%20was%20released%20Friday.%20It%20is%20the%20latest%20indication%20of%20the%20staggering%20cost%20of%20the%20war%20as%20Israel%20expands%20its%20ground%20offensive%20and%20ordered%20tens%20of%20thousands%20more%20people%20to%20leave%20their%20homes.&source=PBS%20NewsHour" class="js-share">
LinkedIn<svg class="svg"><use xlink:href="#icon-linkedin"></use></svg>
</a>
</li>
<li>
<a href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fwww.pbs.org%2Fnewshour%2Fworld%2Fas-israel-expands-ground-war-against-hamas-gaza-death-toll-exceeds-20000&description=That%20figure%20was%20released%20Friday.%20It%20is%20the%20latest%20indication%20of%20the%20staggering%20cost%20of%20the%20war%20as%20Israel%20expands%20its%20ground%20offensive%20and%20ordered%20tens%20of%20thousands%20more%20people%20to%20leave%20their%20homes." class="js-share">
Pinterest<svg class="svg"><use xlink:href="#icon-pinterest"></use></svg>
</a>
</li>
<li>
<a href="http://www.tumblr.com/share/link?url=https%3A%2F%2Fwww.pbs.org%2Fnewshour%2Fworld%2Fas-israel-expands-ground-war-against-hamas-gaza-death-toll-exceeds-20000&name=As%20Israel%20expands%20ground%20war%20against%20Hamas%2C%20Gaza%20death%20toll%20exceeds%2020%2C000&description=That%20figure%20was%20released%20Friday.%20It%20is%20the%20latest%20indication%20of%20the%20staggering%20cost%20of%20the%20war%20as%20Israel%20expands%20its%20ground%20offensive%20and%20ordered%20tens%20of%20thousands%20more%20people%20to%20leave%20their%20homes." class="js-share">
Tumblr<svg class="svg"><use xlink:href="#icon-tumblr" class="js-share"></use></svg>
</a>
</li>
</ul>
</div>
<div class="share__body">
<a href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fwww.pbs.org%2Fnewshour%2Fworld%2Fas-israel-expands-ground-war-against-hamas-gaza-death-toll-exceeds-20000" class="js-share">
<span class="aria-hidden">Share on Facebook</span>
<svg class="svg"><use xlink:href="#icon-facebook"></use></svg>
</a>
<a href="https://twitter.com/intent/tweet?url=https%3A%2F%2Fwww.pbs.org%2Fnewshour%2Fworld%2Fas-israel-expands-ground-war-against-hamas-gaza-death-toll-exceeds-20000&text=As%20Israel%20expands%20ground%20war%20against%20Hamas%2C%20Gaza%20death%20toll%20exceeds%2020%2C000" class="js-share">
<span class="aria-hidden">Share on Twitter</span>
<svg class="svg"><use xlink:href="#icon-twitter"></use></svg>
</a>
</div>
</div>
</div>
</div>
<div class="post__col-right">
<h1 class="post__title" itemprop="headline">As Israel expands ground war against Hamas, Gaza death toll exceeds 20,000</h1>
<a href="https://www.pbs.org/newshour/world" class="post__category">World</a>
<meta itemprop="articleSection" content="World">
<time class="post__date" itemprop="datePublished" content="2023-12-22T10:59:26-05:00">
Dec 22, 2023 10:59 AM EST
</time>
<meta itemprop="dateModified" content="2023-12-22T10:59:26-05:00">
<article itemprop="articleBody">
<div class="body-text">
<p>RAFAH, Gaza Strip (AP) — More than 20,000 Palestinians have died in Gaza during Israel’s war against Hamas, health officials said Friday, the latest indication of the staggering cost of the conflict as Israel expands its ground offensive and orders tens of thousands more people to leave their homes.<br>
The deaths amount to nearly 1% of the territory’s prewar population.</p>
<p>The 11-week conflict has displaced nearly 85% of Gaza’s people and leveled wide swaths of the tiny coastal enclave. And more than half a million people in Gaza — a quarter of the population — are starving, according to a report Thursday from the United Nations and other agencies.</p>
<p>Israel has vowed to continue the war until Hamas is removed from power in Gaza and all the hostages taken during its Oct. 7 cross-border attack are freed.</p>
<p>Despite the humanitarian emergency, a U.N. Security Council vote on aid deliveries and terms for a cease-fire was delayed again late Thursday, after days of high-level negotiations.</p>
<p>The United States, which has veto power, has pushed back against calls for an immediate cease-fire and giving the U.N. sole responsibility for inspecting aid deliveries. Israel, citing security grounds, insists it needs to be able to screen goods entering Gaza.</p>
<p>The U.S. said it would back a revised resolution that calls for “creating the conditions” for a cease-fire, rather than an immediate end to fighting.</p>
<p>Other countries support a stronger text and said diplomats would need to consult their governments before a vote, which is expected Friday.</p>
<p><a href="https://www.pbs.org/newshour/politics/it-doesnt-get-any-worse-un-says-more-than-1-in-4-people-in-gaza-are-starving-because-of-war">READ MORE: ‘It doesn’t get any worse:’ UN says more than 1 in 4 people in Gaza are starving because of war</a></p>
<p>Martin Griffiths, the U.N. humanitarian affairs chief, lamented the world’s inaction.</p>
<p>“That such a brutal conflict has been allowed to continue and for this long — despite the widespread condemnation, the physical and mental toll and the massive destruction — is an indelible stain on our collective conscience,” he wrote on the social media platform X.</p>
<h3>SRAEL VOWS TO KEEP UP PRESSURE ON HAMAS</h3>
<p>Israel, shielded by the United States, has resisted international pressure to scale back its offensive and has said it would press on until Hamas, the militant group that has ruled Gaza for 16 years, has been destroyed.</p>
<p>The military has said that months of fighting lie ahead in southern Gaza, an area packed with the vast majority of the enclave’s 2.3 million people, many of whom were ordered to flee combat in the north earlier in the war.</p>
<p>Since then, evacuation orders have pushed displaced civilians into ever-smaller areas of the south as troops focus on the city of Khan Younis, Gaza’s second-largest.</p>
<p>The military said late Thursday that it is sending more ground forces, including combat engineers, to Khan Younis to target Hamas militants above ground and in tunnels. On Friday, it ordered tens of thousands of residents to leave their homes in Burej, an urban refugee camp, and surrounding communities, also in the south.</p>
<p>In the city of Rafah, on the border with Egypt, an airstrike on a house killed six people, according to Associated Press journalists who saw the bodies at a hospital. Among the dead were a blind man, his wife and their 4-month-old child, said the infant’s grandfather, Anwar Dhair.<br>
Rafah is one of the few places in Gaza not under evacuation orders, but has been targeted in Israeli strikes almost every day.</p>
<p>The air and ground campaign also continued in the north, even as Israel says it is in the final stages of clearing out Hamas militants there.</p>
<p><a href="https://www.pbs.org/newshour/show/israeli-strikes-in-gaza-continue-as-egypt-and-qatar-mediate-indirect-cease-fire-talks">WATCH MORE: Israeli strikes in Gaza continue as Egypt and Qatar mediate indirect cease-fire talks</a></p>
<p>Mustafa Abu Taha, a Palestinian farm worker, said many areas of his hard-hit Gaza City neighborhood of Shijaiyah have become inaccessible because of massive destruction from airstrikes.</p>
<p>“They are hitting anything moving,” he said of Israeli forces.</p>
<h3>RISING DEATH TOLL AND HUNGER</h3>
<p>Gaza’s Health Ministry said Friday that it has documented 20,057 deaths in the fighting and more than 50,000 wounded. It does not differentiate between combatant and civilian deaths. It has previously said that roughly two-thirds of the dead were women or minors.</p>
<p>Israel blames Hamas for the high civilian death toll during its intense air and ground campaign, citing the group’s use of crowded residential areas for military purposes.</p>
<p>Israel declared war after Hamas militants stormed across its border and killed some 1,200 people and kidnapped 240 others. Israel’s military says 139 of its soldiers have been killed in the ground offensive. It says it has killed thousands of Hamas militants, including about 2,000 in the past three weeks, but it has not presented any evidence to back up the claim.</p>
<p>Meanwhile, phone and internet services were gradually being restored late Thursday, after the latest communications blackout of 35 hours.</p>
<p>Repeated cuts in communications have hampered aid deliveries, which cover only a fraction of the unprecedented humanitarian needs in Gaza.</p>
<p><a href="https://www.pbs.org/newshour/world/top-hamas-leader-visits-cairo-as-indirect-talks-on-another-gaza-truce-and-hostage-swap-resume">READ MORE: Top Hamas leader visits Cairo as indirect talks on another Gaza truce and hostage swap resume</a></p>
<p>The hunger eclipsed even the near-famines of recent years in Afghanistan and Yemen, according to Thursday’s report, which warned that the risk of famine is “increasing each day,” blaming the hunger on insufficient aid entering Gaza.</p>
<p>An Israeli liaison officer with Gaza claimed there is no food shortage in Gaza, saying sufficient aid is getting through.</p>
<p>“The reserves in Gaza Strip are sufficient for the near term,” Col. Moshe Tetro, a defense official, said from the Kerem Shalom cargo crossing, opened by Israel several days ago amid international demands to improve the flow of aid. Tetro did not elaborate.</p>
<p>The war has also pushed Gaza’s health sector into collapse.</p>
<p>Only nine of its 36 health facilities are still partially functioning, all located in the south, according to the World Health Organization.</p>
<p>The agency reported soaring rates of diseases in Gaza, including a five-fold rise in diarrhea and increases in cases of meningitis, skin rashes and scabies.</p>
</div>
</article>
</div>
<aside class="post__aside post__aside--besideImage">
<p class="post__hero-caption">
<svg class="svg"><use xlink:href="#arrow-left"></use></svg><span>Left:</span>
A child reacts while holding a person near the bodies of Palestinians killed in Israeli strikes at a hospital in Rafah, in the southern Gaza Strip, December 19, 2023. Photo by Ibraheem Abu Mustafa/REUTERS
</p>
<div class="post__aside-components">
<section class="post__aside-component">
<h2 class="post__aside-header">Related</h2>
<ul>
<li class="post__aside-li">
<article class="card-text card-text--small">
<a href="https://www.pbs.org/newshour/world/canada-announces-temporary-visas-for-people-in-gaza-with-canadian-relatives" class="card-text__title"><span>Canada announces temporary visas for people in Gaza with Canadian relatives</span></a>
<p class="card-text__byline"><span>By</span> Associated Press</p>
</article>
</li>
<li class="post__aside-li">
<article class="card-text card-text--small">
<a href="https://www.pbs.org/newshour/world/israels-military-campaign-in-gaza-is-among-the-most-destructive-in-history-experts-say" class="card-text__title"><span>Israel’s military campaign in Gaza is among the most destructive in history, experts say</span></a>
<p class="card-text__byline"><span>By</span> Julia Frankel, Associated Press</p>
</article>
</li>