forked from Uniswap/token-lists
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Token Lists.html
2514 lines (1732 loc) · 354 KB
/
Token Lists.html
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>
<!-- saved from url=(0069)https://community.tokenlists.org/latest?ascending=true&order=activity -->
<html lang="en" class="desktop-view not-mobile-device text-size-normal no-touch discourse-no-touch" data-google-analytics-opt-out="" data-bybit-channel-name="rCH77pc2OiMi4G9CvgbDm" data-bybit-is-default-wallet="true" style="--header-offset: 64px; --header-top: 0px;"><div id="in-page-channel-node-id" data-channel-name="in_page_channel_2l45nD"></div><script async="false" src="chrome-extension://cpmkedoipcpimgecpmgpldfpohjplkpp/window-provider.js"></script><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Token Lists</title>
<meta name="description" content="Decentralized token lists on Ethereum">
<meta name="discourse_theme_id" content="2">
<meta name="discourse_current_homepage" content="latest">
<meta name="generator" content="Discourse 3.3.0.beta3-dev - https://github.com/discourse/discourse version 359dccf19111002735f41e35595bfce05028ca36">
<link rel="icon" type="image/png" href="https://global.discourse-cdn.com/standard17/uploads/uniswap/optimized/1X/23a73186634507368ebe86a40df758afdbd930a5_2_32x32.png">
<link rel="apple-touch-icon" type="image/png" href="https://global.discourse-cdn.com/standard17/uploads/uniswap/optimized/1X/23a73186634507368ebe86a40df758afdbd930a5_2_180x180.png">
<meta name="theme-color" media="all" content="#ffffff">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, user-scalable=yes, viewport-fit=cover">
<link rel="canonical" href="https://community.tokenlists.org/latest">
<link rel="search" type="application/opensearchdescription+xml" href="https://community.tokenlists.org/opensearch.xml" title="Token Lists Search">
<meta name="csrf-param" content="authenticity_token">
<meta name="csrf-token" content="B_OC-FiOsjRxaV6_hscsH4Hca4FpP469RupkJ9Qs-3CUNQYawVKxQOHSxNXIkJ8AunMF5qECm419I8GXB-Mjrg">
<meta name="fragment" content="!">
<link rel="preload" href="./Token Lists_files/start-discourse-9f921142b762fb91207051d0a28e571b9455bab74e7d0e03726024c286cff8d5.br.js.download" as="script" nonce="">
<link rel="preload" href="./Token Lists_files/browser-update-9070f07226d022f68c06506e046ae33f8fe725302ff53955cd3d483f2fc47ff6.br.js.download" as="script" nonce="">
<script defer="" src="./Token Lists_files/browser-detect-99f42f91bffa8ca1606d62b70bb92f981d83921e78ccdbd3d9538f07007f27ac.br.js.download" data-discourse-entrypoint="browser-detect" nonce=""></script>
<script defer="" src="./Token Lists_files/vendor.ff29780b9fed784cce2d843dcb93a803-608f4f77d8437d715d8d39c739c0c8bbe0fe51c9305e55f1ec7d0bee19f5571f.br.js.download" data-discourse-entrypoint="vendor" nonce=""></script>
<script defer="" src="./Token Lists_files/chunk.9c21bd0c25a16e923e22.d41d8cd9.br.js.download" data-discourse-entrypoint="discourse" nonce=""></script>
<script defer="" src="./Token Lists_files/chunk.02815e0e3b42602d951f.d41d8cd9.br.js.download" data-discourse-entrypoint="discourse" nonce=""></script>
<script defer="" src="./Token Lists_files/checklist-55813a5bacc3c99fda0b099a80401f124870fa9b510ced078af32f8a82364461.br.js.download" data-discourse-entrypoint="plugins/checklist" nonce=""></script>
<script defer="" src="./Token Lists_files/discourse-adplugin-fb5ac85eeb275bf08c405f0bd2cbf27f65b3de816044a5398be674b051ce801b.br.js.download" data-discourse-entrypoint="plugins/discourse-adplugin" nonce=""></script>
<script defer="" src="./Token Lists_files/discourse-adplugin_admin-19d062214a057170d85f58f115c235c2df9e4f873cacbc333969be4808a882e7.br.js.download" data-discourse-entrypoint="plugins/discourse-adplugin_admin" nonce=""></script>
<script defer="" src="./Token Lists_files/discourse-ai-2bda0eae9d3c7a07db9e56d5ef598fe86d06b39c7ae9059f8d03e99d2bcbcd96.br.js.download" data-discourse-entrypoint="plugins/discourse-ai" nonce=""></script>
<script defer="" src="./Token Lists_files/discourse-ai_admin-6b486b7330ca7ef9856e8d4601dbe0bd01653de64170eb4a7fa4bc94b5f43e4c.br.js.download" data-discourse-entrypoint="plugins/discourse-ai_admin" nonce=""></script>
<script defer="" src="./Token Lists_files/discourse-akismet-51cd5c4314f898a0e0725ed9ce2b2986add3564bcb6312e6a20f6cab8cf5d055.br.js.download" data-discourse-entrypoint="plugins/discourse-akismet" nonce=""></script>
<script defer="" src="./Token Lists_files/discourse-cakeday-e375c39de321de9a571e91b72b9edad7d12affa938f39b63d280b447871390b6.br.js.download" data-discourse-entrypoint="plugins/discourse-cakeday" nonce=""></script>
<script defer="" src="./Token Lists_files/discourse-deprecation-collector-745b838595db5d2efe17068b8daa4695311e4ee10e7996b49833d3499389676c.br.js.download" data-discourse-entrypoint="plugins/discourse-deprecation-collector" nonce=""></script>
<script defer="" src="./Token Lists_files/discourse-details-48148ec534a4c5e9614302186b345123ba1358787c41bc31cbd17231f794fe42.br.js.download" data-discourse-entrypoint="plugins/discourse-details" nonce=""></script>
<script defer="" src="./Token Lists_files/discourse-lazy-videos-f629f8bf4e5be1506748ca35e006c18ad8dc0323fbdad3e89694b42906e69219.br.js.download" data-discourse-entrypoint="plugins/discourse-lazy-videos" nonce=""></script>
<script defer="" src="./Token Lists_files/discourse-local-dates-3d6e4bc02e4952710b91a53202bb79df0e357173e5c0d82ec38fe0b3db7373a3.br.js.download" data-discourse-entrypoint="plugins/discourse-local-dates" nonce=""></script>
<script defer="" src="./Token Lists_files/discourse-presence-deb24d69b99e2298438df9ed81ded0be4299c4b900d457b0e1d99e9d17327a4a.br.js.download" data-discourse-entrypoint="plugins/discourse-presence" nonce=""></script>
<script defer="" src="./Token Lists_files/discourse-solved-fbbaeb33904bc98c8af9873b4e0ea33032365d42d69e600e13d701e4fbf331af.br.js.download" data-discourse-entrypoint="plugins/discourse-solved" nonce=""></script>
<script defer="" src="./Token Lists_files/footnote-79e2a367b53b791240c3504826b87b2787c9d197d77cd422969d592aae9cf23b.br.js.download" data-discourse-entrypoint="plugins/footnote" nonce=""></script>
<script defer="" src="./Token Lists_files/footnote_extra-295b457b90cb18fedfdb544868c494c71842a27c0781d3042fa4fd26589204fa.br.js.download" data-discourse-entrypoint="plugins/footnote_extra" nonce=""></script>
<script defer="" src="./Token Lists_files/hosted-site-134dbce2c7b578f586484b3d38306068165668c3094b305585ff221e8287a62e.br.js.download" data-discourse-entrypoint="plugins/hosted-site" nonce=""></script>
<script defer="" src="./Token Lists_files/hosted-site_admin-018aa9b06b7e57796f22192a82e0f6214b9fc349a193ea01a8bc2a43a80c7f73.br.js.download" data-discourse-entrypoint="plugins/hosted-site_admin" nonce=""></script>
<script defer="" src="./Token Lists_files/poll-a07a9613ae3b1cf6f34fa629cf36ef0f4ce6c71b72cda45768dd5a5b734293fa.br.js.download" data-discourse-entrypoint="plugins/poll" nonce=""></script>
<script defer="" src="./Token Lists_files/spoiler-alert-398649fb55dd3fbc15869b8bdc345c1a626b23b3bf1627afd9a0994049ad4bf3.br.js.download" data-discourse-entrypoint="plugins/spoiler-alert" nonce=""></script>
<script defer="" src="./Token Lists_files/en-a239b21cccb73b81a786259b3d30c33bc091d1d1d8ec053a05a18138c16512ec.br.js.download" data-discourse-entrypoint="locales/en" nonce=""></script>
<link id="manifest-link" rel="manifest" href="https://community.tokenlists.org/manifest.webmanifest" crossorigin="use-credentials">
<link rel="alternate" type="application/rss+xml" title="Latest posts" href="https://community.tokenlists.org/posts.rss">
<link rel="alternate" type="application/rss+xml" title="Latest topics" href="https://community.tokenlists.org/latest.rss">
<meta property="og:site_name" content="Token Lists">
<meta property="og:type" content="website">
<meta name="twitter:card" content="summary">
<meta name="twitter:image" content="https://global.discourse-cdn.com/standard17/uploads/uniswap/original/1X/23a73186634507368ebe86a40df758afdbd930a5.png">
<meta property="og:image" content="https://global.discourse-cdn.com/standard17/uploads/uniswap/original/1X/23a73186634507368ebe86a40df758afdbd930a5.png">
<meta property="og:url" content="https://community.tokenlists.org/latest?ascending=true&order=activity">
<meta name="twitter:url" content="https://community.tokenlists.org/latest?ascending=true&order=activity">
<meta property="og:title" content="Token Lists">
<meta name="twitter:title" content="Token Lists">
<meta property="og:description" content="Decentralized token lists on Ethereum">
<meta name="twitter:description" content="Decentralized token lists on Ethereum">
<script async="" src="./Token Lists_files/discourse-client-performance.js.download" nonce=""></script>
<meta id="data-discourse-setup" data-cdn="https://sjc6.discourse-cdn.com/standard17" data-base-url="https://community.tokenlists.org" data-base-uri="" data-environment="production" data-letter-avatar-version="5_f40856482fe1e45ac8f1605885140a2d" data-service-worker-url="service-worker.js" data-default-locale="en" data-asset-version="58b88bfc61d41af989c03aaa50116ab0" data-disable-custom-css="false" data-highlight-js-path="/highlight-js/community.tokenlists.org/8ca560096c2b0ff3f6aa461e5bf6df6ea43921a5.js" data-svg-sprite-path="/svg-sprite/community.tokenlists.org/svg-2-9993212a6146f1a8a8aa362081449ef1a7462e04.js" data-enable-js-error-reporting="true" data-color-scheme-is-dark="false" data-user-dark-scheme-id="-1" data-s3-cdn="https://global.discourse-cdn.com/standard17" data-s3-base-url="//cdck-file-uploads-global.s3.dualstack.us-west-2.amazonaws.com/standard17">
<meta name="discourse/config/environment" content="%7B%22modulePrefix%22%3A%22discourse%22%2C%22environment%22%3A%22production%22%2C%22rootURL%22%3A%22%22%2C%22locationType%22%3A%22history%22%2C%22historySupportMiddleware%22%3Afalse%2C%22EmberENV%22%3A%7B%22FEATURES%22%3A%7B%7D%2C%22EXTEND_PROTOTYPES%22%3A%7B%22Date%22%3Afalse%2C%22String%22%3Afalse%7D%2C%22_APPLICATION_TEMPLATE_WRAPPER%22%3Afalse%2C%22_DEFAULT_ASYNC_OBSERVERS%22%3Atrue%2C%22_JQUERY_INTEGRATION%22%3Atrue%7D%2C%22APP%22%3A%7B%22name%22%3A%22discourse%22%2C%22version%22%3A%223.3.0.beta3-dev%20359dccf19111002735f41e35595bfce05028ca36%22%2C%22exportApplicationGlobal%22%3Atrue%7D%7D">
<style type="text/css" id="hashtag-css-generator">.hashtag-category-badge { background-color: var(--primary-medium); }
.hashtag-color--category-1 { background-color: #0088CC; }
.hashtag-color--category-2 { background-color: #808281; }
.hashtag-color--category-5 { background-color: #F1592A; }
.hashtag-color--category-6 { background-color: #ED207B; }</style><script src="./Token Lists_files/svg-2-9993212a6146f1a8a8aa362081449ef1a7462e04.js.download"></script></head>
<body class="navigation-topics docked">
<discourse-assets>
<discourse-assets-stylesheets>
<link href="./Token Lists_files/color_definitions_base__2_efce76b6f6e8d27028276e033770c19443f7b9e3.css" media="all" rel="stylesheet" class="light-scheme">
<link href="./Token Lists_files/desktop_579799b8369a4b4364baedc82ad366f12aadea74.css" media="all" rel="stylesheet" data-target="desktop">
<link href="./Token Lists_files/checklist_579799b8369a4b4364baedc82ad366f12aadea74.css" media="all" rel="stylesheet" data-target="checklist">
<link href="./Token Lists_files/discourse-adplugin_579799b8369a4b4364baedc82ad366f12aadea74.css" media="all" rel="stylesheet" data-target="discourse-adplugin">
<link href="./Token Lists_files/discourse-ai_579799b8369a4b4364baedc82ad366f12aadea74.css" media="all" rel="stylesheet" data-target="discourse-ai">
<link href="./Token Lists_files/discourse-akismet_579799b8369a4b4364baedc82ad366f12aadea74.css" media="all" rel="stylesheet" data-target="discourse-akismet">
<link href="./Token Lists_files/discourse-cakeday_579799b8369a4b4364baedc82ad366f12aadea74.css" media="all" rel="stylesheet" data-target="discourse-cakeday">
<link href="./Token Lists_files/discourse-details_579799b8369a4b4364baedc82ad366f12aadea74.css" media="all" rel="stylesheet" data-target="discourse-details">
<link href="./Token Lists_files/discourse-lazy-videos_579799b8369a4b4364baedc82ad366f12aadea74.css" media="all" rel="stylesheet" data-target="discourse-lazy-videos">
<link href="./Token Lists_files/discourse-local-dates_579799b8369a4b4364baedc82ad366f12aadea74.css" media="all" rel="stylesheet" data-target="discourse-local-dates">
<link href="./Token Lists_files/discourse-narrative-bot_579799b8369a4b4364baedc82ad366f12aadea74.css" media="all" rel="stylesheet" data-target="discourse-narrative-bot">
<link href="./Token Lists_files/discourse-presence_579799b8369a4b4364baedc82ad366f12aadea74.css" media="all" rel="stylesheet" data-target="discourse-presence">
<link href="./Token Lists_files/discourse-solved_579799b8369a4b4364baedc82ad366f12aadea74.css" media="all" rel="stylesheet" data-target="discourse-solved">
<link href="./Token Lists_files/footnote_579799b8369a4b4364baedc82ad366f12aadea74.css" media="all" rel="stylesheet" data-target="footnote">
<link href="./Token Lists_files/hosted-site_579799b8369a4b4364baedc82ad366f12aadea74.css" media="all" rel="stylesheet" data-target="hosted-site">
<link href="./Token Lists_files/poll_579799b8369a4b4364baedc82ad366f12aadea74.css" media="all" rel="stylesheet" data-target="poll">
<link href="./Token Lists_files/spoiler-alert_579799b8369a4b4364baedc82ad366f12aadea74.css" media="all" rel="stylesheet" data-target="spoiler-alert">
<link href="./Token Lists_files/discourse-ai_desktop_579799b8369a4b4364baedc82ad366f12aadea74.css" media="all" rel="stylesheet" data-target="discourse-ai_desktop">
<link href="./Token Lists_files/poll_desktop_579799b8369a4b4364baedc82ad366f12aadea74.css" media="all" rel="stylesheet" data-target="poll_desktop">
<link href="./Token Lists_files/desktop_theme_2_9daaf968d00e5340c16121b6324ff6ec415c821c.css" media="all" rel="stylesheet" data-target="desktop_theme" data-theme-id="2" data-theme-name="light">
</discourse-assets-stylesheets>
<discourse-assets-json>
<div class="hidden" id="data-preloaded" data-preloaded="{"site":"{\"default_archetype\":\"regular\",\"notification_types\":{\"mentioned\":1,\"replied\":2,\"quoted\":3,\"edited\":4,\"liked\":5,\"private_message\":6,\"invited_to_private_message\":7,\"invitee_accepted\":8,\"posted\":9,\"moved_post\":10,\"linked\":11,\"granted_badge\":12,\"invited_to_topic\":13,\"custom\":14,\"group_mentioned\":15,\"group_message_summary\":16,\"watching_first_post\":17,\"topic_reminder\":18,\"liked_consolidated\":19,\"post_approved\":20,\"code_review_commit_approved\":21,\"membership_request_accepted\":22,\"membership_request_consolidated\":23,\"bookmark_reminder\":24,\"reaction\":25,\"votes_released\":26,\"event_reminder\":27,\"event_invitation\":28,\"chat_mention\":29,\"chat_message\":30,\"chat_invitation\":31,\"chat_group_mention\":32,\"chat_quoted\":33,\"assigned\":34,\"question_answer_user_commented\":35,\"watching_category_or_tag\":36,\"new_features\":37,\"admin_problems\":38,\"linked_consolidated\":39,\"following\":800,\"following_created_topic\":801,\"following_replied\":802,\"circles_activity\":900},\"post_types\":{\"regular\":1,\"moderator_action\":2,\"small_action\":3,\"whisper\":4},\"user_tips\":{\"first_notification\":1,\"topic_timeline\":2,\"post_menu\":3,\"topic_notification_levels\":4,\"suggested_topics\":5},\"trust_levels\":{\"newuser\":0,\"basic\":1,\"member\":2,\"regular\":3,\"leader\":4},\"groups\":[{\"id\":1,\"name\":\"admins\",\"flair_url\":null,\"flair_bg_color\":null,\"flair_color\":null},{\"id\":2,\"name\":\"moderators\",\"flair_url\":null,\"flair_bg_color\":null,\"flair_color\":null},{\"id\":3,\"name\":\"staff\",\"flair_url\":null,\"flair_bg_color\":null,\"flair_color\":null},{\"id\":10,\"name\":\"trust_level_0\",\"flair_url\":null,\"flair_bg_color\":null,\"flair_color\":null},{\"id\":11,\"name\":\"trust_level_1\",\"flair_url\":null,\"flair_bg_color\":null,\"flair_color\":null},{\"id\":12,\"name\":\"trust_level_2\",\"flair_url\":null,\"flair_bg_color\":null,\"flair_color\":null},{\"id\":13,\"name\":\"trust_level_3\",\"flair_url\":null,\"flair_bg_color\":null,\"flair_color\":null},{\"id\":14,\"name\":\"trust_level_4\",\"flair_url\":null,\"flair_bg_color\":null,\"flair_color\":null}],\"filters\":[\"latest\",\"unread\",\"new\",\"unseen\",\"top\",\"read\",\"posted\",\"bookmarks\",\"hot\",\"votes\"],\"periods\":[\"all\",\"yearly\",\"quarterly\",\"monthly\",\"weekly\",\"daily\"],\"top_menu_items\":[\"latest\",\"unread\",\"new\",\"unseen\",\"top\",\"read\",\"posted\",\"bookmarks\",\"hot\",\"categories\",\"votes\"],\"anonymous_top_menu_items\":[\"latest\",\"top\",\"categories\",\"hot\",\"categories\",\"top\",\"votes\"],\"uncategorized_category_id\":1,\"user_field_max_length\":2048,\"post_action_types\":[{\"id\":2,\"name_key\":\"like\",\"name\":\"Like\",\"description\":\"Like this post\",\"short_description\":\"Like this post\",\"is_flag\":false,\"is_custom_flag\":false,\"enabled\":false},{\"id\":6,\"name_key\":\"notify_user\",\"name\":\"Send @%{username} a message\",\"description\":\"I want to talk to this person directly and personally about their post.\",\"short_description\":\"I want to talk to this person directly and personally about their post.\",\"is_flag\":true,\"is_custom_flag\":true,\"enabled\":true},{\"id\":7,\"name_key\":\"notify_moderators\",\"name\":\"Something Else\",\"description\":\"This post requires staff attention for another reason not listed above.\",\"short_description\":\"Requires staff attention for another reason\",\"is_flag\":true,\"is_custom_flag\":true,\"enabled\":true},{\"id\":3,\"name_key\":\"off_topic\",\"name\":\"Off-Topic\",\"description\":\"This post is not relevant to the current discussion as defined by the title and first post, and should probably be moved elsewhere.\",\"short_description\":\"Not relevant to the discussion\",\"is_flag\":true,\"is_custom_flag\":false,\"enabled\":true},{\"id\":4,\"name_key\":\"inappropriate\",\"name\":\"Inappropriate\",\"description\":\"This post contains content that a reasonable person would consider offensive, abusive, to be hateful conduct or a violation of \\u003ca href=\\\"%{base_path}/guidelines\\\"\\u003eour community guidelines\\u003c/a\\u003e.\",\"short_description\":\"A violation of \\u003ca href=\\\"%{base_path}/guidelines\\\"\\u003eour community guidelines\\u003c/a\\u003e\",\"is_flag\":true,\"is_custom_flag\":false,\"enabled\":true},{\"id\":8,\"name_key\":\"spam\",\"name\":\"Spam\",\"description\":\"This post is an advertisement, or vandalism. It is not useful or relevant to the current topic.\",\"short_description\":\"This is an advertisement or vandalism\",\"is_flag\":true,\"is_custom_flag\":false,\"enabled\":true},{\"id\":10,\"name_key\":\"illegal\",\"name\":\"Illegal\",\"description\":\"This post requires staff attention because I believe it contains content that is illegal.\",\"short_description\":\"This is illegal\",\"is_flag\":true,\"is_custom_flag\":true,\"enabled\":true}],\"topic_flag_types\":[{\"id\":7,\"name_key\":\"notify_moderators\",\"name\":\"Something Else\",\"description\":\"This topic requires general staff attention based on the \\u003ca href=\\\"%{base_path}/guidelines\\\"\\u003eguidelines\\u003c/a\\u003e, \\u003ca href=\\\"%{tos_url}\\\"\\u003eTOS\\u003c/a\\u003e, or for another reason not listed above.\",\"short_description\":\"Requires staff attention for another reason\",\"is_flag\":true,\"is_custom_flag\":true,\"enabled\":true},{\"id\":4,\"name_key\":\"inappropriate\",\"name\":\"Inappropriate\",\"description\":\"This topic contains content that a reasonable person would consider offensive, abusive, to be hateful conduct or a violation of \\u003ca href=\\\"%{base_path}/guidelines\\\"\\u003eour community guidelines\\u003c/a\\u003e.\",\"short_description\":\"A violation of \\u003ca href=\\\"%{base_path}/guidelines\\\"\\u003eour community guidelines\\u003c/a\\u003e\",\"is_flag\":true,\"is_custom_flag\":false,\"enabled\":true},{\"id\":8,\"name_key\":\"spam\",\"name\":\"Spam\",\"description\":\"This topic is an advertisement. It is not useful or relevant to this site, but promotional in nature.\",\"short_description\":\"This is an advertisement\",\"is_flag\":true,\"is_custom_flag\":false,\"enabled\":true},{\"id\":10,\"name_key\":\"illegal\",\"name\":\"Illegal\",\"description\":\"This topic requires staff attention because I believe it contains content that is illegal.\",\"short_description\":\"This is illegal\",\"is_flag\":true,\"is_custom_flag\":true,\"enabled\":true}],\"can_create_tag\":false,\"can_tag_topics\":false,\"can_tag_pms\":false,\"topic_featured_link_allowed_category_ids\":[5,4,3,1,6,2],\"user_themes\":[{\"theme_id\":1,\"name\":\"Dark\",\"default\":false,\"color_scheme_id\":1},{\"theme_id\":2,\"name\":\"Light\",\"default\":true,\"color_scheme_id\":null}],\"user_color_schemes\":[],\"default_dark_color_scheme\":null,\"censored_regexp\":[],\"custom_emoji_translation\":{},\"watched_words_replace\":null,\"watched_words_link\":null,\"categories\":[{\"id\":1,\"name\":\"Uncategorized\",\"color\":\"0088CC\",\"text_color\":\"FFFFFF\",\"slug\":\"uncategorized\",\"topic_count\":27,\"post_count\":44,\"position\":0,\"description\":\"Topics that don't need a category, or don't fit into any other existing category.\",\"description_text\":\"Topics that don't need a category, or don't fit into any other existing category.\",\"description_excerpt\":\"Topics that don't need a category, or don't fit into any other existing category.\",\"topic_url\":\"/t/\",\"read_restricted\":false,\"permission\":1,\"notification_level\":1,\"topic_template\":null,\"has_children\":false,\"subcategory_count\":null,\"sort_order\":null,\"sort_ascending\":null,\"show_subcategory_list\":false,\"num_featured_topics\":3,\"default_view\":null,\"subcategory_list_style\":\"rows_with_featured_topics\",\"default_top_period\":\"all\",\"default_list_filter\":\"all\",\"minimum_required_tags\":0,\"navigate_to_first_post_after_read\":false,\"custom_fields\":{\"has_chat_enabled\":null,\"enable_unassigned_filter\":null,\"sort_topics_by_event_start_date\":null,\"disable_topic_resorting\":null,\"create_as_post_voting_default\":null,\"only_post_voting_in_this_category\":null,\"enable_accepted_answers\":null},\"read_only_banner\":null,\"form_template_ids\":[],\"uploaded_logo\":null,\"uploaded_logo_dark\":null,\"uploaded_background\":null,\"uploaded_background_dark\":null,\"required_tag_groups\":[],\"can_edit\":false},{\"id\":2,\"name\":\"Site Feedback\",\"color\":\"808281\",\"text_color\":\"FFFFFF\",\"slug\":\"site-feedback\",\"topic_count\":4,\"post_count\":12,\"position\":1,\"description\":\"\\u003cp\\u003eDiscussion about this site, its organization, how it works, and how we can improve it.\\u003c/p\\u003e\",\"description_text\":\"Discussion about this site, its organization, how it works, and how we can improve it.\",\"description_excerpt\":\"Discussion about this site, its organization, how it works, and how we can improve it.\",\"topic_url\":\"/t/about-the-site-feedback-category/1\",\"read_restricted\":false,\"permission\":1,\"notification_level\":1,\"topic_template\":null,\"has_children\":false,\"subcategory_count\":null,\"sort_order\":null,\"sort_ascending\":null,\"show_subcategory_list\":false,\"num_featured_topics\":3,\"default_view\":null,\"subcategory_list_style\":\"rows_with_featured_topics\",\"default_top_period\":\"all\",\"default_list_filter\":\"all\",\"minimum_required_tags\":0,\"navigate_to_first_post_after_read\":false,\"custom_fields\":{\"has_chat_enabled\":null,\"enable_unassigned_filter\":null,\"sort_topics_by_event_start_date\":null,\"disable_topic_resorting\":null,\"create_as_post_voting_default\":null,\"only_post_voting_in_this_category\":null,\"enable_accepted_answers\":null},\"read_only_banner\":null,\"form_template_ids\":[],\"uploaded_logo\":null,\"uploaded_logo_dark\":null,\"uploaded_background\":null,\"uploaded_background_dark\":null,\"required_tag_groups\":[],\"can_edit\":false},{\"id\":5,\"name\":\"Schema Changes\",\"color\":\"F1592A\",\"text_color\":\"FFFFFF\",\"slug\":\"schema-changes\",\"topic_count\":0,\"post_count\":0,\"position\":4,\"description\":null,\"description_text\":null,\"description_excerpt\":null,\"topic_url\":\"/t/about-the-schema-changes-category/19\",\"read_restricted\":false,\"permission\":1,\"notification_level\":1,\"topic_template\":null,\"has_children\":false,\"subcategory_count\":null,\"sort_order\":null,\"sort_ascending\":null,\"show_subcategory_list\":false,\"num_featured_topics\":3,\"default_view\":null,\"subcategory_list_style\":\"rows_with_featured_topics\",\"default_top_period\":\"all\",\"default_list_filter\":\"all\",\"minimum_required_tags\":0,\"navigate_to_first_post_after_read\":false,\"custom_fields\":{\"has_chat_enabled\":null,\"enable_unassigned_filter\":null,\"sort_topics_by_event_start_date\":null,\"disable_topic_resorting\":null,\"create_as_post_voting_default\":null,\"only_post_voting_in_this_category\":null,\"enable_accepted_answers\":null},\"read_only_banner\":null,\"form_template_ids\":[],\"uploaded_logo\":null,\"uploaded_logo_dark\":null,\"uploaded_background\":null,\"uploaded_background_dark\":null,\"required_tag_groups\":[],\"can_edit\":false},{\"id\":6,\"name\":\"Lists\",\"color\":\"ED207B\",\"text_color\":\"FFFFFF\",\"slug\":\"lists\",\"topic_count\":40,\"post_count\":151,\"position\":5,\"description\":null,\"description_text\":null,\"description_excerpt\":null,\"topic_url\":\"/t/about-the-lists-category/20\",\"read_restricted\":false,\"permission\":1,\"notification_level\":1,\"topic_template\":null,\"has_children\":false,\"subcategory_count\":null,\"sort_order\":null,\"sort_ascending\":null,\"show_subcategory_list\":false,\"num_featured_topics\":3,\"default_view\":null,\"subcategory_list_style\":\"rows_with_featured_topics\",\"default_top_period\":\"all\",\"default_list_filter\":\"all\",\"minimum_required_tags\":0,\"navigate_to_first_post_after_read\":false,\"custom_fields\":{\"has_chat_enabled\":null,\"enable_unassigned_filter\":null,\"sort_topics_by_event_start_date\":null,\"disable_topic_resorting\":null,\"create_as_post_voting_default\":null,\"only_post_voting_in_this_category\":null,\"enable_accepted_answers\":null},\"read_only_banner\":null,\"form_template_ids\":[],\"uploaded_logo\":null,\"uploaded_logo_dark\":null,\"uploaded_background\":null,\"uploaded_background_dark\":null,\"required_tag_groups\":[],\"can_edit\":false}],\"markdown_additional_options\":{\"chat\":{\"limited_pretty_text_features\":[\"anchor\",\"bbcode-block\",\"bbcode-inline\",\"code\",\"category-hashtag\",\"censored\",\"chat-transcript\",\"discourse-local-dates\",\"emoji\",\"emojiShortcuts\",\"inlineEmoji\",\"html-img\",\"hashtag-autocomplete\",\"mentions\",\"unicodeUsernames\",\"onebox\",\"quotes\",\"spoiler-alert\",\"table\",\"text-post-process\",\"upload-protocol\",\"watched-words\",\"chat-html-inline\"],\"limited_pretty_text_markdown_rules\":[\"autolink\",\"list\",\"backticks\",\"newline\",\"code\",\"fence\",\"image\",\"table\",\"linkify\",\"link\",\"strikethrough\",\"blockquote\",\"emphasis\",\"replacements\"],\"hashtag_configurations\":{\"topic-composer\":[\"category\"]}}},\"hashtag_configurations\":{\"topic-composer\":[\"category\"]},\"hashtag_icons\":{\"category\":\"folder\"},\"displayed_about_plugin_stat_groups\":[],\"tos_url\":\"/tos\",\"privacy_policy_url\":\"/privacy\",\"house_creatives\":{\"settings\":{\"topic_list_top\":\"\",\"topic_above_post_stream\":\"\",\"topic_above_suggested\":\"\",\"post_bottom\":\"\",\"topic_list_between\":\"\",\"after_nth_post\":20,\"after_nth_topic\":20,\"house_ads_frequency\":100},\"creatives\":{}},\"hosting_tier\":\"standard\",\"archetypes\":[{\"id\":\"regular\",\"name\":\"Regular Topic\",\"options\":[]},{\"id\":\"banner\",\"name\":\"Banner Topic\",\"options\":[]}],\"user_fields\":[],\"auth_providers\":[{\"name\":\"github\",\"custom_url\":null,\"pretty_name_override\":null,\"title_override\":null,\"frame_width\":null,\"frame_height\":null,\"can_connect\":true,\"can_revoke\":true,\"icon\":\"fab-github\"},{\"name\":\"twitter\",\"custom_url\":null,\"pretty_name_override\":null,\"title_override\":null,\"frame_width\":null,\"frame_height\":null,\"can_connect\":true,\"can_revoke\":true,\"icon\":\"fab-twitter\"}]}","siteSettings":"{\"default_locale\":\"en\",\"title\":\"Token Lists\",\"short_site_description\":\"Decentralized token lists on Ethereum\",\"exclude_rel_nofollow_domains\":\"\",\"logo\":\"//cdck-file-uploads-global.s3.dualstack.us-west-2.amazonaws.com/standard17/uploads/uniswap/original/1X/f1c01738d133b1015b289b71e54bd647ff9539b9.png\",\"logo_small\":\"//cdck-file-uploads-global.s3.dualstack.us-west-2.amazonaws.com/standard17/uploads/uniswap/original/1X/23a73186634507368ebe86a40df758afdbd930a5.png\",\"digest_logo\":\"\",\"mobile_logo\":\"\",\"logo_dark\":\"\",\"logo_small_dark\":\"\",\"mobile_logo_dark\":\"\",\"large_icon\":\"\",\"favicon\":\"\",\"apple_touch_icon\":\"\",\"display_local_time_in_user_card\":false,\"allow_user_locale\":false,\"set_locale_from_accept_language_header\":false,\"set_locale_from_cookie\":false,\"support_mixed_text_direction\":false,\"suggested_topics\":5,\"ga_universal_tracking_code\":\"\",\"ga_universal_domain_name\":\"auto\",\"gtm_container_id\":\"\",\"top_menu\":\"latest|new|unread|top|categories\",\"post_menu\":\"read|like|copyLink|flag|edit|bookmark|delete|admin|reply\",\"post_menu_hidden_items\":\"flag|bookmark|edit|delete|admin\",\"share_links\":\"twitter|facebook|email\",\"allow_username_in_share_links\":true,\"share_quote_visibility\":\"all\",\"share_quote_buttons\":\"twitter|email\",\"desktop_category_page_style\":\"categories_and_latest_topics\",\"category_colors\":\"BF1E2E|F1592A|F7941D|9EB83B|3AB54A|12A89D|25AAE2|0E76BD|652D90|92278F|ED207B|8C6238|231F20|808281|B3B5B4|E45735\",\"max_category_nesting\":2,\"enable_mobile_theme\":true,\"enable_direct_s3_uploads\":true,\"enable_upload_debug_mode\":false,\"default_dark_mode_color_scheme_id\":-1,\"relative_date_duration\":30,\"top_page_default_timeframe\":\"yearly\",\"fixed_category_positions\":false,\"fixed_category_positions_on_create\":false,\"enable_badges\":true,\"enable_badge_sql\":false,\"max_favorite_badges\":2,\"push_notifications_prompt\":true,\"enable_desktop_push_notifications\":true,\"vapid_public_key_bytes\":\"4|11|121|3|1|14|49|55|153|215|155|157|150|234|159|162|50|104|32|246|96|81|137|200|48|13|193|55|103|216|88|200|202|16|109|35|27|185|179|236|89|124|74|74|171|136|100|59|54|55|142|131|246|203|101|200|167|149|34|244|201|253|243|11|216\",\"enable_user_status\":false,\"enable_user_tips\":true,\"page_loading_indicator\":\"slider\",\"show_user_menu_avatars\":false,\"invite_only\":false,\"login_required\":false,\"must_approve_users\":false,\"enable_local_logins\":true,\"enable_local_logins_via_email\":true,\"enable_passkeys\":true,\"allow_new_registrations\":true,\"enable_signup_cta\":true,\"facebook_app_id\":\"\",\"auth_skip_create_confirm\":false,\"auth_overrides_email\":false,\"enable_discourse_connect\":false,\"discourse_connect_overrides_avatar\":false,\"hide_email_address_taken\":false,\"min_username_length\":3,\"max_username_length\":20,\"unicode_usernames\":false,\"min_password_length\":10,\"min_admin_password_length\":15,\"email_editable\":true,\"logout_redirect\":\"\",\"full_name_required\":false,\"enable_names\":true,\"invite_expiry_days\":90,\"invites_per_page\":40,\"delete_user_max_post_age\":60,\"delete_all_posts_max\":15,\"prioritize_username_in_ux\":true,\"enable_user_directory\":true,\"allow_anonymous_posting\":false,\"allow_anonymous_likes\":false,\"anonymous_posting_min_trust_level\":1,\"allow_users_to_hide_profile\":true,\"hide_user_profiles_from_public\":false,\"allow_featured_topic_on_user_profiles\":true,\"hide_suspension_reasons\":false,\"ignored_users_count_message_threshold\":5,\"ignored_users_message_gap_days\":365,\"user_selected_primary_groups\":false,\"gravatar_name\":\"Gravatar\",\"gravatar_base_url\":\"www.gravatar.com\",\"gravatar_login_url\":\"/emails\",\"hide_user_activity_tab\":false,\"enable_group_directory\":true,\"enable_category_group_moderation\":false,\"min_post_length\":20,\"min_first_post_length\":20,\"min_personal_message_post_length\":10,\"max_post_length\":32000,\"topic_featured_link_enabled\":true,\"min_topic_views_for_delete_confirm\":5000,\"min_topic_title_length\":15,\"max_topic_title_length\":255,\"enable_filtered_replies_view\":false,\"min_personal_message_title_length\":2,\"allow_uncategorized_topics\":true,\"min_title_similar_length\":10,\"edit_history_visible_to_public\":true,\"delete_removed_posts_after\":24,\"traditional_markdown_linebreaks\":false,\"enable_markdown_typographer\":true,\"enable_markdown_linkify\":true,\"markdown_linkify_tlds\":\"com|net|org|io|onion|co|tv|ru|cn|us|uk|me|de|fr|fi|gov\",\"markdown_typographer_quotation_marks\":\"“|”|‘|’\",\"enable_rich_text_paste\":true,\"suppress_reply_directly_below\":true,\"suppress_reply_directly_above\":true,\"max_reply_history\":1,\"enable_mentions\":true,\"max_users_notified_per_group_mention\":100,\"here_mention\":\"here\",\"newuser_max_embedded_media\":1,\"newuser_max_attachments\":0,\"default_subcategory_on_read_only_category\":false,\"show_pinned_excerpt_mobile\":true,\"show_pinned_excerpt_desktop\":true,\"display_name_on_posts\":false,\"show_time_gap_days\":7,\"short_progress_text_threshold\":10000,\"default_code_lang\":\"auto\",\"autohighlight_all_code\":false,\"highlighted_languages\":\"bash|c|cpp|csharp|css|diff|go|graphql|ini|java|javascript|json|kotlin|lua|makefile|markdown|objectivec|perl|php|php-template|plaintext|python|python-repl|r|ruby|rust|scss|shell|sql|swift|typescript|xml|yaml|wasm\",\"show_copy_button_on_codeblocks\":true,\"enable_emoji\":true,\"enable_emoji_shortcuts\":true,\"emoji_set\":\"apple\",\"emoji_autocomplete_min_chars\":0,\"enable_inline_emoji_translation\":false,\"emoji_deny_list\":\"\",\"code_formatting_style\":\"code-fences\",\"allowed_href_schemes\":\"\",\"watched_words_regular_expressions\":false,\"enable_diffhtml_preview\":false,\"enable_fast_edit\":true,\"enable_quote_copy\":true,\"old_post_notice_days\":14,\"blur_tl0_flagged_posts_media\":true,\"email_time_window_mins\":10,\"disable_digest_emails\":false,\"email_in\":false,\"enable_imap\":false,\"enable_smtp\":false,\"disable_emails\":\"non-staff\",\"bounce_score_threshold\":4,\"enable_secondary_emails\":true,\"max_image_size_kb\":4096,\"max_attachment_size_kb\":8192,\"authorized_extensions\":\"jpg|jpeg|png|gif|heic|heif|webp|avif\",\"authorized_extensions_for_staff\":\"\",\"max_image_width\":690,\"max_image_height\":500,\"prevent_anons_from_downloading_files\":false,\"secure_uploads\":false,\"secure_uploads_pm_only\":false,\"enable_s3_uploads\":false,\"allow_profile_backgrounds\":true,\"allow_uploaded_avatars\":0,\"default_avatars\":\"\",\"avatar_sizes\":\"24|48|72|96|144|288\",\"external_system_avatars_enabled\":true,\"external_system_avatars_url\":\"https://avatars.discourse-cdn.com/v4/letter/{first_letter}/{color}/{size}.png\",\"external_emoji_url\":\"https://emoji.discourse-cdn.com\",\"selectable_avatars_mode\":\"disabled\",\"selectable_avatars\":\"\",\"allow_staff_to_upload_any_file_in_pm\":true,\"simultaneous_uploads\":5,\"composer_media_optimization_image_enabled\":true,\"composer_media_optimization_image_bytes_optimization_threshold\":524288,\"composer_media_optimization_image_resize_dimensions_threshold\":1920,\"composer_media_optimization_image_resize_width_target\":1920,\"composer_media_optimization_image_resize_pre_multiply\":false,\"composer_media_optimization_image_resize_linear_rgb\":false,\"composer_media_optimization_image_encode_quality\":75,\"composer_media_optimization_debug_mode\":false,\"composer_ios_media_optimisation_image_enabled\":false,\"video_thumbnails_enabled\":true,\"min_trust_level_to_allow_profile_background\":0,\"min_trust_level_to_allow_user_card_background\":0,\"min_trust_level_to_allow_ignore\":2,\"tl1_requires_read_posts\":30,\"tl3_links_no_follow\":false,\"tl4_delete_posts_and_topics\":4,\"enforce_second_factor\":\"no\",\"moderators_manage_categories_and_groups\":false,\"moderators_change_post_ownership\":false,\"moderators_view_emails\":false,\"use_admin_ip_allowlist\":false,\"allowed_iframes\":\"https://www.google.com/maps/embed?|https://www.openstreetmap.org/export/embed.html?|https://calendar.google.com/calendar/embed?|https://codepen.io/|http://community.tokenlists.org/discobot/certificate.svg|https://community.tokenlists.org/discobot/certificate.svg\",\"can_permanently_delete\":false,\"max_oneboxes_per_post\":50,\"reviewable_claiming\":\"disabled\",\"reviewable_default_topics\":false,\"reviewable_default_visibility\":\"low\",\"reviewable_revision_reasons\":\"Duplicate|Does not meet posting guidelines\",\"alert_admins_if_errors_per_minute\":0,\"alert_admins_if_errors_per_hour\":0,\"max_prints_per_hour_per_user\":5,\"invite_link_max_redemptions_limit\":5000,\"invite_link_max_redemptions_limit_users\":10,\"max_allowed_secondary_emails\":10,\"enable_chunked_encoding\":true,\"long_polling_base_url\":\"/\",\"background_polling_interval\":60000,\"polling_interval\":3000,\"anon_polling_interval\":25000,\"flush_timings_secs\":60,\"verbose_localization\":false,\"max_new_topics\":500,\"enable_safe_mode\":true,\"experimental_hashtag_search_result_limit\":20,\"experimental_form_templates\":false,\"experimental_new_new_view_groups\":\"\",\"experimental_glimmer_topic_list_groups\":\"\",\"enable_experimental_lightbox\":false,\"experimental_topics_filter\":false,\"glimmer_header_mode\":\"auto\",\"warn_critical_js_deprecations\":true,\"warn_critical_js_deprecations_message\":\"\",\"navigation_menu\":\"header dropdown\",\"default_navigation_menu_categories\":\"\",\"default_navigation_menu_tags\":\"\",\"default_sidebar_switch_panel_position\":\"bottom\",\"tos_url\":\"\",\"privacy_policy_url\":\"\",\"faq_url\":\"\",\"enable_backups\":true,\"backup_location\":\"s3\",\"maximum_backups\":3,\"remove_older_backups\":\"\",\"include_s3_uploads_in_backups\":true,\"use_pg_headlines_for_excerpt\":false,\"min_search_term_length\":3,\"log_search_queries\":true,\"search_default_sort_order\":0,\"version_checks\":false,\"suppress_uncategorized_badge\":true,\"header_dropdown_category_count\":8,\"slug_generation_method\":\"ascii\",\"summary_timeline_button\":false,\"summarization_strategy\":\"\",\"topic_views_heat_low\":1000,\"topic_views_heat_medium\":2000,\"topic_views_heat_high\":3500,\"topic_post_like_heat_low\":0.5,\"topic_post_like_heat_medium\":1.0,\"topic_post_like_heat_high\":2.0,\"history_hours_low\":12,\"history_hours_medium\":24,\"history_hours_high\":48,\"cold_age_days_low\":14,\"cold_age_days_medium\":90,\"cold_age_days_high\":180,\"global_notice\":\"\",\"general_category_id\":-1,\"default_composer_category\":\"\",\"view_user_route\":\"summary\",\"admin_quick_start_topic_id\":9,\"bootstrap_mode_min_users\":50,\"bootstrap_mode_enabled\":false,\"automatically_unpin_topics\":true,\"read_time_word_count\":500,\"topic_page_title_includes_category\":true,\"enable_powered_by_discourse\":false,\"penalty_include_post_message\":false,\"svg_icon_subset\":\"\",\"allow_bulk_invite\":true,\"show_category_definitions_in_topic_lists\":false,\"use_polymorphic_bookmarks\":true,\"suggest_weekends_in_date_pickers\":true,\"disable_mailing_list_mode\":true,\"default_topics_automatic_unpin\":true,\"mute_all_categories_by_default\":false,\"enable_offline_indicator\":false,\"tagging_enabled\":false,\"tag_style\":\"simple\",\"max_tags_per_topic\":5,\"enable_max_tags_per_email_subject\":false,\"max_tags_per_email_subject\":5,\"max_tag_length\":20,\"min_trust_level_to_tag_topics\":0,\"tag_topic_allowed_groups\":\"1|2|10\",\"max_tag_search_results\":5,\"max_tags_in_filter_list\":30,\"tags_sort_alphabetically\":false,\"tags_listed_by_group\":false,\"suppress_overlapping_tags_in_list\":false,\"remove_muted_tags_from_latest\":\"always\",\"watched_precedence_over_muted\":false,\"force_lowercase_tags\":true,\"dashboard_hidden_reports\":\"\",\"dashboard_visible_tabs\":\"moderation|security|reports|features\",\"dashboard_general_tab_activity_metrics\":\"page_view_total_reqs|visits|time_to_first_response|likes|flags|user_to_user_private_messages_with_replies\",\"discourse_automation_enabled\":false,\"chat_enabled\":false,\"enable_public_channels\":true,\"chat_threads_enabled\":false,\"chat_channel_retention_days\":90,\"chat_max_direct_message_users\":20,\"chat_dm_retention_days\":0,\"chat_allow_archiving_channels\":false,\"chat_default_channel_id\":\"\",\"default_emoji_reactions\":\"+1|heart|tada\",\"chat_minimum_message_length\":1,\"chat_maximum_message_length\":6000,\"chat_allow_uploads\":true,\"max_chat_auto_joined_users\":10000,\"max_mentions_per_chat_message\":5,\"chat_separate_sidebar_mode\":\"never\",\"chat_editing_grace_period\":30,\"chat_editing_grace_period_max_diff_low_trust\":10,\"chat_editing_grace_period_max_diff_high_trust\":40,\"chat_preferred_mobile_index\":\"channels\",\"checklist_enabled\":true,\"discourse_adplugin_enabled\":true,\"no_ads_for_personal_messages\":true,\"no_ads_for_restricted_categories\":false,\"no_ads_for_categories\":\"\",\"no_ads_for_tags\":\"\",\"house_ads_after_nth_topic\":20,\"house_ads_after_nth_post\":20,\"house_ads_frequency\":100,\"adsense_publisher_code\":\"\",\"adsense_through_trust_level\":2,\"adsense_topic_list_top_code\":\"\",\"adsense_topic_list_top_ad_sizes\":\"728*90 - leaderboard\",\"adsense_mobile_topic_list_top_code\":\"\",\"adsense_mobile_topic_list_top_ad_size\":\"responsive\",\"adsense_topic_above_post_stream_code\":\"\",\"adsense_topic_above_post_stream_ad_sizes\":\"728*90 - leaderboard\",\"adsense_mobile_topic_above_post_stream_code\":\"\",\"adsense_mobile_topic_above_post_stream_ad_size\":\"responsive\",\"adsense_topic_above_suggested_code\":\"\",\"adsense_topic_above_suggested_ad_sizes\":\"728*90 - leaderboard\",\"adsense_mobile_topic_above_suggested_code\":\"\",\"adsense_mobile_topic_above_suggested_ad_size\":\"responsive\",\"adsense_post_bottom_code\":\"\",\"adsense_post_bottom_ad_sizes\":\"728*90 - leaderboard\",\"adsense_mobile_post_bottom_code\":\"\",\"adsense_mobile_post_bottom_ad_size\":\"responsive\",\"adsense_nth_post_code\":\"\",\"dfp_publisher_id\":\"\",\"dfp_publisher_id_mobile\":\"\",\"dfp_through_trust_level\":2,\"dfp_topic_list_top_code\":\"\",\"dfp_topic_list_top_ad_sizes\":\"728*90 - leaderboard\",\"dfp_mobile_topic_list_top_code\":\"\",\"dfp_mobile_topic_list_top_ad_sizes\":\"320*50 - mobile leaderboard\",\"dfp_target_topic_list_top_key_code\":\"\",\"dfp_target_topic_list_top_value_code\":\"\",\"dfp_topic_above_post_stream_code\":\"\",\"dfp_topic_above_post_stream_ad_sizes\":\"728*90 - leaderboard\",\"dfp_mobile_topic_above_post_stream_code\":\"\",\"dfp_mobile_topic_above_post_stream_ad_sizes\":\"320*50 - mobile leaderboard\",\"dfp_target_topic_above_post_stream_key_code\":\"\",\"dfp_target_topic_above_post_stream_value_code\":\"\",\"dfp_topic_above_suggested_code\":\"\",\"dfp_topic_above_suggested_ad_sizes\":\"728*90 - leaderboard\",\"dfp_mobile_topic_above_suggested_code\":\"\",\"dfp_mobile_topic_above_suggested_ad_sizes\":\"320*50 - mobile leaderboard\",\"dfp_target_topic_above_suggested_key_code\":\"\",\"dfp_target_topic_above_suggested_value_code\":\"\",\"dfp_nth_post_code\":\"\",\"dfp_post_bottom_code\":\"\",\"dfp_post_bottom_ad_sizes\":\"728*90 - leaderboard\",\"dfp_mobile_post_bottom_code\":\"\",\"dfp_mobile_post_bottom_ad_sizes\":\"320*50 - mobile leaderboard\",\"dfp_target_post_bottom_key_code\":\"\",\"dfp_target_post_bottom_value_code\":\"\",\"amazon_through_trust_level\":2,\"amazon_display_groups\":\"10|11|12\",\"amazon_topic_list_top_src_code\":\"\",\"amazon_topic_list_top_ad_width_code\":\"\",\"amazon_topic_list_top_ad_height_code\":\"\",\"amazon_mobile_topic_list_top_src_code\":\"\",\"amazon_mobile_topic_list_top_ad_width_code\":\"\",\"amazon_mobile_topic_list_top_ad_height_code\":\"\",\"amazon_topic_above_post_stream_src_code\":\"\",\"amazon_topic_above_post_stream_ad_width_code\":\"\",\"amazon_topic_above_post_stream_ad_height_code\":\"\",\"amazon_mobile_topic_above_post_stream_src_code\":\"\",\"amazon_mobile_topic_above_post_stream_ad_width_code\":\"\",\"amazon_mobile_topic_above_post_stream_ad_height_code\":\"\",\"amazon_topic_above_suggested_src_code\":\"\",\"amazon_topic_above_suggested_ad_width_code\":\"\",\"amazon_topic_above_suggested_ad_height_code\":\"\",\"amazon_mobile_topic_above_suggested_src_code\":\"\",\"amazon_mobile_topic_above_suggested_ad_width_code\":\"\",\"amazon_mobile_topic_above_suggested_ad_height_code\":\"\",\"amazon_post_bottom_src_code\":\"\",\"amazon_nth_post_code\":\"\",\"amazon_post_bottom_ad_width_code\":\"\",\"amazon_post_bottom_ad_height_code\":\"\",\"amazon_mobile_post_bottom_src_code\":\"\",\"amazon_mobile_post_bottom_ad_width_code\":\"\",\"amazon_mobile_post_bottom_ad_height_code\":\"\",\"carbonads_serve_id\":\"\",\"carbonads_placement\":\"\",\"carbonads_through_trust_level\":2,\"carbonads_display_groups\":\"10|11|12\",\"carbonads_topic_list_top_enabled\":false,\"carbonads_above_post_stream_enabled\":false,\"adbutler_publisher_id\":\"\",\"adbutler_through_trust_level\":2,\"adbutler_display_groups\":\"10|11|12\",\"adbutler_topic_list_top_zone_id\":\"\",\"adbutler_mobile_topic_list_top_zone_id\":\"\",\"adbutler_topic_above_post_stream_zone_id\":\"\",\"adbutler_mobile_topic_above_post_stream_zone_id\":\"\",\"adbutler_topic_above_suggested_zone_id\":\"\",\"adbutler_mobile_topic_above_suggested_zone_id\":\"\",\"adbutler_post_bottom_zone_id\":\"\",\"adbutler_mobile_post_bottom_zone_id\":\"\",\"adbutler_nth_post\":4,\"adbutler_adserver_hostname\":\"servedbyadbutler.com\",\"affiliate_enabled\":true,\"affiliate_amazon_ca\":\"\",\"affiliate_amazon_cn\":\"\",\"affiliate_amazon_co_jp\":\"\",\"affiliate_amazon_co_uk\":\"\",\"affiliate_amazon_com\":\"\",\"affiliate_amazon_com_au\":\"\",\"affiliate_amazon_com_br\":\"\",\"affiliate_amazon_com_mx\":\"\",\"affiliate_amazon_de\":\"\",\"affiliate_amazon_es\":\"\",\"affiliate_amazon_fr\":\"\",\"affiliate_amazon_in\":\"\",\"affiliate_amazon_it\":\"\",\"affiliate_amazon_nl\":\"\",\"affiliate_ldlc_com\":\"\",\"discourse_ai_enabled\":true,\"ai_toxicity_enabled\":false,\"ai_sentiment_enabled\":false,\"composer_ai_helper_enabled\":false,\"ai_helper_allowed_in_pm\":false,\"ai_helper_enabled_features\":\"suggestions|context_menu\",\"ai_auto_image_caption_allowed_groups\":\"10\",\"ai_embeddings_enabled\":true,\"ai_embeddings_semantic_related_topics_enabled\":true,\"ai_embeddings_semantic_search_enabled\":false,\"ai_embeddings_semantic_quick_search_enabled\":false,\"ai_bot_enabled\":false,\"ai_bot_enable_chat_warning\":false,\"ai_bot_enabled_chat_bots\":\"gpt-3.5-turbo\",\"ai_bot_add_to_header\":true,\"assign_enabled\":false,\"assigns_public\":false,\"assigns_user_url_path\":\"/u/{username}/activity/assigned\",\"remind_assigns_frequency\":0,\"pending_assign_reminder_threshold\":2,\"max_assigned_topics\":10,\"assign_allowed_on_groups\":\"3\",\"enable_assign_status\":false,\"assign_statuses\":\"New|In Progress|Done\",\"cakeday_enabled\":true,\"cakeday_emoji\":\"cake\",\"cakeday_birthday_enabled\":true,\"cakeday_birthday_emoji\":\"birthday\",\"calendar_enabled\":false,\"holiday_calendar_topic_id\":\"\",\"holiday_status_emoji\":\"date\",\"all_day_event_start_time\":\"\",\"all_day_event_end_time\":\"\",\"calendar_categories\":\"\",\"calendar_categories_outlet\":\"discovery-list-container-top\",\"working_days\":\"Monday|Tuesday|Wednesday|Thursday|Friday\",\"working_day_start_hour\":8,\"working_day_end_hour\":17,\"close_to_working_day_hours_extension\":2,\"enable_timezone_offset_for_calendar_events\":false,\"split_grouped_events_by_timezone_threshold\":0,\"default_timezone_offset_user_option\":false,\"discourse_post_event_enabled\":false,\"discourse_post_event_allowed_on_groups\":\"\",\"display_post_event_date_on_topic_title\":true,\"use_local_event_date\":false,\"discourse_post_event_allowed_custom_fields\":\"\",\"events_calendar_categories\":\"\",\"sort_categories_by_event_start_date_enabled\":false,\"disable_resorting_on_categories_enabled\":false,\"sidebar_show_upcoming_events\":true,\"events_max_rows\":2,\"map_events_to_color\":\"[]\",\"include_expired_events_on_calendar\":false,\"data_explorer_enabled\":false,\"details_enabled\":true,\"docs_enabled\":false,\"docs_categories\":\"\",\"show_tags_by_group\":false,\"docs_tag_groups\":\"\",\"docs_tags\":\"\",\"docs_add_solved_filter\":false,\"docs_add_to_top_menu\":false,\"docs_add_search_menu_tip\":true,\"discourse_gamification_enabled\":false,\"discourse_graphviz_enabled\":false,\"lazy_videos_enabled\":true,\"lazy_youtube_enabled\":true,\"lazy_vimeo_enabled\":true,\"lazy_tiktok_enabled\":false,\"discourse_local_dates_email_format\":\"YYYY-MM-DDTHH:mm:ss[Z]\",\"discourse_local_dates_enabled\":true,\"discourse_local_dates_default_formats\":\"LLL|LTS|LL|LLLL\",\"discourse_local_dates_default_timezones\":\"Europe/Paris|America/Los_Angeles\",\"discourse_math_enabled\":false,\"discourse_math_provider\":\"mathjax\",\"discourse_math_zoom_on_hover\":false,\"discourse_math_enable_accessibility\":false,\"discourse_math_enable_asciimath\":false,\"microsoft_auth_enabled\":false,\"discourse_narrative_bot_enabled\":true,\"oauth2_enabled\":false,\"oauth2_button_title\":\"with OAuth2\",\"patreon_enabled\":false,\"patreon_login_enabled\":false,\"patreon_donation_prompt_enabled\":false,\"patreon_donation_prompt_show_after_topics\":20,\"patreon_donation_prompt_campaign_url\":\"\",\"policy_enabled\":false,\"policy_restrict_to_staff_posts\":true,\"post_voting_enabled\":false,\"post_voting_comment_limit_per_post\":10,\"post_voting_comment_max_raw_length\":600,\"post_voting_enable_likes_on_answers\":false,\"min_trust_to_flag_posts_voting_comments\":1,\"presence_enabled\":true,\"presence_max_users_shown\":5,\"discourse_reactions_enabled\":false,\"discourse_reactions_like_icon\":\"heart\",\"discourse_reactions_reaction_for_like\":\"heart\",\"discourse_reactions_enabled_reactions\":\"+1|laughing|open_mouth|clap|confetti_ball|hugs\",\"discourse_reactions_desaturated_reaction_panel\":false,\"solved_enabled\":true,\"allow_solved_on_all_topics\":false,\"accept_all_solutions_trust_level\":4,\"empty_box_on_unsolved\":false,\"show_filter_by_solved_status\":false,\"discourse_subscriptions_extra_nav_subscribe\":false,\"discourse_subscriptions_pricing_table_id\":\"\",\"discourse_subscriptions_pricing_table_enabled\":false,\"discourse_subscriptions_public_key\":\"\",\"discourse_subscriptions_currency\":\"USD\",\"discourse_subscriptions_campaign_enabled\":false,\"discourse_subscriptions_campaign_goal\":100,\"discourse_subscriptions_campaign_type\":\"Amount\",\"discourse_subscriptions_campaign_banner_location\":\"Top\",\"discourse_subscriptions_campaign_banner_bg_image\":\"\",\"discourse_subscriptions_campaign_banner_shadow_color\":\"2F70AC\",\"discourse_subscriptions_campaign_show_contributors\":true,\"discourse_subscriptions_campaign_product\":\"\",\"discourse_subscriptions_campaign_amount_raised\":0.0,\"discourse_subscriptions_campaign_subscribers\":0,\"discourse_templates_enabled\":false,\"voting_enabled\":false,\"voting_show_who_voted\":true,\"voting_show_votes_on_profile\":true,\"user_notes_enabled\":false,\"yearly_review_enabled\":false,\"zendesk_url\":\"https://your-url.zendesk.com/api/v2\",\"zendesk_enabled\":false,\"enable_markdown_footnotes\":true,\"display_footnotes_inline\":true,\"hide_admin_customize_themes\":false,\"hide_admin_customize_colors\":false,\"poll_enabled\":true,\"poll_maximum_options\":20,\"poll_minimum_trust_level_to_create\":1,\"poll_groupable_user_fields\":\"\",\"poll_export_data_explorer_query_id\":-16,\"poll_default_public\":true,\"spoiler_enabled\":true,\"available_locales\":\"[{\\\"name\\\":\\\"اللغة العربية\\\",\\\"value\\\":\\\"ar\\\"},{\\\"name\\\":\\\"беларуская мова\\\",\\\"value\\\":\\\"be\\\"},{\\\"name\\\":\\\"български език\\\",\\\"value\\\":\\\"bg\\\"},{\\\"name\\\":\\\"bosanski jezik\\\",\\\"value\\\":\\\"bs_BA\\\"},{\\\"name\\\":\\\"català\\\",\\\"value\\\":\\\"ca\\\"},{\\\"name\\\":\\\"čeština\\\",\\\"value\\\":\\\"cs\\\"},{\\\"name\\\":\\\"dansk\\\",\\\"value\\\":\\\"da\\\"},{\\\"name\\\":\\\"Deutsch\\\",\\\"value\\\":\\\"de\\\"},{\\\"name\\\":\\\"ελληνικά\\\",\\\"value\\\":\\\"el\\\"},{\\\"name\\\":\\\"English (US)\\\",\\\"value\\\":\\\"en\\\"},{\\\"name\\\":\\\"English (UK)\\\",\\\"value\\\":\\\"en_GB\\\"},{\\\"name\\\":\\\"Español\\\",\\\"value\\\":\\\"es\\\"},{\\\"name\\\":\\\"eesti\\\",\\\"value\\\":\\\"et\\\"},{\\\"name\\\":\\\"فارسی\\\",\\\"value\\\":\\\"fa_IR\\\"},{\\\"name\\\":\\\"suomi\\\",\\\"value\\\":\\\"fi\\\"},{\\\"name\\\":\\\"Français\\\",\\\"value\\\":\\\"fr\\\"},{\\\"name\\\":\\\"galego\\\",\\\"value\\\":\\\"gl\\\"},{\\\"name\\\":\\\"עברית\\\",\\\"value\\\":\\\"he\\\"},{\\\"name\\\":\\\"hrvatski jezik\\\",\\\"value\\\":\\\"hr\\\"},{\\\"name\\\":\\\"magyar\\\",\\\"value\\\":\\\"hu\\\"},{\\\"name\\\":\\\"Հայերեն\\\",\\\"value\\\":\\\"hy\\\"},{\\\"name\\\":\\\"Indonesian\\\",\\\"value\\\":\\\"id\\\"},{\\\"name\\\":\\\"Italiano\\\",\\\"value\\\":\\\"it\\\"},{\\\"name\\\":\\\"日本語\\\",\\\"value\\\":\\\"ja\\\"},{\\\"name\\\":\\\"한국어\\\",\\\"value\\\":\\\"ko\\\"},{\\\"name\\\":\\\"lietuvių kalba\\\",\\\"value\\\":\\\"lt\\\"},{\\\"name\\\":\\\"latviešu valoda\\\",\\\"value\\\":\\\"lv\\\"},{\\\"name\\\":\\\"Norsk bokmål\\\",\\\"value\\\":\\\"nb_NO\\\"},{\\\"name\\\":\\\"Nederlands\\\",\\\"value\\\":\\\"nl\\\"},{\\\"name\\\":\\\"polski\\\",\\\"value\\\":\\\"pl_PL\\\"},{\\\"name\\\":\\\"Português\\\",\\\"value\\\":\\\"pt\\\"},{\\\"name\\\":\\\"Português (BR)\\\",\\\"value\\\":\\\"pt_BR\\\"},{\\\"name\\\":\\\"limba română\\\",\\\"value\\\":\\\"ro\\\"},{\\\"name\\\":\\\"Русский\\\",\\\"value\\\":\\\"ru\\\"},{\\\"name\\\":\\\"slovenčina\\\",\\\"value\\\":\\\"sk\\\"},{\\\"name\\\":\\\"slovenščina\\\",\\\"value\\\":\\\"sl\\\"},{\\\"name\\\":\\\"Shqip\\\",\\\"value\\\":\\\"sq\\\"},{\\\"name\\\":\\\"српски језик\\\",\\\"value\\\":\\\"sr\\\"},{\\\"name\\\":\\\"svenska\\\",\\\"value\\\":\\\"sv\\\"},{\\\"name\\\":\\\"Kiswahili\\\",\\\"value\\\":\\\"sw\\\"},{\\\"name\\\":\\\"తెలుగు\\\",\\\"value\\\":\\\"te\\\"},{\\\"name\\\":\\\"ไทย\\\",\\\"value\\\":\\\"th\\\"},{\\\"name\\\":\\\"Türkçe\\\",\\\"value\\\":\\\"tr_TR\\\"},{\\\"name\\\":\\\"ئۇيغۇرچە\\\",\\\"value\\\":\\\"ug\\\"},{\\\"name\\\":\\\"українська мова\\\",\\\"value\\\":\\\"uk\\\"},{\\\"name\\\":\\\"اردو\\\",\\\"value\\\":\\\"ur\\\"},{\\\"name\\\":\\\"tiếng Việt\\\",\\\"value\\\":\\\"vi\\\"},{\\\"name\\\":\\\"简体中文\\\",\\\"value\\\":\\\"zh_CN\\\"},{\\\"name\\\":\\\"繁體中文\\\",\\\"value\\\":\\\"zh_TW\\\"}]\",\"require_invite_code\":false,\"site_logo_url\":\"https://global.discourse-cdn.com/standard17/uploads/uniswap/original/1X/f1c01738d133b1015b289b71e54bd647ff9539b9.png\",\"site_logo_small_url\":\"https://global.discourse-cdn.com/standard17/uploads/uniswap/original/1X/23a73186634507368ebe86a40df758afdbd930a5.png\",\"site_mobile_logo_url\":\"https://global.discourse-cdn.com/standard17/uploads/uniswap/original/1X/f1c01738d133b1015b289b71e54bd647ff9539b9.png\",\"site_favicon_url\":\"https://global.discourse-cdn.com/standard17/uploads/uniswap/optimized/1X/23a73186634507368ebe86a40df758afdbd930a5_2_32x32.png\",\"site_logo_dark_url\":\"\",\"site_logo_small_dark_url\":\"\",\"site_mobile_logo_dark_url\":\"\"}","customHTML":"{\"top\":\"\",\"footer\":\"\"}","banner":"{}","customEmoji":"[]","isReadOnly":"false","isStaffWritesOnly":"false","activatedThemes":"{\"2\":\"Light\"}","currentUser":"{\"id\":579,\"username\":\"bombastictranz\",\"name\":\"Romeo Rosete\",\"avatar_template\":\"/user_avatar/community.tokenlists.org/bombastictranz/{size}/405_2.png\",\"unread_notifications\":0,\"unread_high_priority_notifications\":1,\"all_unread_notifications_count\":0,\"read_first_notification\":true,\"admin\":false,\"notification_channel_position\":3,\"moderator\":false,\"staff\":false,\"whisperer\":false,\"title\":\"\",\"any_posts\":false,\"trust_level\":0,\"can_send_private_email_messages\":false,\"can_send_private_messages\":false,\"can_upload_avatar\":true,\"can_edit\":true,\"can_delete_account\":true,\"can_post_anonymously\":false,\"can_ignore_users\":false,\"can_delete_all_posts_and_topics\":false,\"can_summarize\":false,\"custom_fields\":{},\"muted_category_ids\":[],\"indirectly_muted_category_ids\":[],\"regular_category_ids\":[],\"tracked_category_ids\":[],\"watched_first_post_category_ids\":[],\"watched_category_ids\":[],\"watched_tags\":[],\"watching_first_post_tags\":[],\"tracked_tags\":[],\"muted_tags\":[],\"regular_tags\":[],\"dismissed_banner_key\":null,\"is_anonymous\":false,\"reviewable_count\":0,\"unseen_reviewable_count\":0,\"new_personal_messages_notifications_count\":0,\"read_faq\":false,\"previous_visit_at\":null,\"seen_notification_id\":1757,\"flair_group_id\":null,\"can_create_topic\":false,\"link_posting_access\":\"full\",\"top_category_ids\":[],\"groups\":[{\"id\":10,\"name\":\"trust_level_0\",\"has_messages\":false}],\"second_factor_enabled\":false,\"ignored_users\":[],\"featured_topic\":null,\"do_not_disturb_until\":null,\"can_review\":false,\"draft_count\":0,\"pending_posts_count\":1,\"grouped_unread_notifications\":{\"6\":1},\"sidebar_category_ids\":[],\"sidebar_sections\":[{\"id\":1,\"title\":\"Community\",\"links\":[{\"id\":1,\"name\":\"Topics\",\"value\":\"/latest\",\"icon\":\"layer-group\",\"external\":false,\"segment\":\"primary\"},{\"id\":2,\"name\":\"My Posts\",\"value\":\"/my/activity\",\"icon\":\"user\",\"external\":false,\"segment\":\"primary\"},{\"id\":3,\"name\":\"Review\",\"value\":\"/review\",\"icon\":\"flag\",\"external\":false,\"segment\":\"primary\"},{\"id\":4,\"name\":\"Admin\",\"value\":\"/admin\",\"icon\":\"wrench\",\"external\":false,\"segment\":\"primary\"},{\"id\":5,\"name\":\"Users\",\"value\":\"/u\",\"icon\":\"users\",\"external\":false,\"segment\":\"secondary\"},{\"id\":6,\"name\":\"About\",\"value\":\"/about\",\"icon\":\"info-circle\",\"external\":false,\"segment\":\"secondary\"},{\"id\":7,\"name\":\"FAQ\",\"value\":\"/faq\",\"icon\":\"question-circle\",\"external\":false,\"segment\":\"secondary\"},{\"id\":8,\"name\":\"Groups\",\"value\":\"/g\",\"icon\":\"user-friends\",\"external\":false,\"segment\":\"secondary\"},{\"id\":9,\"name\":\"Badges\",\"value\":\"/badges\",\"icon\":\"certificate\",\"external\":false,\"segment\":\"secondary\"}],\"slug\":\"community\",\"public\":true,\"section_type\":\"community\"}],\"new_new_view_enabled\":false,\"use_experimental_topic_bulk_actions\":false,\"use_admin_sidebar\":false,\"can_view_raw_email\":false,\"use_glimmer_topic_list\":false,\"show_dfp_ads\":true,\"show_adsense_ads\":true,\"show_carbon_ads\":true,\"show_amazon_ads\":true,\"show_adbutler_ads\":true,\"show_to_groups\":true,\"user_allowed_ai_auto_image_captions\":true,\"can_use_assistant\":false,\"can_use_assistant_in_post\":false,\"can_use_custom_prompts\":false,\"can_share_ai_bot_conversations\":false,\"can_create_poll\":false,\"user_option\":{\"mailing_list_mode\":false,\"external_links_in_new_tab\":false,\"enable_quoting\":true,\"dynamic_favicon\":false,\"automatically_unpin_topics\":true,\"likes_notifications_disabled\":false,\"hide_profile_and_presence\":false,\"title_count_mode\":\"notifications\",\"enable_defer\":false,\"timezone\":\"America/Toronto\",\"skip_new_user_tips\":false,\"default_calendar\":\"none_selected\",\"bookmark_auto_delete_preference\":3,\"seen_popups\":[1,2],\"should_be_redirected_to_top\":false,\"treat_as_new_topic_start_date\":\"2024-05-30T15:58:56.270Z\",\"sidebar_link_to_filtered_list\":false,\"sidebar_show_count_of_new_items\":false}}","topicTrackingStates":"[]","topicTrackingStateMeta":"{\"/latest\":0,\"/recover\":0,\"/delete\":0,\"/destroy\":0,\"/new\":0,\"/unread\":0,\"/unread/579\":4}","topic_list":"{\"users\":[{\"id\":-1,\"username\":\"system\",\"name\":\"system\",\"avatar_template\":\"https://global.discourse-cdn.com/standard17/uploads/uniswap/original/1X/23a73186634507368ebe86a40df758afdbd930a5.png\",\"admin\":true,\"moderator\":true,\"trust_level\":4},{\"id\":39,\"username\":\"somidax\",\"name\":\"SOMIDAX\",\"avatar_template\":\"https://avatars.discourse-cdn.com/v4/letter/s/65b543/{size}.png\",\"trust_level\":1},{\"id\":82,\"username\":\"BitballErc20\",\"name\":\"Bitball Ecosystem - BTB \\u0026 BTRS\",\"avatar_template\":\"https://avatars.discourse-cdn.com/v4/letter/b/9fc348/{size}.png\",\"trust_level\":0},{\"id\":91,\"username\":\"coinwaycan\",\"name\":\"Coinwaycan\",\"avatar_template\":\"https://avatars.discourse-cdn.com/v4/letter/c/82dd89/{size}.png\",\"trust_level\":0},{\"id\":113,\"username\":\"aurus\",\"name\":\"Aurus Technologies Ltd.\",\"avatar_template\":\"/user_avatar/community.tokenlists.org/aurus/{size}/71_2.png\",\"trust_level\":1},{\"id\":134,\"username\":\"fortytwo\",\"name\":\"\",\"avatar_template\":\"https://avatars.discourse-cdn.com/v4/letter/f/f9ae1b/{size}.png\",\"trust_level\":0},{\"id\":140,\"username\":\"trashiest\",\"name\":\"Trashiest\",\"avatar_template\":\"https://avatars.discourse-cdn.com/v4/letter/t/13edae/{size}.png\",\"trust_level\":0},{\"id\":144,\"username\":\"VANDY\",\"name\":\"VANDY CARLOS\",\"avatar_template\":\"https://avatars.discourse-cdn.com/v4/letter/v/85e7bf/{size}.png\",\"trust_level\":0},{\"id\":24,\"username\":\"MORECOIN\",\"name\":\"\",\"avatar_template\":\"/user_avatar/community.tokenlists.org/morecoin/{size}/45_2.png\",\"trust_level\":1},{\"id\":35,\"username\":\"RexShinka\",\"name\":\"Rex Hygate\",\"avatar_template\":\"https://avatars.discourse-cdn.com/v4/letter/r/9fc348/{size}.png\",\"trust_level\":1},{\"id\":154,\"username\":\"DeFiJman\",\"name\":\"DeFi Jman\",\"avatar_template\":\"/user_avatar/community.tokenlists.org/defijman/{size}/88_2.png\",\"trust_level\":1},{\"id\":18,\"username\":\"tkowalczyk\",\"name\":\"Tomasz Kowalczyk\",\"avatar_template\":\"/user_avatar/community.tokenlists.org/tkowalczyk/{size}/16_2.png\",\"trust_level\":1},{\"id\":38,\"username\":\"1PLANET\",\"name\":\"Jesse\",\"avatar_template\":\"/user_avatar/community.tokenlists.org/1planet/{size}/94_2.png\",\"trust_level\":1},{\"id\":159,\"username\":\"dovesfly\",\"name\":\"\",\"avatar_template\":\"https://avatars.discourse-cdn.com/v4/letter/d/91b2a8/{size}.png\",\"trust_level\":0},{\"id\":162,\"username\":\"Ravage\",\"name\":\"J\",\"avatar_template\":\"https://avatars.discourse-cdn.com/v4/letter/r/35a633/{size}.png\",\"trust_level\":0},{\"id\":164,\"username\":\"zykjqk\",\"name\":\"Zykjqk\",\"avatar_template\":\"/user_avatar/community.tokenlists.org/zykjqk/{size}/96_2.png\",\"trust_level\":0},{\"id\":128,\"username\":\"Ben\",\"name\":\"\",\"avatar_template\":\"https://avatars.discourse-cdn.com/v4/letter/b/df788c/{size}.png\",\"trust_level\":1},{\"id\":158,\"username\":\"Julia11\",\"name\":\"Julia Zajacova\",\"avatar_template\":\"/user_avatar/community.tokenlists.org/julia11/{size}/112_2.png\",\"trust_level\":1},{\"id\":173,\"username\":\"Dave85\",\"name\":\"Dave\",\"avatar_template\":\"/user_avatar/community.tokenlists.org/dave85/{size}/108_2.png\",\"trust_level\":0},{\"id\":98,\"username\":\"wims\",\"name\":\"Bernard Sibanda\",\"avatar_template\":\"/user_avatar/community.tokenlists.org/wims/{size}/62_2.png\",\"trust_level\":1},{\"id\":185,\"username\":\"jragosa\",\"name\":\"Jimmy Ragosa\",\"avatar_template\":\"/user_avatar/community.tokenlists.org/jragosa/{size}/119_2.png\",\"trust_level\":0},{\"id\":188,\"username\":\"admazzola\",\"name\":\"Admazzola\",\"avatar_template\":\"/user_avatar/community.tokenlists.org/admazzola/{size}/121_2.png\",\"trust_level\":0},{\"id\":165,\"username\":\"brianliu1113\",\"name\":\"Brianliu1113\",\"avatar_template\":\"/user_avatar/community.tokenlists.org/brianliu1113/{size}/101_2.png\",\"trust_level\":1},{\"id\":166,\"username\":\"Prabu\",\"name\":\"prabakaran\",\"avatar_template\":\"https://avatars.discourse-cdn.com/v4/letter/p/f1d935/{size}.png\",\"trust_level\":0},{\"id\":178,\"username\":\"lorenzo8769\",\"name\":\"Laurent\",\"avatar_template\":\"/user_avatar/community.tokenlists.org/lorenzo8769/{size}/109_2.png\",\"trust_level\":0},{\"id\":213,\"username\":\"Pooh\",\"name\":\"Talent Developer\",\"avatar_template\":\"https://avatars.discourse-cdn.com/v4/letter/p/f05b48/{size}.png\",\"trust_level\":0},{\"id\":239,\"username\":\"CodeForcer\",\"name\":\"Nathan\",\"avatar_template\":\"/user_avatar/community.tokenlists.org/codeforcer/{size}/147_2.png\",\"trust_level\":0},{\"id\":244,\"username\":\"tobbtechnologies\",\"name\":\"Bernard Sibanda\",\"avatar_template\":\"/user_avatar/community.tokenlists.org/tobbtechnologies/{size}/149_2.png\",\"trust_level\":1},{\"id\":247,\"username\":\"ken\",\"name\":null,\"avatar_template\":\"https://avatars.discourse-cdn.com/v4/letter/k/cc9497/{size}.png\",\"trust_level\":0},{\"id\":255,\"username\":\"gryincent\",\"name\":\"Gryincent\",\"avatar_template\":\"/user_avatar/community.tokenlists.org/gryincent/{size}/153_2.png\",\"trust_level\":0},{\"id\":231,\"username\":\"Teresa\",\"name\":\"Teresa\",\"avatar_template\":\"https://avatars.discourse-cdn.com/v4/letter/t/958977/{size}.png\",\"trust_level\":0},{\"id\":260,\"username\":\"asaa110\",\"name\":\"Soroush Mohamadkhani\",\"avatar_template\":\"/user_avatar/community.tokenlists.org/asaa110/{size}/158_2.png\",\"trust_level\":0},{\"id\":263,\"username\":\"tokenlistfan\",\"name\":\"\",\"avatar_template\":\"https://avatars.discourse-cdn.com/v4/letter/t/b4bc9f/{size}.png\",\"trust_level\":0},{\"id\":210,\"username\":\"RCRO3000\",\"name\":\"Robert Crotty\",\"avatar_template\":\"https://avatars.discourse-cdn.com/v4/letter/r/f17d59/{size}.png\",\"trust_level\":0},{\"id\":271,\"username\":\"YFS.FINANCE\",\"name\":\"YFS.FINANCE\",\"avatar_template\":\"https://avatars.discourse-cdn.com/v4/letter/y/a88e57/{size}.png\",\"trust_level\":0}],\"primary_groups\":[],\"flair_groups\":[],\"topic_list\":{\"can_create_topic\":false,\"more_topics_url\":\"/latest?ascending=true\\u0026no_definitions=true\\u0026order=activity\\u0026page=1\",\"per_page\":30,\"topics\":[{\"id\":7,\"title\":\"Welcome to Discourse\",\"fancy_title\":\"Welcome to Discourse\",\"slug\":\"welcome-to-discourse\",\"posts_count\":1,\"reply_count\":0,\"highest_post_number\":1,\"image_url\":null,\"created_at\":\"2020-08-03T20:23:26.017Z\",\"last_posted_at\":\"2020-08-03T20:23:26.072Z\",\"bumped\":true,\"bumped_at\":\"2020-08-03T20:23:26.072Z\",\"archetype\":\"regular\",\"unseen\":false,\"pinned\":true,\"unpinned\":null,\"excerpt\":\"The first paragraph of this pinned topic will be visible as a welcome message to all new visitors on your homepage. It’s important! \\nEdit this into a brief description of your community: \\n\\nWho is it for?\\nWhat can they fi\\u0026hellip;\",\"visible\":true,\"closed\":false,\"archived\":false,\"bookmarked\":null,\"liked\":null,\"tags_descriptions\":{},\"views\":1568,\"like_count\":1,\"has_summary\":false,\"last_poster_username\":\"system\",\"category_id\":1,\"pinned_globally\":true,\"featured_link\":null,\"has_accepted_answer\":false,\"posters\":[{\"extras\":\"latest single\",\"description\":\"Original Poster, Most Recent Poster\",\"user_id\":-1,\"primary_group_id\":null,\"flair_group_id\":null}]},{\"id\":83,\"title\":\"SOMIDAX (SMDX) on token lists REQUEST\",\"fancy_title\":\"SOMIDAX (SMDX) on token lists REQUEST\",\"slug\":\"somidax-smdx-on-token-lists-request\",\"posts_count\":1,\"reply_count\":0,\"highest_post_number\":1,\"image_url\":null,\"created_at\":\"2020-09-06T14:35:18.938Z\",\"last_posted_at\":\"2020-09-06T14:35:19.012Z\",\"bumped\":true,\"bumped_at\":\"2020-09-06T14:43:41.178Z\",\"archetype\":\"regular\",\"unseen\":false,\"pinned\":false,\"unpinned\":null,\"visible\":true,\"closed\":false,\"archived\":false,\"bookmarked\":null,\"liked\":null,\"tags_descriptions\":{},\"views\":555,\"like_count\":0,\"has_summary\":false,\"last_poster_username\":\"somidax\",\"category_id\":6,\"pinned_globally\":false,\"featured_link\":null,\"has_accepted_answer\":false,\"posters\":[{\"extras\":\"latest single\",\"description\":\"Original Poster, Most Recent Poster\",\"user_id\":39,\"primary_group_id\":null,\"flair_group_id\":null}]},{\"id\":131,\"title\":\"New list from CoinPaprika Requested - Team Bitball\",\"fancy_title\":\"New list from CoinPaprika Requested - Team Bitball\",\"slug\":\"new-list-from-coinpaprika-requested-team-bitball\",\"posts_count\":1,\"reply_count\":0,\"highest_post_number\":1,\"image_url\":null,\"created_at\":\"2020-09-21T02:30:35.253Z\",\"last_posted_at\":\"2020-09-21T02:30:35.324Z\",\"bumped\":true,\"bumped_at\":\"2020-09-21T02:30:35.324Z\",\"archetype\":\"regular\",\"unseen\":false,\"pinned\":false,\"unpinned\":null,\"visible\":true,\"closed\":false,\"archived\":false,\"bookmarked\":null,\"liked\":null,\"tags_descriptions\":{},\"views\":628,\"like_count\":4,\"has_summary\":false,\"last_poster_username\":\"BitballErc20\",\"category_id\":6,\"pinned_globally\":false,\"featured_link\":null,\"has_accepted_answer\":false,\"posters\":[{\"extras\":\"latest single\",\"description\":\"Original Poster, Most Recent Poster\",\"user_id\":82,\"primary_group_id\":null,\"flair_group_id\":null}]},{\"id\":161,\"title\":\"Add coinwaycoin\",\"fancy_title\":\"Add coinwaycoin\",\"slug\":\"add-coinwaycoin\",\"posts_count\":1,\"reply_count\":0,\"highest_post_number\":1,\"image_url\":\"https://global.discourse-cdn.com/standard17/uploads/uniswap/optimized/1X/640e368ea4b452443a0b605a3d137c8400c0df1c_2_1024x537.png\",\"created_at\":\"2020-09-24T12:21:18.813Z\",\"last_posted_at\":\"2020-09-24T12:21:18.903Z\",\"bumped\":true,\"bumped_at\":\"2020-09-24T12:21:18.903Z\",\"archetype\":\"regular\",\"unseen\":false,\"pinned\":false,\"unpinned\":null,\"visible\":true,\"closed\":false,\"archived\":false,\"bookmarked\":null,\"liked\":null,\"tags_descriptions\":{},\"views\":515,\"like_count\":0,\"has_summary\":false,\"last_poster_username\":\"coinwaycan\",\"category_id\":6,\"pinned_globally\":false,\"featured_link\":null,\"has_accepted_answer\":false,\"posters\":[{\"extras\":\"latest single\",\"description\":\"Original Poster, Most Recent Poster\",\"user_id\":91,\"primary_group_id\":null,\"flair_group_id\":null}]},{\"id\":162,\"title\":\"Add coin way coin\",\"fancy_title\":\"Add coin way coin\",\"slug\":\"add-coin-way-coin\",\"posts_count\":1,\"reply_count\":0,\"highest_post_number\":1,\"image_url\":null,\"created_at\":\"2020-09-24T12:38:55.215Z\",\"last_posted_at\":\"2020-09-24T12:38:55.289Z\",\"bumped\":true,\"bumped_at\":\"2020-09-24T12:38:55.289Z\",\"archetype\":\"regular\",\"unseen\":false,\"pinned\":false,\"unpinned\":null,\"visible\":true,\"closed\":false,\"archived\":false,\"bookmarked\":null,\"liked\":null,\"tags_descriptions\":{},\"views\":545,\"like_count\":0,\"has_summary\":false,\"last_poster_username\":\"coinwaycan\",\"category_id\":1,\"pinned_globally\":false,\"featured_link\":null,\"has_accepted_answer\":false,\"posters\":[{\"extras\":\"latest single\",\"description\":\"Original Poster, Most Recent Poster\",\"user_id\":91,\"primary_group_id\":null,\"flair_group_id\":null}]},{\"id\":223,\"title\":\"Add AurusCOIN (AWX) to Uniswap Default List, CMC200 ERC20, CoinGecko\",\"fancy_title\":\"Add AurusCOIN (AWX) to Uniswap Default List, CMC200 ERC20, CoinGecko\",\"slug\":\"add-auruscoin-awx-to-uniswap-default-list-cmc200-erc20-coingecko\",\"posts_count\":1,\"reply_count\":0,\"highest_post_number\":1,\"image_url\":null,\"created_at\":\"2020-10-15T09:57:25.046Z\",\"last_posted_at\":\"2020-10-15T09:57:25.120Z\",\"bumped\":true,\"bumped_at\":\"2020-10-15T09:57:25.120Z\",\"archetype\":\"regular\",\"unseen\":false,\"pinned\":false,\"unpinned\":null,\"visible\":true,\"closed\":false,\"archived\":false,\"bookmarked\":null,\"liked\":null,\"tags_descriptions\":{},\"views\":578,\"like_count\":0,\"has_summary\":false,\"last_poster_username\":\"aurus\",\"category_id\":6,\"pinned_globally\":false,\"featured_link\":null,\"has_accepted_answer\":false,\"posters\":[{\"extras\":\"latest single\",\"description\":\"Original Poster, Most Recent Poster\",\"user_id\":113,\"primary_group_id\":null,\"flair_group_id\":null}]},{\"id\":252,\"title\":\"Please add Gold Token List\",\"fancy_title\":\"Please add Gold Token List\",\"slug\":\"please-add-gold-token-list\",\"posts_count\":1,\"reply_count\":0,\"highest_post_number\":1,\"image_url\":null,\"created_at\":\"2020-10-24T15:46:57.560Z\",\"last_posted_at\":\"2020-10-24T15:46:57.679Z\",\"bumped\":true,\"bumped_at\":\"2020-10-24T15:46:57.679Z\",\"archetype\":\"regular\",\"unseen\":false,\"pinned\":false,\"unpinned\":null,\"visible\":true,\"closed\":false,\"archived\":false,\"bookmarked\":null,\"liked\":null,\"tags_descriptions\":{},\"views\":569,\"like_count\":0,\"has_summary\":false,\"last_poster_username\":\"fortytwo\",\"category_id\":6,\"pinned_globally\":false,\"featured_link\":null,\"has_accepted_answer\":false,\"posters\":[{\"extras\":\"latest single\",\"description\":\"Original Poster, Most Recent Poster\",\"user_id\":134,\"primary_group_id\":null,\"flair_group_id\":null}]},{\"id\":263,\"title\":\"Lists for TRC20 Tokens\",\"fancy_title\":\"Lists for TRC20 Tokens\",\"slug\":\"lists-for-trc20-tokens\",\"posts_count\":1,\"reply_count\":0,\"highest_post_number\":1,\"image_url\":null,\"created_at\":\"2020-11-05T18:42:25.641Z\",\"last_posted_at\":\"2020-11-05T18:42:25.708Z\",\"bumped\":true,\"bumped_at\":\"2020-11-05T18:42:25.708Z\",\"archetype\":\"regular\",\"unseen\":false,\"pinned\":false,\"unpinned\":null,\"visible\":true,\"closed\":false,\"archived\":false,\"bookmarked\":null,\"liked\":null,\"tags_descriptions\":{},\"views\":614,\"like_count\":0,\"has_summary\":false,\"last_poster_username\":\"trashiest\",\"category_id\":1,\"pinned_globally\":false,\"featured_link\":null,\"has_accepted_answer\":false,\"posters\":[{\"extras\":\"latest single\",\"description\":\"Original Poster, Most Recent Poster\",\"user_id\":140,\"primary_group_id\":null,\"flair_group_id\":null}]},{\"id\":268,\"title\":\"Add our new token in your uniswap exchange list\",\"fancy_title\":\"Add our new token in your uniswap exchange list\",\"slug\":\"add-our-new-token-in-your-uniswap-exchange-list\",\"posts_count\":1,\"reply_count\":0,\"highest_post_number\":1,\"image_url\":null,\"created_at\":\"2020-11-12T05:03:08.501Z\",\"last_posted_at\":\"2020-11-12T05:03:08.570Z\",\"bumped\":true,\"bumped_at\":\"2020-11-12T05:03:08.570Z\",\"archetype\":\"regular\",\"unseen\":false,\"pinned\":false,\"unpinned\":null,\"visible\":true,\"closed\":false,\"archived\":false,\"bookmarked\":null,\"liked\":null,\"tags_descriptions\":{},\"views\":692,\"like_count\":0,\"has_summary\":false,\"last_poster_username\":\"VANDY\",\"category_id\":6,\"pinned_globally\":false,\"featured_link\":null,\"has_accepted_answer\":false,\"posters\":[{\"extras\":\"latest single\",\"description\":\"Original Poster, Most Recent Poster\",\"user_id\":144,\"primary_group_id\":null,\"flair_group_id\":null}]},{\"id\":281,\"title\":\"MORE on Uniswap\",\"fancy_title\":\"MORE on Uniswap\",\"slug\":\"more-on-uniswap\",\"posts_count\":1,\"reply_count\":0,\"highest_post_number\":1,\"image_url\":\"https://global.discourse-cdn.com/standard17/uploads/uniswap/optimized/1X/0500daa45c909d6ddee0108bf78133a2dd03bb04_2_1023x898.jpeg\",\"created_at\":\"2020-11-23T22:49:25.370Z\",\"last_posted_at\":\"2020-11-23T22:49:25.591Z\",\"bumped\":true,\"bumped_at\":\"2020-11-23T22:49:25.591Z\",\"archetype\":\"regular\",\"unseen\":false,\"pinned\":false,\"unpinned\":null,\"visible\":true,\"closed\":false,\"archived\":false,\"bookmarked\":null,\"liked\":null,\"tags_descriptions\":{},\"views\":538,\"like_count\":0,\"has_summary\":false,\"last_poster_username\":\"MORECOIN\",\"category_id\":1,\"pinned_globally\":false,\"featured_link\":\"https://etherscan.io/token/0x305de070488c8469dfac957226c9c900c4bfba22\",\"featured_link_root_domain\":\"etherscan.io\",\"has_accepted_answer\":false,\"posters\":[{\"extras\":\"latest single\",\"description\":\"Original Poster, Most Recent Poster\",\"user_id\":24,\"primary_group_id\":null,\"flair_group_id\":null}]},{\"id\":55,\"title\":\"How DeFiSafety scores can assist token lists\",\"fancy_title\":\"How DeFiSafety scores can assist token lists\",\"slug\":\"how-defisafety-scores-can-assist-token-lists\",\"posts_count\":2,\"reply_count\":0,\"highest_post_number\":2,\"image_url\":null,\"created_at\":\"2020-09-01T13:32:29.992Z\",\"last_posted_at\":\"2020-11-24T13:39:37.998Z\",\"bumped\":true,\"bumped_at\":\"2020-11-24T13:39:37.998Z\",\"archetype\":\"regular\",\"unseen\":false,\"pinned\":false,\"unpinned\":null,\"visible\":true,\"closed\":false,\"archived\":false,\"bookmarked\":null,\"liked\":null,\"tags_descriptions\":{},\"views\":709,\"like_count\":3,\"has_summary\":false,\"last_poster_username\":\"DeFiJman\",\"category_id\":1,\"pinned_globally\":false,\"featured_link\":null,\"has_accepted_answer\":false,\"posters\":[{\"extras\":null,\"description\":\"Original Poster\",\"user_id\":35,\"primary_group_id\":null,\"flair_group_id\":null},{\"extras\":\"latest\",\"description\":\"Most Recent Poster\",\"user_id\":154,\"primary_group_id\":null,\"flair_group_id\":null}]},{\"id\":36,\"title\":\"Lists for added and deleted tokens from GemTracker\",\"fancy_title\":\"Lists for added and deleted tokens from GemTracker\",\"slug\":\"lists-for-added-and-deleted-tokens-from-gemtracker\",\"posts_count\":3,\"reply_count\":1,\"highest_post_number\":3,\"image_url\":null,\"created_at\":\"2020-08-28T07:55:06.013Z\",\"last_posted_at\":\"2020-12-04T04:39:27.580Z\",\"bumped\":true,\"bumped_at\":\"2020-12-04T04:39:27.580Z\",\"archetype\":\"regular\",\"unseen\":false,\"pinned\":false,\"unpinned\":null,\"visible\":true,\"closed\":false,\"archived\":false,\"bookmarked\":null,\"liked\":null,\"tags_descriptions\":{},\"views\":1074,\"like_count\":4,\"has_summary\":false,\"last_poster_username\":\"DeFiJman\",\"category_id\":1,\"pinned_globally\":false,\"featured_link\":null,\"has_accepted_answer\":false,\"posters\":[{\"extras\":null,\"description\":\"Original Poster\",\"user_id\":18,\"primary_group_id\":null,\"flair_group_id\":null},{\"extras\":\"latest\",\"description\":\"Most Recent Poster\",\"user_id\":154,\"primary_group_id\":null,\"flair_group_id\":null}]},{\"id\":287,\"title\":\"DeFi Jman's Uniswap Gems List\",\"fancy_title\":\"DeFi Jman\\u0026rsquo;s Uniswap Gems List\",\"slug\":\"defi-jmans-uniswap-gems-list\",\"posts_count\":1,\"reply_count\":0,\"highest_post_number\":1,\"image_url\":null,\"created_at\":\"2020-12-04T04:40:25.474Z\",\"last_posted_at\":\"2020-12-04T04:40:25.612Z\",\"bumped\":true,\"bumped_at\":\"2020-12-04T04:40:25.612Z\",\"archetype\":\"regular\",\"unseen\":false,\"pinned\":false,\"unpinned\":null,\"visible\":true,\"closed\":false,\"archived\":false,\"bookmarked\":null,\"liked\":null,\"tags_descriptions\":{},\"views\":740,\"like_count\":0,\"has_summary\":false,\"last_poster_username\":\"DeFiJman\",\"category_id\":6,\"pinned_globally\":false,\"featured_link\":null,\"has_accepted_answer\":false,\"posters\":[{\"extras\":\"latest single\",\"description\":\"Original Poster, Most Recent Poster\",\"user_id\":154,\"primary_group_id\":null,\"flair_group_id\":null}]},{\"id\":290,\"title\":\"The 1PLANET ESG Token List for Uniswap\",\"fancy_title\":\"The 1PLANET ESG Token List for Uniswap\",\"slug\":\"the-1planet-esg-token-list-for-uniswap\",\"posts_count\":1,\"reply_count\":0,\"highest_post_number\":1,\"image_url\":null,\"created_at\":\"2020-12-07T23:38:24.683Z\",\"last_posted_at\":\"2020-12-07T23:38:24.756Z\",\"bumped\":true,\"bumped_at\":\"2020-12-07T23:38:24.756Z\",\"archetype\":\"regular\",\"unseen\":false,\"pinned\":false,\"unpinned\":null,\"visible\":true,\"closed\":false,\"archived\":false,\"bookmarked\":null,\"liked\":null,\"tags_descriptions\":{},\"views\":527,\"like_count\":0,\"has_summary\":false,\"last_poster_username\":\"1PLANET\",\"category_id\":6,\"pinned_globally\":false,\"featured_link\":null,\"has_accepted_answer\":false,\"posters\":[{\"extras\":\"latest single\",\"description\":\"Original Poster, Most Recent Poster\",\"user_id\":38,\"primary_group_id\":null,\"flair_group_id\":null}]},{\"id\":292,\"title\":\"Add POLY to Uniswap Default List\",\"fancy_title\":\"Add POLY to Uniswap Default List\",\"slug\":\"add-poly-to-uniswap-default-list\",\"posts_count\":2,\"reply_count\":0,\"highest_post_number\":2,\"image_url\":null,\"created_at\":\"2020-12-08T15:32:40.510Z\",\"last_posted_at\":\"2020-12-12T14:01:37.811Z\",\"bumped\":true,\"bumped_at\":\"2020-12-12T14:01:37.811Z\",\"archetype\":\"regular\",\"unseen\":false,\"pinned\":false,\"unpinned\":null,\"visible\":true,\"closed\":false,\"archived\":false,\"bookmarked\":null,\"liked\":null,\"tags_descriptions\":{},\"views\":696,\"like_count\":0,\"has_summary\":false,\"last_poster_username\":\"dovesfly\",\"category_id\":6,\"pinned_globally\":false,\"featured_link\":null,\"has_accepted_answer\":false,\"posters\":[{\"extras\":\"latest single\",\"description\":\"Original Poster, Most Recent Poster\",\"user_id\":159,\"primary_group_id\":null,\"flair_group_id\":null}]},{\"id\":298,\"title\":\"Add DSD to “Uniswap Default” list\",\"fancy_title\":\"Add DSD to “Uniswap Default” list\",\"slug\":\"add-dsd-to-uniswap-default-list\",\"posts_count\":1,\"reply_count\":0,\"highest_post_number\":1,\"image_url\":null,\"created_at\":\"2020-12-17T20:38:18.036Z\",\"last_posted_at\":\"2020-12-17T20:38:18.268Z\",\"bumped\":true,\"bumped_at\":\"2020-12-17T21:23:00.943Z\",\"archetype\":\"regular\",\"unseen\":false,\"pinned\":false,\"unpinned\":null,\"visible\":true,\"closed\":false,\"archived\":false,\"bookmarked\":null,\"liked\":null,\"tags_descriptions\":{},\"views\":553,\"like_count\":0,\"has_summary\":false,\"last_poster_username\":\"Ravage\",\"category_id\":6,\"pinned_globally\":false,\"featured_link\":null,\"has_accepted_answer\":false,\"posters\":[{\"extras\":\"latest single\",\"description\":\"Original Poster, Most Recent Poster\",\"user_id\":162,\"primary_group_id\":null,\"flair_group_id\":null}]},{\"id\":303,\"title\":\"Add YMT to “Uniswap Default” list\",\"fancy_title\":\"Add YMT to “Uniswap Default” list\",\"slug\":\"add-ymt-to-uniswap-default-list\",\"posts_count\":1,\"reply_count\":0,\"highest_post_number\":1,\"image_url\":null,\"created_at\":\"2020-12-22T09:28:38.804Z\",\"last_posted_at\":\"2020-12-22T09:28:38.999Z\",\"bumped\":true,\"bumped_at\":\"2020-12-22T09:28:38.999Z\",\"archetype\":\"regular\",\"unseen\":false,\"pinned\":false,\"unpinned\":null,\"visible\":true,\"closed\":false,\"archived\":false,\"bookmarked\":null,\"liked\":null,\"tags_descriptions\":{},\"views\":478,\"like_count\":0,\"has_summary\":false,\"last_poster_username\":\"zykjqk\",\"category_id\":1,\"pinned_globally\":false,\"featured_link\":null,\"has_accepted_answer\":false,\"posters\":[{\"extras\":\"latest single\",\"description\":\"Original Poster, Most Recent Poster\",\"user_id\":164,\"primary_group_id\":null,\"flair_group_id\":null}]},{\"id\":280,\"title\":\"Do You Need Your Token In Our Token (Education Ecosystem) List?\",\"fancy_title\":\"Do You Need Your Token In Our Token (Education Ecosystem) List?\",\"slug\":\"do-you-need-your-token-in-our-token-education-ecosystem-list\",\"posts_count\":3,\"reply_count\":0,\"highest_post_number\":3,\"image_url\":null,\"created_at\":\"2020-11-23T17:35:56.399Z\",\"last_posted_at\":\"2021-01-13T15:35:37.506Z\",\"bumped\":true,\"bumped_at\":\"2021-01-13T15:35:37.506Z\",\"archetype\":\"regular\",\"unseen\":false,\"pinned\":false,\"unpinned\":null,\"visible\":true,\"closed\":false,\"archived\":false,\"bookmarked\":null,\"liked\":null,\"tags_descriptions\":{},\"views\":645,\"like_count\":0,\"has_summary\":false,\"last_poster_username\":\"Julia11\",\"category_id\":6,\"pinned_globally\":false,\"featured_link\":null,\"has_accepted_answer\":false,\"posters\":[{\"extras\":null,\"description\":\"Original Poster\",\"user_id\":128,\"primary_group_id\":null,\"flair_group_id\":null},{\"extras\":null,\"description\":\"Frequent Poster\",\"user_id\":24,\"primary_group_id\":null,\"flair_group_id\":null},{\"extras\":\"latest\",\"description\":\"Most Recent Poster\",\"user_id\":158,\"primary_group_id\":null,\"flair_group_id\":null}]},{\"id\":322,\"title\":\"DeFi Yield Protocol (DYP)\",\"fancy_title\":\"DeFi Yield Protocol (DYP)\",\"slug\":\"defi-yield-protocol-dyp\",\"posts_count\":2,\"reply_count\":0,\"highest_post_number\":2,\"image_url\":null,\"created_at\":\"2021-01-05T09:28:54.295Z\",\"last_posted_at\":\"2021-01-13T18:03:07.079Z\",\"bumped\":true,\"bumped_at\":\"2021-01-13T18:03:07.079Z\",\"archetype\":\"regular\",\"unseen\":false,\"pinned\":false,\"unpinned\":null,\"visible\":true,\"closed\":false,\"archived\":false,\"bookmarked\":null,\"liked\":null,\"tags_descriptions\":{},\"views\":729,\"like_count\":0,\"has_summary\":false,\"last_poster_username\":\"wims\",\"category_id\":6,\"pinned_globally\":false,\"featured_link\":null,\"has_accepted_answer\":false,\"posters\":[{\"extras\":null,\"description\":\"Original Poster\",\"user_id\":173,\"primary_group_id\":null,\"flair_group_id\":null},{\"extras\":\"latest\",\"description\":\"Most Recent Poster\",\"user_id\":98,\"primary_group_id\":null,\"flair_group_id\":null}]},{\"id\":336,\"title\":\"Tutorial: How to submit a token to the Kleros Token List\",\"fancy_title\":\"Tutorial: How to submit a token to the Kleros Token List\",\"slug\":\"tutorial-how-to-submit-a-token-to-the-kleros-token-list\",\"posts_count\":1,\"reply_count\":0,\"highest_post_number\":1,\"image_url\":\"https://global.discourse-cdn.com/standard17/uploads/uniswap/optimized/1X/d634839c69b9c8931ceab9ef5d2996d61dc81045_2_1024x572.png\",\"created_at\":\"2021-01-25T09:32:28.441Z\",\"last_posted_at\":\"2021-01-25T09:32:28.610Z\",\"bumped\":true,\"bumped_at\":\"2021-01-26T17:18:32.398Z\",\"archetype\":\"regular\",\"unseen\":false,\"pinned\":false,\"unpinned\":null,\"visible\":true,\"closed\":false,\"archived\":false,\"bookmarked\":null,\"liked\":null,\"tags_descriptions\":{},\"views\":539,\"like_count\":0,\"has_summary\":false,\"last_poster_username\":\"jragosa\",\"category_id\":6,\"pinned_globally\":false,\"featured_link\":null,\"has_accepted_answer\":false,\"posters\":[{\"extras\":\"latest single\",\"description\":\"Original Poster, Most Recent Poster\",\"user_id\":185,\"primary_group_id\":null,\"flair_group_id\":null}]},{\"id\":341,\"title\":\"Mineable Tokens List\",\"fancy_title\":\"Mineable Tokens List\",\"slug\":\"mineable-tokens-list\",\"posts_count\":2,\"reply_count\":0,\"highest_post_number\":2,\"image_url\":null,\"created_at\":\"2021-01-26T18:29:15.077Z\",\"last_posted_at\":\"2021-01-28T03:54:04.286Z\",\"bumped\":true,\"bumped_at\":\"2021-01-28T03:54:04.286Z\",\"archetype\":\"regular\",\"unseen\":false,\"pinned\":false,\"unpinned\":null,\"visible\":true,\"closed\":false,\"archived\":false,\"bookmarked\":null,\"liked\":null,\"tags_descriptions\":{},\"views\":728,\"like_count\":1,\"has_summary\":false,\"last_poster_username\":\"wims\",\"category_id\":1,\"pinned_globally\":false,\"featured_link\":null,\"has_accepted_answer\":false,\"posters\":[{\"extras\":null,\"description\":\"Original Poster\",\"user_id\":188,\"primary_group_id\":null,\"flair_group_id\":null},{\"extras\":\"latest\",\"description\":\"Most Recent Poster\",\"user_id\":98,\"primary_group_id\":null,\"flair_group_id\":null}]},{\"id\":305,\"title\":\"How to add token to “Uniswap Default” list?\",\"fancy_title\":\"How to add token to “Uniswap Default” list?\",\"slug\":\"how-to-add-token-to-uniswap-default-list\",\"posts_count\":4,\"reply_count\":1,\"highest_post_number\":4,\"image_url\":null,\"created_at\":\"2020-12-23T07:24:22.956Z\",\"last_posted_at\":\"2021-01-11T09:35:09.795Z\",\"bumped\":true,\"bumped_at\":\"2021-02-04T02:42:05.148Z\",\"archetype\":\"regular\",\"unseen\":false,\"pinned\":false,\"unpinned\":null,\"visible\":true,\"closed\":false,\"archived\":false,\"bookmarked\":null,\"liked\":null,\"tags_descriptions\":{},\"views\":1211,\"like_count\":0,\"has_summary\":false,\"last_poster_username\":\"lorenzo8769\",\"category_id\":1,\"pinned_globally\":false,\"featured_link\":null,\"has_accepted_answer\":false,\"posters\":[{\"extras\":null,\"description\":\"Original Poster\",\"user_id\":165,\"primary_group_id\":null,\"flair_group_id\":null},{\"extras\":null,\"description\":\"Frequent Poster\",\"user_id\":166,\"primary_group_id\":null,\"flair_group_id\":null},{\"extras\":\"latest\",\"description\":\"Most Recent Poster\",\"user_id\":178,\"primary_group_id\":null,\"flair_group_id\":null}]},{\"id\":386,\"title\":\"How can I list my token?\",\"fancy_title\":\"How can I list my token?\",\"slug\":\"how-can-i-list-my-token\",\"posts_count\":1,\"reply_count\":0,\"highest_post_number\":1,\"image_url\":null,\"created_at\":\"2021-02-19T15:43:16.305Z\",\"last_posted_at\":\"2021-02-19T15:43:16.377Z\",\"bumped\":true,\"bumped_at\":\"2021-02-19T15:43:16.377Z\",\"archetype\":\"regular\",\"unseen\":false,\"pinned\":false,\"unpinned\":null,\"visible\":true,\"closed\":false,\"archived\":false,\"bookmarked\":null,\"liked\":null,\"tags_descriptions\":{},\"views\":716,\"like_count\":0,\"has_summary\":false,\"last_poster_username\":\"Pooh\",\"category_id\":6,\"pinned_globally\":false,\"featured_link\":null,\"has_accepted_answer\":false,\"posters\":[{\"extras\":\"latest single\",\"description\":\"Original Poster, Most Recent Poster\",\"user_id\":213,\"primary_group_id\":null,\"flair_group_id\":null}]},{\"id\":416,\"title\":\"List of tokens with transfer fee\",\"fancy_title\":\"List of tokens with transfer fee\",\"slug\":\"list-of-tokens-with-transfer-fee\",\"posts_count\":2,\"reply_count\":0,\"highest_post_number\":2,\"image_url\":null,\"created_at\":\"2021-03-11T10:11:05.514Z\",\"last_posted_at\":\"2021-03-16T05:22:11.734Z\",\"bumped\":true,\"bumped_at\":\"2021-03-16T05:22:11.734Z\",\"archetype\":\"regular\",\"unseen\":false,\"pinned\":false,\"unpinned\":null,\"visible\":true,\"closed\":false,\"archived\":false,\"bookmarked\":null,\"liked\":null,\"tags_descriptions\":{},\"views\":573,\"like_count\":0,\"has_summary\":false,\"last_poster_username\":\"tobbtechnologies\",\"category_id\":1,\"pinned_globally\":false,\"featured_link\":null,\"has_accepted_answer\":false,\"posters\":[{\"extras\":null,\"description\":\"Original Poster\",\"user_id\":239,\"primary_group_id\":null,\"flair_group_id\":null},{\"extras\":\"latest\",\"description\":\"Most Recent Poster\",\"user_id\":244,\"primary_group_id\":null,\"flair_group_id\":null}]},{\"id\":426,\"title\":\"Add BunnyToken to Coingecko list\",\"fancy_title\":\"Add BunnyToken to Coingecko list\",\"slug\":\"add-bunnytoken-to-coingecko-list\",\"posts_count\":1,\"reply_count\":0,\"highest_post_number\":1,\"image_url\":null,\"created_at\":\"2021-03-18T21:15:31.694Z\",\"last_posted_at\":\"2021-03-18T21:15:31.830Z\",\"bumped\":true,\"bumped_at\":\"2021-03-18T21:15:31.830Z\",\"archetype\":\"regular\",\"unseen\":false,\"pinned\":false,\"unpinned\":null,\"visible\":true,\"closed\":false,\"archived\":false,\"bookmarked\":null,\"liked\":null,\"tags_descriptions\":{},\"views\":498,\"like_count\":0,\"has_summary\":false,\"last_poster_username\":\"ken\",\"category_id\":6,\"pinned_globally\":false,\"featured_link\":null,\"has_accepted_answer\":false,\"posters\":[{\"extras\":\"latest single\",\"description\":\"Original Poster, Most Recent Poster\",\"user_id\":247,\"primary_group_id\":null,\"flair_group_id\":null}]},{\"id\":437,\"title\":\"Add Swipe swap in tokenlists.org\",\"fancy_title\":\"Add Swipe swap in tokenlists.org\",\"slug\":\"add-swipe-swap-in-tokenlists-org\",\"posts_count\":1,\"reply_count\":0,\"highest_post_number\":1,\"image_url\":null,\"created_at\":\"2021-03-23T01:47:03.368Z\",\"last_posted_at\":\"2021-03-23T01:47:03.523Z\",\"bumped\":true,\"bumped_at\":\"2021-03-23T01:47:03.523Z\",\"archetype\":\"regular\",\"unseen\":false,\"pinned\":false,\"unpinned\":null,\"visible\":true,\"closed\":false,\"archived\":false,\"bookmarked\":null,\"liked\":null,\"tags_descriptions\":{},\"views\":464,\"like_count\":0,\"has_summary\":false,\"last_poster_username\":\"gryincent\",\"category_id\":6,\"pinned_globally\":false,\"featured_link\":null,\"has_accepted_answer\":false,\"posters\":[{\"extras\":\"latest single\",\"description\":\"Original Poster, Most Recent Poster\",\"user_id\":255,\"primary_group_id\":null,\"flair_group_id\":null}]},{\"id\":407,\"title\":\"Adding TUSD to CMC Stablecoin List\",\"fancy_title\":\"Adding TUSD to CMC Stablecoin List\",\"slug\":\"adding-tusd-to-cmc-stablecoin-list\",\"posts_count\":5,\"reply_count\":0,\"highest_post_number\":5,\"image_url\":null,\"created_at\":\"2021-03-02T04:24:49.478Z\",\"last_posted_at\":\"2021-03-26T06:50:35.261Z\",\"bumped\":true,\"bumped_at\":\"2021-03-26T06:50:35.261Z\",\"archetype\":\"regular\",\"unseen\":false,\"pinned\":false,\"unpinned\":null,\"visible\":true,\"closed\":false,\"archived\":false,\"bookmarked\":null,\"liked\":null,\"tags_descriptions\":{},\"views\":629,\"like_count\":1,\"has_summary\":false,\"last_poster_username\":\"asaa110\",\"category_id\":6,\"pinned_globally\":false,\"featured_link\":null,\"has_accepted_answer\":false,\"posters\":[{\"extras\":null,\"description\":\"Original Poster\",\"user_id\":231,\"primary_group_id\":null,\"flair_group_id\":null},{\"extras\":null,\"description\":\"Frequent Poster\",\"user_id\":185,\"primary_group_id\":null,\"flair_group_id\":null},{\"extras\":\"latest\",\"description\":\"Most Recent Poster\",\"user_id\":260,\"primary_group_id\":null,\"flair_group_id\":null}]},{\"id\":450,\"title\":\"Ajv error: Error validating tokenlists.org data: SyntaxError: Invalid regular expression: /^[ \\\\w.'+\\\\-%/À-ÖØ-öø-ÿ\\\\:]+$/: Invalid escape\",\"fancy_title\":\"Ajv error: Error validating tokenlists.org data: SyntaxError: Invalid regular expression: /^[ \\\\w.\\u0026rsquo;+\\\\-%/À-ÖØ-öø-ÿ\\\\:]+$/: Invalid escape\",\"slug\":\"ajv-error-error-validating-tokenlists-org-data-syntaxerror-invalid-regular-expression-w-a-oo-oo-y-invalid-escape\",\"posts_count\":1,\"reply_count\":0,\"highest_post_number\":1,\"image_url\":null,\"created_at\":\"2021-03-29T05:35:35.903Z\",\"last_posted_at\":\"2021-03-29T05:35:36.002Z\",\"bumped\":true,\"bumped_at\":\"2021-03-29T05:35:36.002Z\",\"archetype\":\"regular\",\"unseen\":false,\"pinned\":false,\"unpinned\":null,\"visible\":true,\"closed\":false,\"archived\":false,\"bookmarked\":null,\"liked\":null,\"tags_descriptions\":{},\"views\":525,\"like_count\":0,\"has_summary\":false,\"last_poster_username\":\"tokenlistfan\",\"category_id\":1,\"pinned_globally\":false,\"featured_link\":null,\"has_accepted_answer\":false,\"posters\":[{\"extras\":\"latest single\",\"description\":\"Original Poster, Most Recent Poster\",\"user_id\":263,\"primary_group_id\":null,\"flair_group_id\":null}]},{\"id\":381,\"title\":\"NEWBIE?Help! Please\",\"fancy_title\":\"NEWBIE?Help! Please\",\"slug\":\"newbie-help-please\",\"posts_count\":3,\"reply_count\":1,\"highest_post_number\":3,\"image_url\":null,\"created_at\":\"2021-02-13T19:45:07.293Z\",\"last_posted_at\":\"2021-04-03T16:13:46.588Z\",\"bumped\":true,\"bumped_at\":\"2021-04-03T16:13:46.588Z\",\"archetype\":\"regular\",\"unseen\":false,\"pinned\":false,\"unpinned\":null,\"visible\":true,\"closed\":false,\"archived\":false,\"bookmarked\":null,\"liked\":null,\"tags_descriptions\":{},\"views\":783,\"like_count\":1,\"has_summary\":false,\"last_poster_username\":\"RCRO3000\",\"category_id\":2,\"pinned_globally\":false,\"featured_link\":null,\"has_accepted_answer\":false,\"posters\":[{\"extras\":\"latest\",\"description\":\"Original Poster, Most Recent Poster\",\"user_id\":210,\"primary_group_id\":null,\"flair_group_id\":null},{\"extras\":null,\"description\":\"Frequent Poster\",\"user_id\":98,\"primary_group_id\":null,\"flair_group_id\":null}]},{\"id\":459,\"title\":\"YFS is a DeFi protocol\",\"fancy_title\":\"YFS is a DeFi protocol\",\"slug\":\"yfs-is-a-defi-protocol\",\"posts_count\":2,\"reply_count\":0,\"highest_post_number\":2,\"image_url\":null,\"created_at\":\"2021-04-09T02:39:50.058Z\",\"last_posted_at\":\"2021-04-09T02:42:25.399Z\",\"bumped\":true,\"bumped_at\":\"2021-04-09T02:42:25.399Z\",\"archetype\":\"regular\",\"unseen\":false,\"pinned\":false,\"unpinned\":null,\"visible\":true,\"closed\":false,\"archived\":false,\"bookmarked\":null,\"liked\":null,\"tags_descriptions\":{},\"views\":483,\"like_count\":0,\"has_summary\":false,\"last_poster_username\":\"YFS.FINANCE\",\"category_id\":2,\"pinned_globally\":false,\"featured_link\":null,\"has_accepted_answer\":false,\"posters\":[{\"extras\":\"latest single\",\"description\":\"Original Poster, Most Recent Poster\",\"user_id\":271,\"primary_group_id\":null,\"flair_group_id\":null}]}]}}"}"></div>
</discourse-assets-json>
<discourse-assets-icons><div id="svg-sprites"><div class="fontawesome"><!--
Discourse SVG subset of Font Awesome Free by @fontawesome - https://fontawesome.com
License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
-->
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;">
<symbol id="address-book" viewBox="0 0 448 512">
<path d="M436 160c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h320c26.5 0 48-21.5 48-48v-48h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-20v-64h20zm-228-32c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zm112 236.8c0 10.6-10 19.2-22.4 19.2H118.4C106 384 96 375.4 96 364.8v-19.2c0-31.8 30.1-57.6 67.2-57.6h5c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h5c37.1 0 67.2 25.8 67.2 57.6v19.2z"></path>
</symbol><symbol id="adjust" viewBox="0 0 512 512">
<path d="M8 256c0 136.966 111.033 248 248 248s248-111.034 248-248S392.966 8 256 8 8 119.033 8 256zm248 184V72c101.705 0 184 82.311 184 184 0 101.705-82.311 184-184 184z"></path>
</symbol><symbol id="align-left" viewBox="0 0 448 512">
<path d="M12.83 352h262.34A12.82 12.82 0 0 0 288 339.17v-38.34A12.82 12.82 0 0 0 275.17 288H12.83A12.82 12.82 0 0 0 0 300.83v38.34A12.82 12.82 0 0 0 12.83 352zm0-256h262.34A12.82 12.82 0 0 0 288 83.17V44.83A12.82 12.82 0 0 0 275.17 32H12.83A12.82 12.82 0 0 0 0 44.83v38.34A12.82 12.82 0 0 0 12.83 96zM432 160H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0 256H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z"></path>
</symbol><symbol id="ambulance" viewBox="0 0 640 512">
<path d="M624 352h-16V243.9c0-12.7-5.1-24.9-14.1-33.9L494 110.1c-9-9-21.2-14.1-33.9-14.1H416V48c0-26.5-21.5-48-48-48H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h16c0 53 43 96 96 96s96-43 96-96h128c0 53 43 96 96 96s96-43 96-96h48c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zM160 464c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm144-248c0 4.4-3.6 8-8 8h-56v56c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8v-56h-56c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8h56v-56c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v56h56c4.4 0 8 3.6 8 8v48zm176 248c-26.5 0-48-21.5-48-48s21.5-48 48-48 48 21.5 48 48-21.5 48-48 48zm80-208H416V144h44.1l99.9 99.9V256z"></path>
</symbol><symbol id="anchor" viewBox="0 0 576 512">
<path d="M12.971 352h32.394C67.172 454.735 181.944 512 288 512c106.229 0 220.853-57.38 242.635-160h32.394c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0l-67.029 67.029c-7.56 7.56-2.206 20.485 8.485 20.485h35.146c-20.29 54.317-84.963 86.588-144.117 94.015V256h52c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-52v-5.47c37.281-13.178 63.995-48.725 64-90.518C384.005 43.772 341.605.738 289.37.01 235.723-.739 192 42.525 192 96c0 41.798 26.716 77.35 64 90.53V192h-52c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h52v190.015c-58.936-7.399-123.82-39.679-144.117-94.015h35.146c10.691 0 16.045-12.926 8.485-20.485l-67.029-67.029c-4.686-4.686-12.284-4.686-16.971 0L4.485 331.515C-3.074 339.074 2.28 352 12.971 352zM288 64c17.645 0 32 14.355 32 32s-14.355 32-32 32-32-14.355-32-32 14.355-32 32-32z"></path>
</symbol><symbol id="angle-double-down" viewBox="0 0 320 512">
<path d="M143 256.3L7 120.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0L313 86.3c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.4 9.5-24.6 9.5-34 .1zm34 192l136-136c9.4-9.4 9.4-24.6 0-33.9l-22.6-22.6c-9.4-9.4-24.6-9.4-33.9 0L160 352.1l-96.4-96.4c-9.4-9.4-24.6-9.4-33.9 0L7 278.3c-9.4 9.4-9.4 24.6 0 33.9l136 136c9.4 9.5 24.6 9.5 34 .1z"></path>
</symbol><symbol id="angle-double-left" viewBox="0 0 448 512">
<path d="M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z"></path>
</symbol><symbol id="angle-double-right" viewBox="0 0 448 512">
<path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z"></path>
</symbol><symbol id="angle-double-up" viewBox="0 0 320 512">
<path d="M177 255.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 351.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 425.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1zm-34-192L7 199.7c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l96.4-96.4 96.4 96.4c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9l-136-136c-9.2-9.4-24.4-9.4-33.8 0z"></path>
</symbol><symbol id="angle-down" viewBox="0 0 320 512">
<path d="M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z"></path>
</symbol><symbol id="angle-right" viewBox="0 0 256 512">
<path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path>
</symbol><symbol id="angle-up" viewBox="0 0 320 512">
<path d="M177 159.7l136 136c9.4 9.4 9.4 24.6 0 33.9l-22.6 22.6c-9.4 9.4-24.6 9.4-33.9 0L160 255.9l-96.4 96.4c-9.4 9.4-24.6 9.4-33.9 0L7 329.7c-9.4-9.4-9.4-24.6 0-33.9l136-136c9.4-9.5 24.6-9.5 34-.1z"></path>
</symbol><symbol id="archive" viewBox="0 0 512 512">
<path d="M32 448c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V160H32v288zm160-212c0-6.6 5.4-12 12-12h104c6.6 0 12 5.4 12 12v8c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-8zM480 32H32C14.3 32 0 46.3 0 64v48c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16V64c0-17.7-14.3-32-32-32z"></path>
</symbol><symbol id="arrow-down" viewBox="0 0 448 512">
<path d="M413.1 222.5l22.2 22.2c9.4 9.4 9.4 24.6 0 33.9L241 473c-9.4 9.4-24.6 9.4-33.9 0L12.7 278.6c-9.4-9.4-9.4-24.6 0-33.9l22.2-22.2c9.5-9.5 25-9.3 34.3.4L184 343.4V56c0-13.3 10.7-24 24-24h32c13.3 0 24 10.7 24 24v287.4l114.8-120.5c9.3-9.8 24.8-10 34.3-.4z"></path>
</symbol><symbol id="arrow-left" viewBox="0 0 448 512">
<path d="M257.5 445.1l-22.2 22.2c-9.4 9.4-24.6 9.4-33.9 0L7 273c-9.4-9.4-9.4-24.6 0-33.9L201.4 44.7c9.4-9.4 24.6-9.4 33.9 0l22.2 22.2c9.5 9.5 9.3 25-.4 34.3L136.6 216H424c13.3 0 24 10.7 24 24v32c0 13.3-10.7 24-24 24H136.6l120.5 114.8c9.8 9.3 10 24.8.4 34.3z"></path>
</symbol><symbol id="arrow-right" viewBox="0 0 448 512">
<path d="M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z"></path>
</symbol><symbol id="arrow-up" viewBox="0 0 448 512">
<path d="M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z"></path>
</symbol><symbol id="arrows-alt-h" viewBox="0 0 512 512">
<path d="M377.941 169.941V216H134.059v-46.059c0-21.382-25.851-32.09-40.971-16.971L7.029 239.029c-9.373 9.373-9.373 24.568 0 33.941l86.059 86.059c15.119 15.119 40.971 4.411 40.971-16.971V296h243.882v46.059c0 21.382 25.851 32.09 40.971 16.971l86.059-86.059c9.373-9.373 9.373-24.568 0-33.941l-86.059-86.059c-15.119-15.12-40.971-4.412-40.971 16.97z"></path>
</symbol><symbol id="arrows-alt-v" viewBox="0 0 256 512">
<path d="M214.059 377.941H168V134.059h46.059c21.382 0 32.09-25.851 16.971-40.971L144.971 7.029c-9.373-9.373-24.568-9.373-33.941 0L24.971 93.088c-15.119 15.119-4.411 40.971 16.971 40.971H88v243.882H41.941c-21.382 0-32.09 25.851-16.971 40.971l86.059 86.059c9.373 9.373 24.568 9.373 33.941 0l86.059-86.059c15.12-15.119 4.412-40.971-16.97-40.971z"></path>
</symbol><symbol id="asterisk" viewBox="0 0 512 512">
<path d="M478.21 334.093L336 256l142.21-78.093c11.795-6.477 15.961-21.384 9.232-33.037l-19.48-33.741c-6.728-11.653-21.72-15.499-33.227-8.523L296 186.718l3.475-162.204C299.763 11.061 288.937 0 275.48 0h-38.96c-13.456 0-24.283 11.061-23.994 24.514L216 186.718 77.265 102.607c-11.506-6.976-26.499-3.13-33.227 8.523l-19.48 33.741c-6.728 11.653-2.562 26.56 9.233 33.037L176 256 33.79 334.093c-11.795 6.477-15.961 21.384-9.232 33.037l19.48 33.741c6.728 11.653 21.721 15.499 33.227 8.523L216 325.282l-3.475 162.204C212.237 500.939 223.064 512 236.52 512h38.961c13.456 0 24.283-11.061 23.995-24.514L296 325.282l138.735 84.111c11.506 6.976 26.499 3.13 33.227-8.523l19.48-33.741c6.728-11.653 2.563-26.559-9.232-33.036z"></path>
</symbol><symbol id="at" viewBox="0 0 512 512">
<path d="M256 8C118.941 8 8 118.919 8 256c0 137.059 110.919 248 248 248 48.154 0 95.342-14.14 135.408-40.223 12.005-7.815 14.625-24.288 5.552-35.372l-10.177-12.433c-7.671-9.371-21.179-11.667-31.373-5.129C325.92 429.757 291.314 440 256 440c-101.458 0-184-82.542-184-184S154.542 72 256 72c100.139 0 184 57.619 184 160 0 38.786-21.093 79.742-58.17 83.693-17.349-.454-16.91-12.857-13.476-30.024l23.433-121.11C394.653 149.75 383.308 136 368.225 136h-44.981a13.518 13.518 0 0 0-13.432 11.993l-.01.092c-14.697-17.901-40.448-21.775-59.971-21.775-74.58 0-137.831 62.234-137.831 151.46 0 65.303 36.785 105.87 96 105.87 26.984 0 57.369-15.637 74.991-38.333 9.522 34.104 40.613 34.103 70.71 34.103C462.609 379.41 504 307.798 504 232 504 95.653 394.023 8 256 8zm-21.68 304.43c-22.249 0-36.07-15.623-36.07-40.771 0-44.993 30.779-72.729 58.63-72.729 22.292 0 35.601 15.241 35.601 40.77 0 45.061-33.875 72.73-58.161 72.73z"></path>
</symbol><symbol id="award" viewBox="0 0 384 512">
<path d="M97.12 362.63c-8.69-8.69-4.16-6.24-25.12-11.85-9.51-2.55-17.87-7.45-25.43-13.32L1.2 448.7c-4.39 10.77 3.81 22.47 15.43 22.03l52.69-2.01L105.56 507c8 8.44 22.04 5.81 26.43-4.96l52.05-127.62c-10.84 6.04-22.87 9.58-35.31 9.58-19.5 0-37.82-7.59-51.61-21.37zM382.8 448.7l-45.37-111.24c-7.56 5.88-15.92 10.77-25.43 13.32-21.07 5.64-16.45 3.18-25.12 11.85-13.79 13.78-32.12 21.37-51.62 21.37-12.44 0-24.47-3.55-35.31-9.58L252 502.04c4.39 10.77 18.44 13.4 26.43 4.96l36.25-38.28 52.69 2.01c11.62.44 19.82-11.27 15.43-22.03zM263 340c15.28-15.55 17.03-14.21 38.79-20.14 13.89-3.79 24.75-14.84 28.47-28.98 7.48-28.4 5.54-24.97 25.95-45.75 10.17-10.35 14.14-25.44 10.42-39.58-7.47-28.38-7.48-24.42 0-52.83 3.72-14.14-.25-29.23-10.42-39.58-20.41-20.78-18.47-17.36-25.95-45.75-3.72-14.14-14.58-25.19-28.47-28.98-27.88-7.61-24.52-5.62-44.95-26.41-10.17-10.35-25-14.4-38.89-10.61-27.87 7.6-23.98 7.61-51.9 0-13.89-3.79-28.72.25-38.89 10.61-20.41 20.78-17.05 18.8-44.94 26.41-13.89 3.79-24.75 14.84-28.47 28.98-7.47 28.39-5.54 24.97-25.95 45.75-10.17 10.35-14.15 25.44-10.42 39.58 7.47 28.36 7.48 24.4 0 52.82-3.72 14.14.25 29.23 10.42 39.59 20.41 20.78 18.47 17.35 25.95 45.75 3.72 14.14 14.58 25.19 28.47 28.98C104.6 325.96 106.27 325 121 340c13.23 13.47 33.84 15.88 49.74 5.82a39.676 39.676 0 0 1 42.53 0c15.89 10.06 36.5 7.65 49.73-5.82zM97.66 175.96c0-53.03 42.24-96.02 94.34-96.02s94.34 42.99 94.34 96.02-42.24 96.02-94.34 96.02-94.34-42.99-94.34-96.02z"></path>
</symbol><symbol id="backward" viewBox="0 0 512 512">
<path d="M11.5 280.6l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2zm256 0l192 160c20.6 17.2 52.5 2.8 52.5-24.6V96c0-27.4-31.9-41.8-52.5-24.6l-192 160c-15.3 12.8-15.3 36.4 0 49.2z"></path>
</symbol><symbol id="ban" viewBox="0 0 512 512">
<path d="M256 8C119.034 8 8 119.033 8 256s111.034 248 248 248 248-111.034 248-248S392.967 8 256 8zm130.108 117.892c65.448 65.448 70 165.481 20.677 235.637L150.47 105.216c70.204-49.356 170.226-44.735 235.638 20.676zM125.892 386.108c-65.448-65.448-70-165.481-20.677-235.637L361.53 406.784c-70.203 49.356-170.226 44.736-235.638-20.676z"></path>
</symbol><symbol id="bars" viewBox="0 0 448 512">
<path d="M16 132h416c8.837 0 16-7.163 16-16V76c0-8.837-7.163-16-16-16H16C7.163 60 0 67.163 0 76v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16zm0 160h416c8.837 0 16-7.163 16-16v-40c0-8.837-7.163-16-16-16H16c-8.837 0-16 7.163-16 16v40c0 8.837 7.163 16 16 16z"></path>
</symbol><symbol id="bed" viewBox="0 0 640 512">
<path d="M176 256c44.11 0 80-35.89 80-80s-35.89-80-80-80-80 35.89-80 80 35.89 80 80 80zm352-128H304c-8.84 0-16 7.16-16 16v144H64V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v352c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16v-48h512v48c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V240c0-61.86-50.14-112-112-112z"></path>
</symbol><symbol id="bell" viewBox="0 0 448 512">
<path d="M224 512c35.32 0 63.97-28.65 63.97-64H160.03c0 35.35 28.65 64 63.97 64zm215.39-149.71c-19.32-20.76-55.47-51.99-55.47-154.29 0-77.7-54.48-139.9-127.94-155.16V32c0-17.67-14.32-32-31.98-32s-31.98 14.33-31.98 32v20.84C118.56 68.1 64.08 130.3 64.08 208c0 102.3-36.15 133.53-55.47 154.29-6 6.45-8.66 14.16-8.61 21.71.11 16.4 12.98 32 32.1 32h383.8c19.12 0 32-15.6 32.1-32 .05-7.55-2.61-15.27-8.61-21.71z"></path>
</symbol><symbol id="bell-slash" viewBox="0 0 640 512">
<path d="M633.82 458.1l-90.62-70.05c.19-1.38.8-2.66.8-4.06.05-7.55-2.61-15.27-8.61-21.71-19.32-20.76-55.47-51.99-55.47-154.29 0-77.7-54.48-139.9-127.94-155.16V32c0-17.67-14.32-32-31.98-32s-31.98 14.33-31.98 32v20.84c-40.33 8.38-74.66 31.07-97.59 62.57L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.35 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.42-6.97 4.17-17.02-2.81-22.45zM157.23 251.54c-8.61 67.96-36.41 93.33-52.62 110.75-6 6.45-8.66 14.16-8.61 21.71.11 16.4 12.98 32 32.1 32h241.92L157.23 251.54zM320 512c35.32 0 63.97-28.65 63.97-64H256.03c0 35.35 28.65 64 63.97 64z"></path>
</symbol><symbol id="birthday-cake" viewBox="0 0 448 512">
<path d="M448 384c-28.02 0-31.26-32-74.5-32-43.43 0-46.825 32-74.75 32-27.695 0-31.454-32-74.75-32-42.842 0-47.218 32-74.5 32-28.148 0-31.202-32-74.75-32-43.547 0-46.653 32-74.75 32v-80c0-26.5 21.5-48 48-48h16V112h64v144h64V112h64v144h64V112h64v144h16c26.5 0 48 21.5 48 48v80zm0 128H0v-96c43.356 0 46.767-32 74.75-32 27.951 0 31.253 32 74.75 32 42.843 0 47.217-32 74.5-32 28.148 0 31.201 32 74.75 32 43.357 0 46.767-32 74.75-32 27.488 0 31.252 32 74.5 32v96zM96 96c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40zm128 0c-17.75 0-32-14.25-32-32 0-31 32-23 32-64 12 0 32 29.5 32 56s-14.25 40-32 40z"></path>
</symbol><symbol id="bold" viewBox="0 0 384 512">
<path d="M333.49 238a122 122 0 0 0 27-65.21C367.87 96.49 308 32 233.42 32H34a16 16 0 0 0-16 16v48a16 16 0 0 0 16 16h31.87v288H34a16 16 0 0 0-16 16v48a16 16 0 0 0 16 16h209.32c70.8 0 134.14-51.75 141-122.4 4.74-48.45-16.39-92.06-50.83-119.6zM145.66 112h87.76a48 48 0 0 1 0 96h-87.76zm87.76 288h-87.76V288h87.76a56 56 0 0 1 0 112z"></path>
</symbol><symbol id="book" viewBox="0 0 448 512">
<path d="M448 360V24c0-13.3-10.7-24-24-24H96C43 0 0 43 0 96v320c0 53 43 96 96 96h328c13.3 0 24-10.7 24-24v-16c0-7.5-3.5-14.3-8.9-18.7-4.2-15.4-4.2-59.3 0-74.7 5.4-4.3 8.9-11.1 8.9-18.6zM128 134c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm0 64c0-3.3 2.7-6 6-6h212c3.3 0 6 2.7 6 6v20c0 3.3-2.7 6-6 6H134c-3.3 0-6-2.7-6-6v-20zm253.4 250H96c-17.7 0-32-14.3-32-32 0-17.6 14.4-32 32-32h285.4c-1.9 17.1-1.9 46.9 0 64z"></path>
</symbol><symbol id="book-reader" viewBox="0 0 512 512">
<path d="M352 96c0-53.02-42.98-96-96-96s-96 42.98-96 96 42.98 96 96 96 96-42.98 96-96zM233.59 241.1c-59.33-36.32-155.43-46.3-203.79-49.05C13.55 191.13 0 203.51 0 219.14v222.8c0 14.33 11.59 26.28 26.49 27.05 43.66 2.29 131.99 10.68 193.04 41.43 9.37 4.72 20.48-1.71 20.48-11.87V252.56c-.01-4.67-2.32-8.95-6.42-11.46zm248.61-49.05c-48.35 2.74-144.46 12.73-203.78 49.05-4.1 2.51-6.41 6.96-6.41 11.63v245.79c0 10.19 11.14 16.63 20.54 11.9 61.04-30.72 149.32-39.11 192.97-41.4 14.9-.78 26.49-12.73 26.49-27.06V219.14c-.01-15.63-13.56-28.01-29.81-27.09z"></path>
</symbol><symbol id="bookmark" viewBox="0 0 384 512">
<path d="M0 512V48C0 21.49 21.49 0 48 0h288c26.51 0 48 21.49 48 48v464L192 400 0 512z"></path>
</symbol><symbol id="bookmark-delete" viewBox="0 0 16 20">
<path id="icon-bookmark__main" d="M0 20V5.5C0 4.6875 0.65625 4 1.5 4H10.5C11.3125 4 12 4.6875 12 5.5V20L6 16.5L0 20Z" fill="var(--tertiary)"></path>
<circle id="icon-bookmark__delete-x" cx="11.5" cy="6.5" r="3.5" fill="var(--secondary)"></circle>
<path id="icon-bookmark__delete-bg" d="M11 1.40625C13.6758 1.40625 15.8438 3.57422 15.8438 6.25C15.8438 8.92578 13.6758 11.0938 11 11.0938C8.32422 11.0938 6.15625 8.92578 6.15625 6.25C6.15625 3.57422 8.32422 1.40625 11 1.40625ZM13.3633 7.53906L12.0938 6.25L13.3633 4.98047C13.4609 4.90234 13.4609 4.74609 13.3633 4.64844L12.6016 3.88672C12.5039 3.78906 12.3477 3.78906 12.2695 3.88672L11 5.15625L9.73047 3.88672C9.63281 3.78906 9.47656 3.78906 9.39844 3.88672L8.61719 4.64844C8.51953 4.74609 8.51953 4.90234 8.61719 4.98047L9.90625 6.25L8.61719 7.51953C8.51953 7.61719 8.51953 7.77344 8.61719 7.85156L9.37891 8.63281C9.47656 8.73047 9.63281 8.73047 9.71094 8.63281L11 7.34375L12.2695 8.63281C12.3477 8.73047 12.5039 8.73047 12.6016 8.63281L13.3633 7.87109C13.4609 7.77344 13.4609 7.61719 13.3633 7.53906Z" fill="var(--danger)"></path>
</symbol><symbol id="briefcase" viewBox="0 0 512 512">
<path d="M320 336c0 8.84-7.16 16-16 16h-96c-8.84 0-16-7.16-16-16v-48H0v144c0 25.6 22.4 48 48 48h416c25.6 0 48-22.4 48-48V288H320v48zm144-208h-80V80c0-25.6-22.4-48-48-48H176c-25.6 0-48 22.4-48 48v48H48c-25.6 0-48 22.4-48 48v80h512v-80c0-25.6-22.4-48-48-48zm-144 0H192V96h128v32z"></path>
</symbol><symbol id="bullseye" viewBox="0 0 496 512">
<path d="M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm0 432c-101.69 0-184-82.29-184-184 0-101.69 82.29-184 184-184 101.69 0 184 82.29 184 184 0 101.69-82.29 184-184 184zm0-312c-70.69 0-128 57.31-128 128s57.31 128 128 128 128-57.31 128-128-57.31-128-128-128zm0 192c-35.29 0-64-28.71-64-64s28.71-64 64-64 64 28.71 64 64-28.71 64-64 64z"></path>
</symbol><symbol id="calendar-alt" viewBox="0 0 448 512">
<path d="M0 464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V192H0v272zm320-196c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zm0 128c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zM192 268c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zm0 128c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12v-40zM64 268c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zm0 128c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zM400 64h-48V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H160V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H48C21.5 64 0 85.5 0 112v48h448v-48c0-26.5-21.5-48-48-48z"></path>
</symbol><symbol id="calendar-day" viewBox="0 0 448 512">
<path d="M0 464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V192H0v272zm64-192c0-8.8 7.2-16 16-16h96c8.8 0 16 7.2 16 16v96c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16v-96zM400 64h-48V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H160V16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v48H48C21.5 64 0 85.5 0 112v48h448v-48c0-26.5-21.5-48-48-48z"></path>
</symbol><symbol id="caret-down" viewBox="0 0 320 512">
<path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z"></path>
</symbol><symbol id="caret-left" viewBox="0 0 192 512">
<path d="M192 127.338v257.324c0 17.818-21.543 26.741-34.142 14.142L29.196 270.142c-7.81-7.81-7.81-20.474 0-28.284l128.662-128.662c12.599-12.6 34.142-3.676 34.142 14.142z"></path>
</symbol><symbol id="caret-right" viewBox="0 0 192 512">
<path d="M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z"></path>
</symbol><symbol id="caret-up" viewBox="0 0 320 512">
<path d="M288.662 352H31.338c-17.818 0-26.741-21.543-14.142-34.142l128.662-128.662c7.81-7.81 20.474-7.81 28.284 0l128.662 128.662c12.6 12.599 3.676 34.142-14.142 34.142z"></path>
</symbol><symbol id="certificate" viewBox="0 0 512 512">
<path d="M458.622 255.92l45.985-45.005c13.708-12.977 7.316-36.039-10.664-40.339l-62.65-15.99 17.661-62.015c4.991-17.838-11.829-34.663-29.661-29.671l-61.994 17.667-15.984-62.671C337.085.197 313.765-6.276 300.99 7.228L256 53.57 211.011 7.229c-12.63-13.351-36.047-7.234-40.325 10.668l-15.984 62.671-61.995-17.667C74.87 57.907 58.056 74.738 63.046 92.572l17.661 62.015-62.65 15.99C.069 174.878-6.31 197.944 7.392 210.915l45.985 45.005-45.985 45.004c-13.708 12.977-7.316 36.039 10.664 40.339l62.65 15.99-17.661 62.015c-4.991 17.838 11.829 34.663 29.661 29.671l61.994-17.667 15.984 62.671c4.439 18.575 27.696 24.018 40.325 10.668L256 458.61l44.989 46.001c12.5 13.488 35.987 7.486 40.325-10.668l15.984-62.671 61.994 17.667c17.836 4.994 34.651-11.837 29.661-29.671l-17.661-62.015 62.65-15.99c17.987-4.302 24.366-27.367 10.664-40.339l-45.984-45.004z"></path>
</symbol><symbol id="chart-bar" viewBox="0 0 512 512">
<path d="M332.8 320h38.4c6.4 0 12.8-6.4 12.8-12.8V172.8c0-6.4-6.4-12.8-12.8-12.8h-38.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h38.4c6.4 0 12.8-6.4 12.8-12.8V76.8c0-6.4-6.4-12.8-12.8-12.8h-38.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-288 0h38.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-38.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h38.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-38.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zM496 384H64V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z"></path>
</symbol><symbol id="chart-pie" viewBox="0 0 544 512">
<path d="M527.79 288H290.5l158.03 158.03c6.04 6.04 15.98 6.53 22.19.68 38.7-36.46 65.32-85.61 73.13-140.86 1.34-9.46-6.51-17.85-16.06-17.85zm-15.83-64.8C503.72 103.74 408.26 8.28 288.8.04 279.68-.59 272 7.1 272 16.24V240h223.77c9.14 0 16.82-7.68 16.19-16.8zM224 288V50.71c0-9.55-8.39-17.4-17.84-16.06C86.99 51.49-4.1 155.6.14 280.37 4.5 408.51 114.83 513.59 243.03 511.98c50.4-.63 96.97-16.87 135.26-44.03 7.9-5.6 8.42-17.23 1.57-24.08L224 288z"></path>
</symbol><symbol id="check" viewBox="0 0 512 512">
<path d="M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"></path>
</symbol><symbol id="check-circle" viewBox="0 0 512 512">
<path d="M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z"></path>
</symbol><symbol id="check-square" viewBox="0 0 448 512">
<path d="M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0 26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628 0L184 302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"></path>
</symbol><symbol id="chevron-circle-down" viewBox="0 0 512 512">
<path d="M504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zM273 369.9l135.5-135.5c9.4-9.4 9.4-24.6 0-33.9l-17-17c-9.4-9.4-24.6-9.4-33.9 0L256 285.1 154.4 183.5c-9.4-9.4-24.6-9.4-33.9 0l-17 17c-9.4 9.4-9.4 24.6 0 33.9L239 369.9c9.4 9.4 24.6 9.4 34 0z"></path>
</symbol><symbol id="chevron-down" viewBox="0 0 448 512">
<path d="M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z"></path>
</symbol><symbol id="chevron-left" viewBox="0 0 320 512">
<path d="M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z"></path>
</symbol><symbol id="chevron-right" viewBox="0 0 320 512">
<path d="M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z"></path>
</symbol><symbol id="chevron-up" viewBox="0 0 448 512">
<path d="M240.971 130.524l194.343 194.343c9.373 9.373 9.373 24.569 0 33.941l-22.667 22.667c-9.357 9.357-24.522 9.375-33.901.04L224 227.495 69.255 381.516c-9.379 9.335-24.544 9.317-33.901-.04l-22.667-22.667c-9.373-9.373-9.373-24.569 0-33.941L207.03 130.525c9.372-9.373 24.568-9.373 33.941-.001z"></path>
</symbol><symbol id="circle" viewBox="0 0 512 512">
<path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z"></path>
</symbol><symbol id="clipboard" viewBox="0 0 384 512">
<path d="M384 112v352c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h80c0-35.29 28.71-64 64-64s64 28.71 64 64h80c26.51 0 48 21.49 48 48zM192 40c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24m96 114v-20a6 6 0 0 0-6-6H102a6 6 0 0 0-6 6v20a6 6 0 0 0 6 6h180a6 6 0 0 0 6-6z"></path>
</symbol><symbol id="clock" viewBox="0 0 512 512">
<path d="M256,8C119,8,8,119,8,256S119,504,256,504,504,393,504,256,393,8,256,8Zm92.49,313h0l-20,25a16,16,0,0,1-22.49,2.5h0l-67-49.72a40,40,0,0,1-15-31.23V112a16,16,0,0,1,16-16h32a16,16,0,0,1,16,16V256l58,42.5A16,16,0,0,1,348.49,321Z"></path>
</symbol><symbol id="cloud-upload-alt" viewBox="0 0 640 512">
<path d="M537.6 226.6c4.1-10.7 6.4-22.4 6.4-34.6 0-53-43-96-96-96-19.7 0-38.1 6-53.3 16.2C367 64.2 315.3 32 256 32c-88.4 0-160 71.6-160 160 0 2.7.1 5.4.2 8.1C40.2 219.8 0 273.2 0 336c0 79.5 64.5 144 144 144h368c70.7 0 128-57.3 128-128 0-61.9-44-113.6-102.4-125.4zM393.4 288H328v112c0 8.8-7.2 16-16 16h-48c-8.8 0-16-7.2-16-16V288h-65.4c-14.3 0-21.4-17.2-11.3-27.3l105.4-105.4c6.2-6.2 16.4-6.2 22.6 0l105.4 105.4c10.1 10.1 2.9 27.3-11.3 27.3z"></path>
</symbol><symbol id="code" viewBox="0 0 640 512">
<path d="M278.9 511.5l-61-17.7c-6.4-1.8-10-8.5-8.2-14.9L346.2 8.7c1.8-6.4 8.5-10 14.9-8.2l61 17.7c6.4 1.8 10 8.5 8.2 14.9L293.8 503.3c-1.9 6.4-8.5 10.1-14.9 8.2zm-114-112.2l43.5-46.4c4.6-4.9 4.3-12.7-.8-17.2L117 256l90.6-79.7c5.1-4.5 5.5-12.3.8-17.2l-43.5-46.4c-4.5-4.8-12.1-5.1-17-.5L3.8 247.2c-5.1 4.7-5.1 12.8 0 17.5l144.1 135.1c4.9 4.6 12.5 4.4 17-.5zm327.2.6l144.1-135.1c5.1-4.7 5.1-12.8 0-17.5L492.1 112.1c-4.8-4.5-12.4-4.3-17 .5L431.6 159c-4.6 4.9-4.3 12.7.8 17.2L523 256l-90.6 79.7c-5.1 4.5-5.5 12.3-.8 17.2l43.5 46.4c4.5 4.9 12.1 5.1 17 .6z"></path>
</symbol><symbol id="cog" viewBox="0 0 512 512">
<path d="M487.4 315.7l-42.6-24.6c4.3-23.2 4.3-47 0-70.2l42.6-24.6c4.9-2.8 7.1-8.6 5.5-14-11.1-35.6-30-67.8-54.7-94.6-3.8-4.1-10-5.1-14.8-2.3L380.8 110c-17.9-15.4-38.5-27.3-60.8-35.1V25.8c0-5.6-3.9-10.5-9.4-11.7-36.7-8.2-74.3-7.8-109.2 0-5.5 1.2-9.4 6.1-9.4 11.7V75c-22.2 7.9-42.8 19.8-60.8 35.1L88.7 85.5c-4.9-2.8-11-1.9-14.8 2.3-24.7 26.7-43.6 58.9-54.7 94.6-1.7 5.4.6 11.2 5.5 14L67.3 221c-4.3 23.2-4.3 47 0 70.2l-42.6 24.6c-4.9 2.8-7.1 8.6-5.5 14 11.1 35.6 30 67.8 54.7 94.6 3.8 4.1 10 5.1 14.8 2.3l42.6-24.6c17.9 15.4 38.5 27.3 60.8 35.1v49.2c0 5.6 3.9 10.5 9.4 11.7 36.7 8.2 74.3 7.8 109.2 0 5.5-1.2 9.4-6.1 9.4-11.7v-49.2c22.2-7.9 42.8-19.8 60.8-35.1l42.6 24.6c4.9 2.8 11 1.9 14.8-2.3 24.7-26.7 43.6-58.9 54.7-94.6 1.5-5.5-.7-11.3-5.6-14.1zM256 336c-44.1 0-80-35.9-80-80s35.9-80 80-80 80 35.9 80 80-35.9 80-80 80z"></path>
</symbol><symbol id="columns" viewBox="0 0 512 512">
<path d="M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64V160h160v256zm224 0H288V160h160v256z"></path>
</symbol><symbol id="comment" viewBox="0 0 512 512">
<path d="M256 32C114.6 32 0 125.1 0 240c0 49.6 21.4 95 57 130.7C44.5 421.1 2.7 466 2.2 466.5c-2.2 2.3-2.8 5.7-1.5 8.7S4.8 480 8 480c66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 141.4 0 256-93.1 256-208S397.4 32 256 32z"></path>
</symbol><symbol id="comment-slash" viewBox="0 0 640 512">
<path d="M64 240c0 49.6 21.4 95 57 130.7-12.6 50.3-54.3 95.2-54.8 95.8-2.2 2.3-2.8 5.7-1.5 8.7 1.3 2.9 4.1 4.8 7.3 4.8 66.3 0 116-31.8 140.6-51.4 32.7 12.3 69 19.4 107.4 19.4 27.4 0 53.7-3.6 78.4-10L72.9 186.4c-5.6 17.1-8.9 35-8.9 53.6zm569.8 218.1l-114.4-88.4C554.6 334.1 576 289.2 576 240c0-114.9-114.6-208-256-208-65.1 0-124.2 20.1-169.4 52.7L45.5 3.4C38.5-2 28.5-.8 23 6.2L3.4 31.4c-5.4 7-4.2 17 2.8 22.4l588.4 454.7c7 5.4 17 4.2 22.5-2.8l19.6-25.3c5.4-6.8 4.1-16.9-2.9-22.3z"></path>
</symbol><symbol id="comments" viewBox="0 0 576 512">
<path d="M416 192c0-88.4-93.1-160-208-160S0 103.6 0 192c0 34.3 14.1 65.9 38 92-13.4 30.2-35.5 54.2-35.8 54.5-2.2 2.3-2.8 5.7-1.5 8.7S4.8 352 8 352c36.6 0 66.9-12.3 88.7-25 32.2 15.7 70.3 25 111.3 25 114.9 0 208-71.6 208-160zm122 220c23.9-26 38-57.7 38-92 0-66.9-53.5-124.2-129.3-148.1.9 6.6 1.3 13.3 1.3 20.1 0 105.9-107.7 192-240 192-10.8 0-21.3-.8-31.7-1.9C207.8 439.6 281.8 480 368 480c41 0 79.1-9.2 111.3-25 21.8 12.7 52.1 25 88.7 25 3.2 0 6.1-1.9 7.3-4.8 1.3-2.9.7-6.3-1.5-8.7-.3-.3-22.4-24.2-35.8-54.5z"></path>
</symbol><symbol id="compress" viewBox="0 0 448 512">
<path d="M436 192H312c-13.3 0-24-10.7-24-24V44c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v84h84c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12zm-276-24V44c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v84H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h124c13.3 0 24-10.7 24-24zm0 300V344c0-13.3-10.7-24-24-24H12c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h84v84c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm192 0v-84h84c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12H312c-13.3 0-24 10.7-24 24v124c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12z"></path>
</symbol><symbol id="copy" viewBox="0 0 448 512">
<path d="M320 448v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V120c0-13.255 10.745-24 24-24h72v296c0 30.879 25.121 56 56 56h168zm0-344V0H152c-13.255 0-24 10.745-24 24v368c0 13.255 10.745 24 24 24h272c13.255 0 24-10.745 24-24V128H344c-13.2 0-24-10.8-24-24zm120.971-31.029L375.029 7.029A24 24 0 0 0 358.059 0H352v96h96v-6.059a24 24 0 0 0-7.029-16.97z"></path>
</symbol><symbol id="credit-card" viewBox="0 0 576 512">
<path d="M0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V256H0v176zm192-68c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H204c-6.6 0-12-5.4-12-12v-40zm-128 0c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12v-40zM576 80v48H0V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48z"></path>
</symbol><symbol id="crosshairs" viewBox="0 0 512 512">
<path d="M500 224h-30.364C455.724 130.325 381.675 56.276 288 42.364V12c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v30.364C130.325 56.276 56.276 130.325 42.364 224H12c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h30.364C56.276 381.675 130.325 455.724 224 469.636V500c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-30.364C381.675 455.724 455.724 381.675 469.636 288H500c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12zM288 404.634V364c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40.634C165.826 392.232 119.783 346.243 107.366 288H148c6.627 0 12-5.373 12-12v-40c0-6.627-5.373-12-12-12h-40.634C119.768 165.826 165.757 119.783 224 107.366V148c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12v-40.634C346.174 119.768 392.217 165.757 404.634 224H364c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40.634C392.232 346.174 346.243 392.217 288 404.634zM288 256c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z"></path>
</symbol><symbol id="crown" viewBox="0 0 640 512">
<path d="M528 448H112c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h416c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm64-320c-26.5 0-48 21.5-48 48 0 7.1 1.6 13.7 4.4 19.8L476 239.2c-15.4 9.2-35.3 4-44.2-11.6L350.3 85C361 76.2 368 63 368 48c0-26.5-21.5-48-48-48s-48 21.5-48 48c0 15 7 28.2 17.7 37l-81.5 142.6c-8.9 15.6-28.9 20.8-44.2 11.6l-72.3-43.4c2.7-6 4.4-12.7 4.4-19.8 0-26.5-21.5-48-48-48S0 149.5 0 176s21.5 48 48 48c2.6 0 5.2-.4 7.7-.8L128 416h384l72.3-192.8c2.5.4 5.1.8 7.7.8 26.5 0 48-21.5 48-48s-21.5-48-48-48z"></path>
</symbol><symbol id="cube" viewBox="0 0 512 512">
<path d="M239.1 6.3l-208 78c-18.7 7-31.1 25-31.1 45v225.1c0 18.2 10.3 34.8 26.5 42.9l208 104c13.5 6.8 29.4 6.8 42.9 0l208-104c16.3-8.1 26.5-24.8 26.5-42.9V129.3c0-20-12.4-37.9-31.1-44.9l-208-78C262 2.2 250 2.2 239.1 6.3zM256 68.4l192 72v1.1l-192 78-192-78v-1.1l192-72zm32 356V275.5l160-65v133.9l-160 80z"></path>
</symbol><symbol id="desktop" viewBox="0 0 576 512">
<path d="M528 0H48C21.5 0 0 21.5 0 48v320c0 26.5 21.5 48 48 48h192l-16 48h-72c-13.3 0-24 10.7-24 24s10.7 24 24 24h272c13.3 0 24-10.7 24-24s-10.7-24-24-24h-72l-16-48h192c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zm-16 352H64V64h448v288z"></path>
</symbol><symbol id="discourse-amazon" viewBox="0 0 291 291">
<path style="fill:#ff8a24;" d="M252.089,239.901c-120.033,57.126-194.528,9.331-242.214-19.7c-2.95-1.83-7.966,0.428-3.614,5.426 c15.886,19.263,67.95,65.692,135.909,65.692c68.005,0,108.462-37.107,113.523-43.58 C260.719,241.321,257.169,237.78,252.089,239.901z M285.8,221.284c-3.223-4.197-19.6-4.98-29.906-3.714 c-10.324,1.229-25.818,7.538-24.471,11.325c0.692,1.42,2.103,0.783,9.195,0.146c7.11-0.71,27.029-3.223,31.18,2.203 c4.17,5.462-6.354,31.49-8.275,35.687c-1.857,4.197,0.71,5.28,4.197,2.485c3.441-2.795,9.668-10.032,13.847-20.274 C285.718,238.845,288.249,224.479,285.8,221.284z"></path>
<path d="M221.71,149.219V53.557C221.71,37.125,205.815,0,148.689,0C91.572,0,61.184,35.696,61.184,67.85 l47.74,4.27c0,0,10.633-32.136,35.313-32.136s22.987,19.992,22.987,24.316v20.784C135.607,86.149,57.096,95.18,57.096,161.382 c0,71.191,89.863,74.177,119.332,28.167c1.138,1.866,2.431,3.696,4.051,5.408c10.843,11.398,25.308,24.981,25.308,24.981 l36.852-36.415C242.658,183.513,221.71,167.071,221.71,149.219z M112.511,152.578c0-30.579,32.764-36.779,54.722-37.507v26.319 C167.224,193.527,112.511,185.634,112.511,152.578z"></path>
</symbol><symbol id="discourse-bell-exclamation" viewBox="0 0 448 512">
<path d="M439.4 362.3c-19.3-20.8-55.5-52-55.5-154.3 0-77.7-54.5-139.9-127.9-155.2V32c0-17.7-14.3-32-32-32s-32 14.3-32 32v20.8C118.6 68.1 64.1 130.3 64.1 208c0 102.3-36.2 133.5-55.5 154.3-6 6.4-8.6 14.1-8.6 21.7.1 16.4 13 32 32.1 32h383.8c19.1 0 32-15.6 32.1-32 .1-7.6-2.6-15.3-8.6-21.7zM201.7 116.6h44.6c6.5 0 11.7 5.5 11.4 12l-6.5 123.8c-.3 6.1-5.3 10.9-11.4 10.9h-31.6c-6.1 0-11.1-4.8-11.4-10.9l-6.5-123.8c-.3-6.6 4.9-12 11.4-12zM224 361.3c-18.6 0-33.7-15.1-33.7-33.7s15.1-33.7 33.7-33.7 33.7 15.1 33.7 33.7-15.1 33.7-33.7 33.7zM224 512c35.3 0 64-28.7 64-64H160c0 35.3 28.7 64 64 64z"></path>
</symbol><symbol id="discourse-bell-one" viewBox="0 0 448 512">
<path d="M224 512c35.3 0 64-28.7 64-64H160c0 35.3 28.7 64 64 64zM439.4 362.3c-19.3-20.8-55.5-52-55.5-154.3 0-77.7-54.5-139.9-127.9-155.2V32c0-17.7-14.3-32-32-32s-32 14.3-32 32v20.8C118.6 68.1 64.1 130.3 64.1 208c0 102.3-36.2 133.5-55.5 154.3-6 6.4-8.6 14.1-8.6 21.7.1 16.4 13 32 32.1 32h383.8c19.1 0 32-15.6 32.1-32 .1-7.6-2.6-15.3-8.6-21.7zm-145.2-28c0 8.6-7 15.5-15.5 15.5h-97c-8.6 0-15.5-7-15.5-15.5v-15.8c0-8.6 7-15.5 15.5-15.5h27.1V192.5l-5.1 3.1c-6 6.1-15.9 6.2-22 .1l-11.2-11.1c-6.1-6-6.2-15.9-.1-22l31.6-31.9c3.2-3.2 7.4-4.7 11.5-4.6h26.6c8.6 0 11.5 7 11.5 15.5v161.3h27.1c8.6 0 15.5 7 15.5 15.5v15.9z"></path>
</symbol><symbol id="discourse-bell-slash" viewBox="0 0 448 512">
<path d="M442.7 396.2L36.5 70.7c-6.9-5.5-17-4.4-22.5 2.5L4 85.6c-5.5 6.9-4.4 17 2.5 22.5l406.2 325.5c6.9 5.5 17 4.4 22.5-2.5l10-12.5c5.5-6.9 3.7-17.7-3.2-23.2l.7.8zM67.5 368c16.7-22 34.5-55.8 41.4-110.6l-45.5-35.6C60.2 312.6 27 342.5 8.6 362.3 2.6 368.7 0 376.4 0 384c.1 16.4 13 32 32.1 32h279.7l-61.4-48H67.5zM224 96c61.9 0 112 50.1 112 112 0 .2-.1.4-.1.6 0 16.8 1.2 31.8 2.8 45.7l59.5 46.5c-8.3-22.1-14.3-51.5-14.3-92.9 0-77.7-54.5-139.9-127.9-155.2V32c0-17.7-14.3-32-32-32s-32 14.3-32 32v20.8c-26 5.4-49.4 16.9-69.1 32.7l38.2 29.8C179 103.2 200.6 96 224 96zm0 416c35.3 0 64-28.6 64-64H160c0 35.4 28.7 64 64 64z"></path>
</symbol><symbol id="discourse-bookmark-clock" viewBox="0 0 536 512">
<path d="M215.86 143.33A168.09 168.09 0 01296 0H48A48 48 0 000 48v464l192-112 192 112V315.53c-94-.04-168.14-79.33-168.14-172.2z M392.45 0a144 144 0 10144 144 143.91 143.91 0 00-144-144zm64 150.3a9.77 9.77 0 01-9.7 9.7h-60.6a9.77 9.77 0 01-9.7-9.7V73.7a9.77 9.77 0 019.7-9.7h12.6a9.77 9.77 0 019.7 9.7V128h38.3a9.77 9.77 0 019.7 9.7z"></path>
</symbol><symbol id="discourse-chevron-collapse" viewBox="0 0 512 512">
<path d="M256.483 296.229C247.794 296.229 240.071 299.122 234.278 304.908L79.8128 459.202C67.2624 470.774 67.2624 491.026 79.8128 502.598C91.3977 515.134 111.671 515.134 123.256 502.598L256.483 370.483L388.744 502.598C400.329 515.134 420.602 515.134 432.187 502.598C444.738 491.026 444.738 470.774 432.187 459.202L277.722 304.908C271.929 299.122 264.206 296.229 256.483 296.229Z"></path>
<path d="M256.483 215.771C247.794 215.771 240.071 212.878 234.278 207.092L79.8128 52.7977C67.2624 41.2256 67.2624 20.9744 79.8128 9.40233C91.3977 -3.13411 111.671 -3.13411 123.256 9.40233L256.483 141.517L388.744 9.40233C400.329 -3.13411 420.602 -3.13411 432.187 9.40233C444.738 20.9744 444.738 41.2256 432.187 52.7977L277.722 207.092C271.929 212.878 264.206 215.771 256.483 215.771Z"></path>
</symbol><symbol id="discourse-chevron-expand" viewBox="0 0 512 512">
<path d="M256.483 512C247.794 512 240.071 509.107 234.278 503.321L79.8128 349.026C67.2624 337.454 67.2624 317.203 79.8128 305.631C91.3977 293.094 111.671 293.094 123.256 305.631L256.483 437.746L388.744 305.631C400.329 293.094 420.602 293.094 432.187 305.631C444.738 317.203 444.738 337.454 432.187 349.026L277.722 503.321C271.929 509.107 264.206 512 256.483 512Z"></path>
<path d="M256.483 0C247.794 0 240.071 2.89303 234.278 8.67907L79.8128 162.974C67.2624 174.546 67.2624 194.797 79.8128 206.369C91.3977 218.906 111.671 218.906 123.256 206.369L256.483 74.2543L388.744 206.369C400.329 218.906 420.602 218.906 432.187 206.369C444.738 194.797 444.738 174.546 432.187 162.974L277.722 8.67907C271.929 2.89303 264.206 0 256.483 0Z"></path>
</symbol><symbol id="discourse-compress" viewBox="0 0 1792 1792">
<path d="M896 960v448q0 26-19 45t-45 19-45-19l-144-144-332 332q-10 10-23 10t-23-10l-114-114q-10-10-10-23t10-23l332-332-144-144q-19-19-19-45t19-45 45-19h448q26 0 45 19t19 45zm755-672q0 13-10 23l-332 332 144 144q19 19 19 45t-19 45-45 19h-448q-26 0-45-19t-19-45v-448q0-26 19-45t45-19 45 19l144 144 332-332q10-10 23-10t23 10l114 114q10 10 10 23z"></path>
</symbol><symbol id="discourse-dnd" viewBox="0 0 52 52" fill-rule="evenodd" clip-rule="evenodd">
<path d="M26 46.5156C37.3305 46.5156 46.5156 37.3305 46.5156 26C46.5156 14.6695 37.3305 5.48438 26 5.48438C14.6695 5.48438 5.48438 14.6695 5.48438 26C5.48438 37.3305 14.6695 46.5156 26 46.5156ZM26 52C40.3594 52 52 40.3594 52 26C52 11.6406 40.3594 0 26 0C11.6406 0 0 11.6406 0 26C0 40.3594 11.6406 52 26 52Z"></path>
<path d="M33.3125 22.75H18.6875C16.8926 22.75 15.4375 24.2051 15.4375 26C15.4375 27.7949 16.8926 29.25 18.6875 29.25H33.3125C35.1074 29.25 36.5625 27.7949 36.5625 26C36.5625 24.2051 35.1074 22.75 33.3125 22.75Z"></path>
</symbol><symbol id="discourse-emojis" viewBox="0 0 216.3 152.3">
<path d="M121.1 70.7c1.9 2 5.1 2.1 7.2.2l.2-.2 31.2-32.2c9.1-9.4 8.6-24.9-1.6-33.5-8.8-7.5-22-6.2-30.1 2.2l-3.2 3.3-3.2-3.3c-8.1-8.4-21.3-9.7-30.1-2.2-10.1 8.6-10.7 24.2-1.6 33.5l31.2 32.2zM53.5 45.3C23.9 45.3 0 69.2 0 98.8s23.9 53.5 53.5 53.5 53.5-24 53.5-53.5-23.9-53.5-53.5-53.5zm18.8 24.6c5.5 0 9.9 4.4 9.9 9.9s-4.4 9.9-9.9 9.9-9.9-4.4-9.9-9.9c-.1-5.5 4.4-9.9 9.9-9.9zm-38.2 0c5.5 0 9.9 4.4 9.9 9.9s-4.4 9.9-9.9 9.9-9.9-4.4-9.9-9.9 4.4-9.9 9.9-9.9zm52.4 45.4c-8.2 9.8-20.2 15.5-33.1 15.5s-24.9-5.6-33.1-15.5c-3.9-4.7 3.2-10.6 7.1-5.9 6.5 7.7 15.9 12.2 26 12.2s19.5-4.4 26-12.2c3.8-4.7 10.9 1.2 7.1 5.9zm129.8-22.5c0-6.4-6.3-9.5-13.3-9.5h-24c1.5-6 10.3-13.8 10.3-22.8 0-15.5-10.1-17.2-15.2-17.2-4.3 0-6.2 8.3-7.2 12.2-1.1 4.6-2.2 9.3-5.4 12.4-6.7 6.8-10.3 15.3-18.4 23.5-.7-1.8-2.6-3.1-4.7-3.1h-10.7c-2.8 0-5.1 2.2-5.1 4.9V142c0 2.7 2.3 4.9 5.1 4.9h10.7c2.8 0 5.1-2.2 5.1-4.9v-.9c.3.1.6.2.9.2 3.3.1 7.8 1.9 11.1 3.4 6.7 3 15.1 6.7 25.3 6.7h.6c9 0 19.7-.1 24-6.3 1.8-2.5 2.7-4.4.5-9.9 5-3 7-10 1-15 8-5 8-13 1-17 6.1-1.9 8.5-6.6 8.4-10.4z"></path>
</symbol><symbol id="discourse-expand" viewBox="0 0 1792 1792">
<path d="M883 1056q0 13-10 23l-332 332 144 144q19 19 19 45t-19 45-45 19h-448q-26 0-45-19t-19-45v-448q0-26 19-45t45-19 45 19l144 144 332-332q10-10 23-10t23 10l114 114q10 10 10 23zm781-864v448q0 26-19 45t-45 19-45-19l-144-144-332 332q-10 10-23 10t-23-10l-114-114q-10-10-10-23t10-23l332-332-144-144q-19-19-19-45t19-45 45-19h448q26 0 45 19t19 45z"></path>
</symbol><symbol id="discourse-other-tab" viewBox="0 0 114 113">
<g clip-path="url(#clip0_2925_742)">
<rect x="8" y="8" width="44" height="44" rx="5"></rect>
<rect x="8" y="61" width="44" height="44" rx="5"></rect>
<rect x="62" y="61" width="44" height="44" rx="5"></rect>
<rect width="44" height="43.9967" rx="5" transform="matrix(0.705436 -0.708774 0.705436 0.708774 53 30)"></rect>
</g>
<defs>
<clippath id="clip0_2925_742">
<rect width="114" height="113"></rect>
</clippath>
</defs>
</symbol><symbol id="discourse-sidebar" viewBox="0 0 513 513">
<path fill-rule="evenodd" clip-rule="evenodd" d="M64.125 0C28.0547 0 0 29.0566 0 64.125V399.75C0 435.82 28.0547 463.875 64.125 463.875H448.875C483.943 463.875 513 435.82 513 399.75V64.125C513 29.0566 483.943 0 448.875 0H64.125ZM219.375 407.75H56.125V56.1875H219.375V407.75ZM272.5 56.1875H455.875V407.75H272.5V56.1875ZM96 96C91.5817 96 88 99.5817 88 104V128C88 132.418 91.5817 136 96 136H184C188.418 136 192 132.418 192 128V104C192 99.5817 188.418 96 184 96H96ZM88 184C88 179.582 91.5817 176 96 176H184C188.418 176 192 179.582 192 184V208C192 212.418 188.418 216 184 216H96C91.5817 216 88 212.418 88 208V184ZM96 256C91.5817 256 88 259.582 88 264V288C88 292.418 91.5817 296 96 296H184C188.418 296 192 292.418 192 288V264C192 259.582 188.418 256 184 256H96Z"></path>
</symbol><symbol id="discourse-sparkles" viewBox="0 0 563 541">
<path d="M253.547 16.7474C262.26 -3.29796 290.689 -3.29797 299.402 16.7474L369.756 178.602C372.485 184.88 377.669 189.765 384.099 192.116L545.781 251.23C567.668 259.232 567.668 290.187 545.781 298.19L383.78 357.421C377.538 359.703 372.462 364.377 369.673 370.409L299.167 522.916C290.223 542.261 262.726 542.261 253.783 522.916L183.171 370.181C180.445 364.284 175.53 359.679 169.467 357.343L15.5462 298.038C-5.80267 289.812 -5.80262 259.607 15.5463 251.382L169.153 192.197C175.402 189.79 180.423 184.976 183.093 178.835L253.547 16.7474Z"></path>
<path d="M76.9415 8.24704C81.0653 -1.54063 94.9348 -1.54061 99.0585 8.24706L116.93 50.6637C118.283 53.8752 120.965 56.3398 124.279 57.4169L167.883 71.5875C178.938 75.1802 178.938 90.8198 167.883 94.4125L124.279 108.583C120.965 109.66 118.283 112.125 116.93 115.336L99.0586 157.753C94.9348 167.541 81.0652 167.541 76.9415 157.753L59.0703 115.336C57.7172 112.125 55.0349 109.66 51.7206 108.583L8.11678 94.4125C-2.93804 90.8198 -2.93804 75.1802 8.11678 71.5875L51.7206 57.4169C55.0348 56.3398 57.7172 53.8752 59.0703 50.6637L76.9415 8.24704Z"></path>
</symbol><symbol id="discourse-threads" viewBox="0 0 16 17" fill-rule="evenodd" clip-rule="evenodd">
<path d="M5 0L4.57143 3H1V5H4.28571L3.71429 9H0V11H3.42857L3 14L4.9799 14.2828L5.44888 11H7V9H5.73459L6.30602 5H11.2857L11 7H13.0203L13.306 5H16V3H13.5917L13.9799 0.282843L12 0L11.5714 3H6.59173L6.9799 0.282843L5 0ZM8 13.5V9C8 8.44772 8.44771 8 9 8H15C15.5523 8 16 8.44771 16 9V13.5C16 14.0523 15.5523 14.5 15 14.5H12.1194C11.5042 15.2014 10.396 16.3544 10.0417 16C9.97944 15.9223 9.99982 15.0667 10.0206 14.5H9C8.44771 14.5 8 14.0523 8 13.5Z"></path>
</symbol><symbol id="download" viewBox="0 0 512 512">
<path d="M216 0h80c13.3 0 24 10.7 24 24v168h87.7c17.8 0 26.7 21.5 14.1 34.1L269.7 378.3c-7.5 7.5-19.8 7.5-27.3 0L90.1 226.1c-12.6-12.6-3.7-34.1 14.1-34.1H192V24c0-13.3 10.7-24 24-24zm296 376v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h146.7l49 49c20.1 20.1 52.5 20.1 72.6 0l49-49H488c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"></path>
</symbol><symbol id="ellipsis-h" viewBox="0 0 512 512">
<path d="M328 256c0 39.8-32.2 72-72 72s-72-32.2-72-72 32.2-72 72-72 72 32.2 72 72zm104-72c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72zm-352 0c-39.8 0-72 32.2-72 72s32.2 72 72 72 72-32.2 72-72-32.2-72-72-72z"></path>
</symbol><symbol id="ellipsis-v" viewBox="0 0 192 512">
<path d="M96 184c39.8 0 72 32.2 72 72s-32.2 72-72 72-72-32.2-72-72 32.2-72 72-72zM24 80c0 39.8 32.2 72 72 72s72-32.2 72-72S135.8 8 96 8 24 40.2 24 80zm0 352c0 39.8 32.2 72 72 72s72-32.2 72-72-32.2-72-72-72-72 32.2-72 72z"></path>
</symbol><symbol id="envelope" viewBox="0 0 512 512">
<path d="M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"></path>
</symbol><symbol id="envelope-square" viewBox="0 0 448 512">
<path d="M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM178.117 262.104C87.429 196.287 88.353 196.121 64 177.167V152c0-13.255 10.745-24 24-24h272c13.255 0 24 10.745 24 24v25.167c-24.371 18.969-23.434 19.124-114.117 84.938-10.5 7.655-31.392 26.12-45.883 25.894-14.503.218-35.367-18.227-45.883-25.895zM384 217.775V360c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V217.775c13.958 10.794 33.329 25.236 95.303 70.214 14.162 10.341 37.975 32.145 64.694 32.01 26.887.134 51.037-22.041 64.72-32.025 61.958-44.965 81.325-59.406 95.283-70.199z"></path>
</symbol><symbol id="exchange-alt" viewBox="0 0 512 512">
<path d="M0 168v-16c0-13.255 10.745-24 24-24h360V80c0-21.367 25.899-32.042 40.971-16.971l80 80c9.372 9.373 9.372 24.569 0 33.941l-80 80C409.956 271.982 384 261.456 384 240v-48H24c-13.255 0-24-10.745-24-24zm488 152H128v-48c0-21.314-25.862-32.08-40.971-16.971l-80 80c-9.372 9.373-9.372 24.569 0 33.941l80 80C102.057 463.997 128 453.437 128 432v-48h360c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24z"></path>
</symbol><symbol id="exclamation-circle" viewBox="0 0 512 512">
<path d="M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zm-248 50c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z"></path>
</symbol><symbol id="exclamation-triangle" viewBox="0 0 576 512">
<path d="M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z"></path>
</symbol><symbol id="external-link-alt" viewBox="0 0 512 512">
<path d="M432,320H400a16,16,0,0,0-16,16V448H64V128H208a16,16,0,0,0,16-16V80a16,16,0,0,0-16-16H48A48,48,0,0,0,0,112V464a48,48,0,0,0,48,48H400a48,48,0,0,0,48-48V336A16,16,0,0,0,432,320ZM488,0h-128c-21.37,0-32.05,25.91-17,41l35.73,35.73L135,320.37a24,24,0,0,0,0,34L157.67,377a24,24,0,0,0,34,0L435.28,133.32,471,169c15,15,41,4.5,41-17V24A24,24,0,0,0,488,0Z"></path>
</symbol><symbol id="eye" viewBox="0 0 576 512">
<path d="M572.52 241.4C518.29 135.59 410.93 64 288 64S57.68 135.64 3.48 241.41a32.35 32.35 0 0 0 0 29.19C57.71 376.41 165.07 448 288 448s230.32-71.64 284.52-177.41a32.35 32.35 0 0 0 0-29.19zM288 400a144 144 0 1 1 144-144 143.93 143.93 0 0 1-144 144zm0-240a95.31 95.31 0 0 0-25.31 3.79 47.85 47.85 0 0 1-66.9 66.9A95.78 95.78 0 1 0 288 160z"></path>
</symbol><symbol id="fab-amazon" viewBox="0 0 448 512">
<path d="M257.2 162.7c-48.7 1.8-169.5 15.5-169.5 117.5 0 109.5 138.3 114 183.5 43.2 6.5 10.2 35.4 37.5 45.3 46.8l56.8-56S341 288.9 341 261.4V114.3C341 89 316.5 32 228.7 32 140.7 32 94 87 94 136.3l73.5 6.8c16.3-49.5 54.2-49.5 54.2-49.5 40.7-.1 35.5 29.8 35.5 69.1zm0 86.8c0 80-84.2 68-84.2 17.2 0-47.2 50.5-56.7 84.2-57.8v40.6zm136 163.5c-7.7 10-70 67-174.5 67S34.2 408.5 9.7 379c-6.8-7.7 1-11.3 5.5-8.3C88.5 415.2 203 488.5 387.7 401c7.5-3.7 13.3 2 5.5 12zm39.8 2.2c-6.5 15.8-16 26.8-21.2 31-5.5 4.5-9.5 2.7-6.5-3.8s19.3-46.5 12.7-55c-6.5-8.3-37-4.3-48-3.2-10.8 1-13 2-14-.3-2.3-5.7 21.7-15.5 37.5-17.5 15.7-1.8 41-.8 46 5.7 3.7 5.1 0 27.1-6.5 43.1z"></path>
</symbol><symbol id="fab-android" viewBox="0 0 576 512">
<path d="M420.55,301.93a24,24,0,1,1,24-24,24,24,0,0,1-24,24m-265.1,0a24,24,0,1,1,24-24,24,24,0,0,1-24,24m273.7-144.48,47.94-83a10,10,0,1,0-17.27-10h0l-48.54,84.07a301.25,301.25,0,0,0-246.56,0L116.18,64.45a10,10,0,1,0-17.27,10h0l47.94,83C64.53,202.22,8.24,285.55,0,384H576c-8.24-98.45-64.54-181.78-146.85-226.55"></path>
</symbol><symbol id="fab-apple" viewBox="0 0 384 512">
<path d="M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C63.3 141.2 4 184.8 4 273.5q0 39.3 14.4 81.2c12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z"></path>
</symbol><symbol id="fab-chrome" viewBox="0 0 496 512">
<path d="M131.5 217.5L55.1 100.1c47.6-59.2 119-91.8 192-92.1 42.3-.3 85.5 10.5 124.8 33.2 43.4 25.2 76.4 61.4 97.4 103L264 133.4c-58.1-3.4-113.4 29.3-132.5 84.1zm32.9 38.5c0 46.2 37.4 83.6 83.6 83.6s83.6-37.4 83.6-83.6-37.4-83.6-83.6-83.6-83.6 37.3-83.6 83.6zm314.9-89.2L339.6 174c37.9 44.3 38.5 108.2 6.6 157.2L234.1 503.6c46.5 2.5 94.4-7.7 137.8-32.9 107.4-62 150.9-192 107.4-303.9zM133.7 303.6L40.4 120.1C14.9 159.1 0 205.9 0 256c0 124 90.8 226.7 209.5 244.9l63.7-124.8c-57.6 10.8-113.2-20.8-139.5-72.5z"></path>
</symbol><symbol id="fab-discord" viewBox="0 0 640 512">
<path d="M524.531,69.836a1.5,1.5,0,0,0-.764-.7A485.065,485.065,0,0,0,404.081,32.03a1.816,1.816,0,0,0-1.923.91,337.461,337.461,0,0,0-14.9,30.6,447.848,447.848,0,0,0-134.426,0,309.541,309.541,0,0,0-15.135-30.6,1.89,1.89,0,0,0-1.924-.91A483.689,483.689,0,0,0,116.085,69.137a1.712,1.712,0,0,0-.788.676C39.068,183.651,18.186,294.69,28.43,404.354a2.016,2.016,0,0,0,.765,1.375A487.666,487.666,0,0,0,176.02,479.918a1.9,1.9,0,0,0,2.063-.676A348.2,348.2,0,0,0,208.12,430.4a1.86,1.86,0,0,0-1.019-2.588,321.173,321.173,0,0,1-45.868-21.853,1.885,1.885,0,0,1-.185-3.126c3.082-2.309,6.166-4.711,9.109-7.137a1.819,1.819,0,0,1,1.9-.256c96.229,43.917,200.41,43.917,295.5,0a1.812,1.812,0,0,1,1.924.233c2.944,2.426,6.027,4.851,9.132,7.16a1.884,1.884,0,0,1-.162,3.126,301.407,301.407,0,0,1-45.89,21.83,1.875,1.875,0,0,0-1,2.611,391.055,391.055,0,0,0,30.014,48.815,1.864,1.864,0,0,0,2.063.7A486.048,486.048,0,0,0,610.7,405.729a1.882,1.882,0,0,0,.765-1.352C623.729,277.594,590.933,167.465,524.531,69.836ZM222.491,337.58c-28.972,0-52.844-26.587-52.844-59.239S193.056,219.1,222.491,219.1c29.665,0,53.306,26.82,52.843,59.239C275.334,310.993,251.924,337.58,222.491,337.58Zm195.38,0c-28.971,0-52.843-26.587-52.843-59.239S388.437,219.1,417.871,219.1c29.667,0,53.307,26.82,52.844,59.239C470.715,310.993,447.538,337.58,417.871,337.58Z"></path>
</symbol><symbol id="fab-discourse" viewBox="0 0 448 512">
<path d="M225.9 32C103.3 32 0 130.5 0 252.1 0 256 .1 480 .1 480l225.8-.2c122.7 0 222.1-102.3 222.1-223.9C448 134.3 348.6 32 225.9 32zM224 384c-19.4 0-37.9-4.3-54.4-12.1L88.5 392l22.9-75c-9.8-18.1-15.4-38.9-15.4-61 0-70.7 57.3-128 128-128s128 57.3 128 128-57.3 128-128 128z"></path>
</symbol><symbol id="fab-facebook" viewBox="0 0 512 512">
<path d="M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z"></path>
</symbol><symbol id="fab-facebook-square" viewBox="0 0 448 512">
<path d="M400 32H48A48 48 0 0 0 0 80v352a48 48 0 0 0 48 48h137.25V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.27c-30.81 0-40.42 19.12-40.42 38.73V256h68.78l-11 71.69h-57.78V480H400a48 48 0 0 0 48-48V80a48 48 0 0 0-48-48z"></path>
</symbol><symbol id="fab-github" viewBox="0 0 496 512">
<path d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"></path>
</symbol><symbol id="fab-instagram" viewBox="0 0 448 512">
<path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path>
</symbol><symbol id="fab-linkedin" viewBox="0 0 448 512">
<path d="M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z"></path>
</symbol><symbol id="fab-linkedin-in" viewBox="0 0 448 512">
<path d="M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z"></path>
</symbol><symbol id="fab-linux" viewBox="0 0 448 512">
<path d="M220.8 123.3c1 .5 1.8 1.7 3 1.7 1.1 0 2.8-.4 2.9-1.5.2-1.4-1.9-2.3-3.2-2.9-1.7-.7-3.9-1-5.5-.1-.4.2-.8.7-.6 1.1.3 1.3 2.3 1.1 3.4 1.7zm-21.9 1.7c1.2 0 2-1.2 3-1.7 1.1-.6 3.1-.4 3.5-1.6.2-.4-.2-.9-.6-1.1-1.6-.9-3.8-.6-5.5.1-1.3.6-3.4 1.5-3.2 2.9.1 1 1.8 1.5 2.8 1.4zM420 403.8c-3.6-4-5.3-11.6-7.2-19.7-1.8-8.1-3.9-16.8-10.5-22.4-1.3-1.1-2.6-2.1-4-2.9-1.3-.8-2.7-1.5-4.1-2 9.2-27.3 5.6-54.5-3.7-79.1-11.4-30.1-31.3-56.4-46.5-74.4-17.1-21.5-33.7-41.9-33.4-72C311.1 85.4 315.7.1 234.8 0 132.4-.2 158 103.4 156.9 135.2c-1.7 23.4-6.4 41.8-22.5 64.7-18.9 22.5-45.5 58.8-58.1 96.7-6 17.9-8.8 36.1-6.2 53.3-6.5 5.8-11.4 14.7-16.6 20.2-4.2 4.3-10.3 5.9-17 8.3s-14 6-18.5 14.5c-2.1 3.9-2.8 8.1-2.8 12.4 0 3.9.6 7.9 1.2 11.8 1.2 8.1 2.5 15.7.8 20.8-5.2 14.4-5.9 24.4-2.2 31.7 3.8 7.3 11.4 10.5 20.1 12.3 17.3 3.6 40.8 2.7 59.3 12.5 19.8 10.4 39.9 14.1 55.9 10.4 11.6-2.6 21.1-9.6 25.9-20.2 12.5-.1 26.3-5.4 48.3-6.6 14.9-1.2 33.6 5.3 55.1 4.1.6 2.3 1.4 4.6 2.5 6.7v.1c8.3 16.7 23.8 24.3 40.3 23 16.6-1.3 34.1-11 48.3-27.9 13.6-16.4 36-23.2 50.9-32.2 7.4-4.5 13.4-10.1 13.9-18.3.4-8.2-4.4-17.3-15.5-29.7zM223.7 87.3c9.8-22.2 34.2-21.8 44-.4 6.5 14.2 3.6 30.9-4.3 40.4-1.6-.8-5.9-2.6-12.6-4.9 1.1-1.2 3.1-2.7 3.9-4.6 4.8-11.8-.2-27-9.1-27.3-7.3-.5-13.9 10.8-11.8 23-4.1-2-9.4-3.5-13-4.4-1-6.9-.3-14.6 2.9-21.8zM183 75.8c10.1 0 20.8 14.2 19.1 33.5-3.5 1-7.1 2.5-10.2 4.6 1.2-8.9-3.3-20.1-9.6-19.6-8.4.7-9.8 21.2-1.8 28.1 1 .8 1.9-.2-5.9 5.5-15.6-14.6-10.5-52.1 8.4-52.1zm-13.6 60.7c6.2-4.6 13.6-10 14.1-10.5 4.7-4.4 13.5-14.2 27.9-14.2 7.1 0 15.6 2.3 25.9 8.9 6.3 4.1 11.3 4.4 22.6 9.3 8.4 3.5 13.7 9.7 10.5 18.2-2.6 7.1-11 14.4-22.7 18.1-11.1 3.6-19.8 16-38.2 14.9-3.9-.2-7-1-9.6-2.1-8-3.5-12.2-10.4-20-15-8.6-4.8-13.2-10.4-14.7-15.3-1.4-4.9 0-9 4.2-12.3zm3.3 334c-2.7 35.1-43.9 34.4-75.3 18-29.9-15.8-68.6-6.5-76.5-21.9-2.4-4.7-2.4-12.7 2.6-26.4v-.2c2.4-7.6.6-16-.6-23.9-1.2-7.8-1.8-15 .9-20 3.5-6.7 8.5-9.1 14.8-11.3 10.3-3.7 11.8-3.4 19.6-9.9 5.5-5.7 9.5-12.9 14.3-18 5.1-5.5 10-8.1 17.7-6.9 8.1 1.2 15.1 6.8 21.9 16l19.6 35.6c9.5 19.9 43.1 48.4 41 68.9zm-1.4-25.9c-4.1-6.6-9.6-13.6-14.4-19.6 7.1 0 14.2-2.2 16.7-8.9 2.3-6.2 0-14.9-7.4-24.9-13.5-18.2-38.3-32.5-38.3-32.5-13.5-8.4-21.1-18.7-24.6-29.9s-3-23.3-.3-35.2c5.2-22.9 18.6-45.2 27.2-59.2 2.3-1.7.8 3.2-8.7 20.8-8.5 16.1-24.4 53.3-2.6 82.4.6-20.7 5.5-41.8 13.8-61.5 12-27.4 37.3-74.9 39.3-112.7 1.1.8 4.6 3.2 6.2 4.1 4.6 2.7 8.1 6.7 12.6 10.3 12.4 10 28.5 9.2 42.4 1.2 6.2-3.5 11.2-7.5 15.9-9 9.9-3.1 17.8-8.6 22.3-15 7.7 30.4 25.7 74.3 37.2 95.7 6.1 11.4 18.3 35.5 23.6 64.6 3.3-.1 7 .4 10.9 1.4 13.8-35.7-11.7-74.2-23.3-84.9-4.7-4.6-4.9-6.6-2.6-6.5 12.6 11.2 29.2 33.7 35.2 59 2.8 11.6 3.3 23.7.4 35.7 16.4 6.8 35.9 17.9 30.7 34.8-2.2-.1-3.2 0-4.2 0 3.2-10.1-3.9-17.6-22.8-26.1-19.6-8.6-36-8.6-38.3 12.5-12.1 4.2-18.3 14.7-21.4 27.3-2.8 11.2-3.6 24.7-4.4 39.9-.5 7.7-3.6 18-6.8 29-32.1 22.9-76.7 32.9-114.3 7.2zm257.4-11.5c-.9 16.8-41.2 19.9-63.2 46.5-13.2 15.7-29.4 24.4-43.6 25.5s-26.5-4.8-33.7-19.3c-4.7-11.1-2.4-23.1 1.1-36.3 3.7-14.2 9.2-28.8 9.9-40.6.8-15.2 1.7-28.5 4.2-38.7 2.6-10.3 6.6-17.2 13.7-21.1.3-.2.7-.3 1-.5.8 13.2 7.3 26.6 18.8 29.5 12.6 3.3 30.7-7.5 38.4-16.3 9-.3 15.7-.9 22.6 5.1 9.9 8.5 7.1 30.3 17.1 41.6 10.6 11.6 14 19.5 13.7 24.6zM173.3 148.7c2 1.9 4.7 4.5 8 7.1 6.6 5.2 15.8 10.6 27.3 10.6 11.6 0 22.5-5.9 31.8-10.8 4.9-2.6 10.9-7 14.8-10.4s5.9-6.3 3.1-6.6-2.6 2.6-6 5.1c-4.4 3.2-9.7 7.4-13.9 9.8-7.4 4.2-19.5 10.2-29.9 10.2s-18.7-4.8-24.9-9.7c-3.1-2.5-5.7-5-7.7-6.9-1.5-1.4-1.9-4.6-4.3-4.9-1.4-.1-1.8 3.7 1.7 6.5z"></path>
</symbol><symbol id="fab-microsoft" viewBox="0 0 448 512">
<path d="M0 32h214.6v214.6H0V32zm233.4 0H448v214.6H233.4V32zM0 265.4h214.6V480H0V265.4zm233.4 0H448V480H233.4V265.4z"></path>
</symbol><symbol id="fab-patreon" viewBox="0 0 512 512">
<path d="M512 194.8c0 101.3-82.4 183.8-183.8 183.8-101.7 0-184.4-82.4-184.4-183.8 0-101.6 82.7-184.3 184.4-184.3C429.6 10.5 512 93.2 512 194.8zM0 501.5h90v-491H0v491z"></path>
</symbol><symbol id="fab-threads" viewBox="0 0 448 512">
<path d="M331.5 235.7c2.2 .9 4.2 1.9 6.3 2.8c29.2 14.1 50.6 35.2 61.8 61.4c15.7 36.5 17.2 95.8-30.3 143.2c-36.2 36.2-80.3 52.5-142.6 53h-.3c-70.2-.5-124.1-24.1-160.4-70.2c-32.3-41-48.9-98.1-49.5-169.6V256v-.2C17 184.3 33.6 127.2 65.9 86.2C102.2 40.1 156.2 16.5 226.4 16h.3c70.3 .5 124.9 24 162.3 69.9c18.4 22.7 32 50 40.6 81.7l-40.4 10.8c-7.1-25.8-17.8-47.8-32.2-65.4c-29.2-35.8-73-54.2-130.5-54.6c-57 .5-100.1 18.8-128.2 54.4C72.1 146.1 58.5 194.3 58 256c.5 61.7 14.1 109.9 40.3 143.3c28 35.6 71.2 53.9 128.2 54.4c51.4-.4 85.4-12.6 113.7-40.9c32.3-32.2 31.7-71.8 21.4-95.9c-6.1-14.2-17.1-26-31.9-34.9c-3.7 26.9-11.8 48.3-24.7 64.8c-17.1 21.8-41.4 33.6-72.7 35.3c-23.6 1.3-46.3-4.4-63.9-16c-20.8-13.8-33-34.8-34.3-59.3c-2.5-48.3 35.7-83 95.2-86.4c21.1-1.2 40.9-.3 59.2 2.8c-2.4-14.8-7.3-26.6-14.6-35.2c-10-11.7-25.6-17.7-46.2-17.8H227c-16.6 0-39 4.6-53.3 26.3l-34.4-23.6c19.2-29.1 50.3-45.1 87.8-45.1h.8c62.6 .4 99.9 39.5 103.7 107.7l-.2 .2zm-156 68.8c1.3 25.1 28.4 36.8 54.6 35.3c25.6-1.4 54.6-11.4 59.5-73.2c-13.2-2.9-27.8-4.4-43.4-4.4c-4.8 0-9.6 .1-14.4 .4c-42.9 2.4-57.2 23.2-56.2 41.8l-.1 .1z"></path>
</symbol><symbol id="fab-threads-square" viewBox="0 0 448 512">
<path d="M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM294.2 244.3c19.5 9.3 33.7 23.5 41.2 40.9c10.4 24.3 11.4 63.9-20.2 95.4c-24.2 24.1-53.5 35-95.1 35.3h-.2c-46.8-.3-82.8-16.1-106.9-46.8C91.5 341.8 80.4 303.7 80 256v-.1-.1c.4-47.7 11.5-85.7 33-113.1c24.2-30.7 60.2-46.5 106.9-46.8h.2c46.9 .3 83.3 16 108.2 46.6c12.3 15.1 21.3 33.3 27 54.4l-26.9 7.2c-4.7-17.2-11.9-31.9-21.4-43.6c-19.4-23.9-48.7-36.1-87-36.4c-38 .3-66.8 12.5-85.5 36.2c-17.5 22.3-26.6 54.4-26.9 95.5c.3 41.1 9.4 73.3 26.9 95.5c18.7 23.8 47.4 36 85.5 36.2c34.3-.3 56.9-8.4 75.8-27.3c21.5-21.5 21.1-47.9 14.2-64c-4-9.4-11.4-17.3-21.3-23.3c-2.4 18-7.9 32.2-16.5 43.2c-11.4 14.5-27.7 22.4-48.4 23.5c-15.7 .9-30.8-2.9-42.6-10.7c-13.9-9.2-22-23.2-22.9-39.5c-1.7-32.2 23.8-55.3 63.5-57.6c14.1-.8 27.3-.2 39.5 1.9c-1.6-9.9-4.9-17.7-9.8-23.4c-6.7-7.8-17.1-11.8-30.8-11.9h-.4c-11 0-26 3.1-35.6 17.6l-23-15.8c12.8-19.4 33.6-30.1 58.5-30.1h.6c41.8 .3 66.6 26.3 69.1 71.8c1.4 .6 2.8 1.2 4.2 1.9l.1 .5zm-71.8 67.5c17-.9 36.4-7.6 39.7-48.8c-8.8-1.9-18.6-2.9-29-2.9c-3.2 0-6.4 .1-9.6 .3c-28.6 1.6-38.1 15.5-37.4 27.9c.9 16.7 19 24.5 36.4 23.6l-.1-.1z"></path>
</symbol><symbol id="fab-twitter" viewBox="0 0 512 512">
<path d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"></path>
</symbol><symbol id="fab-twitter-square" viewBox="0 0 512 512">
<path d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"></path>
</symbol><symbol id="fab-wikipedia-w" viewBox="0 0 640 512">
<path d="M640 51.2l-.3 12.2c-28.1.8-45 15.8-55.8 40.3-25 57.8-103.3 240-155.3 358.6H415l-81.9-193.1c-32.5 63.6-68.3 130-99.2 193.1-.3.3-15 0-15-.3C172 352.3 122.8 243.4 75.8 133.4 64.4 106.7 26.4 63.4.2 63.7c0-3.1-.3-10-.3-14.2h161.9v13.9c-19.2 1.1-52.8 13.3-43.3 34.2 21.9 49.7 103.6 240.3 125.6 288.6 15-29.7 57.8-109.2 75.3-142.8-13.9-28.3-58.6-133.9-72.8-160-9.7-17.8-36.1-19.4-55.8-19.7V49.8l142.5.3v13.1c-19.4.6-38.1 7.8-29.4 26.1 18.9 40 30.6 68.1 48.1 104.7 5.6-10.8 34.7-69.4 48.1-100.8 8.9-20.6-3.9-28.6-38.6-29.4.3-3.6 0-10.3.3-13.6 44.4-.3 111.1-.3 123.1-.6v13.6c-22.5.8-45.8 12.8-58.1 31.7l-59.2 122.8c6.4 16.1 63.3 142.8 69.2 156.7L559.2 91.8c-8.6-23.1-36.4-28.1-47.2-28.3V49.6l127.8 1.1.2.5z"></path>
</symbol><symbol id="fab-windows" viewBox="0 0 448 512">
<path d="M0 93.7l183.6-25.3v177.4H0V93.7zm0 324.6l183.6 25.3V268.4H0v149.9zm203.8 28L448 480V268.4H203.8v177.9zm0-380.6v180.1H448V32L203.8 65.7z"></path>
</symbol><symbol id="far-bell" viewBox="0 0 448 512">
<path d="M439.39 362.29c-19.32-20.76-55.47-51.99-55.47-154.29 0-77.7-54.48-139.9-127.94-155.16V32c0-17.67-14.32-32-31.98-32s-31.98 14.33-31.98 32v20.84C118.56 68.1 64.08 130.3 64.08 208c0 102.3-36.15 133.53-55.47 154.29-6 6.45-8.66 14.16-8.61 21.71.11 16.4 12.98 32 32.1 32h383.8c19.12 0 32-15.6 32.1-32 .05-7.55-2.61-15.27-8.61-21.71zM67.53 368c21.22-27.97 44.42-74.33 44.53-159.42 0-.2-.06-.38-.06-.58 0-61.86 50.14-112 112-112s112 50.14 112 112c0 .2-.06.38-.06.58.11 85.1 23.31 131.46 44.53 159.42H67.53zM224 512c35.32 0 63.97-28.65 63.97-64H160.03c0 35.35 28.65 64 63.97 64z"></path>
</symbol><symbol id="far-bell-slash" viewBox="0 0 640 512">
<path d="M633.99 471.02L36 3.51C29.1-2.01 19.03-.9 13.51 6l-10 12.49C-2.02 25.39-.9 35.46 6 40.98l598 467.51c6.9 5.52 16.96 4.4 22.49-2.49l10-12.49c5.52-6.9 4.41-16.97-2.5-22.49zM163.53 368c16.71-22.03 34.48-55.8 41.4-110.58l-45.47-35.55c-3.27 90.73-36.47 120.68-54.84 140.42-6 6.45-8.66 14.16-8.61 21.71.11 16.4 12.98 32 32.1 32h279.66l-61.4-48H163.53zM320 96c61.86 0 112 50.14 112 112 0 .2-.06.38-.06.58.02 16.84 1.16 31.77 2.79 45.73l59.53 46.54c-8.31-22.13-14.34-51.49-14.34-92.85 0-77.7-54.48-139.9-127.94-155.16V32c0-17.67-14.32-32-31.98-32s-31.98 14.33-31.98 32v20.84c-26.02 5.41-49.45 16.94-69.13 32.72l38.17 29.84C275 103.18 296.65 96 320 96zm0 416c35.32 0 63.97-28.65 63.97-64H256.03c0 35.35 28.65 64 63.97 64z"></path>
</symbol><symbol id="far-calendar-plus" viewBox="0 0 448 512">
<path d="M336 292v24c0 6.6-5.4 12-12 12h-76v76c0 6.6-5.4 12-12 12h-24c-6.6 0-12-5.4-12-12v-76h-76c-6.6 0-12-5.4-12-12v-24c0-6.6 5.4-12 12-12h76v-76c0-6.6 5.4-12 12-12h24c6.6 0 12 5.4 12 12v76h76c6.6 0 12 5.4 12 12zm112-180v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h48V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h128V12c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v52h48c26.5 0 48 21.5 48 48zm-48 346V160H48v298c0 3.3 2.7 6 6 6h340c3.3 0 6-2.7 6-6z"></path>
</symbol><symbol id="far-chart-bar" viewBox="0 0 512 512">
<path d="M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z"></path>
</symbol><symbol id="far-check-square" viewBox="0 0 448 512">
<path d="M400 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm0 400H48V80h352v352zm-35.864-241.724L191.547 361.48c-4.705 4.667-12.303 4.637-16.97-.068l-90.781-91.516c-4.667-4.705-4.637-12.303.069-16.971l22.719-22.536c4.705-4.667 12.303-4.637 16.97.069l59.792 60.277 141.352-140.216c4.705-4.667 12.303-4.637 16.97.068l22.536 22.718c4.667 4.706 4.637 12.304-.068 16.971z"></path>
</symbol><symbol id="far-circle" viewBox="0 0 512 512">
<path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200z"></path>
</symbol><symbol id="far-clipboard" viewBox="0 0 384 512">
<path d="M336 64h-80c0-35.3-28.7-64-64-64s-64 28.7-64 64H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zM192 40c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm144 418c0 3.3-2.7 6-6 6H54c-3.3 0-6-2.7-6-6V118c0-3.3 2.7-6 6-6h42v36c0 6.6 5.4 12 12 12h168c6.6 0 12-5.4 12-12v-36h42c3.3 0 6 2.7 6 6z"></path>
</symbol><symbol id="far-clock" viewBox="0 0 512 512">
<path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z"></path>
</symbol><symbol id="far-comment" viewBox="0 0 512 512">
<path d="M256 32C114.6 32 0 125.1 0 240c0 47.6 19.9 91.2 52.9 126.3C38 405.7 7 439.1 6.5 439.5c-6.6 7-8.4 17.2-4.6 26S14.4 480 24 480c61.5 0 110-25.7 139.1-46.3C192 442.8 223.2 448 256 448c141.4 0 256-93.1 256-208S397.4 32 256 32zm0 368c-26.7 0-53.1-4.1-78.4-12.1l-22.7-7.2-19.5 13.8c-14.3 10.1-33.9 21.4-57.5 29 7.3-12.1 14.4-25.7 19.9-40.2l10.6-28.1-20.6-21.8C69.7 314.1 48 282.2 48 240c0-88.2 93.3-160 208-160s208 71.8 208 160-93.3 160-208 160z"></path>
</symbol><symbol id="far-comments" viewBox="0 0 576 512">
<path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path>
</symbol><symbol id="far-copyright" viewBox="0 0 512 512">
<path d="M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm107.351-101.064c-9.614 9.712-45.53 41.396-104.065 41.396-82.43 0-140.484-61.425-140.484-141.567 0-79.152 60.275-139.401 139.762-139.401 55.531 0 88.738 26.62 97.593 34.779a11.965 11.965 0 0 1 1.936 15.322l-18.155 28.113c-3.841 5.95-11.966 7.282-17.499 2.921-8.595-6.776-31.814-22.538-61.708-22.538-48.303 0-77.916 35.33-77.916 80.082 0 41.589 26.888 83.692 78.277 83.692 32.657 0 56.843-19.039 65.726-27.225 5.27-4.857 13.596-4.039 17.82 1.738l19.865 27.17a11.947 11.947 0 0 1-1.152 15.518z"></path>
</symbol><symbol id="far-credit-card" viewBox="0 0 576 512">
<path d="M527.9 32H48.1C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48.1 48h479.8c26.6 0 48.1-21.5 48.1-48V80c0-26.5-21.5-48-48.1-48zM54.1 80h467.8c3.3 0 6 2.7 6 6v42H48.1V86c0-3.3 2.7-6 6-6zm467.8 352H54.1c-3.3 0-6-2.7-6-6V256h479.8v170c0 3.3-2.7 6-6 6zM192 332v40c0 6.6-5.4 12-12 12h-72c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h72c6.6 0 12 5.4 12 12zm192 0v40c0 6.6-5.4 12-12 12H236c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h136c6.6 0 12 5.4 12 12z"></path>
</symbol><symbol id="far-dot-circle" viewBox="0 0 512 512">
<path d="M256 56c110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200-110.532 0-200-89.451-200-200 0-110.532 89.451-200 200-200m0-48C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 168c-44.183 0-80 35.817-80 80s35.817 80 80 80 80-35.817 80-80-35.817-80-80-80z"></path>
</symbol><symbol id="far-edit" viewBox="0 0 576 512">
<path d="M402.3 344.9l32-32c5-5 13.7-1.5 13.7 5.7V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V112c0-26.5 21.5-48 48-48h273.5c7.1 0 10.7 8.6 5.7 13.7l-32 32c-1.5 1.5-3.5 2.3-5.7 2.3H48v352h352V350.5c0-2.1.8-4.1 2.3-5.6zm156.6-201.8L296.3 405.7l-90.4 10c-26.2 2.9-48.5-19.2-45.6-45.6l10-90.4L432.9 17.1c22.9-22.9 59.9-22.9 82.7 0l43.2 43.2c22.9 22.9 22.9 60 .1 82.8zM460.1 174L402 115.9 216.2 301.8l-7.3 65.3 65.3-7.3L460.1 174zm64.8-79.7l-43.2-43.2c-4.1-4.1-10.8-4.1-14.8 0L436 82l58.1 58.1 30.9-30.9c4-4.2 4-10.8-.1-14.9z"></path>
</symbol><symbol id="far-envelope" viewBox="0 0 512 512">
<path d="M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z"></path>
</symbol><symbol id="far-eye" viewBox="0 0 576 512">
<path d="M288 144a110.94 110.94 0 0 0-31.24 5 55.4 55.4 0 0 1 7.24 27 56 56 0 0 1-56 56 55.4 55.4 0 0 1-27-7.24A111.71 111.71 0 1 0 288 144zm284.52 97.4C518.29 135.59 410.93 64 288 64S57.68 135.64 3.48 241.41a32.35 32.35 0 0 0 0 29.19C57.71 376.41 165.07 448 288 448s230.32-71.64 284.52-177.41a32.35 32.35 0 0 0 0-29.19zM288 400c-98.65 0-189.09-55-237.93-144C98.91 167 189.34 112 288 112s189.09 55 237.93 144C477.1 345 386.66 400 288 400z"></path>
</symbol><symbol id="far-eye-slash" viewBox="0 0 640 512">
<path d="M634 471L36 3.51A16 16 0 0 0 13.51 6l-10 12.49A16 16 0 0 0 6 41l598 467.49a16 16 0 0 0 22.49-2.49l10-12.49A16 16 0 0 0 634 471zM296.79 146.47l134.79 105.38C429.36 191.91 380.48 144 320 144a112.26 112.26 0 0 0-23.21 2.47zm46.42 219.07L208.42 260.16C210.65 320.09 259.53 368 320 368a113 113 0 0 0 23.21-2.46zM320 112c98.65 0 189.09 55 237.93 144a285.53 285.53 0 0 1-44 60.2l37.74 29.5a333.7 333.7 0 0 0 52.9-75.11 32.35 32.35 0 0 0 0-29.19C550.29 135.59 442.93 64 320 64c-36.7 0-71.71 7-104.63 18.81l46.41 36.29c18.94-4.3 38.34-7.1 58.22-7.1zm0 288c-98.65 0-189.08-55-237.93-144a285.47 285.47 0 0 1 44.05-60.19l-37.74-29.5a333.6 333.6 0 0 0-52.89 75.1 32.35 32.35 0 0 0 0 29.19C89.72 376.41 197.08 448 320 448c36.7 0 71.71-7.05 104.63-18.81l-46.41-36.28C359.28 397.2 339.89 400 320 400z"></path>
</symbol><symbol id="far-file-alt" viewBox="0 0 384 512">
<path d="M288 248v28c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-28c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm-12 72H108c-6.6 0-12 5.4-12 12v28c0 6.6 5.4 12 12 12h168c6.6 0 12-5.4 12-12v-28c0-6.6-5.4-12-12-12zm108-188.1V464c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V48C0 21.5 21.5 0 48 0h204.1C264.8 0 277 5.1 286 14.1L369.9 98c9 8.9 14.1 21.2 14.1 33.9zm-128-80V128h76.1L256 51.9zM336 464V176H232c-13.3 0-24-10.7-24-24V48H48v416h288z"></path>
</symbol><symbol id="far-frown" viewBox="0 0 496 512">
<path d="M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-80 128c-40.2 0-78 17.7-103.8 48.6-8.5 10.2-7.1 25.3 3.1 33.8 10.2 8.4 25.3 7.1 33.8-3.1 16.6-19.9 41-31.4 66.9-31.4s50.3 11.4 66.9 31.4c8.1 9.7 23.1 11.9 33.8 3.1 10.2-8.5 11.5-23.6 3.1-33.8C326 321.7 288.2 304 248 304z"></path>
</symbol><symbol id="far-heart" viewBox="0 0 512 512">
<path d="M458.4 64.3C400.6 15.7 311.3 23 256 79.3 200.7 23 111.4 15.6 53.6 64.3-21.6 127.6-10.6 230.8 43 285.5l175.4 178.7c10 10.2 23.4 15.9 37.6 15.9 14.3 0 27.6-5.6 37.6-15.8L469 285.6c53.5-54.7 64.7-157.9-10.6-221.3zm-23.6 187.5L259.4 430.5c-2.4 2.4-4.4 2.4-6.8 0L77.2 251.8c-36.5-37.2-43.9-107.6 7.3-150.7 38.9-32.7 98.9-27.8 136.5 10.5l35 35.7 35-35.7c37.8-38.5 97.8-43.2 136.5-10.6 51.1 43.1 43.5 113.9 7.3 150.8z"></path>
</symbol><symbol id="far-image" viewBox="0 0 512 512">
<path d="M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm-6 336H54a6 6 0 0 1-6-6V118a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v276a6 6 0 0 1-6 6zM128 152c-22.091 0-40 17.909-40 40s17.909 40 40 40 40-17.909 40-40-17.909-40-40-40zM96 352h320v-80l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L192 304l-39.515-39.515c-4.686-4.686-12.284-4.686-16.971 0L96 304v48z"></path>
</symbol><symbol id="far-list-alt" viewBox="0 0 512 512">
<path d="M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zm-6 400H54a6 6 0 0 1-6-6V86a6 6 0 0 1 6-6h404a6 6 0 0 1 6 6v340a6 6 0 0 1-6 6zm-42-92v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm0-96v24c0 6.627-5.373 12-12 12H204c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h200c6.627 0 12 5.373 12 12zm-252 12c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36zm0 96c0 19.882-16.118 36-36 36s-36-16.118-36-36 16.118-36 36-36 36 16.118 36 36z"></path>
</symbol><symbol id="far-meh" viewBox="0 0 496 512">
<path d="M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm8 144H160c-13.2 0-24 10.8-24 24s10.8 24 24 24h176c13.2 0 24-10.8 24-24s-10.8-24-24-24z"></path>
</symbol><symbol id="far-moon" viewBox="0 0 512 512">
<path d="M279.135 512c78.756 0 150.982-35.804 198.844-94.775 28.27-34.831-2.558-85.722-46.249-77.401-82.348 15.683-158.272-47.268-158.272-130.792 0-48.424 26.06-92.292 67.434-115.836 38.745-22.05 28.999-80.788-15.022-88.919A257.936 257.936 0 0 0 279.135 0c-141.36 0-256 114.575-256 256 0 141.36 114.576 256 256 256zm0-464c12.985 0 25.689 1.201 38.016 3.478-54.76 31.163-91.693 90.042-91.693 157.554 0 113.848 103.641 199.2 215.252 177.944C402.574 433.964 344.366 464 279.135 464c-114.875 0-208-93.125-208-208s93.125-208 208-208z"></path>
</symbol><symbol id="far-smile" viewBox="0 0 496 512">
<path d="M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm4 72.6c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.7-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.1-8.4-25.3-7.1-33.8 3.1z"></path>
</symbol><symbol id="far-square" viewBox="0 0 448 512">
<path d="M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V86c0-3.3 2.7-6 6-6h340c3.3 0 6 2.7 6 6v340c0 3.3-2.7 6-6 6z"></path>
</symbol><symbol id="far-star" viewBox="0 0 576 512">
<path d="M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z"></path>
</symbol><symbol id="far-sun" viewBox="0 0 512 512">
<path d="M494.2 221.9l-59.8-40.5 13.7-71c2.6-13.2-1.6-26.8-11.1-36.4-9.6-9.5-23.2-13.7-36.2-11.1l-70.9 13.7-40.4-59.9c-15.1-22.3-51.9-22.3-67 0l-40.4 59.9-70.8-13.7C98 60.4 84.5 64.5 75 74.1c-9.5 9.6-13.7 23.1-11.1 36.3l13.7 71-59.8 40.5C6.6 229.5 0 242 0 255.5s6.7 26 17.8 33.5l59.8 40.5-13.7 71c-2.6 13.2 1.6 26.8 11.1 36.3 9.5 9.5 22.9 13.7 36.3 11.1l70.8-13.7 40.4 59.9C230 505.3 242.6 512 256 512s26-6.7 33.5-17.8l40.4-59.9 70.9 13.7c13.4 2.7 26.8-1.6 36.3-11.1 9.5-9.5 13.6-23.1 11.1-36.3l-13.7-71 59.8-40.5c11.1-7.5 17.8-20.1 17.8-33.5-.1-13.6-6.7-26.1-17.9-33.7zm-112.9 85.6l17.6 91.2-91-17.6L256 458l-51.9-77-90.9 17.6 17.6-91.2-76.8-52 76.8-52-17.6-91.2 91 17.6L256 53l51.9 76.9 91-17.6-17.6 91.1 76.8 52-76.8 52.1zM256 152c-57.3 0-104 46.7-104 104s46.7 104 104 104 104-46.7 104-104-46.7-104-104-104zm0 160c-30.9 0-56-25.1-56-56s25.1-56 56-56 56 25.1 56 56-25.1 56-56 56z"></path>
</symbol><symbol id="far-thumbs-down" viewBox="0 0 512 512">
<path d="M466.27 225.31c4.674-22.647.864-44.538-8.99-62.99 2.958-23.868-4.021-48.565-17.34-66.99C438.986 39.423 404.117 0 327 0c-7 0-15 .01-22.22.01C201.195.01 168.997 40 128 40h-10.845c-5.64-4.975-13.042-8-21.155-8H32C14.327 32 0 46.327 0 64v240c0 17.673 14.327 32 32 32h64c11.842 0 22.175-6.438 27.708-16h7.052c19.146 16.953 46.013 60.653 68.76 83.4 13.667 13.667 10.153 108.6 71.76 108.6 57.58 0 95.27-31.936 95.27-104.73 0-18.41-3.93-33.73-8.85-46.54h36.48c48.602 0 85.82-41.565 85.82-85.58 0-19.15-4.96-34.99-13.73-49.84zM64 296c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zm330.18 16.73H290.19c0 37.82 28.36 55.37 28.36 94.54 0 23.75 0 56.73-47.27 56.73-18.91-18.91-9.46-66.18-37.82-94.54C206.9 342.89 167.28 272 138.92 272H128V85.83c53.611 0 100.001-37.82 171.64-37.82h37.82c35.512 0 60.82 17.12 53.12 65.9 15.2 8.16 26.5 36.44 13.94 57.57 21.581 20.384 18.699 51.065 5.21 65.62 9.45 0 22.36 18.91 22.27 37.81-.09 18.91-16.71 37.82-37.82 37.82z"></path>
</symbol><symbol id="far-thumbs-up" viewBox="0 0 512 512">
<path d="M466.27 286.69C475.04 271.84 480 256 480 236.85c0-44.015-37.218-85.58-85.82-85.58H357.7c4.92-12.81 8.85-28.13 8.85-46.54C366.55 31.936 328.86 0 271.28 0c-61.607 0-58.093 94.933-71.76 108.6-22.747 22.747-49.615 66.447-68.76 83.4H32c-17.673 0-32 14.327-32 32v240c0 17.673 14.327 32 32 32h64c14.893 0 27.408-10.174 30.978-23.95 44.509 1.001 75.06 39.94 177.802 39.94 7.22 0 15.22.01 22.22.01 77.117 0 111.986-39.423 112.94-95.33 13.319-18.425 20.299-43.122 17.34-66.99 9.854-18.452 13.664-40.343 8.99-62.99zm-61.75 53.83c12.56 21.13 1.26 49.41-13.94 57.57 7.7 48.78-17.608 65.9-53.12 65.9h-37.82c-71.639 0-118.029-37.82-171.64-37.82V240h10.92c28.36 0 67.98-70.89 94.54-97.46 28.36-28.36 18.91-75.63 37.82-94.54 47.27 0 47.27 32.98 47.27 56.73 0 39.17-28.36 56.72-28.36 94.54h103.99c21.11 0 37.73 18.91 37.82 37.82.09 18.9-12.82 37.81-22.27 37.81 13.489 14.555 16.371 45.236-5.21 65.62zM88 432c0 13.255-10.745 24-24 24s-24-10.745-24-24 10.745-24 24-24 24 10.745 24 24z"></path>
</symbol><symbol id="far-trash-alt" viewBox="0 0 448 512">
<path d="M268 416h24a12 12 0 0 0 12-12V188a12 12 0 0 0-12-12h-24a12 12 0 0 0-12 12v216a12 12 0 0 0 12 12zM432 80h-82.41l-34-56.7A48 48 0 0 0 274.41 0H173.59a48 48 0 0 0-41.16 23.3L98.41 80H16A16 16 0 0 0 0 96v16a16 16 0 0 0 16 16h16v336a48 48 0 0 0 48 48h288a48 48 0 0 0 48-48V128h16a16 16 0 0 0 16-16V96a16 16 0 0 0-16-16zM171.84 50.91A6 6 0 0 1 177 48h94a6 6 0 0 1 5.15 2.91L293.61 80H154.39zM368 464H80V128h288zm-212-48h24a12 12 0 0 0 12-12V188a12 12 0 0 0-12-12h-24a12 12 0 0 0-12 12v216a12 12 0 0 0 12 12z"></path>
</symbol><symbol id="fast-backward" viewBox="0 0 512 512">
<path d="M0 436V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v151.9L235.5 71.4C256.1 54.3 288 68.6 288 96v131.9L459.5 71.4C480.1 54.3 512 68.6 512 96v320c0 27.4-31.9 41.7-52.5 24.6L288 285.3V416c0 27.4-31.9 41.7-52.5 24.6L64 285.3V436c0 6.6-5.4 12-12 12H12c-6.6 0-12-5.4-12-12z"></path>
</symbol><symbol id="fast-forward" viewBox="0 0 512 512">
<path d="M512 76v360c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12V284.1L276.5 440.6c-20.6 17.2-52.5 2.8-52.5-24.6V284.1L52.5 440.6C31.9 457.8 0 443.4 0 416V96c0-27.4 31.9-41.7 52.5-24.6L224 226.8V96c0-27.4 31.9-41.7 52.5-24.6L448 226.8V76c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12z"></path>
</symbol><symbol id="file" viewBox="0 0 384 512">
<path d="M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm160-14.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"></path>
</symbol><symbol id="file-alt" viewBox="0 0 384 512">
<path d="M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm64 236c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-64c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12v8zm0-72v8c0 6.6-5.4 12-12 12H108c-6.6 0-12-5.4-12-12v-8c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm96-114.1v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"></path>
</symbol><symbol id="file-audio" viewBox="0 0 384 512">
<path d="M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm-64 268c0 10.7-12.9 16-20.5 8.5L104 376H76c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h28l35.5-36.5c7.6-7.6 20.5-2.2 20.5 8.5v136zm33.2-47.6c9.1-9.3 9.1-24.1 0-33.4-22.1-22.8 12.2-56.2 34.4-33.5 27.2 27.9 27.2 72.4 0 100.4-21.8 22.3-56.9-10.4-34.4-33.5zm86-117.1c54.4 55.9 54.4 144.8 0 200.8-21.8 22.4-57-10.3-34.4-33.5 36.2-37.2 36.3-96.5 0-133.8-22.1-22.8 12.3-56.3 34.4-33.5zM384 121.9v6.1H256V0h6.1c6.4 0 12.5 2.5 17 7l97.9 98c4.5 4.5 7 10.6 7 16.9z"></path>
</symbol><symbol id="file-csv" viewBox="0 0 384 512">
<path d="M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm-96 144c0 4.42-3.58 8-8 8h-8c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h8c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-8c-26.51 0-48-21.49-48-48v-32c0-26.51 21.49-48 48-48h8c4.42 0 8 3.58 8 8v16zm44.27 104H160c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h12.27c5.95 0 10.41-3.5 10.41-6.62 0-1.3-.75-2.66-2.12-3.84l-21.89-18.77c-8.47-7.22-13.33-17.48-13.33-28.14 0-21.3 19.02-38.62 42.41-38.62H200c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8h-12.27c-5.95 0-10.41 3.5-10.41 6.62 0 1.3.75 2.66 2.12 3.84l21.89 18.77c8.47 7.22 13.33 17.48 13.33 28.14.01 21.29-19 38.62-42.39 38.62zM256 264v20.8c0 20.27 5.7 40.17 16 56.88 10.3-16.7 16-36.61 16-56.88V264c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8v20.8c0 35.48-12.88 68.89-36.28 94.09-3.02 3.25-7.27 5.11-11.72 5.11s-8.7-1.86-11.72-5.11c-23.4-25.2-36.28-58.61-36.28-94.09V264c0-4.42 3.58-8 8-8h16c4.42 0 8 3.58 8 8zm121-159L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"></path>
</symbol><symbol id="file-image" viewBox="0 0 384 512">
<path d="M384 121.941V128H256V0h6.059a24 24 0 0 1 16.97 7.029l97.941 97.941a24.002 24.002 0 0 1 7.03 16.971zM248 160c-13.2 0-24-10.8-24-24V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248zm-135.455 16c26.51 0 48 21.49 48 48s-21.49 48-48 48-48-21.49-48-48 21.491-48 48-48zm208 240h-256l.485-48.485L104.545 328c4.686-4.686 11.799-4.201 16.485.485L160.545 368 264.06 264.485c4.686-4.686 12.284-4.686 16.971 0L320.545 304v112z"></path>
</symbol><symbol id="file-invoice" viewBox="0 0 384 512">
<path d="M288 256H96v64h192v-64zm89-151L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-153 31V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zM64 72c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8V72zm0 64c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16c0 4.42-3.58 8-8 8H72c-4.42 0-8-3.58-8-8v-16zm256 304c0 4.42-3.58 8-8 8h-80c-4.42 0-8-3.58-8-8v-16c0-4.42 3.58-8 8-8h80c4.42 0 8 3.58 8 8v16zm0-200v96c0 8.84-7.16 16-16 16H80c-8.84 0-16-7.16-16-16v-96c0-8.84 7.16-16 16-16h224c8.84 0 16 7.16 16 16z"></path>
</symbol><symbol id="file-signature" viewBox="0 0 576 512">
<path d="M218.17 424.14c-2.95-5.92-8.09-6.52-10.17-6.52s-7.22.59-10.02 6.19l-7.67 15.34c-6.37 12.78-25.03 11.37-29.48-2.09L144 386.59l-10.61 31.88c-5.89 17.66-22.38 29.53-41 29.53H80c-8.84 0-16-7.16-16-16s7.16-16 16-16h12.39c4.83 0 9.11-3.08 10.64-7.66l18.19-54.64c3.3-9.81 12.44-16.41 22.78-16.41s19.48 6.59 22.77 16.41l13.88 41.64c19.75-16.19 54.06-9.7 66 14.16 1.89 3.78 5.49 5.95 9.36 6.26v-82.12l128-127.09V160H248c-13.2 0-24-10.8-24-24V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24v-40l-128-.11c-16.12-.31-30.58-9.28-37.83-23.75zM384 121.9c0-6.3-2.5-12.4-7-16.9L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1zm-96 225.06V416h68.99l161.68-162.78-67.88-67.88L288 346.96zm280.54-179.63l-31.87-31.87c-9.94-9.94-26.07-9.94-36.01 0l-27.25 27.25 67.88 67.88 27.25-27.25c9.95-9.94 9.95-26.07 0-36.01z"></path>
</symbol><symbol id="file-upload" viewBox="0 0 384 512">
<path d="M224 136V0H24C10.7 0 0 10.7 0 24v464c0 13.3 10.7 24 24 24h336c13.3 0 24-10.7 24-24V160H248c-13.2 0-24-10.8-24-24zm65.18 216.01H224v80c0 8.84-7.16 16-16 16h-32c-8.84 0-16-7.16-16-16v-80H94.82c-14.28 0-21.41-17.29-11.27-27.36l96.42-95.7c6.65-6.61 17.39-6.61 24.04 0l96.42 95.7c10.15 10.07 3.03 27.36-11.25 27.36zM377 105L279.1 7c-4.5-4.5-10.6-7-17-7H256v128h128v-6.1c0-6.3-2.5-12.4-7-16.9z"></path>
</symbol><symbol id="file-video" viewBox="0 0 384 512">
<path d="M384 121.941V128H256V0h6.059c6.365 0 12.47 2.529 16.971 7.029l97.941 97.941A24.005 24.005 0 0 1 384 121.941zM224 136V0H24C10.745 0 0 10.745 0 24v464c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V160H248c-13.2 0-24-10.8-24-24zm96 144.016v111.963c0 21.445-25.943 31.998-40.971 16.971L224 353.941V392c0 13.255-10.745 24-24 24H88c-13.255 0-24-10.745-24-24V280c0-13.255 10.745-24 24-24h112c13.255 0 24 10.745 24 24v38.059l55.029-55.013c15.011-15.01 40.971-4.491 40.971 16.97z"></path>
</symbol><symbol id="filter" viewBox="0 0 512 512">
<path d="M487.976 0H24.028C2.71 0-8.047 25.866 7.058 40.971L192 225.941V432c0 7.831 3.821 15.17 10.237 19.662l80 55.98C298.02 518.69 320 507.493 320 487.98V225.941l184.947-184.97C520.021 25.896 509.338 0 487.976 0z"></path>
</symbol><symbol id="flag" viewBox="0 0 512 512">
<path d="M349.565 98.783C295.978 98.783 251.721 64 184.348 64c-24.955 0-47.309 4.384-68.045 12.013a55.947 55.947 0 0 0 3.586-23.562C118.117 24.015 94.806 1.206 66.338.048 34.345-1.254 8 24.296 8 56c0 19.026 9.497 35.825 24 45.945V488c0 13.255 10.745 24 24 24h16c13.255 0 24-10.745 24-24v-94.4c28.311-12.064 63.582-22.122 114.435-22.122 53.588 0 97.844 34.783 165.217 34.783 48.169 0 86.667-16.294 122.505-40.858C506.84 359.452 512 349.571 512 339.045v-243.1c0-23.393-24.269-38.87-45.485-29.016-34.338 15.948-76.454 31.854-116.95 31.854z"></path>
</symbol><symbol id="folder" viewBox="0 0 512 512">
<path d="M464 128H272l-64-64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V176c0-26.51-21.49-48-48-48z"></path>
</symbol><symbol id="folder-open" viewBox="0 0 576 512">
<path d="M572.694 292.093L500.27 416.248A63.997 63.997 0 0 1 444.989 448H45.025c-18.523 0-30.064-20.093-20.731-36.093l72.424-124.155A64 64 0 0 1 152 256h399.964c18.523 0 30.064 20.093 20.73 36.093zM152 224h328v-48c0-26.51-21.49-48-48-48H272l-64-64H48C21.49 64 0 85.49 0 112v278.046l69.077-118.418C86.214 242.25 117.989 224 152 224z"></path>
</symbol><symbol id="forward" viewBox="0 0 512 512">
<path d="M500.5 231.4l-192-160C287.9 54.3 256 68.6 256 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2zm-256 0l-192-160C31.9 54.3 0 68.6 0 96v320c0 27.4 31.9 41.8 52.5 24.6l192-160c15.3-12.8 15.3-36.4 0-49.2z"></path>
</symbol><symbol id="gavel" viewBox="0 0 512 512">
<path d="M504.971 199.362l-22.627-22.627c-9.373-9.373-24.569-9.373-33.941 0l-5.657 5.657L329.608 69.255l5.657-5.657c9.373-9.373 9.373-24.569 0-33.941L312.638 7.029c-9.373-9.373-24.569-9.373-33.941 0L154.246 131.48c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l5.657-5.657 39.598 39.598-81.04 81.04-5.657-5.657c-12.497-12.497-32.758-12.497-45.255 0L9.373 412.118c-12.497 12.497-12.497 32.758 0 45.255l45.255 45.255c12.497 12.497 32.758 12.497 45.255 0l114.745-114.745c12.497-12.497 12.497-32.758 0-45.255l-5.657-5.657 81.04-81.04 39.598 39.598-5.657 5.657c-9.373 9.373-9.373 24.569 0 33.941l22.627 22.627c9.373 9.373 24.569 9.373 33.941 0l124.451-124.451c9.372-9.372 9.372-24.568 0-33.941z"></path>
</symbol><symbol id="gift" viewBox="0 0 512 512">
<path d="M32 448c0 17.7 14.3 32 32 32h160V320H32v128zm256 32h160c17.7 0 32-14.3 32-32V320H288v160zm192-320h-42.1c6.2-12.1 10.1-25.5 10.1-40 0-48.5-39.5-88-88-88-41.6 0-68.5 21.3-103 68.3-34.5-47-61.4-68.3-103-68.3-48.5 0-88 39.5-88 88 0 14.5 3.8 27.9 10.1 40H32c-17.7 0-32 14.3-32 32v80c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16v-80c0-17.7-14.3-32-32-32zm-326.1 0c-22.1 0-40-17.9-40-40s17.9-40 40-40c19.9 0 34.6 3.3 86.1 80h-86.1zm206.1 0h-86.1c51.4-76.5 65.7-80 86.1-80 22.1 0 40 17.9 40 40s-17.9 40-40 40z"></path>
</symbol><symbol id="globe" viewBox="0 0 496 512">
<path d="M336.5 160C322 70.7 287.8 8 248 8s-74 62.7-88.5 152h177zM152 256c0 22.2 1.2 43.5 3.3 64h185.3c2.1-20.5 3.3-41.8 3.3-64s-1.2-43.5-3.3-64H155.3c-2.1 20.5-3.3 41.8-3.3 64zm324.7-96c-28.6-67.9-86.5-120.4-158-141.6 24.4 33.8 41.2 84.7 50 141.6h108zM177.2 18.4C105.8 39.6 47.8 92.1 19.3 160h108c8.7-56.9 25.5-107.8 49.9-141.6zM487.4 192H372.7c2.1 21 3.3 42.5 3.3 64s-1.2 43-3.3 64h114.6c5.5-20.5 8.6-41.8 8.6-64s-3.1-43.5-8.5-64zM120 256c0-21.5 1.2-43 3.3-64H8.6C3.2 212.5 0 233.8 0 256s3.2 43.5 8.6 64h114.6c-2-21-3.2-42.5-3.2-64zm39.5 96c14.5 89.3 48.7 152 88.5 152s74-62.7 88.5-152h-177zm159.3 141.6c71.4-21.2 129.4-73.7 158-141.6h-108c-8.8 56.9-25.6 107.8-50 141.6zM19.3 352c28.6 67.9 86.5 120.4 158 141.6-24.4-33.8-41.2-84.7-50-141.6h-108z"></path>
</symbol><symbol id="globe-americas" viewBox="0 0 496 512">
<path d="M248 8C111.03 8 0 119.03 0 256s111.03 248 248 248 248-111.03 248-248S384.97 8 248 8zm82.29 357.6c-3.9 3.88-7.99 7.95-11.31 11.28-2.99 3-5.1 6.7-6.17 10.71-1.51 5.66-2.73 11.38-4.77 16.87l-17.39 46.85c-13.76 3-28 4.69-42.65 4.69v-27.38c1.69-12.62-7.64-36.26-22.63-51.25-6-6-9.37-14.14-9.37-22.63v-32.01c0-11.64-6.27-22.34-16.46-27.97-14.37-7.95-34.81-19.06-48.81-26.11-11.48-5.78-22.1-13.14-31.65-21.75l-.8-.72a114.792 114.792 0 0 1-18.06-20.74c-9.38-13.77-24.66-36.42-34.59-51.14 20.47-45.5 57.36-82.04 103.2-101.89l24.01 12.01C203.48 89.74 216 82.01 216 70.11v-11.3c7.99-1.29 16.12-2.11 24.39-2.42l28.3 28.3c6.25 6.25 6.25 16.38 0 22.63L264 112l-10.34 10.34c-3.12 3.12-3.12 8.19 0 11.31l4.69 4.69c3.12 3.12 3.12 8.19 0 11.31l-8 8a8.008 8.008 0 0 1-5.66 2.34h-8.99c-2.08 0-4.08.81-5.58 2.27l-9.92 9.65a8.008 8.008 0 0 0-1.58 9.31l15.59 31.19c2.66 5.32-1.21 11.58-7.15 11.58h-5.64c-1.93 0-3.79-.7-5.24-1.96l-9.28-8.06a16.017 16.017 0 0 0-15.55-3.1l-31.17 10.39a11.95 11.95 0 0 0-8.17 11.34c0 4.53 2.56 8.66 6.61 10.69l11.08 5.54c9.41 4.71 19.79 7.16 30.31 7.16s22.59 27.29 32 32h66.75c8.49 0 16.62 3.37 22.63 9.37l13.69 13.69a30.503 30.503 0 0 1 8.93 21.57 46.536 46.536 0 0 1-13.72 32.98zM417 274.25c-5.79-1.45-10.84-5-14.15-9.97l-17.98-26.97a23.97 23.97 0 0 1 0-26.62l19.59-29.38c2.32-3.47 5.5-6.29 9.24-8.15l12.98-6.49C440.2 193.59 448 223.87 448 256c0 8.67-.74 17.16-1.82 25.54L417 274.25z"></path>
</symbol><symbol id="grip-lines" viewBox="0 0 512 512">
<path d="M496 288H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-128H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h480c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16z"></path>
</symbol><symbol id="hand-point-right" viewBox="0 0 512 512">
<path d="M512 199.652c0 23.625-20.65 43.826-44.8 43.826h-99.851c16.34 17.048 18.346 49.766-6.299 70.944 14.288 22.829 2.147 53.017-16.45 62.315C353.574 425.878 322.654 448 272 448c-2.746 0-13.276-.203-16-.195-61.971.168-76.894-31.065-123.731-38.315C120.596 407.683 112 397.599 112 385.786V214.261l.002-.001c.011-18.366 10.607-35.889 28.464-43.845 28.886-12.994 95.413-49.038 107.534-77.323 7.797-18.194 21.384-29.084 40-29.092 34.222-.014 57.752 35.098 44.119 66.908-3.583 8.359-8.312 16.67-14.153 24.918H467.2c23.45 0 44.8 20.543 44.8 43.826zM96 200v192c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V200c0-13.255 10.745-24 24-24h48c13.255 0 24 10.745 24 24zM68 368c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z"></path>
</symbol><symbol id="hands-helping" viewBox="0 0 640 512">
<path d="M488 192H336v56c0 39.7-32.3 72-72 72s-72-32.3-72-72V126.4l-64.9 39C107.8 176.9 96 197.8 96 220.2v47.3l-80 46.2C.7 322.5-4.6 342.1 4.3 357.4l80 138.6c8.8 15.3 28.4 20.5 43.7 11.7L231.4 448H368c35.3 0 64-28.7 64-64h16c17.7 0 32-14.3 32-32v-64h8c13.3 0 24-10.7 24-24v-48c0-13.3-10.7-24-24-24zm147.7-37.4L555.7 16C546.9.7 527.3-4.5 512 4.3L408.6 64H306.4c-12 0-23.7 3.4-33.9 9.7L239 94.6c-9.4 5.8-15 16.1-15 27.1V248c0 22.1 17.9 40 40 40s40-17.9 40-40v-88h184c30.9 0 56 25.1 56 56v28.5l80-46.2c15.3-8.9 20.5-28.4 11.7-43.7z"></path>
</symbol><symbol id="heart" viewBox="0 0 512 512">
<path d="M462.3 62.6C407.5 15.9 326 24.3 275.7 76.2L256 96.5l-19.7-20.3C186.1 24.3 104.5 15.9 49.7 62.6c-62.8 53.6-66.1 149.8-9.9 207.9l193.5 199.8c12.5 12.9 32.8 12.9 45.3 0l193.5-199.8c56.3-58.1 53-154.3-9.8-207.9z"></path>
</symbol><symbol id="history" viewBox="0 0 512 512">
<path d="M504 255.531c.253 136.64-111.18 248.372-247.82 248.468-59.015.042-113.223-20.53-155.822-54.911-11.077-8.94-11.905-25.541-1.839-35.607l11.267-11.267c8.609-8.609 22.353-9.551 31.891-1.984C173.062 425.135 212.781 440 256 440c101.705 0 184-82.311 184-184 0-101.705-82.311-184-184-184-48.814 0-93.149 18.969-126.068 49.932l50.754 50.754c10.08 10.08 2.941 27.314-11.313 27.314H24c-8.837 0-16-7.163-16-16V38.627c0-14.254 17.234-21.393 27.314-11.314l49.372 49.372C129.209 34.136 189.552 8 256 8c136.81 0 247.747 110.78 248 247.531zm-180.912 78.784l9.823-12.63c8.138-10.463 6.253-25.542-4.21-33.679L288 256.349V152c0-13.255-10.745-24-24-24h-16c-13.255 0-24 10.745-24 24v135.651l65.409 50.874c10.463 8.137 25.541 6.253 33.679-4.21z"></path>
</symbol><symbol id="home" viewBox="0 0 576 512">
<path d="M280.37 148.26L96 300.11V464a16 16 0 0 0 16 16l112.06-.29a16 16 0 0 0 15.92-16V368a16 16 0 0 1 16-16h64a16 16 0 0 1 16 16v95.64a16 16 0 0 0 16 16.05L464 480a16 16 0 0 0 16-16V300L295.67 148.26a12.19 12.19 0 0 0-15.3 0zM571.6 251.47L488 182.56V44.05a12 12 0 0 0-12-12h-56a12 12 0 0 0-12 12v72.61L318.47 43a48 48 0 0 0-61 0L4.34 251.47a12 12 0 0 0-1.6 16.9l25.5 31A12 12 0 0 0 45.15 301l235.22-193.74a12.19 12.19 0 0 1 15.3 0L530.9 301a12 12 0 0 0 16.9-1.6l25.5-31a12 12 0 0 0-1.7-16.93z"></path>
</symbol><symbol id="hourglass-start" viewBox="0 0 384 512">
<path d="M360 0H24C10.745 0 0 10.745 0 24v16c0 13.255 10.745 24 24 24 0 90.965 51.016 167.734 120.842 192C75.016 280.266 24 357.035 24 448c-13.255 0-24 10.745-24 24v16c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24v-16c0-13.255-10.745-24-24-24 0-90.965-51.016-167.734-120.842-192C308.984 231.734 360 154.965 360 64c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24zm-64 448H88c0-77.458 46.204-144 104-144 57.786 0 104 66.517 104 144z"></path>
</symbol><symbol id="id-card" viewBox="0 0 576 512">
<path d="M528 32H48C21.5 32 0 53.5 0 80v16h576V80c0-26.5-21.5-48-48-48zM0 432c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V128H0v304zm352-232c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zm0 64c0-4.4 3.6-8 8-8h144c4.4 0 8 3.6 8 8v16c0 4.4-3.6 8-8 8H360c-4.4 0-8-3.6-8-8v-16zM176 192c35.3 0 64 28.7 64 64s-28.7 64-64 64-64-28.7-64-64 28.7-64 64-64zM67.1 396.2C75.5 370.5 99.6 352 128 352h8.2c12.3 5.1 25.7 8 39.8 8s27.6-2.9 39.8-8h8.2c28.4 0 52.5 18.5 60.9 44.2 3.2 9.9-5.2 19.8-15.6 19.8H82.7c-10.4 0-18.8-10-15.6-19.8z"></path>
</symbol><symbol id="image" viewBox="0 0 512 512">
<path d="M464 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h416c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM112 120c-30.928 0-56 25.072-56 56s25.072 56 56 56 56-25.072 56-56-25.072-56-56-56zM64 384h384V272l-87.515-87.515c-4.686-4.686-12.284-4.686-16.971 0L208 320l-55.515-55.515c-4.686-4.686-12.284-4.686-16.971 0L64 336v48z"></path>
</symbol><symbol id="images" viewBox="0 0 576 512">
<path d="M480 416v16c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48V176c0-26.51 21.49-48 48-48h16v208c0 44.112 35.888 80 80 80h336zm96-80V80c0-26.51-21.49-48-48-48H144c-26.51 0-48 21.49-48 48v256c0 26.51 21.49 48 48 48h384c26.51 0 48-21.49 48-48zM256 128c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-96 144l55.515-55.515c4.686-4.686 12.284-4.686 16.971 0L272 256l135.515-135.515c4.686-4.686 12.284-4.686 16.971 0L512 208v112H160v-48z"></path>
</symbol><symbol id="inbox" viewBox="0 0 576 512">
<path d="M567.938 243.908L462.25 85.374A48.003 48.003 0 0 0 422.311 64H153.689a48 48 0 0 0-39.938 21.374L8.062 243.908A47.994 47.994 0 0 0 0 270.533V400c0 26.51 21.49 48 48 48h480c26.51 0 48-21.49 48-48V270.533a47.994 47.994 0 0 0-8.062-26.625zM162.252 128h251.497l85.333 128H376l-32 64H232l-32-64H76.918l85.334-128z"></path>
</symbol><symbol id="info" viewBox="0 0 192 512">
<path d="M20 424.229h20V279.771H20c-11.046 0-20-8.954-20-20V212c0-11.046 8.954-20 20-20h112c11.046 0 20 8.954 20 20v212.229h20c11.046 0 20 8.954 20 20V492c0 11.046-8.954 20-20 20H20c-11.046 0-20-8.954-20-20v-47.771c0-11.046 8.954-20 20-20zM96 0C56.235 0 24 32.235 24 72s32.235 72 72 72 72-32.235 72-72S135.764 0 96 0z"></path>
</symbol><symbol id="info-circle" viewBox="0 0 512 512">
<path d="M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z"></path>
</symbol><symbol id="italic" viewBox="0 0 320 512">
<path d="M320 48v32a16 16 0 0 1-16 16h-62.76l-80 320H208a16 16 0 0 1 16 16v32a16 16 0 0 1-16 16H16a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h62.76l80-320H112a16 16 0 0 1-16-16V48a16 16 0 0 1 16-16h192a16 16 0 0 1 16 16z"></path>
</symbol><symbol id="key" viewBox="0 0 512 512">
<path d="M512 176.001C512 273.203 433.202 352 336 352c-11.22 0-22.19-1.062-32.827-3.069l-24.012 27.014A23.999 23.999 0 0 1 261.223 384H224v40c0 13.255-10.745 24-24 24h-40v40c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24v-78.059c0-6.365 2.529-12.47 7.029-16.971l161.802-161.802C163.108 213.814 160 195.271 160 176 160 78.798 238.797.001 335.999 0 433.488-.001 512 78.511 512 176.001zM336 128c0 26.51 21.49 48 48 48s48-21.49 48-48-21.49-48-48-48-48 21.49-48 48z"></path>
</symbol><symbol id="keyboard" viewBox="0 0 576 512">
<path d="M528 448H48c-26.51 0-48-21.49-48-48V112c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v288c0 26.51-21.49 48-48 48zM128 180v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm-336 96v-40c0-6.627-5.373-12-12-12H76c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12zm288 0v-40c0-6.627-5.373-12-12-12H172c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h232c6.627 0 12-5.373 12-12zm96 0v-40c0-6.627-5.373-12-12-12h-40c-6.627 0-12 5.373-12 12v40c0 6.627 5.373 12 12 12h40c6.627 0 12-5.373 12-12z"></path>
</symbol><symbol id="language" viewBox="0 0 640 512">
<path d="M152.1 236.2c-3.5-12.1-7.8-33.2-7.8-33.2h-.5s-4.3 21.1-7.8 33.2l-11.1 37.5H163zM616 96H336v320h280c13.3 0 24-10.7 24-24V120c0-13.3-10.7-24-24-24zm-24 120c0 6.6-5.4 12-12 12h-11.4c-6.9 23.6-21.7 47.4-42.7 69.9 8.4 6.4 17.1 12.5 26.1 18 5.5 3.4 7.3 10.5 4.1 16.2l-7.9 13.9c-3.4 5.9-10.9 7.8-16.7 4.3-12.6-7.8-24.5-16.1-35.4-24.9-10.9 8.7-22.7 17.1-35.4 24.9-5.8 3.5-13.3 1.6-16.7-4.3l-7.9-13.9c-3.2-5.6-1.4-12.8 4.2-16.2 9.3-5.7 18-11.7 26.1-18-7.9-8.4-14.9-17-21-25.7-4-5.7-2.2-13.6 3.7-17.1l6.5-3.9 7.3-4.3c5.4-3.2 12.4-1.7 16 3.4 5 7 10.8 14 17.4 20.9 13.5-14.2 23.8-28.9 30-43.2H412c-6.6 0-12-5.4-12-12v-16c0-6.6 5.4-12 12-12h64v-16c0-6.6 5.4-12 12-12h16c6.6 0 12 5.4 12 12v16h64c6.6 0 12 5.4 12 12zM0 120v272c0 13.3 10.7 24 24 24h280V96H24c-13.3 0-24 10.7-24 24zm58.9 216.1L116.4 167c1.7-4.9 6.2-8.1 11.4-8.1h32.5c5.1 0 9.7 3.3 11.4 8.1l57.5 169.1c2.6 7.8-3.1 15.9-11.4 15.9h-22.9a12 12 0 0 1-11.5-8.6l-9.4-31.9h-60.2l-9.1 31.8c-1.5 5.1-6.2 8.7-11.5 8.7H70.3c-8.2 0-14-8.1-11.4-15.9z"></path>
</symbol><symbol id="layer-group" viewBox="0 0 512 512">
<path d="M12.41 148.02l232.94 105.67c6.8 3.09 14.49 3.09 21.29 0l232.94-105.67c16.55-7.51 16.55-32.52 0-40.03L266.65 2.31a25.607 25.607 0 0 0-21.29 0L12.41 107.98c-16.55 7.51-16.55 32.53 0 40.04zm487.18 88.28l-58.09-26.33-161.64 73.27c-7.56 3.43-15.59 5.17-23.86 5.17s-16.29-1.74-23.86-5.17L70.51 209.97l-58.1 26.33c-16.55 7.5-16.55 32.5 0 40l232.94 105.59c6.8 3.08 14.49 3.08 21.29 0L499.59 276.3c16.55-7.5 16.55-32.5 0-40zm0 127.8l-57.87-26.23-161.86 73.37c-7.56 3.43-15.59 5.17-23.86 5.17s-16.29-1.74-23.86-5.17L70.29 337.87 12.41 364.1c-16.55 7.5-16.55 32.5 0 40l232.94 105.59c6.8 3.08 14.49 3.08 21.29 0L499.59 404.1c16.55-7.5 16.55-32.5 0-40z"></path>
</symbol><symbol id="link" viewBox="0 0 512 512">
<path d="M326.612 185.391c59.747 59.809 58.927 155.698.36 214.59-.11.12-.24.25-.36.37l-67.2 67.2c-59.27 59.27-155.699 59.262-214.96 0-59.27-59.26-59.27-155.7 0-214.96l37.106-37.106c9.84-9.84 26.786-3.3 27.294 10.606.648 17.722 3.826 35.527 9.69 52.721 1.986 5.822.567 12.262-3.783 16.612l-13.087 13.087c-28.026 28.026-28.905 73.66-1.155 101.96 28.024 28.579 74.086 28.749 102.325.51l67.2-67.19c28.191-28.191 28.073-73.757 0-101.83-3.701-3.694-7.429-6.564-10.341-8.569a16.037 16.037 0 0 1-6.947-12.606c-.396-10.567 3.348-21.456 11.698-29.806l21.054-21.055c5.521-5.521 14.182-6.199 20.584-1.731a152.482 152.482 0 0 1 20.522 17.197zM467.547 44.449c-59.261-59.262-155.69-59.27-214.96 0l-67.2 67.2c-.12.12-.25.25-.36.37-58.566 58.892-59.387 154.781.36 214.59a152.454 152.454 0 0 0 20.521 17.196c6.402 4.468 15.064 3.789 20.584-1.731l21.054-21.055c8.35-8.35 12.094-19.239 11.698-29.806a16.037 16.037 0 0 0-6.947-12.606c-2.912-2.005-6.64-4.875-10.341-8.569-28.073-28.073-28.191-73.639 0-101.83l67.2-67.19c28.239-28.239 74.3-28.069 102.325.51 27.75 28.3 26.872 73.934-1.155 101.96l-13.087 13.087c-4.35 4.35-5.769 10.79-3.783 16.612 5.864 17.194 9.042 34.999 9.69 52.721.509 13.906 17.454 20.446 27.294 10.606l37.106-37.106c59.271-59.259 59.271-155.699.001-214.959z"></path>
</symbol><symbol id="list" viewBox="0 0 512 512">
<path d="M80 368H16a16 16 0 0 0-16 16v64a16 16 0 0 0 16 16h64a16 16 0 0 0 16-16v-64a16 16 0 0 0-16-16zm0-320H16A16 16 0 0 0 0 64v64a16 16 0 0 0 16 16h64a16 16 0 0 0 16-16V64a16 16 0 0 0-16-16zm0 160H16a16 16 0 0 0-16 16v64a16 16 0 0 0 16 16h64a16 16 0 0 0 16-16v-64a16 16 0 0 0-16-16zm416 176H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-320H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16zm0 160H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z"></path>
</symbol><symbol id="list-ol" viewBox="0 0 512 512">
<path d="M61.77 401l17.5-20.15a19.92 19.92 0 0 0 5.07-14.19v-3.31C84.34 356 80.5 352 73 352H16a8 8 0 0 0-8 8v16a8 8 0 0 0 8 8h22.83a157.41 157.41 0 0 0-11 12.31l-5.61 7c-4 5.07-5.25 10.13-2.8 14.88l1.05 1.93c3 5.76 6.29 7.88 12.25 7.88h4.73c10.33 0 15.94 2.44 15.94 9.09 0 4.72-4.2 8.22-14.36 8.22a41.54 41.54 0 0 1-15.47-3.12c-6.49-3.88-11.74-3.5-15.6 3.12l-5.59 9.31c-3.72 6.13-3.19 11.72 2.63 15.94 7.71 4.69 20.38 9.44 37 9.44 34.16 0 48.5-22.75 48.5-44.12-.03-14.38-9.12-29.76-28.73-34.88zM496 224H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-160H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16zm0 320H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zM16 160h64a8 8 0 0 0 8-8v-16a8 8 0 0 0-8-8H64V40a8 8 0 0 0-8-8H32a8 8 0 0 0-7.14 4.42l-8 16A8 8 0 0 0 24 64h8v64H16a8 8 0 0 0-8 8v16a8 8 0 0 0 8 8zm-3.91 160H80a8 8 0 0 0 8-8v-16a8 8 0 0 0-8-8H41.32c3.29-10.29 48.34-18.68 48.34-56.44 0-29.06-25-39.56-44.47-39.56-21.36 0-33.8 10-40.46 18.75-4.37 5.59-3 10.84 2.8 15.37l8.58 6.88c5.61 4.56 11 2.47 16.12-2.44a13.44 13.44 0 0 1 9.46-3.84c3.33 0 9.28 1.56 9.28 8.75C51 248.19 0 257.31 0 304.59v4C0 316 5.08 320 12.09 320z"></path>
</symbol><symbol id="list-ul" viewBox="0 0 512 512">
<path d="M48 48a48 48 0 1 0 48 48 48 48 0 0 0-48-48zm0 160a48 48 0 1 0 48 48 48 48 0 0 0-48-48zm0 160a48 48 0 1 0 48 48 48 48 0 0 0-48-48zm448 16H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-320H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16zm0 160H176a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h320a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z"></path>
</symbol><symbol id="lock" viewBox="0 0 448 512">
<path d="M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zm-104 0H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z"></path>
</symbol><symbol id="magic" viewBox="0 0 512 512">
<path d="M224 96l16-32 32-16-32-16-16-32-16 32-32 16 32 16 16 32zM80 160l26.66-53.33L160 80l-53.34-26.67L80 0 53.34 53.33 0 80l53.34 26.67L80 160zm352 128l-26.66 53.33L352 368l53.34 26.67L432 448l26.66-53.33L512 368l-53.34-26.67L432 288zm70.62-193.77L417.77 9.38C411.53 3.12 403.34 0 395.15 0c-8.19 0-16.38 3.12-22.63 9.38L9.38 372.52c-12.5 12.5-12.5 32.76 0 45.25l84.85 84.85c6.25 6.25 14.44 9.37 22.62 9.37 8.19 0 16.38-3.12 22.63-9.37l363.14-363.15c12.5-12.48 12.5-32.75 0-45.24zM359.45 203.46l-50.91-50.91 86.6-86.6 50.91 50.91-86.6 86.6z"></path>
</symbol><symbol id="map-marker-alt" viewBox="0 0 384 512">
<path d="M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z"></path>
</symbol><symbol id="medal" viewBox="0 0 512 512">
<path d="M223.75 130.75L154.62 15.54A31.997 31.997 0 0 0 127.18 0H16.03C3.08 0-4.5 14.57 2.92 25.18l111.27 158.96c29.72-27.77 67.52-46.83 109.56-53.39zM495.97 0H384.82c-11.24 0-21.66 5.9-27.44 15.54l-69.13 115.21c42.04 6.56 79.84 25.62 109.56 53.38L509.08 25.18C516.5 14.57 508.92 0 495.97 0zM256 160c-97.2 0-176 78.8-176 176s78.8 176 176 176 176-78.8 176-176-78.8-176-176-176zm92.52 157.26l-37.93 36.96 8.97 52.22c1.6 9.36-8.26 16.51-16.65 12.09L256 393.88l-46.9 24.65c-8.4 4.45-18.25-2.74-16.65-12.09l8.97-52.22-37.93-36.96c-6.82-6.64-3.05-18.23 6.35-19.59l52.43-7.64 23.43-47.52c2.11-4.28 6.19-6.39 10.28-6.39 4.11 0 8.22 2.14 10.33 6.39l23.43 47.52 52.43 7.64c9.4 1.36 13.17 12.95 6.35 19.59z"></path>
</symbol><symbol id="microphone-slash" viewBox="0 0 640 512">
<path d="M633.82 458.1l-157.8-121.96C488.61 312.13 496 285.01 496 256v-48c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v48c0 17.92-3.96 34.8-10.72 50.2l-26.55-20.52c3.1-9.4 5.28-19.22 5.28-29.67V96c0-53.02-42.98-96-96-96s-96 42.98-96 96v45.36L45.47 3.37C38.49-2.05 28.43-.8 23.01 6.18L3.37 31.45C-2.05 38.42-.8 48.47 6.18 53.9l588.36 454.73c6.98 5.43 17.03 4.17 22.46-2.81l19.64-25.27c5.41-6.97 4.16-17.02-2.82-22.45zM400 464h-56v-33.77c11.66-1.6 22.85-4.54 33.67-8.31l-50.11-38.73c-6.71.4-13.41.87-20.35.2-55.85-5.45-98.74-48.63-111.18-101.85L144 241.31v6.85c0 89.64 63.97 169.55 152 181.69V464h-56c-8.84 0-16 7.16-16 16v16c0 8.84 7.16 16 16 16h160c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16z"></path>
</symbol><symbol id="minus" viewBox="0 0 448 512">
<path d="M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"></path>
</symbol><symbol id="minus-circle" viewBox="0 0 512 512">
<path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zM124 296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4 12 12v56c0 6.6-5.4 12-12 12H124z"></path>
</symbol><symbol id="mobile-alt" viewBox="0 0 320 512">
<path d="M272 0H48C21.5 0 0 21.5 0 48v416c0 26.5 21.5 48 48 48h224c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48zM160 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm112-108c0 6.6-5.4 12-12 12H60c-6.6 0-12-5.4-12-12V60c0-6.6 5.4-12 12-12h200c6.6 0 12 5.4 12 12v312z"></path>
</symbol><symbol id="moon" viewBox="0 0 512 512">
<path d="M283.211 512c78.962 0 151.079-35.925 198.857-94.792 7.068-8.708-.639-21.43-11.562-19.35-124.203 23.654-238.262-71.576-238.262-196.954 0-72.222 38.662-138.635 101.498-174.394 9.686-5.512 7.25-20.197-3.756-22.23A258.156 258.156 0 0 0 283.211 0c-141.309 0-256 114.511-256 256 0 141.309 114.511 256 256 256z"></path>
</symbol><symbol id="paint-brush" viewBox="0 0 512 512">
<path d="M167.02 309.34c-40.12 2.58-76.53 17.86-97.19 72.3-2.35 6.21-8 9.98-14.59 9.98-11.11 0-45.46-27.67-55.25-34.35C0 439.62 37.93 512 128 512c75.86 0 128-43.77 128-120.19 0-3.11-.65-6.08-.97-9.13l-88.01-73.34zM457.89 0c-15.16 0-29.37 6.71-40.21 16.45C213.27 199.05 192 203.34 192 257.09c0 13.7 3.25 26.76 8.73 38.7l63.82 53.18c7.21 1.8 14.64 3.03 22.39 3.03 62.11 0 98.11-45.47 211.16-256.46 7.38-14.35 13.9-29.85 13.9-45.99C512 20.64 486 0 457.89 0z"></path>
</symbol><symbol id="palette" viewBox="0 0 512 512">
<path d="M204.3 5C104.9 24.4 24.8 104.3 5.2 203.4c-37 187 131.7 326.4 258.8 306.7 41.2-6.4 61.4-54.6 42.5-91.7-23.1-45.4 9.9-98.4 60.9-98.4h79.7c35.8 0 64.8-29.6 64.9-65.3C511.5 97.1 368.1-26.9 204.3 5zM96 320c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm32-128c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128-64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zm128 64c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32z"></path>
</symbol><symbol id="paper-plane" viewBox="0 0 512 512">
<path d="M476 3.2L12.5 270.6c-18.1 10.4-15.8 35.6 2.2 43.2L121 358.4l287.3-253.2c5.5-4.9 13.3 2.6 8.6 8.3L176 407v80.5c0 23.6 28.5 32.9 42.5 15.8L282 426l124.6 52.2c14.2 6 30.4-2.9 33-18.2l72-432C515 7.8 493.3-6.8 476 3.2z"></path>
</symbol><symbol id="pause" viewBox="0 0 448 512">
<path d="M144 479H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zm304-48V79c0-26.5-21.5-48-48-48h-96c-26.5 0-48 21.5-48 48v352c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48z"></path>
</symbol><symbol id="pen" viewBox="0 0 512 512">
<path d="M290.74 93.24l128.02 128.02-277.99 277.99-114.14 12.6C11.35 513.54-1.56 500.62.14 485.34l12.7-114.22 277.9-277.88zm207.2-19.06l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.76 18.75-49.16 0-67.91z"></path>
</symbol><symbol id="pencil-alt" viewBox="0 0 512 512">
<path d="M497.9 142.1l-46.1 46.1c-4.7 4.7-12.3 4.7-17 0l-111-111c-4.7-4.7-4.7-12.3 0-17l46.1-46.1c18.7-18.7 49.1-18.7 67.9 0l60.1 60.1c18.8 18.7 18.8 49.1 0 67.9zM284.2 99.8L21.6 362.4.4 483.9c-2.9 16.4 11.4 30.6 27.8 27.8l121.5-21.3 262.6-262.6c4.7-4.7 4.7-12.3 0-17l-111-111c-4.8-4.7-12.4-4.7-17.1 0zM124.1 339.9c-5.5-5.5-5.5-14.3 0-19.8l154-154c5.5-5.5 14.3-5.5 19.8 0s5.5 14.3 0 19.8l-154 154c-5.5 5.5-14.3 5.5-19.8 0zM88 424h48v36.3l-64.5 11.3-31.1-31.1L51.7 376H88v48z"></path>
</symbol><symbol id="play" viewBox="0 0 448 512">
<path d="M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z"></path>
</symbol><symbol id="plug" viewBox="0 0 384 512">
<path d="M320,32a32,32,0,0,0-64,0v96h64Zm48,128H16A16,16,0,0,0,0,176v32a16,16,0,0,0,16,16H32v32A160.07,160.07,0,0,0,160,412.8V512h64V412.8A160.07,160.07,0,0,0,352,256V224h16a16,16,0,0,0,16-16V176A16,16,0,0,0,368,160ZM128,32a32,32,0,0,0-64,0v96h64Z"></path>
</symbol><symbol id="plus" viewBox="0 0 448 512">
<path d="M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"></path>
</symbol><symbol id="plus-circle" viewBox="0 0 512 512">
<path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm144 276c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92h-92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"></path>
</symbol><symbol id="plus-square" viewBox="0 0 448 512">
<path d="M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-32 252c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92H92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"></path>
</symbol><symbol id="power-off" viewBox="0 0 512 512">
<path d="M400 54.1c63 45 104 118.6 104 201.9 0 136.8-110.8 247.7-247.5 248C120 504.3 8.2 393 8 256.4 7.9 173.1 48.9 99.3 111.8 54.2c11.7-8.3 28-4.8 35 7.7L162.6 90c5.9 10.5 3.1 23.8-6.6 31-41.5 30.8-68 79.6-68 134.9-.1 92.3 74.5 168.1 168 168.1 91.6 0 168.6-74.2 168-169.1-.3-51.8-24.7-101.8-68.1-134-9.7-7.2-12.4-20.5-6.5-30.9l15.8-28.1c7-12.4 23.2-16.1 34.8-7.8zM296 264V24c0-13.3-10.7-24-24-24h-32c-13.3 0-24 10.7-24 24v240c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24z"></path>
</symbol><symbol id="project-diagram" viewBox="0 0 640 512">
<path d="M384 320H256c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V352c0-17.67-14.33-32-32-32zM192 32c0-17.67-14.33-32-32-32H32C14.33 0 0 14.33 0 32v128c0 17.67 14.33 32 32 32h95.72l73.16 128.04C211.98 300.98 232.4 288 256 288h.28L192 175.51V128h224V64H192V32zM608 0H480c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h128c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32z"></path>
</symbol><symbol id="puzzle-piece" viewBox="0 0 576 512">
<path d="M519.442 288.651c-41.519 0-59.5 31.593-82.058 31.593C377.409 320.244 432 144 432 144s-196.288 80-196.288-3.297c0-35.827 36.288-46.25 36.288-85.985C272 19.216 243.885 0 210.539 0c-34.654 0-66.366 18.891-66.366 56.346 0 41.364 31.711 59.277 31.711 81.75C175.885 207.719 0 166.758 0 166.758v333.237s178.635 41.047 178.635-28.662c0-22.473-40-40.107-40-81.471 0-37.456 29.25-56.346 63.577-56.346 33.673 0 61.788 19.216 61.788 54.717 0 39.735-36.288 50.158-36.288 85.985 0 60.803 129.675 25.73 181.23 25.73 0 0-34.725-120.101 25.827-120.101 35.962 0 46.423 36.152 86.308 36.152C556.712 416 576 387.99 576 354.443c0-34.199-18.962-65.792-56.558-65.792z"></path>
</symbol><symbol id="question" viewBox="0 0 384 512">
<path d="M202.021 0C122.202 0 70.503 32.703 29.914 91.026c-7.363 10.58-5.093 25.086 5.178 32.874l43.138 32.709c10.373 7.865 25.132 6.026 33.253-4.148 25.049-31.381 43.63-49.449 82.757-49.449 30.764 0 68.816 19.799 68.816 49.631 0 22.552-18.617 34.134-48.993 51.164-35.423 19.86-82.299 44.576-82.299 106.405V320c0 13.255 10.745 24 24 24h72.471c13.255 0 24-10.745 24-24v-5.773c0-42.86 125.268-44.645 125.268-160.627C377.504 66.256 286.902 0 202.021 0zM192 373.459c-38.196 0-69.271 31.075-69.271 69.271 0 38.195 31.075 69.27 69.271 69.27s69.271-31.075 69.271-69.271-31.075-69.27-69.271-69.27z"></path>
</symbol><symbol id="question-circle" viewBox="0 0 512 512">
<path d="M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497 0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415 2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008 16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797 20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363 22.667-32.534 33.976C247.128 238.528 216 254.941 216 296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373 12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667 0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46 20.635-46 46 0 25.364 20.635 46 46 46s46-20.636 46-46c0-25.365-20.635-46-46-46z"></path>
</symbol><symbol id="quote-left" viewBox="0 0 512 512">
<path d="M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z"></path>
</symbol><symbol id="quote-right" viewBox="0 0 512 512">
<path d="M464 32H336c-26.5 0-48 21.5-48 48v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48zm-288 0H48C21.5 32 0 53.5 0 80v128c0 26.5 21.5 48 48 48h80v64c0 35.3-28.7 64-64 64h-8c-13.3 0-24 10.7-24 24v48c0 13.3 10.7 24 24 24h8c88.4 0 160-71.6 160-160V80c0-26.5-21.5-48-48-48z"></path>
</symbol><symbol id="random" viewBox="0 0 512 512">
<path d="M504.971 359.029c9.373 9.373 9.373 24.569 0 33.941l-80 79.984c-15.01 15.01-40.971 4.49-40.971-16.971V416h-58.785a12.004 12.004 0 0 1-8.773-3.812l-70.556-75.596 53.333-57.143L352 336h32v-39.981c0-21.438 25.943-31.998 40.971-16.971l80 79.981zM12 176h84l52.781 56.551 53.333-57.143-70.556-75.596A11.999 11.999 0 0 0 122.785 96H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12zm372 0v39.984c0 21.46 25.961 31.98 40.971 16.971l80-79.984c9.373-9.373 9.373-24.569 0-33.941l-80-79.981C409.943 24.021 384 34.582 384 56.019V96h-58.785a12.004 12.004 0 0 0-8.773 3.812L96 336H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h110.785c3.326 0 6.503-1.381 8.773-3.812L352 176h32z"></path>
</symbol><symbol id="redo" viewBox="0 0 512 512">
<path d="M500.33 0h-47.41a12 12 0 0 0-12 12.57l4 82.76A247.42 247.42 0 0 0 256 8C119.34 8 7.9 119.53 8 256.19 8.1 393.07 119.1 504 256 504a247.1 247.1 0 0 0 166.18-63.91 12 12 0 0 0 .48-17.43l-34-34a12 12 0 0 0-16.38-.55A176 176 0 1 1 402.1 157.8l-101.53-4.87a12 12 0 0 0-12.57 12v47.41a12 12 0 0 0 12 12h200.33a12 12 0 0 0 12-12V12a12 12 0 0 0-12-12z"></path>
</symbol><symbol id="reply" viewBox="0 0 512 512">
<path d="M8.309 189.836L184.313 37.851C199.719 24.546 224 35.347 224 56.015v80.053c160.629 1.839 288 34.032 288 186.258 0 61.441-39.581 122.309-83.333 154.132-13.653 9.931-33.111-2.533-28.077-18.631 45.344-145.012-21.507-183.51-176.59-185.742V360c0 20.7-24.3 31.453-39.687 18.164l-176.004-152c-11.071-9.562-11.086-26.753 0-36.328z"></path>
</symbol><symbol id="robot" viewBox="0 0 640 512">
<path d="M32,224H64V416H32A31.96166,31.96166,0,0,1,0,384V256A31.96166,31.96166,0,0,1,32,224Zm512-48V448a64.06328,64.06328,0,0,1-64,64H160a64.06328,64.06328,0,0,1-64-64V176a79.974,79.974,0,0,1,80-80H288V32a32,32,0,0,1,64,0V96H464A79.974,79.974,0,0,1,544,176ZM264,256a40,40,0,1,0-40,40A39.997,39.997,0,0,0,264,256Zm-8,128H192v32h64Zm96,0H288v32h64ZM456,256a40,40,0,1,0-40,40A39.997,39.997,0,0,0,456,256Zm-8,128H384v32h64ZM640,256V384a31.96166,31.96166,0,0,1-32,32H576V224h32A31.96166,31.96166,0,0,1,640,256Z"></path>
</symbol><symbol id="rocket" viewBox="0 0 512 512">
<path d="M505.12019,19.09375c-1.18945-5.53125-6.65819-11-12.207-12.1875C460.716,0,435.507,0,410.40747,0,307.17523,0,245.26909,55.20312,199.05238,128H94.83772c-16.34763.01562-35.55658,11.875-42.88664,26.48438L2.51562,253.29688A28.4,28.4,0,0,0,0,264a24.00867,24.00867,0,0,0,24.00582,24H127.81618l-22.47457,22.46875c-11.36521,11.36133-12.99607,32.25781,0,45.25L156.24582,406.625c11.15623,11.1875,32.15619,13.15625,45.27726,0l22.47457-22.46875V488a24.00867,24.00867,0,0,0,24.00581,24,28.55934,28.55934,0,0,0,10.707-2.51562l98.72834-49.39063c14.62888-7.29687,26.50776-26.5,26.50776-42.85937V312.79688c72.59753-46.3125,128.03493-108.40626,128.03493-211.09376C512.07526,76.5,512.07526,51.29688,505.12019,19.09375ZM384.04033,168A40,40,0,1,1,424.05,128,40.02322,40.02322,0,0,1,384.04033,168Z"></path>
</symbol><symbol id="save" viewBox="0 0 448 512">
<path d="M433.941 129.941l-83.882-83.882A48 48 0 0 0 316.118 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48V163.882a48 48 0 0 0-14.059-33.941zM224 416c-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64zm96-304.52V212c0 6.627-5.373 12-12 12H76c-6.627 0-12-5.373-12-12V108c0-6.627 5.373-12 12-12h228.52c3.183 0 6.235 1.264 8.485 3.515l3.48 3.48A11.996 11.996 0 0 1 320 111.48z"></path>
</symbol><symbol id="search" viewBox="0 0 512 512">
<path d="M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z"></path>
</symbol><symbol id="search-minus" viewBox="0 0 512 512">
<path d="M304 192v32c0 6.6-5.4 12-12 12H124c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h168c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z"></path>
</symbol><symbol id="search-plus" viewBox="0 0 512 512">
<path d="M304 192v32c0 6.6-5.4 12-12 12h-56v56c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-56h-56c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h56v-56c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v56h56c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z"></path>
</symbol><symbol id="share" viewBox="0 0 512 512">
<path d="M503.691 189.836L327.687 37.851C312.281 24.546 288 35.347 288 56.015v80.053C127.371 137.907 0 170.1 0 322.326c0 61.441 39.581 122.309 83.333 154.132 13.653 9.931 33.111-2.533 28.077-18.631C66.066 312.814 132.917 274.316 288 272.085V360c0 20.7 24.3 31.453 39.687 18.164l176.004-152c11.071-9.562 11.086-26.753 0-36.328z"></path>
</symbol><symbol id="share-alt" viewBox="0 0 448 512">
<path d="M352 320c-22.608 0-43.387 7.819-59.79 20.895l-102.486-64.054a96.551 96.551 0 0 0 0-41.683l102.486-64.054C308.613 184.181 329.392 192 352 192c53.019 0 96-42.981 96-96S405.019 0 352 0s-96 42.981-96 96c0 7.158.79 14.13 2.276 20.841L155.79 180.895C139.387 167.819 118.608 160 96 160c-53.019 0-96 42.981-96 96s42.981 96 96 96c22.608 0 43.387-7.819 59.79-20.895l102.486 64.054A96.301 96.301 0 0 0 256 416c0 53.019 42.981 96 96 96s96-42.981 96-96-42.981-96-96-96z"></path>
</symbol><symbol id="shield-alt" viewBox="0 0 512 512">
<path d="M466.5 83.7l-192-80a48.15 48.15 0 0 0-36.9 0l-192 80C27.7 91.1 16 108.6 16 128c0 198.5 114.5 335.7 221.5 380.3 11.8 4.9 25.1 4.9 36.9 0C360.1 472.6 496 349.3 496 128c0-19.4-11.7-36.9-29.5-44.3zM256.1 446.3l-.1-381 175.9 73.3c-3.3 151.4-82.1 261.1-175.8 307.7z"></path>
</symbol><symbol id="sign-in-alt" viewBox="0 0 512 512">
<path d="M416 448h-84c-6.6 0-12-5.4-12-12v-40c0-6.6 5.4-12 12-12h84c17.7 0 32-14.3 32-32V160c0-17.7-14.3-32-32-32h-84c-6.6 0-12-5.4-12-12V76c0-6.6 5.4-12 12-12h84c53 0 96 43 96 96v192c0 53-43 96-96 96zm-47-201L201 79c-15-15-41-4.5-41 17v96H24c-13.3 0-24 10.7-24 24v96c0 13.3 10.7 24 24 24h136v96c0 21.5 26 32 41 17l168-168c9.3-9.4 9.3-24.6 0-34z"></path>
</symbol><symbol id="sign-out-alt" viewBox="0 0 512 512">
<path d="M497 273L329 441c-15 15-41 4.5-41-17v-96H152c-13.3 0-24-10.7-24-24v-96c0-13.3 10.7-24 24-24h136V88c0-21.4 25.9-32 41-17l168 168c9.3 9.4 9.3 24.6 0 34zM192 436v-40c0-6.6-5.4-12-12-12H96c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h84c6.6 0 12-5.4 12-12V76c0-6.6-5.4-12-12-12H96c-53 0-96 43-96 96v192c0 53 43 96 96 96h84c6.6 0 12-5.4 12-12z"></path>
</symbol><symbol id="signal" viewBox="0 0 640 512">
<path d="M216 288h-48c-8.84 0-16 7.16-16 16v192c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V304c0-8.84-7.16-16-16-16zM88 384H40c-8.84 0-16 7.16-16 16v96c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16v-96c0-8.84-7.16-16-16-16zm256-192h-48c-8.84 0-16 7.16-16 16v288c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V208c0-8.84-7.16-16-16-16zm128-96h-48c-8.84 0-16 7.16-16 16v384c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V112c0-8.84-7.16-16-16-16zM600 0h-48c-8.84 0-16 7.16-16 16v480c0 8.84 7.16 16 16 16h48c8.84 0 16-7.16 16-16V16c0-8.84-7.16-16-16-16z"></path>
</symbol><symbol id="sliders-h" viewBox="0 0 512 512">
<path d="M496 384H160v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h80v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h336c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160h-80v-16c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h336v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h80c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm0-160H288V48c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v16H16C7.2 64 0 71.2 0 80v32c0 8.8 7.2 16 16 16h208v16c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-16h208c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16z"></path>
</symbol><symbol id="smile" viewBox="0 0 496 512">
<path d="M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm80 168c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm194.8 170.2C334.3 380.4 292.5 400 248 400s-86.3-19.6-114.8-53.8c-13.6-16.3 11-36.7 24.6-20.5 22.4 26.9 55.2 42.2 90.2 42.2s67.8-15.4 90.2-42.2c13.4-16.2 38.1 4.2 24.6 20.5z"></path>
</symbol><symbol id="sort" viewBox="0 0 320 512">
<path d="M41 288h238c21.4 0 32.1 25.9 17 41L177 448c-9.4 9.4-24.6 9.4-33.9 0L24 329c-15.1-15.1-4.4-41 17-41zm255-105L177 64c-9.4-9.4-24.6-9.4-33.9 0L24 183c-15.1 15.1-4.4 41 17 41h238c21.4 0 32.1-25.9 17-41z"></path>
</symbol><symbol id="sort-alpha-down" viewBox="0 0 448 512">
<path d="M176 352h-48V48a16 16 0 0 0-16-16H80a16 16 0 0 0-16 16v304H16c-14.19 0-21.36 17.24-11.29 27.31l80 96a16 16 0 0 0 22.62 0l80-96C197.35 369.26 190.22 352 176 352zm240-64H288a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h56l-61.26 70.45A32 32 0 0 0 272 446.37V464a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-56l61.26-70.45A32 32 0 0 0 432 321.63V304a16 16 0 0 0-16-16zm31.06-85.38l-59.27-160A16 16 0 0 0 372.72 32h-41.44a16 16 0 0 0-15.07 10.62l-59.27 160A16 16 0 0 0 272 224h24.83a16 16 0 0 0 15.23-11.08l4.42-12.92h71l4.41 12.92A16 16 0 0 0 407.16 224H432a16 16 0 0 0 15.06-21.38zM335.61 144L352 96l16.39 48z"></path>
</symbol><symbol id="sort-alpha-up" viewBox="0 0 448 512">
<path d="M16 160h48v304a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V160h48c14.21 0 21.38-17.24 11.31-27.31l-80-96a16 16 0 0 0-22.62 0l-80 96C-5.35 142.74 1.78 160 16 160zm400 128H288a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h56l-61.26 70.45A32 32 0 0 0 272 446.37V464a16 16 0 0 0 16 16h128a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-56l61.26-70.45A32 32 0 0 0 432 321.63V304a16 16 0 0 0-16-16zm31.06-85.38l-59.27-160A16 16 0 0 0 372.72 32h-41.44a16 16 0 0 0-15.07 10.62l-59.27 160A16 16 0 0 0 272 224h24.83a16 16 0 0 0 15.23-11.08l4.42-12.92h71l4.41 12.92A16 16 0 0 0 407.16 224H432a16 16 0 0 0 15.06-21.38zM335.61 144L352 96l16.39 48z"></path>
</symbol><symbol id="sort-numeric-down" viewBox="0 0 448 512">
<path d="M304 96h16v64h-16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h96a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-16V48a16 16 0 0 0-16-16h-48a16 16 0 0 0-14.29 8.83l-16 32A16 16 0 0 0 304 96zm26.15 162.91a79 79 0 0 0-55 54.17c-14.25 51.05 21.21 97.77 68.85 102.53a84.07 84.07 0 0 1-20.85 12.91c-7.57 3.4-10.8 12.47-8.18 20.34l9.9 20c2.87 8.63 12.53 13.49 20.9 9.91 58-24.76 86.25-61.61 86.25-132V336c-.02-51.21-48.4-91.34-101.85-77.09zM352 356a20 20 0 1 1 20-20 20 20 0 0 1-20 20zm-176-4h-48V48a16 16 0 0 0-16-16H80a16 16 0 0 0-16 16v304H16c-14.19 0-21.36 17.24-11.29 27.31l80 96a16 16 0 0 0 22.62 0l80-96C197.35 369.26 190.22 352 176 352z"></path>
</symbol><symbol id="sort-numeric-up" viewBox="0 0 448 512">
<path d="M330.17 258.91a79 79 0 0 0-55 54.17c-14.27 51.05 21.19 97.77 68.83 102.53a84.07 84.07 0 0 1-20.85 12.91c-7.57 3.4-10.8 12.47-8.18 20.34l9.9 20c2.87 8.63 12.53 13.49 20.9 9.91 58-24.76 86.25-61.61 86.25-132V336c-.02-51.21-48.4-91.34-101.85-77.09zM352 356a20 20 0 1 1 20-20 20 20 0 0 1-20 20zM304 96h16v64h-16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h96a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-16V48a16 16 0 0 0-16-16h-48a16 16 0 0 0-14.29 8.83l-16 32A16 16 0 0 0 304 96zM107.31 36.69a16 16 0 0 0-22.62 0l-80 96C-5.35 142.74 1.78 160 16 160h48v304a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16V160h48c14.21 0 21.38-17.24 11.31-27.31z"></path>
</symbol><symbol id="spell-check" viewBox="0 0 576 512">
<path d="M272 256h91.36c43.2 0 82-32.2 84.51-75.34a79.82 79.82 0 0 0-25.26-63.07 79.81 79.81 0 0 0 9.06-44.91C427.9 30.57 389.3 0 347 0h-75a16 16 0 0 0-16 16v224a16 16 0 0 0 16 16zm40-200h40a24 24 0 0 1 0 48h-40zm0 96h56a24 24 0 0 1 0 48h-56zM155.12 22.25A32 32 0 0 0 124.64 0H99.36a32 32 0 0 0-30.48 22.25L.59 235.73A16 16 0 0 0 16 256h24.93a16 16 0 0 0 15.42-11.73L68.29 208h87.42l11.94 36.27A16 16 0 0 0 183.07 256H208a16 16 0 0 0 15.42-20.27zM89.37 144L112 75.3l22.63 68.7zm482 132.48l-45.21-45.3a15.88 15.88 0 0 0-22.59 0l-151.5 151.5-55.41-55.5a15.88 15.88 0 0 0-22.59 0l-45.3 45.3a16 16 0 0 0 0 22.59l112 112.21a15.89 15.89 0 0 0 22.6 0l208-208.21a16 16 0 0 0-.02-22.59z"></path>
</symbol><symbol id="spinner" viewBox="0 0 512 512">
<path d="M304 48c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-48 368c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm208-208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zM96 256c0-26.51-21.49-48-48-48S0 229.49 0 256s21.49 48 48 48 48-21.49 48-48zm12.922 99.078c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.491-48-48-48zm294.156 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.49-48-48-48zM108.922 60.922c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.491-48-48-48z"></path>
</symbol><symbol id="square-full" viewBox="0 0 512 512">
<path d="M512 512H0V0h512v512z"></path>
</symbol><symbol id="stamp" viewBox="0 0 512 512">
<path d="M32 512h448v-64H32v64zm384-256h-66.56c-16.26 0-29.44-13.18-29.44-29.44v-9.46c0-27.37 8.88-53.41 21.46-77.72 9.11-17.61 12.9-38.39 9.05-60.42-6.77-38.78-38.47-70.7-77.26-77.45C212.62-9.04 160 37.33 160 96c0 14.16 3.12 27.54 8.69 39.58C182.02 164.43 192 194.7 192 226.49v.07c0 16.26-13.18 29.44-29.44 29.44H96c-53.02 0-96 42.98-96 96v32c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-32c0-53.02-42.98-96-96-96z"></path>
</symbol><symbol id="star" viewBox="0 0 576 512">
<path d="M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z"></path>
</symbol><symbol id="step-backward" viewBox="0 0 448 512">
<path d="M64 468V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12v176.4l195.5-181C352.1 22.3 384 36.6 384 64v384c0 27.4-31.9 41.7-52.5 24.6L136 292.7V468c0 6.6-5.4 12-12 12H76c-6.6 0-12-5.4-12-12z"></path>
</symbol><symbol id="step-forward" viewBox="0 0 448 512">
<path d="M384 44v424c0 6.6-5.4 12-12 12h-48c-6.6 0-12-5.4-12-12V291.6l-195.5 181C95.9 489.7 64 475.4 64 448V64c0-27.4 31.9-41.7 52.5-24.6L312 219.3V44c0-6.6 5.4-12 12-12h48c6.6 0 12 5.4 12 12z"></path>
</symbol><symbol id="sticky-note" viewBox="0 0 448 512">
<path d="M312 320h136V56c0-13.3-10.7-24-24-24H24C10.7 32 0 42.7 0 56v400c0 13.3 10.7 24 24 24h264V344c0-13.2 10.8-24 24-24zm129 55l-98 98c-4.5 4.5-10.6 7-17 7h-6V352h128v6.1c0 6.3-2.5 12.4-7 16.9z"></path>
</symbol><symbol id="stop-circle" viewBox="0 0 512 512">
<path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm96 328c0 8.8-7.2 16-16 16H176c-8.8 0-16-7.2-16-16V176c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16v160z"></path>
</symbol><symbol id="stream" viewBox="0 0 512 512">
<path d="M16 128h416c8.84 0 16-7.16 16-16V48c0-8.84-7.16-16-16-16H16C7.16 32 0 39.16 0 48v64c0 8.84 7.16 16 16 16zm480 80H80c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16zm-64 176H16c-8.84 0-16 7.16-16 16v64c0 8.84 7.16 16 16 16h416c8.84 0 16-7.16 16-16v-64c0-8.84-7.16-16-16-16z"></path>
</symbol><symbol id="sync" viewBox="0 0 512 512">
<path d="M440.65 12.57l4 82.77A247.16 247.16 0 0 0 255.83 8C134.73 8 33.91 94.92 12.29 209.82A12 12 0 0 0 24.09 224h49.05a12 12 0 0 0 11.67-9.26 175.91 175.91 0 0 1 317-56.94l-101.46-4.86a12 12 0 0 0-12.57 12v47.41a12 12 0 0 0 12 12H500a12 12 0 0 0 12-12V12a12 12 0 0 0-12-12h-47.37a12 12 0 0 0-11.98 12.57zM255.83 432a175.61 175.61 0 0 1-146-77.8l101.8 4.87a12 12 0 0 0 12.57-12v-47.4a12 12 0 0 0-12-12H12a12 12 0 0 0-12 12V500a12 12 0 0 0 12 12h47.35a12 12 0 0 0 12-12.6l-4.15-82.57A247.17 247.17 0 0 0 255.83 504c121.11 0 221.93-86.92 243.55-201.82a12 12 0 0 0-11.8-14.18h-49.05a12 12 0 0 0-11.67 9.26A175.86 175.86 0 0 1 255.83 432z"></path>
</symbol><symbol id="sync-alt" viewBox="0 0 512 512">
<path d="M370.72 133.28C339.458 104.008 298.888 87.962 255.848 88c-77.458.068-144.328 53.178-162.791 126.85-1.344 5.363-6.122 9.15-11.651 9.15H24.103c-7.498 0-13.194-6.807-11.807-14.176C33.933 94.924 134.813 8 256 8c66.448 0 126.791 26.136 171.315 68.685L463.03 40.97C478.149 25.851 504 36.559 504 57.941V192c0 13.255-10.745 24-24 24H345.941c-21.382 0-32.09-25.851-16.971-40.971l41.75-41.749zM32 296h134.059c21.382 0 32.09 25.851 16.971 40.971l-41.75 41.75c31.262 29.273 71.835 45.319 114.876 45.28 77.418-.07 144.315-53.144 162.787-126.849 1.344-5.363 6.122-9.15 11.651-9.15h57.304c7.498 0 13.194 6.807 11.807 14.176C478.067 417.076 377.187 504 256 504c-66.448 0-126.791-26.136-171.315-68.685L48.97 471.03C33.851 486.149 8 475.441 8 454.059V320c0-13.255 10.745-24 24-24z"></path>
</symbol><symbol id="table" viewBox="0 0 512 512">
<path d="M464 32H48C21.49 32 0 53.49 0 80v352c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V80c0-26.51-21.49-48-48-48zM224 416H64v-96h160v96zm0-160H64v-96h160v96zm224 160H288v-96h160v96zm0-160H288v-96h160v96z"></path>
</symbol><symbol id="tag" viewBox="0 0 512 512">
<path d="M0 252.118V48C0 21.49 21.49 0 48 0h204.118a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882L293.823 497.941c-18.745 18.745-49.137 18.745-67.882 0L14.059 286.059A48 48 0 0 1 0 252.118zM112 64c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48z"></path>
</symbol><symbol id="tags" viewBox="0 0 640 512">
<path d="M497.941 225.941L286.059 14.059A48 48 0 0 0 252.118 0H48C21.49 0 0 21.49 0 48v204.118a48 48 0 0 0 14.059 33.941l211.882 211.882c18.744 18.745 49.136 18.746 67.882 0l204.118-204.118c18.745-18.745 18.745-49.137 0-67.882zM112 160c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48zm513.941 133.823L421.823 497.941c-18.745 18.745-49.137 18.745-67.882 0l-.36-.36L527.64 323.522c16.999-16.999 26.36-39.6 26.36-63.64s-9.362-46.641-26.36-63.64L331.397 0h48.721a48 48 0 0 1 33.941 14.059l211.882 211.882c18.745 18.745 18.745 49.137 0 67.882z"></path>
</symbol><symbol id="tasks" viewBox="0 0 512 512">
<path d="M139.61 35.5a12 12 0 0 0-17 0L58.93 98.81l-22.7-22.12a12 12 0 0 0-17 0L3.53 92.41a12 12 0 0 0 0 17l47.59 47.4a12.78 12.78 0 0 0 17.61 0l15.59-15.62L156.52 69a12.09 12.09 0 0 0 .09-17zm0 159.19a12 12 0 0 0-17 0l-63.68 63.72-22.7-22.1a12 12 0 0 0-17 0L3.53 252a12 12 0 0 0 0 17L51 316.5a12.77 12.77 0 0 0 17.6 0l15.7-15.69 72.2-72.22a12 12 0 0 0 .09-16.9zM64 368c-26.49 0-48.59 21.5-48.59 48S37.53 464 64 464a48 48 0 0 0 0-96zm432 16H208a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16zm0-320H208a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16zm0 160H208a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h288a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z"></path>
</symbol><symbol id="th" viewBox="0 0 512 512">
<path d="M149.333 56v80c0 13.255-10.745 24-24 24H24c-13.255 0-24-10.745-24-24V56c0-13.255 10.745-24 24-24h101.333c13.255 0 24 10.745 24 24zm181.334 240v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm32-240v80c0 13.255 10.745 24 24 24H488c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24zm-32 80V56c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.256 0 24.001-10.745 24.001-24zm-205.334 56H24c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24zM0 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H24c-13.255 0-24 10.745-24 24zm386.667-56H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zm0 160H488c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H386.667c-13.255 0-24 10.745-24 24v80c0 13.255 10.745 24 24 24zM181.333 376v80c0 13.255 10.745 24 24 24h101.333c13.255 0 24-10.745 24-24v-80c0-13.255-10.745-24-24-24H205.333c-13.255 0-24 10.745-24 24z"></path>
</symbol><symbol id="thermometer-three-quarters" viewBox="0 0 256 512">
<path d="M192 384c0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64 0-23.685 12.876-44.349 32-55.417V160c0-17.673 14.327-32 32-32s32 14.327 32 32v168.583c19.124 11.068 32 31.732 32 55.417zm32-84.653c19.912 22.563 32 52.194 32 84.653 0 70.696-57.303 128-128 128-.299 0-.609-.001-.909-.003C56.789 511.509-.357 453.636.002 383.333.166 351.135 12.225 321.755 32 299.347V96c0-53.019 42.981-96 96-96s96 42.981 96 96v203.347zM208 384c0-34.339-19.37-52.19-32-66.502V96c0-26.467-21.533-48-48-48S80 69.533 80 96v221.498c-12.732 14.428-31.825 32.1-31.999 66.08-.224 43.876 35.563 80.116 79.423 80.42L128 464c44.112 0 80-35.888 80-80z"></path>
</symbol><symbol id="thumbs-down" viewBox="0 0 512 512">
<path d="M0 56v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V56c0-13.255-10.745-24-24-24H24C10.745 32 0 42.745 0 56zm40 200c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24zm272 256c-20.183 0-29.485-39.293-33.931-57.795-5.206-21.666-10.589-44.07-25.393-58.902-32.469-32.524-49.503-73.967-89.117-113.111a11.98 11.98 0 0 1-3.558-8.521V59.901c0-6.541 5.243-11.878 11.783-11.998 15.831-.29 36.694-9.079 52.651-16.178C256.189 17.598 295.709.017 343.995 0h2.844c42.777 0 93.363.413 113.774 29.737 8.392 12.057 10.446 27.034 6.148 44.632 16.312 17.053 25.063 48.863 16.382 74.757 17.544 23.432 19.143 56.132 9.308 79.469l.11.11c11.893 11.949 19.523 31.259 19.439 49.197-.156 30.352-26.157 58.098-59.553 58.098H350.723C358.03 364.34 384 388.132 384 430.548 384 504 336 512 312 512z"></path>
</symbol><symbol id="thumbs-up" viewBox="0 0 512 512">
<path d="M104 224H24c-13.255 0-24 10.745-24 24v240c0 13.255 10.745 24 24 24h80c13.255 0 24-10.745 24-24V248c0-13.255-10.745-24-24-24zM64 472c-13.255 0-24-10.745-24-24s10.745-24 24-24 24 10.745 24 24-10.745 24-24 24zM384 81.452c0 42.416-25.97 66.208-33.277 94.548h101.723c33.397 0 59.397 27.746 59.553 58.098.084 17.938-7.546 37.249-19.439 49.197l-.11.11c9.836 23.337 8.237 56.037-9.308 79.469 8.681 25.895-.069 57.704-16.382 74.757 4.298 17.598 2.244 32.575-6.148 44.632C440.202 511.587 389.616 512 346.839 512l-2.845-.001c-48.287-.017-87.806-17.598-119.56-31.725-15.957-7.099-36.821-15.887-52.651-16.178-6.54-.12-11.783-5.457-11.783-11.998v-213.77c0-3.2 1.282-6.271 3.558-8.521 39.614-39.144 56.648-80.587 89.117-113.111 14.804-14.832 20.188-37.236 25.393-58.902C282.515 39.293 291.817 0 312 0c24 0 72 8 72 81.452z"></path>
</symbol><symbol id="thumbtack" viewBox="0 0 384 512">
<path d="M298.028 214.267L285.793 96H328c13.255 0 24-10.745 24-24V24c0-13.255-10.745-24-24-24H56C42.745 0 32 10.745 32 24v48c0 13.255 10.745 24 24 24h42.207L85.972 214.267C37.465 236.82 0 277.261 0 328c0 13.255 10.745 24 24 24h136v104.007c0 1.242.289 2.467.845 3.578l24 48c2.941 5.882 11.364 5.893 14.311 0l24-48a8.008 8.008 0 0 0 .845-3.578V352h136c13.255 0 24-10.745 24-24-.001-51.183-37.983-91.42-85.973-113.733z"></path>
</symbol><symbol id="ticket-alt" viewBox="0 0 576 512">
<path d="M128 160h320v192H128V160zm400 96c0 26.51 21.49 48 48 48v96c0 26.51-21.49 48-48 48H48c-26.51 0-48-21.49-48-48v-96c26.51 0 48-21.49 48-48s-21.49-48-48-48v-96c0-26.51 21.49-48 48-48h480c26.51 0 48 21.49 48 48v96c-26.51 0-48 21.49-48 48zm-48-104c0-13.255-10.745-24-24-24H120c-13.255 0-24 10.745-24 24v208c0 13.255 10.745 24 24 24h336c13.255 0 24-10.745 24-24V152z"></path>
</symbol><symbol id="times" viewBox="0 0 352 512">
<path d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"></path>
</symbol><symbol id="times-circle" viewBox="0 0 512 512">
<path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z"></path>
</symbol><symbol id="tippy-rounded-arrow" class="tippy-rounded-arrow" viewBox="0 0 16 6">
<path fill="var(--float-kit-arrow-stroke-color)" class="svg-arrow" d="M0 6s1.796-.013 4.67-3.615C5.851.9 6.93.006 8 0c1.07-.006 2.148.887 3.343 2.385C14.233 6.005 16 6 16 6H0z"></path>
<path fill="var(--float-kit-arrow-fill-color)" class="svg-content" d="m0 7s2 0 5-4c1-1 2-2 3-2 1 0 2 1 3 2 3 4 5 4 5 4h-16z"></path>
</symbol><symbol id="toggle-off" viewBox="0 0 576 512">
<path d="M384 64H192C85.961 64 0 149.961 0 256s85.961 192 192 192h192c106.039 0 192-85.961 192-192S490.039 64 384 64zM64 256c0-70.741 57.249-128 128-128 70.741 0 128 57.249 128 128 0 70.741-57.249 128-128 128-70.741 0-128-57.249-128-128zm320 128h-48.905c65.217-72.858 65.236-183.12 0-256H384c70.741 0 128 57.249 128 128 0 70.74-57.249 128-128 128z"></path>
</symbol><symbol id="toggle-on" viewBox="0 0 576 512">
<path d="M384 64H192C86 64 0 150 0 256s86 192 192 192h192c106 0 192-86 192-192S490 64 384 64zm0 320c-70.8 0-128-57.3-128-128 0-70.8 57.3-128 128-128 70.8 0 128 57.3 128 128 0 70.8-57.3 128-128 128z"></path>
</symbol><symbol id="trash-alt" viewBox="0 0 448 512">
<path d="M32 464a48 48 0 0 0 48 48h288a48 48 0 0 0 48-48V128H32zm272-256a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zM432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z"></path>
</symbol><symbol id="undo" viewBox="0 0 512 512">
<path d="M212.333 224.333H12c-6.627 0-12-5.373-12-12V12C0 5.373 5.373 0 12 0h48c6.627 0 12 5.373 12 12v78.112C117.773 39.279 184.26 7.47 258.175 8.007c136.906.994 246.448 111.623 246.157 248.532C504.041 393.258 393.12 504 256.333 504c-64.089 0-122.496-24.313-166.51-64.215-5.099-4.622-5.334-12.554-.467-17.42l33.967-33.967c4.474-4.474 11.662-4.717 16.401-.525C170.76 415.336 211.58 432 256.333 432c97.268 0 176-78.716 176-176 0-97.267-78.716-176-176-176-58.496 0-110.28 28.476-142.274 72.333h98.274c6.627 0 12 5.373 12 12v48c0 6.627-5.373 12-12 12z"></path>
</symbol><symbol id="unlink" viewBox="0 0 512 512">
<path d="M304.083 405.907c4.686 4.686 4.686 12.284 0 16.971l-44.674 44.674c-59.263 59.262-155.693 59.266-214.961 0-59.264-59.265-59.264-155.696 0-214.96l44.675-44.675c4.686-4.686 12.284-4.686 16.971 0l39.598 39.598c4.686 4.686 4.686 12.284 0 16.971l-44.675 44.674c-28.072 28.073-28.072 73.75 0 101.823 28.072 28.072 73.75 28.073 101.824 0l44.674-44.674c4.686-4.686 12.284-4.686 16.971 0l39.597 39.598zm-56.568-260.216c4.686 4.686 12.284 4.686 16.971 0l44.674-44.674c28.072-28.075 73.75-28.073 101.824 0 28.072 28.073 28.072 73.75 0 101.823l-44.675 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.598 39.598c4.686 4.686 12.284 4.686 16.971 0l44.675-44.675c59.265-59.265 59.265-155.695 0-214.96-59.266-59.264-155.695-59.264-214.961 0l-44.674 44.674c-4.686 4.686-4.686 12.284 0 16.971l39.597 39.598zm234.828 359.28l22.627-22.627c9.373-9.373 9.373-24.569 0-33.941L63.598 7.029c-9.373-9.373-24.569-9.373-33.941 0L7.029 29.657c-9.373 9.373-9.373 24.569 0 33.941l441.373 441.373c9.373 9.372 24.569 9.372 33.941 0z"></path>
</symbol><symbol id="unlock" viewBox="0 0 448 512">
<path d="M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z"></path>
</symbol><symbol id="unlock-alt" viewBox="0 0 448 512">
<path d="M400 256H152V152.9c0-39.6 31.7-72.5 71.3-72.9 40-.4 72.7 32.1 72.7 72v16c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24v-16C376 68 307.5-.3 223.5 0 139.5.3 72 69.5 72 153.5V256H48c-26.5 0-48 21.5-48 48v160c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zM264 408c0 22.1-17.9 40-40 40s-40-17.9-40-40v-48c0-22.1 17.9-40 40-40s40 17.9 40 40v48z"></path>
</symbol><symbol id="upload" viewBox="0 0 512 512">
<path d="M296 384h-80c-13.3 0-24-10.7-24-24V192h-87.7c-17.8 0-26.7-21.5-14.1-34.1L242.3 5.7c7.5-7.5 19.8-7.5 27.3 0l152.2 152.2c12.6 12.6 3.7 34.1-14.1 34.1H320v168c0 13.3-10.7 24-24 24zm216-8v112c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V376c0-13.3 10.7-24 24-24h136v8c0 30.9 25.1 56 56 56h80c30.9 0 56-25.1 56-56v-8h136c13.3 0 24 10.7 24 24zm-124 88c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm64 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z"></path>
</symbol><symbol id="user" viewBox="0 0 448 512">
<path d="M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"></path>
</symbol><symbol id="user-check" viewBox="0 0 640 512">
<path d="M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4zm323-128.4l-27.8-28.1c-4.6-4.7-12.1-4.7-16.8-.1l-104.8 104-45.5-45.8c-4.6-4.7-12.1-4.7-16.8-.1l-28.1 27.9c-4.7 4.6-4.7 12.1-.1 16.8l81.7 82.3c4.6 4.7 12.1 4.7 16.8.1l141.3-140.2c4.6-4.7 4.7-12.2.1-16.8z"></path>
</symbol><symbol id="user-cog" viewBox="0 0 640 512">
<path d="M610.5 373.3c2.6-14.1 2.6-28.5 0-42.6l25.8-14.9c3-1.7 4.3-5.2 3.3-8.5-6.7-21.6-18.2-41.2-33.2-57.4-2.3-2.5-6-3.1-9-1.4l-25.8 14.9c-10.9-9.3-23.4-16.5-36.9-21.3v-29.8c0-3.4-2.4-6.4-5.7-7.1-22.3-5-45-4.8-66.2 0-3.3.7-5.7 3.7-5.7 7.1v29.8c-13.5 4.8-26 12-36.9 21.3l-25.8-14.9c-2.9-1.7-6.7-1.1-9 1.4-15 16.2-26.5 35.8-33.2 57.4-1 3.3.4 6.8 3.3 8.5l25.8 14.9c-2.6 14.1-2.6 28.5 0 42.6l-25.8 14.9c-3 1.7-4.3 5.2-3.3 8.5 6.7 21.6 18.2 41.1 33.2 57.4 2.3 2.5 6 3.1 9 1.4l25.8-14.9c10.9 9.3 23.4 16.5 36.9 21.3v29.8c0 3.4 2.4 6.4 5.7 7.1 22.3 5 45 4.8 66.2 0 3.3-.7 5.7-3.7 5.7-7.1v-29.8c13.5-4.8 26-12 36.9-21.3l25.8 14.9c2.9 1.7 6.7 1.1 9-1.4 15-16.2 26.5-35.8 33.2-57.4 1-3.3-.4-6.8-3.3-8.5l-25.8-14.9zM496 400.5c-26.8 0-48.5-21.8-48.5-48.5s21.8-48.5 48.5-48.5 48.5 21.8 48.5 48.5-21.7 48.5-48.5 48.5zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm201.2 226.5c-2.3-1.2-4.6-2.6-6.8-3.9l-7.9 4.6c-6 3.4-12.8 5.3-19.6 5.3-10.9 0-21.4-4.6-28.9-12.6-18.3-19.8-32.3-43.9-40.2-69.6-5.5-17.7 1.9-36.4 17.9-45.7l7.9-4.6c-.1-2.6-.1-5.2 0-7.8l-7.9-4.6c-16-9.2-23.4-28-17.9-45.7.9-2.9 2.2-5.8 3.2-8.7-3.8-.3-7.5-1.2-11.4-1.2h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c10.1 0 19.5-3.2 27.2-8.5-1.2-3.8-2-7.7-2-11.8v-9.2z"></path>
</symbol><symbol id="user-edit" viewBox="0 0 640 512">
<path d="M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h274.9c-2.4-6.8-3.4-14-2.6-21.3l6.8-60.9 1.2-11.1 7.9-7.9 77.3-77.3c-24.5-27.7-60-45.5-99.9-45.5zm45.3 145.3l-6.8 61c-1.1 10.2 7.5 18.8 17.6 17.6l60.9-6.8 137.9-137.9-71.7-71.7-137.9 137.8zM633 268.9L595.1 231c-9.3-9.3-24.5-9.3-33.8 0l-37.8 37.8-4.1 4.1 71.8 71.7 41.8-41.8c9.3-9.4 9.3-24.5 0-33.9z"></path>
</symbol><symbol id="user-friends" viewBox="0 0 640 512">
<path d="M192 256c61.9 0 112-50.1 112-112S253.9 32 192 32 80 82.1 80 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C51.6 288 0 339.6 0 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zM480 256c53 0 96-43 96-96s-43-96-96-96-96 43-96 96 43 96 96 96zm48 32h-3.8c-13.9 4.8-28.6 8-44.2 8s-30.3-3.2-44.2-8H432c-20.4 0-39.2 5.9-55.7 15.4 24.4 26.3 39.7 61.2 39.7 99.8v38.4c0 2.2-.5 4.3-.6 6.4H592c26.5 0 48-21.5 48-48 0-61.9-50.1-112-112-112z"></path>
</symbol><symbol id="user-plus" viewBox="0 0 640 512">
<path d="M624 208h-64v-64c0-8.8-7.2-16-16-16h-32c-8.8 0-16 7.2-16 16v64h-64c-8.8 0-16 7.2-16 16v32c0 8.8 7.2 16 16 16h64v64c0 8.8 7.2 16 16 16h32c8.8 0 16-7.2 16-16v-64h64c8.8 0 16-7.2 16-16v-32c0-8.8-7.2-16-16-16zm-400 48c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"></path>
</symbol><symbol id="user-secret" viewBox="0 0 448 512">
<path d="M383.9 308.3l23.9-62.6c4-10.5-3.7-21.7-15-21.7h-58.5c11-18.9 17.8-40.6 17.8-64v-.3c39.2-7.8 64-19.1 64-31.7 0-13.3-27.3-25.1-70.1-33-9.2-32.8-27-65.8-40.6-82.8-9.5-11.9-25.9-15.6-39.5-8.8l-27.6 13.8c-9 4.5-19.6 4.5-28.6 0L182.1 3.4c-13.6-6.8-30-3.1-39.5 8.8-13.5 17-31.4 50-40.6 82.8-42.7 7.9-70 19.7-70 33 0 12.6 24.8 23.9 64 31.7v.3c0 23.4 6.8 45.1 17.8 64H56.3c-11.5 0-19.2 11.7-14.7 22.3l25.8 60.2C27.3 329.8 0 372.7 0 422.4v44.8C0 491.9 20.1 512 44.8 512h358.4c24.7 0 44.8-20.1 44.8-44.8v-44.8c0-48.4-25.8-90.4-64.1-114.1zM176 480l-41.6-192 49.6 32 24 40-32 120zm96 0l-32-120 24-40 49.6-32L272 480zm41.7-298.5c-3.9 11.9-7 24.6-16.5 33.4-10.1 9.3-48 22.4-64-25-2.8-8.4-15.4-8.4-18.3 0-17 50.2-56 32.4-64 25-9.5-8.8-12.7-21.5-16.5-33.4-.8-2.5-6.3-5.7-6.3-5.8v-10.8c28.3 3.6 61 5.8 96 5.8s67.7-2.1 96-5.8v10.8c-.1.1-5.6 3.2-6.4 5.8z"></path>
</symbol><symbol id="user-shield" viewBox="0 0 640 512">
<path d="M622.3 271.1l-115.2-45c-4.1-1.6-12.6-3.7-22.2 0l-115.2 45c-10.7 4.2-17.7 14-17.7 24.9 0 111.6 68.7 188.8 132.9 213.9 9.6 3.7 18 1.6 22.2 0C558.4 489.9 640 420.5 640 296c0-10.9-7-20.7-17.7-24.9zM496 462.4V273.3l95.5 37.3c-5.6 87.1-60.9 135.4-95.5 151.8zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm96 40c0-2.5.8-4.8 1.1-7.2-2.5-.1-4.9-.8-7.5-.8h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c6.8 0 13.3-1.5 19.2-4-54-42.9-99.2-116.7-99.2-212z"></path>
</symbol><symbol id="user-times" viewBox="0 0 640 512">
<path d="M589.6 240l45.6-45.6c6.3-6.3 6.3-16.5 0-22.8l-22.8-22.8c-6.3-6.3-16.5-6.3-22.8 0L544 194.4l-45.6-45.6c-6.3-6.3-16.5-6.3-22.8 0l-22.8 22.8c-6.3 6.3-6.3 16.5 0 22.8l45.6 45.6-45.6 45.6c-6.3 6.3-6.3 16.5 0 22.8l22.8 22.8c6.3 6.3 16.5 6.3 22.8 0l45.6-45.6 45.6 45.6c6.3 6.3 16.5 6.3 22.8 0l22.8-22.8c6.3-6.3 6.3-16.5 0-22.8L589.6 240zM224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"></path>
</symbol><symbol id="users" viewBox="0 0 640 512">
<path d="M96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm448 0c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm32 32h-64c-17.6 0-33.5 7.1-45.1 18.6 40.3 22.1 68.9 62 75.1 109.4h66c17.7 0 32-14.3 32-32v-32c0-35.3-28.7-64-64-64zm-256 0c61.9 0 112-50.1 112-112S381.9 32 320 32 208 82.1 208 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zm-223.7-13.4C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z"></path>
</symbol><symbol id="wrench" viewBox="0 0 512 512">
<path d="M507.73 109.1c-2.24-9.03-13.54-12.09-20.12-5.51l-74.36 74.36-67.88-11.31-11.31-67.88 74.36-74.36c6.62-6.62 3.43-17.9-5.66-20.16-47.38-11.74-99.55.91-136.58 37.93-39.64 39.64-50.55 97.1-34.05 147.2L18.74 402.76c-24.99 24.99-24.99 65.51 0 90.5 24.99 24.99 65.51 24.99 90.5 0l213.21-213.21c50.12 16.71 107.47 5.68 147.37-34.22 37.07-37.07 49.7-89.32 37.91-136.73zM64 472c-13.25 0-24-10.75-24-24 0-13.26 10.75-24 24-24s24 10.74 24 24c0 13.25-10.75 24-24 24z"></path>
</symbol><symbol id="group-plus" viewBox="0 0 86.62 63.79">
<circle cx="37.21" cy="31.89" r="10.63"></circle>
<path d="M44.65 45.18h-1.39c-1.84.85-3.9 1.33-6.06 1.33s-4.2-.48-6.06-1.33h-1.39c-6.16 0-11.16 5-11.16 11.16v3.46c0 2.2 1.79 3.99 3.99 3.99h29.24c2.2 0 3.99-1.79 3.99-3.99v-3.46c0-6.16-5-11.16-11.16-11.16Z"></path>
<circle cx="18.61" cy="10.63" r="10.63"></circle>
<path d="M21.31 25.24c-2.3-.2-4.49-.54-6.48-1.32h-1.64C5.91 23.92 0 28.92 0 35.08v3.46c0 2.2 2.11 3.99 4.71 3.99H24.3s1.3-.24.55-.96c-5.93-5.74-4.61-12-3.56-14.81 0 0 .85-1.45.02-1.52Zm63.14-.74h-8.7v-8.7c0-1.2-.98-2.17-2.17-2.17h-4.35c-1.2 0-2.17.98-2.17 2.17v8.7h-8.7c-1.2 0-2.17.98-2.17 2.17v4.35c0 1.2.98 2.17 2.17 2.17h8.7v8.7c0 1.2.98 2.17 2.17 2.17h4.35c1.2 0 2.17-.98 2.17-2.17v-8.7h8.7c1.2 0 2.17-.98 2.17-2.17v-4.35c0-1.2-.98-2.17-2.17-2.17Z"></path>
</symbol><symbol id="group-times" viewBox="0 0 84.34 63.79">
<circle cx="37.21" cy="31.89" r="10.63"></circle>
<path d="M44.65 45.18h-1.39c-1.84.85-3.9 1.33-6.06 1.33s-4.2-.48-6.06-1.33h-1.39c-6.16 0-11.16 5-11.16 11.16v3.46c0 2.2 1.79 3.99 3.99 3.99h29.24c2.2 0 3.99-1.79 3.99-3.99v-3.46c0-6.16-5-11.16-11.16-11.16Z"></path>
<circle cx="18.61" cy="10.63" r="10.63"></circle>
<path d="M21.31 25.24c-2.3-.2-4.49-.54-6.48-1.32h-1.64C5.91 23.92 0 28.92 0 35.08v3.46c0 2.2 2.11 3.99 4.71 3.99H24.3s1.3-.24.55-.96c-5.93-5.74-4.61-12-3.56-14.81 0 0 .85-1.45.02-1.52ZM83.7 35l-6.15-6.15 6.15-6.15c.85-.85.84-2.23 0-3.07l-3.08-3.08c-.85-.85-2.23-.84-3.07 0L71.4 22.7l-6.15-6.15c-.85-.85-2.23-.84-3.07 0l-3.08 3.08c-.85.85-.84 2.23 0 3.07l6.15 6.15L59.1 35c-.85.85-.84 2.23 0 3.07l3.08 3.08c.85.85 2.23.84 3.07 0L71.4 35l6.15 6.15c.85.85 2.23.84 3.07 0l3.08-3.08c.85-.85.84-2.23 0-3.07Z"></path>
</symbol></svg></div></div></discourse-assets-icons>
</discourse-assets>
<section id="main" class="ember-application">
<style id="d-styles">
:root {
--category-1-color: #0088CC;
--category-2-color: #808281;
--category-5-color: #F1592A;
--category-6-color: #ED207B;
}
.badge-category[data-category-id="1"] { --category-badge-color: var(--category-1-color); --category-badge-text-color: #FFFFFF; }
.badge-category[data-category-id="2"] { --category-badge-color: var(--category-2-color); --category-badge-text-color: #FFFFFF; }
.badge-category[data-category-id="5"] { --category-badge-color: var(--category-5-color); --category-badge-text-color: #FFFFFF; }
.badge-category[data-category-id="6"] { --category-badge-color: var(--category-6-color); --category-badge-text-color: #FFFFFF; }
</style>
<!---->
<div id="ember3" class="discourse-root ember-view">
<a href="https://community.tokenlists.org/latest?ascending=true&order=activity#main-container" id="skip-link">Skip to main content</a>
<!---->
<div style="--loading-duration: 0.10s" class="loading-indicator-container ready">
<div class="loading-indicator">
</div>
</div>
<!---->
<div class="drop-down-mode d-header-wrap">
<header class="d-header">
<div class="wrap">
<div class="contents">
<!---->
<div class="home-logo-wrapper-outlet">
<div class="title">
<a href="https://community.tokenlists.org/">
<img id="site-logo" class="logo-big" src="./Token Lists_files/f1c01738d133b1015b289b71e54bd647ff9539b9.png" alt="Token Lists">
</a>
</div>
</div>
<!---->
<div class="before-header-panel-outlet">
<!---->
</div>
<div class="panel" role="navigation">
<span class="header-buttons">
<!----> </span>
<ul class="icons d-header-icons">
<li class="search-dropdown header-dropdown-toggle">
<button class="btn no-text btn-icon icon btn-flat" id="search-button" title="Search" aria-label="Search" aria-haspopup="true" type="button">
<svg class="fa d-icon d-icon-search svg-icon svg-string" xmlns="http://www.w3.org/2000/svg"><use href="#search"></use></svg>
</button>
</li>
<li class="hamburger-dropdown header-dropdown-toggle">
<button class="btn no-text btn-icon icon btn-flat" id="toggle-hamburger-menu" title="menu" aria-label="menu" aria-haspopup="true" type="button">
<svg class="fa d-icon d-icon-bars svg-icon svg-string" xmlns="http://www.w3.org/2000/svg"><use href="#bars"></use></svg>
</button>
</li>
<li id="current-user" class="header-dropdown-toggle current-user user-menu-panel">
<!---->
<button class="icon btn-flat" aria-haspopup="true" aria-label="Romeo Rosete's account">
<!---->
<img loading="lazy" alt="" width="48" height="48" src="./Token Lists_files/405_2.png" class="avatar" title="profile, messages, bookmarks and preferences">
<!---->
<!---->
<!----> <!---->
</button>
<!---->
</li>
</ul>
<!---->
<!----> </div>
<div class="after-header-panel-outlet">
<!---->
</div>
</div>
</div>
<!---->
</header>
</div>
<!---->
<!---->
<!---->
<div id="main-outlet-wrapper" class="wrap" role="main">
<div class="sidebar-wrapper">
<!----> </div>
<!---->
<!---->
<div id="main-outlet">
<!---->
<div class="container" id="main-container">
<div id="ember6" class="ember-view"></div>
<!---->
<div id="ember7" class="ember-view"><!----></div>
<div class="global-notice">
<div class="row">
<div id="global-notice-alert-emails-disabled" class="alert alert-info alert-emails-disabled">
<!---->
<span class="text">Outgoing email has been disabled for non-staff users.</span>
<button class="btn no-text btn-icon btn-transparent close" type="button">
<svg class="fa d-icon d-icon-times svg-icon svg-string" xmlns="http://www.w3.org/2000/svg"><use href="#times"></use></svg>
</button>
</div>
</div>
</div>
<!---->
</div>
<div class="container">
<div id="ember9" class="ember-view"><!----></div>
<!----></div>
<span>
<!---->
</span>
<div class="list-controls">
<!---->
<div class="container">
<!---->
<!---->
<!---->
<section class="navigation-container">
<ol id="ember11" class="category-breadcrumb ember-view"><!---->
<li>
<details id="ember12" class="select-kit single-select combobox combo-box category-drop ember-view"> <summary aria-label="Filter by: categories" name="Filter by: categories" data-name="categories" data-value="" tabindex="0" role="listbox" id="ember12-header" class="select-kit-header single-select-header combo-box-header category-drop-header ember-view"><div class="select-kit-header-wrapper">
<div title="categories" data-name="categories" class="select-kit-selected-name selected-name choice">
<!---->
<!---->
<span class="name">
categories
</span>
<!----> </div>
<svg class="fa d-icon d-icon-caret-right svg-icon caret-icon svg-string" xmlns="http://www.w3.org/2000/svg"><use href="#caret-right"></use></svg>
</div></summary>
<div id="ember12-body" class="select-kit-body ember-view" style="position: relative;"><!----></div>
</details>
</li>
<!---->
<!----><!----><!----></ol>
<ul id="navigation-bar" class="nav nav-pills ember-view"> <li title="topics with recent posts" id="ember14" class="active latest ember-view nav-item_latest"><a href="https://community.tokenlists.org/latest" class="active" aria-current="true">
<!----> Latest
</a></li>
<li title="topics created in the last few days" id="ember15" class="new ember-view nav-item_new"><a href="https://community.tokenlists.org/new" class="">
<!----> New
</a></li>
<li title="topics you are currently watching or tracking with unread posts" id="ember16" class="has-icon unread ember-view nav-item_unread"><a href="https://community.tokenlists.org/unread" class="">
<!----> Unread
</a></li>
<li title="the most active topics in the last year, month, week or day" id="ember17" class="top ember-view nav-item_top"><a href="https://community.tokenlists.org/top" class="">
<!----> Top
</a></li>
<li title="all topics grouped by category" id="ember18" class="categories ember-view nav-item_categories"><a href="https://community.tokenlists.org/categories" class="">
<!----> Categories
</a></li>
<!---->
</ul>
<div class="navigation-controls">
<!---->
<div class="row dismiss-container-top"><!----><!----></div>
<!---->
<!---->